Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add missing space before opening parenthesis #227

Merged
merged 1 commit into from
May 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion po/fr_FR.po
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ msgstr "Démarrage restauration image (%s) vers périphérique (%s)\n"

#: src/partclone.c:1826
#, c-format
msgid "Starting to back up device(%s) to device(%s)\n"
msgid "Starting to back up device (%s) to device (%s)\n"
msgstr "Démarrage sauvegarde périphérique (%s) vers périphérique (%s)\n"

#: src/partclone.c:1828
Expand Down
2 changes: 1 addition & 1 deletion po/partclone.pot
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ msgstr ""

#: src/partclone.c:1826
#, c-format
msgid "Starting to back up device(%s) to device(%s)\n"
msgid "Starting to back up device (%s) to device (%s)\n"
msgstr ""

#: src/partclone.c:1828
Expand Down
2 changes: 1 addition & 1 deletion po/pt_BR.po
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ msgstr "Iniciando a restauração da imagem (%s) para dispositivo (%s)\n"

#: src/partclone.c:1826
#, c-format
msgid "Starting to back up device(%s) to device(%s)\n"
msgid "Starting to back up device (%s) to device (%s)\n"
msgstr "Iniciando a backup de dispositivo (%s) para dispositivo (%s)\n"

#: src/partclone.c:1828
Expand Down
2 changes: 1 addition & 1 deletion po/ru.po
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ msgstr "Началось восстановление образа (%s) на у

#: src/partclone.c:1826
#, c-format
msgid "Starting to back up device(%s) to device(%s)\n"
msgid "Starting to back up device (%s) to device (%s)\n"
msgstr "Началось копирование устройства (%s) на устройство (%s)\n"

#: src/partclone.c:1828
Expand Down
4 changes: 2 additions & 2 deletions po/vi.po
Original file line number Diff line number Diff line change
Expand Up @@ -114,8 +114,8 @@ msgstr "Bắt đầu phục hồi ảnh (%s) vào thiết bị (%s)\n"

#: src/partclone.c:1826
#, c-format
msgid "Starting to back up device(%s) to device(%s)\n"
msgstr "Bắt đầu sao lưu dự phòng thiết bị (%s) vào thiết bị(%s)\n"
msgid "Starting to back up device (%s) to device (%s)\n"
msgstr "Bắt đầu sao lưu dự phòng thiết bị (%s) vào thiết bị (%s)\n"

#: src/partclone.c:1828
#, c-format
Expand Down
2 changes: 1 addition & 1 deletion po/zh_CN.po
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ msgstr "开始恢复 镜像 (%s) 到 装置 (%s)\n"

#: src/partclone.c:1826
#, c-format
msgid "Starting to back up device(%s) to device(%s)\n"
msgid "Starting to back up device (%s) to device (%s)\n"
msgstr "开始备份 装置 (%s) 到 装置 (%s)\n"

#: src/partclone.c:1828
Expand Down
2 changes: 1 addition & 1 deletion po/zh_TW.po
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ msgstr "開始還原 印象檔 (%s) 到 裝置 (%s)\n"

#: src/partclone.c:1826
#, c-format
msgid "Starting to back up device(%s) to device(%s)\n"
msgid "Starting to back up device (%s) to device (%s)\n"
msgstr "開始備份 裝置 (%s) 到 裝置 (%s)\n"

#: src/partclone.c:1828
Expand Down
2 changes: 1 addition & 1 deletion src/partclone.c
Original file line number Diff line number Diff line change
Expand Up @@ -1883,7 +1883,7 @@ void print_partclone_info(cmd_opt opt) {
else
log_mesg(0, 0, 1, debug, _("Starting to restore image (%s) to device (%s)\n"), opt.source, opt.target);
}else if(opt.dd)
log_mesg(0, 0, 1, debug, _("Starting to back up device(%s) to device (%s)\n"), opt.source, opt.target);
log_mesg(0, 0, 1, debug, _("Starting to back up device (%s) to device (%s)\n"), opt.source, opt.target);
else if (opt.domain)
log_mesg(0, 0, 1, debug, _("Starting to map device (%s) to domain log (%s)\n"), opt.source, opt.target);
else if (opt.ddd)
Expand Down