OSDN Git Service

Make the following plugin error messages translatable. (#1873)
authorJun Tajima <56220423+tjmprm77@users.noreply.github.com>
Sat, 27 May 2023 23:30:22 +0000 (08:30 +0900)
committerGitHub <noreply@github.com>
Sat, 27 May 2023 23:30:22 +0000 (08:30 +0900)
- "Plugin not found or invalid: %1"
- "'%s' is not PACK_UNPACK plugin"
- "'%s' is not PREDIFF plugin"
- "An error occurred while prediffing the file '%s' with the plugin '%s'. The prediffing is not applied any more."

41 files changed:
Src/DiffWrapper.cpp
Src/FileTransform.cpp
Src/Merge.rc
Src/resource.h
Translations/WinMerge/Arabic.po
Translations/WinMerge/Basque.po
Translations/WinMerge/Brazilian.po
Translations/WinMerge/Bulgarian.po
Translations/WinMerge/Catalan.po
Translations/WinMerge/ChineseSimplified.po
Translations/WinMerge/ChineseTraditional.po
Translations/WinMerge/Corsican.po
Translations/WinMerge/Croatian.po
Translations/WinMerge/Czech.po
Translations/WinMerge/Danish.po
Translations/WinMerge/Dutch.po
Translations/WinMerge/English.pot
Translations/WinMerge/Finnish.po
Translations/WinMerge/French.po
Translations/WinMerge/Galician.po
Translations/WinMerge/German.po
Translations/WinMerge/Greek.po
Translations/WinMerge/Hungarian.po
Translations/WinMerge/Italian.po
Translations/WinMerge/Japanese.po
Translations/WinMerge/Korean.po
Translations/WinMerge/Lithuanian.po
Translations/WinMerge/Norwegian.po
Translations/WinMerge/Persian.po
Translations/WinMerge/Polish.po
Translations/WinMerge/Portuguese.po
Translations/WinMerge/Romanian.po
Translations/WinMerge/Russian.po
Translations/WinMerge/Serbian.po
Translations/WinMerge/Sinhala.po
Translations/WinMerge/Slovak.po
Translations/WinMerge/Slovenian.po
Translations/WinMerge/Spanish.po
Translations/WinMerge/Swedish.po
Translations/WinMerge/Turkish.po
Translations/WinMerge/Ukrainian.po

index 885a7ed..ebca542 100644 (file)
@@ -494,8 +494,8 @@ bool CDiffWrapper::RunFileDiff()
                        if (m_infoPrediffer && !m_infoPrediffer->Prediffing(strFileTemp[file], m_sToFindPrediffer, m_bPathsAreTemp, { strFileTemp[file] }))
                        {
                                // display a message box
-                               String sError = strutils::format(
-                                       _T("An error occurred while prediffing the file '%s' with the plugin '%s'. The prediffing is not applied any more."),
+                               String sError = strutils::format_string2(
+                                       _("An error occurred while prediffing the file '%1' with the plugin '%2'. The prediffing is not applied any more."),
                                        strFileTemp[file].c_str(),
                                        m_infoPrediffer->GetPluginPipeline().c_str());
                                AppErrorMessageBox(sError);
index 054c663..efd8495 100644 (file)
@@ -269,7 +269,7 @@ bool PackingInfo::GetPackUnpackPlugin(const String& filteredFilenames, bool bUrl
                                                else
                                                {
                                                        plugin = nullptr;
-                                                       errorMessage = strutils::format(_T("'%s' is not PACK_UNPACK plugin"), pluginName);
+                                                       errorMessage = strutils::format_string1(_("'%1' is not unpacker plugin"), pluginName);
                                                }
                                                return false;
                                        }
@@ -553,7 +553,7 @@ bool PrediffingInfo::GetPrediffPlugin(const String& filteredFilenames, bool bRev
                                        }
                                        else
                                        {
-                                               errorMessage = strutils::format(_T("'%s' is not PREDIFF plugin"), pluginName);
+                                               errorMessage = strutils::format_string1(_("'%1' is not prediffer plugin"), pluginName);
                                        }
                                        return false;
                                }
index 4a063b6..f60677f 100644 (file)
@@ -4141,6 +4141,12 @@ BEGIN
     IDS_PLUGIN_MISSING_QUOTATION_MARK \r
                             "Missing quotation mark in plugin pipeline: %1"\r
     IDS_PLUGIN_TITLE1       "Specify plugin arguments"\r
+    IDS_PLUGIN_NOTFOUND_INVALID\r
+                            "Plugin not found or invalid: %1"\r
+    IDS_PLUGIN_NOT_UNPACK   "'%1' is not unpacker plugin"\r
+    IDS_PLUGIN_NOT_PREDIFF  "'%1' is not prediffer plugin"\r
+    IDS_PLUGIN_PREDIFF_ERROR\r
+                            "An error occurred while prediffing the file '%1' with the plugin '%2'. The prediffing is not applied any more."\r
 END\r
 \r
 STRINGTABLE\r
index cfe1a55..2b7f3d7 100644 (file)
 #define IDS_PLUGIN_MISSING_PLUGIN_NAME  44490\r
 #define IDS_PLUGIN_MISSING_QUOTATION_MARK 44491\r
 #define IDS_PLUGIN_TITLE1               44492\r
+#define IDS_PLUGIN_NOTFOUND_INVALID     44493\r
+#define IDS_PLUGIN_NOT_UNPACK           44494\r
+#define IDS_PLUGIN_NOT_PREDIFF          44495\r
+#define IDS_PLUGIN_PREDIFF_ERROR        44496\r
 #define IDS_L2M                         44500\r
 #define IDS_R2M                         44501\r
 #define IDS_COPY_FROM_MIDDLE_R          44502\r
index a1270c9..c7b40cb 100644 (file)
@@ -3933,6 +3933,22 @@ msgstr ""
 msgid "Specify plugin arguments"
 msgstr ""
 
+#, c-format
+msgid "Plugin not found or invalid: %1"
+msgstr ""
+
+#, c-format
+msgid "'%1' is not unpacker plugin"
+msgstr ""
+
+#, c-format
+msgid "'%1' is not prediffer plugin"
+msgstr ""
+
+#, c-format
+msgid "An error occurred while prediffing the file '%1' with the plugin '%2'. The prediffing is not applied any more."
+msgstr ""
+
 msgid "Filter applied"
 msgstr ""
 
index ad5d05d..758b4d1 100644 (file)
@@ -4540,6 +4540,22 @@ msgstr ""
 msgid "Specify plugin arguments"
 msgstr ""
 
+#, c-format
+msgid "Plugin not found or invalid: %1"
+msgstr ""
+
+#, c-format
+msgid "'%1' is not unpacker plugin"
+msgstr ""
+
+#, c-format
+msgid "'%1' is not prediffer plugin"
+msgstr ""
+
+#, c-format
+msgid "An error occurred while prediffing the file '%1' with the plugin '%2'. The prediffing is not applied any more."
+msgstr ""
+
 msgid "Filter applied"
 msgstr ""
 
index f709a3b..14868fb 100644 (file)
@@ -3615,6 +3615,22 @@ msgstr "Marca das aspas ausentes na tubulação do plugin: %1"
 msgid "Specify plugin arguments"
 msgstr "Especificar os argumentos do plugin"
 
+#, c-format
+msgid "Plugin not found or invalid: %1"
+msgstr ""
+
+#, c-format
+msgid "'%1' is not unpacker plugin"
+msgstr ""
+
+#, c-format
+msgid "'%1' is not prediffer plugin"
+msgstr ""
+
+#, c-format
+msgid "An error occurred while prediffing the file '%1' with the plugin '%2'. The prediffing is not applied any more."
+msgstr ""
+
 msgid "Filter applied"
 msgstr "Filtro aplicado"
 
index a88b50c..2e1464e 100644 (file)
@@ -4017,6 +4017,22 @@ msgstr ""
 msgid "Specify plugin arguments"
 msgstr ""
 
+#, c-format
+msgid "Plugin not found or invalid: %1"
+msgstr ""
+
+#, c-format
+msgid "'%1' is not unpacker plugin"
+msgstr ""
+
+#, c-format
+msgid "'%1' is not prediffer plugin"
+msgstr ""
+
+#, c-format
+msgid "An error occurred while prediffing the file '%1' with the plugin '%2'. The prediffing is not applied any more."
+msgstr ""
+
 msgid "Filter applied"
 msgstr ""
 
index ce2864c..8432165 100644 (file)
@@ -4695,6 +4695,22 @@ msgstr "Manca les cometes a la seqüència: %1"
 msgid "Specify plugin arguments"
 msgstr "Especifiqueu els paràmetres del connector"
 
+#, c-format
+msgid "Plugin not found or invalid: %1"
+msgstr ""
+
+#, c-format
+msgid "'%1' is not unpacker plugin"
+msgstr ""
+
+#, c-format
+msgid "'%1' is not prediffer plugin"
+msgstr ""
+
+#, c-format
+msgid "An error occurred while prediffing the file '%1' with the plugin '%2'. The prediffing is not applied any more."
+msgstr ""
+
 msgid "Filter applied"
 msgstr "Filtre aplicat"
 
index d6464ac..4cc9c75 100644 (file)
@@ -4037,6 +4037,22 @@ msgstr "插件流程(pipeline)中缺少引号: %1"
 msgid "Specify plugin arguments"
 msgstr "指定插件参数"
 
+#, c-format
+msgid "Plugin not found or invalid: %1"
+msgstr ""
+
+#, c-format
+msgid "'%1' is not unpacker plugin"
+msgstr ""
+
+#, c-format
+msgid "'%1' is not prediffer plugin"
+msgstr ""
+
+#, c-format
+msgid "An error occurred while prediffing the file '%1' with the plugin '%2'. The prediffing is not applied any more."
+msgstr ""
+
 msgid "Filter applied"
 msgstr "过滤器已应用"
 
index 87f0013..e4fee2b 100644 (file)
@@ -4694,6 +4694,22 @@ msgstr "外掛程式管線缺少引號:%1"
 msgid "Specify plugin arguments"
 msgstr "指定外掛程式參數"
 
+#, c-format
+msgid "Plugin not found or invalid: %1"
+msgstr ""
+
+#, c-format
+msgid "'%1' is not unpacker plugin"
+msgstr ""
+
+#, c-format
+msgid "'%1' is not prediffer plugin"
+msgstr ""
+
+#, c-format
+msgid "An error occurred while prediffing the file '%1' with the plugin '%2'. The prediffing is not applied any more."
+msgstr ""
+
 msgid "Filter applied"
 msgstr ""
 
index a4f5077..8d7ffeb 100644 (file)
@@ -4008,6 +4008,22 @@ msgstr "Marca di citazione assente in u cundottu di u modulu d’estensione : %
 msgid "Specify plugin arguments"
 msgstr "Indicate i parametri di u modulu d’estensione"
 
+#, c-format
+msgid "Plugin not found or invalid: %1"
+msgstr ""
+
+#, c-format
+msgid "'%1' is not unpacker plugin"
+msgstr ""
+
+#, c-format
+msgid "'%1' is not prediffer plugin"
+msgstr ""
+
+#, c-format
+msgid "An error occurred while prediffing the file '%1' with the plugin '%2'. The prediffing is not applied any more."
+msgstr ""
+
 msgid "Filter applied"
 msgstr "Filtru appiecatu"
 
index 08917f1..cd9cdab 100644 (file)
@@ -4539,6 +4539,22 @@ msgstr ""
 msgid "Specify plugin arguments"
 msgstr ""
 
+#, c-format
+msgid "Plugin not found or invalid: %1"
+msgstr ""
+
+#, c-format
+msgid "'%1' is not unpacker plugin"
+msgstr ""
+
+#, c-format
+msgid "'%1' is not prediffer plugin"
+msgstr ""
+
+#, c-format
+msgid "An error occurred while prediffing the file '%1' with the plugin '%2'. The prediffing is not applied any more."
+msgstr ""
+
 msgid "Filter applied"
 msgstr ""
 
index ec374f0..1ca2527 100644 (file)
@@ -4472,6 +4472,22 @@ msgstr ""
 msgid "Specify plugin arguments"
 msgstr ""
 
+#, c-format
+msgid "Plugin not found or invalid: %1"
+msgstr ""
+
+#, c-format
+msgid "'%1' is not unpacker plugin"
+msgstr ""
+
+#, c-format
+msgid "'%1' is not prediffer plugin"
+msgstr ""
+
+#, c-format
+msgid "An error occurred while prediffing the file '%1' with the plugin '%2'. The prediffing is not applied any more."
+msgstr ""
+
 msgid "Filter applied"
 msgstr ""
 
index b7f42d3..1b7988e 100644 (file)
@@ -4577,6 +4577,22 @@ msgstr ""
 msgid "Specify plugin arguments"
 msgstr ""
 
+#, c-format
+msgid "Plugin not found or invalid: %1"
+msgstr ""
+
+#, c-format
+msgid "'%1' is not unpacker plugin"
+msgstr ""
+
+#, c-format
+msgid "'%1' is not prediffer plugin"
+msgstr ""
+
+#, c-format
+msgid "An error occurred while prediffing the file '%1' with the plugin '%2'. The prediffing is not applied any more."
+msgstr ""
+
 msgid "Filter applied"
 msgstr ""
 
index f35a980..ca68ec5 100644 (file)
@@ -3994,6 +3994,22 @@ msgstr "Ontbrekend aanhalingsteken in plugin-pipeline: %1"
 msgid "Specify plugin arguments"
 msgstr "Plugin-argumenten opgeven"
 
+#, c-format
+msgid "Plugin not found or invalid: %1"
+msgstr ""
+
+#, c-format
+msgid "'%1' is not unpacker plugin"
+msgstr ""
+
+#, c-format
+msgid "'%1' is not prediffer plugin"
+msgstr ""
+
+#, c-format
+msgid "An error occurred while prediffing the file '%1' with the plugin '%2'. The prediffing is not applied any more."
+msgstr ""
+
 msgid "Filter applied"
 msgstr "Filter toegepast"
 
index 6a10362..ec9b332 100644 (file)
@@ -5,7 +5,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: WinMerge\n"
 "Report-Msgid-Bugs-To: https://bugs.winmerge.org/\n"
-"POT-Creation-Date: 2023-05-01 23:13+0000\n"
+"POT-Creation-Date: 2023-05-27 17:24+0000\n"
 "PO-Revision-Date: \n"
 "Last-Translator: \n"
 "Language-Team: English <winmerge-translate@lists.sourceforge.net>\n"
@@ -3609,6 +3609,22 @@ msgstr ""
 msgid "Specify plugin arguments"
 msgstr ""
 
+#, c-format
+msgid "Plugin not found or invalid: %1"
+msgstr ""
+
+#, c-format
+msgid "'%1' is not unpacker plugin"
+msgstr ""
+
+#, c-format
+msgid "'%1' is not prediffer plugin"
+msgstr ""
+
+#, c-format
+msgid "An error occurred while prediffing the file '%1' with the plugin '%2'. The prediffing is not applied any more."
+msgstr ""
+
 msgid "Filter applied"
 msgstr ""
 
index 5e22f8f..952dde5 100644 (file)
@@ -4029,6 +4029,22 @@ msgstr "Puuttuva lainausmerkki laajennusputkessa: %1"
 msgid "Specify plugin arguments"
 msgstr "Määritä laajennuksen argumentit"
 
+#, c-format
+msgid "Plugin not found or invalid: %1"
+msgstr ""
+
+#, c-format
+msgid "'%1' is not unpacker plugin"
+msgstr ""
+
+#, c-format
+msgid "'%1' is not prediffer plugin"
+msgstr ""
+
+#, c-format
+msgid "An error occurred while prediffing the file '%1' with the plugin '%2'. The prediffing is not applied any more."
+msgstr ""
+
 msgid "Filter applied"
 msgstr "Sovellettu suodatin"
 
index 07790c6..5f5f9ad 100644 (file)
@@ -4722,6 +4722,22 @@ msgstr "Guillemet manquant dans la chaîne de traitement du plug-in : %1"
 msgid "Specify plugin arguments"
 msgstr "Spécifier les arguments du plug-in"
 
+#, c-format
+msgid "Plugin not found or invalid: %1"
+msgstr ""
+
+#, c-format
+msgid "'%1' is not unpacker plugin"
+msgstr ""
+
+#, c-format
+msgid "'%1' is not prediffer plugin"
+msgstr ""
+
+#, c-format
+msgid "An error occurred while prediffing the file '%1' with the plugin '%2'. The prediffing is not applied any more."
+msgstr ""
+
 msgid "Filter applied"
 msgstr "Filtre appliqué"
 
index 0f5d78d..2609f4e 100644 (file)
@@ -3998,6 +3998,22 @@ msgstr "Faltan comiñas na canalización de complementos %1"
 msgid "Specify plugin arguments"
 msgstr "Especificar os argumentos do complemento"
 
+#, c-format
+msgid "Plugin not found or invalid: %1"
+msgstr ""
+
+#, c-format
+msgid "'%1' is not unpacker plugin"
+msgstr ""
+
+#, c-format
+msgid "'%1' is not prediffer plugin"
+msgstr ""
+
+#, c-format
+msgid "An error occurred while prediffing the file '%1' with the plugin '%2'. The prediffing is not applied any more."
+msgstr ""
+
 msgid "Filter applied"
 msgstr "Filtro aplicado"
 
index 26596e7..37e965e 100644 (file)
@@ -4335,6 +4335,22 @@ msgstr "Fehlendes Anführungszeichen in der Plugin-Pipeline: %1"
 msgid "Specify plugin arguments"
 msgstr "Plugin-Argumente angeben"
 
+#, c-format
+msgid "Plugin not found or invalid: %1"
+msgstr ""
+
+#, c-format
+msgid "'%1' is not unpacker plugin"
+msgstr ""
+
+#, c-format
+msgid "'%1' is not prediffer plugin"
+msgstr ""
+
+#, c-format
+msgid "An error occurred while prediffing the file '%1' with the plugin '%2'. The prediffing is not applied any more."
+msgstr ""
+
 msgid "Filter applied"
 msgstr "Angewandter Filter"
 
index 785c9fd..5717d4e 100644 (file)
@@ -4517,6 +4517,22 @@ msgstr ""
 msgid "Specify plugin arguments"
 msgstr ""
 
+#, c-format
+msgid "Plugin not found or invalid: %1"
+msgstr ""
+
+#, c-format
+msgid "'%1' is not unpacker plugin"
+msgstr ""
+
+#, c-format
+msgid "'%1' is not prediffer plugin"
+msgstr ""
+
+#, c-format
+msgid "An error occurred while prediffing the file '%1' with the plugin '%2'. The prediffing is not applied any more."
+msgstr ""
+
 msgid "Filter applied"
 msgstr ""
 
index 661b913..d166ae4 100644 (file)
@@ -4678,6 +4678,22 @@ msgstr "Hiányzó idézőjel a bővítmény pipeline-ban: %1"
 msgid "Specify plugin arguments"
 msgstr "Bővítmény argumentumok megadása"
 
+#, c-format
+msgid "Plugin not found or invalid: %1"
+msgstr ""
+
+#, c-format
+msgid "'%1' is not unpacker plugin"
+msgstr ""
+
+#, c-format
+msgid "'%1' is not prediffer plugin"
+msgstr ""
+
+#, c-format
+msgid "An error occurred while prediffing the file '%1' with the plugin '%2'. The prediffing is not applied any more."
+msgstr ""
+
 msgid "Filter applied"
 msgstr "Szűrő alkalmazva"
 
index 0d3aa81..42ad7d8 100644 (file)
@@ -3974,6 +3974,22 @@ msgstr "Virgoletta mancante nella pipeline dei plugin: %1"
 msgid "Specify plugin arguments"
 msgstr ""
 
+#, c-format
+msgid "Plugin not found or invalid: %1"
+msgstr ""
+
+#, c-format
+msgid "'%1' is not unpacker plugin"
+msgstr ""
+
+#, c-format
+msgid "'%1' is not prediffer plugin"
+msgstr ""
+
+#, c-format
+msgid "An error occurred while prediffing the file '%1' with the plugin '%2'. The prediffing is not applied any more."
+msgstr ""
+
 msgid "Filter applied"
 msgstr ""
 
index 7d9f202..a1af851 100644 (file)
@@ -3999,6 +3999,22 @@ msgstr "プラグイン パイプラインが引用符で閉じていません:
 msgid "Specify plugin arguments"
 msgstr "プラグイン引数を指定してください"
 
+#, c-format
+msgid "Plugin not found or invalid: %1"
+msgstr "プラグインが見つからないまたは無効です: %1"
+
+#, c-format
+msgid "'%1' is not unpacker plugin"
+msgstr "'%1'は展開プラグインではありません"
+
+#, c-format
+msgid "'%1' is not prediffer plugin"
+msgstr "'%1'は比較前処理プラグインではありません"
+
+#, c-format
+msgid "An error occurred while prediffing the file '%1' with the plugin '%2'. The prediffing is not applied any more."
+msgstr "プラグイン'%2'でファイル'%1'の比較前処理を実行中にエラーが発生しました。比較前処理は適用されませんでした。"
+
 msgid "Filter applied"
 msgstr "フィルター適用"
 
index 97afdbe..38d16c6 100644 (file)
@@ -4720,6 +4720,22 @@ msgstr "플러그인 파이프라인에 따옴표가 없습니다: %1"
 msgid "Specify plugin arguments"
 msgstr "플러그인 인수 지정"
 
+#, c-format
+msgid "Plugin not found or invalid: %1"
+msgstr ""
+
+#, c-format
+msgid "'%1' is not unpacker plugin"
+msgstr ""
+
+#, c-format
+msgid "'%1' is not prediffer plugin"
+msgstr ""
+
+#, c-format
+msgid "An error occurred while prediffing the file '%1' with the plugin '%2'. The prediffing is not applied any more."
+msgstr ""
+
 msgid "Filter applied"
 msgstr "Filter 적용됨"
 
index b0d14ba..261f563 100644 (file)
@@ -3615,6 +3615,22 @@ msgstr "Trūksta kabučių papildinio komandų grandinėje: %1"
 msgid "Specify plugin arguments"
 msgstr "Nurodykite papildinio argumentus"
 
+#, c-format
+msgid "Plugin not found or invalid: %1"
+msgstr ""
+
+#, c-format
+msgid "'%1' is not unpacker plugin"
+msgstr ""
+
+#, c-format
+msgid "'%1' is not prediffer plugin"
+msgstr ""
+
+#, c-format
+msgid "An error occurred while prediffing the file '%1' with the plugin '%2'. The prediffing is not applied any more."
+msgstr ""
+
 msgid "Filter applied"
 msgstr "Pritaikytas filtras"
 
index 6577993..f3ae7a4 100644 (file)
@@ -4002,6 +4002,22 @@ msgstr ""
 msgid "Specify plugin arguments"
 msgstr ""
 
+#, c-format
+msgid "Plugin not found or invalid: %1"
+msgstr ""
+
+#, c-format
+msgid "'%1' is not unpacker plugin"
+msgstr ""
+
+#, c-format
+msgid "'%1' is not prediffer plugin"
+msgstr ""
+
+#, c-format
+msgid "An error occurred while prediffing the file '%1' with the plugin '%2'. The prediffing is not applied any more."
+msgstr ""
+
 msgid "Filter applied"
 msgstr ""
 
index 2d00c3c..d3122d0 100644 (file)
@@ -4586,6 +4586,22 @@ msgstr ""
 msgid "Specify plugin arguments"
 msgstr ""
 
+#, c-format
+msgid "Plugin not found or invalid: %1"
+msgstr ""
+
+#, c-format
+msgid "'%1' is not unpacker plugin"
+msgstr ""
+
+#, c-format
+msgid "'%1' is not prediffer plugin"
+msgstr ""
+
+#, c-format
+msgid "An error occurred while prediffing the file '%1' with the plugin '%2'. The prediffing is not applied any more."
+msgstr ""
+
 msgid "Filter applied"
 msgstr ""
 
index 9b79836..f4c45c0 100644 (file)
@@ -3616,6 +3616,22 @@ msgstr "Brakujący cudzysłów we wtyczce pipeline: %1"
 msgid "Specify plugin arguments"
 msgstr "Określ argumenty wtyczki"
 
+#, c-format
+msgid "Plugin not found or invalid: %1"
+msgstr ""
+
+#, c-format
+msgid "'%1' is not unpacker plugin"
+msgstr ""
+
+#, c-format
+msgid "'%1' is not prediffer plugin"
+msgstr ""
+
+#, c-format
+msgid "An error occurred while prediffing the file '%1' with the plugin '%2'. The prediffing is not applied any more."
+msgstr ""
+
 msgid "Filter applied"
 msgstr "Zastosowano filtr"
 
index bd073ee..cf7d1cb 100644 (file)
@@ -4040,6 +4040,22 @@ msgstr "Marca de cotação em falta no plugin pipeline: %1"
 msgid "Specify plugin arguments"
 msgstr "Especificar argumentos de plugin"
 
+#, c-format
+msgid "Plugin not found or invalid: %1"
+msgstr ""
+
+#, c-format
+msgid "'%1' is not unpacker plugin"
+msgstr ""
+
+#, c-format
+msgid "'%1' is not prediffer plugin"
+msgstr ""
+
+#, c-format
+msgid "An error occurred while prediffing the file '%1' with the plugin '%2'. The prediffing is not applied any more."
+msgstr ""
+
 msgid "Filter applied"
 msgstr "Filtro aplicado"
 
index 8260a98..6d308c4 100644 (file)
@@ -4522,6 +4522,22 @@ msgstr ""
 msgid "Specify plugin arguments"
 msgstr ""
 
+#, c-format
+msgid "Plugin not found or invalid: %1"
+msgstr ""
+
+#, c-format
+msgid "'%1' is not unpacker plugin"
+msgstr ""
+
+#, c-format
+msgid "'%1' is not prediffer plugin"
+msgstr ""
+
+#, c-format
+msgid "An error occurred while prediffing the file '%1' with the plugin '%2'. The prediffing is not applied any more."
+msgstr ""
+
 msgid "Filter applied"
 msgstr ""
 
index dc4a2a4..0c6fa4b 100644 (file)
@@ -3617,6 +3617,22 @@ msgstr "Отсутствует кавычка в конвейере плагин
 msgid "Specify plugin arguments"
 msgstr "Укажите аргументы плагина"
 
+#, c-format
+msgid "Plugin not found or invalid: %1"
+msgstr ""
+
+#, c-format
+msgid "'%1' is not unpacker plugin"
+msgstr ""
+
+#, c-format
+msgid "'%1' is not prediffer plugin"
+msgstr ""
+
+#, c-format
+msgid "An error occurred while prediffing the file '%1' with the plugin '%2'. The prediffing is not applied any more."
+msgstr ""
+
 msgid "Filter applied"
 msgstr "Фильтр применен"
 
index 2bfe281..8e33540 100644 (file)
@@ -4511,6 +4511,22 @@ msgstr ""
 msgid "Specify plugin arguments"
 msgstr ""
 
+#, c-format
+msgid "Plugin not found or invalid: %1"
+msgstr ""
+
+#, c-format
+msgid "'%1' is not unpacker plugin"
+msgstr ""
+
+#, c-format
+msgid "'%1' is not prediffer plugin"
+msgstr ""
+
+#, c-format
+msgid "An error occurred while prediffing the file '%1' with the plugin '%2'. The prediffing is not applied any more."
+msgstr ""
+
 msgid "Filter applied"
 msgstr ""
 
index 5177e9b..f4d261c 100644 (file)
@@ -4540,6 +4540,22 @@ msgstr ""
 msgid "Specify plugin arguments"
 msgstr ""
 
+#, c-format
+msgid "Plugin not found or invalid: %1"
+msgstr ""
+
+#, c-format
+msgid "'%1' is not unpacker plugin"
+msgstr ""
+
+#, c-format
+msgid "'%1' is not prediffer plugin"
+msgstr ""
+
+#, c-format
+msgid "An error occurred while prediffing the file '%1' with the plugin '%2'. The prediffing is not applied any more."
+msgstr ""
+
 msgid "Filter applied"
 msgstr ""
 
index ee10cae..7561703 100644 (file)
@@ -3973,6 +3973,22 @@ msgstr "Chýbajúca úvodzovka v rozšírení: %1"
 msgid "Specify plugin arguments"
 msgstr "Určenie argumentov rozšírenia"
 
+#, c-format
+msgid "Plugin not found or invalid: %1"
+msgstr ""
+
+#, c-format
+msgid "'%1' is not unpacker plugin"
+msgstr ""
+
+#, c-format
+msgid "'%1' is not prediffer plugin"
+msgstr ""
+
+#, c-format
+msgid "An error occurred while prediffing the file '%1' with the plugin '%2'. The prediffing is not applied any more."
+msgstr ""
+
 msgid "Filter applied"
 msgstr "Použitý filter"
 
index 2c3aa39..c32b8de 100644 (file)
@@ -3998,6 +3998,22 @@ msgstr "Manjka narekovaj v cevovodu vtičnika: %1"
 msgid "Specify plugin arguments"
 msgstr "Določi argumente vtičnika"
 
+#, c-format
+msgid "Plugin not found or invalid: %1"
+msgstr ""
+
+#, c-format
+msgid "'%1' is not unpacker plugin"
+msgstr ""
+
+#, c-format
+msgid "'%1' is not prediffer plugin"
+msgstr ""
+
+#, c-format
+msgid "An error occurred while prediffing the file '%1' with the plugin '%2'. The prediffing is not applied any more."
+msgstr ""
+
 msgid "Filter applied"
 msgstr "Filter je uporabljen"
 
index f351e95..e457997 100644 (file)
@@ -4000,6 +4000,22 @@ msgstr "Faltan comillas en la canalización de complementos %1"
 msgid "Specify plugin arguments"
 msgstr "Especifique argumentos del complemento"
 
+#, c-format
+msgid "Plugin not found or invalid: %1"
+msgstr ""
+
+#, c-format
+msgid "'%1' is not unpacker plugin"
+msgstr ""
+
+#, c-format
+msgid "'%1' is not prediffer plugin"
+msgstr ""
+
+#, c-format
+msgid "An error occurred while prediffing the file '%1' with the plugin '%2'. The prediffing is not applied any more."
+msgstr ""
+
 msgid "Filter applied"
 msgstr "Filtro aplicado"
 
index 5456f49..3c904f1 100644 (file)
@@ -4075,6 +4075,22 @@ msgstr "Saknar citationstecken i programtilläggets kommandoslinga: %1"
 msgid "Specify plugin arguments"
 msgstr "Ange programtilläggets kommandoalternativ"
 
+#, c-format
+msgid "Plugin not found or invalid: %1"
+msgstr ""
+
+#, c-format
+msgid "'%1' is not unpacker plugin"
+msgstr ""
+
+#, c-format
+msgid "'%1' is not prediffer plugin"
+msgstr ""
+
+#, c-format
+msgid "An error occurred while prediffing the file '%1' with the plugin '%2'. The prediffing is not applied any more."
+msgstr ""
+
 msgid "Filter applied"
 msgstr "Filter verkställt"
 
index ea01d67..6b868be 100644 (file)
@@ -4068,6 +4068,22 @@ msgstr "Eklenti bağlantı yolunda tırnak karakteri eksik: %1"
 msgid "Specify plugin arguments"
 msgstr "Eklenti değişkenlerini belirtin"
 
+#, c-format
+msgid "Plugin not found or invalid: %1"
+msgstr ""
+
+#, c-format
+msgid "'%1' is not unpacker plugin"
+msgstr ""
+
+#, c-format
+msgid "'%1' is not prediffer plugin"
+msgstr ""
+
+#, c-format
+msgid "An error occurred while prediffing the file '%1' with the plugin '%2'. The prediffing is not applied any more."
+msgstr ""
+
 msgid "Filter applied"
 msgstr "Süzgeç uygulandı"
 
index 81fa0de..e7759a8 100644 (file)
@@ -4543,6 +4543,22 @@ msgstr ""
 msgid "Specify plugin arguments"
 msgstr ""
 
+#, c-format
+msgid "Plugin not found or invalid: %1"
+msgstr ""
+
+#, c-format
+msgid "'%1' is not unpacker plugin"
+msgstr ""
+
+#, c-format
+msgid "'%1' is not prediffer plugin"
+msgstr ""
+
+#, c-format
+msgid "An error occurred while prediffing the file '%1' with the plugin '%2'. The prediffing is not applied any more."
+msgstr ""
+
 msgid "Filter applied"
 msgstr ""