OSDN Git Service

Added a new feature "Ignored Substitutions", which are the changes that will be ignor...
authorTakashi Sawanaka <sdottaka@users.sourceforge.net>
Sat, 9 Jan 2021 02:13:28 +0000 (11:13 +0900)
committerTakashi Sawanaka <sdottaka@users.sourceforge.net>
Sat, 9 Jan 2021 02:13:28 +0000 (11:13 +0900)
41 files changed:
Src/Merge.rc
Src/MergeApp.cpp
Src/resource.h
Translations/TranslationsStatus.html
Translations/TranslationsStatus.xml
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/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 f1002d7..495c5d1 100644 (file)
@@ -2817,6 +2817,7 @@ BEGIN
     IDS_EMPTY_LEFT_FILE     "Untitled left"\r
     IDS_EMPTY_MIDDLE_FILE   "Untitled middle"\r
     IDS_EMPTY_RIGHT_FILE    "Untitled right"\r
+    IDS_CONFLICT_BASE_FILE  "Base File"\r
     IDS_CONFLICT_THEIRS_FILE "Theirs File"\r
     IDS_CONFLICT_MINE_FILE  "Mine File"\r
 END\r
@@ -2887,6 +2888,8 @@ BEGIN
     IDS_FILESAVE_FAILED     "Saving file failed.\n%1\n%2\nDo you want to:\n\t- use a different filename (Press OK)\n\t- abort the current operation (Press Cancel)?"\r
     IDS_FILEPACK_FAILED_LEFT \r
                             "Plugin '%2' cannot pack your changes to the left file back into '%1'.\n\nThe original file will not be changed.\n\nDo you want to save the unpacked version to another file?"\r
+    IDS_FILEPACK_FAILED_MIDDLE \r
+                            "Plugin '%2' cannot pack your changes to the middle file back into '%1'.\n\nThe original file will not be changed.\n\nDo you want to save the unpacked version to another file?"\r
     IDS_FILEPACK_FAILED_RIGHT \r
                             "Plugin '%2' cannot pack your changes to the right file back into '%1'.\n\nThe original file will not be changed.\n\nDo you want to save the unpacked version to another file?"\r
     IDS_FILECHANGED_ONDISK  "Another application has updated file\n%1\nsince WinMerge loaded it.\n\nOverwrite changed file?"\r
@@ -3539,6 +3542,17 @@ BEGIN
     IDS_IMGCMP_STATUS_RC_FMT "Rc: (%d, %d)  "\r
 END\r
 \r
+STRINGTABLE\r
+BEGIN\r
+    IDS_IGNSUB_STR1 "On one panel"\r
+    IDS_IGNSUB_STR2 "On the other panel"\r
+    IDS_IGNSUB_STR3 "<Edit here>"\r
+    IDS_IGNSUB_STR4 "No differences to select found"\r
+    IDS_IGNSUB_STR5 "No differences found to add as ignored substitution"\r
+    IDS_IGNSUB_STR6 "The pair is already present in the list of Ignored Substiturions"\r
+    IDS_IGNSUB_STR7 "Add this change to Ignored Substitutions?"\r
+END\r
+\r
 #endif    // English (United States) resources\r
 /////////////////////////////////////////////////////////////////////////////\r
 \r
index 720e446..76f36fa 100644 (file)
@@ -170,7 +170,7 @@ AboutInfo::AboutInfo()
 
 #if defined _M_IX86
        version += _T(" ");
-       version += _("x86");
+       version += _T("x86");
 #elif defined _M_IA64
        version += _T(" IA64");
 #elif defined _M_X64
@@ -180,7 +180,7 @@ AboutInfo::AboutInfo()
 
 #if defined _DEBUG
        version += _T(" (");
-       version += _("Debug");
+       version += _T("Debug");
        version += _T(")");
 #endif
 
index f4d93ce..227fdce 100644 (file)
 #define IDS_EMPTY_LEFT_FILE             16802\r
 #define IDS_EMPTY_MIDDLE_FILE           16803\r
 #define IDS_EMPTY_RIGHT_FILE            16804\r
-#define IDS_CONFLICT_THEIRS_FILE        16805\r
-#define IDS_CONFLICT_MINE_FILE          16806\r
+#define IDS_CONFLICT_BASE_FILE          16805\r
+#define IDS_CONFLICT_THEIRS_FILE        16806\r
+#define IDS_CONFLICT_MINE_FILE          16807\r
 #define IDS_LINE_STATUS_INFO_EOL        16832\r
 #define IDS_EMPTY_LINE_STATUS_INFO      16833\r
 #define IDS_LINE_STATUS_INFO            16834\r
 #define ID_SWAPPANES_SWAP23             34171\r
 #define ID_SWAPPANES_SWAP13             34172\r
 #define ID_ADD_TO_IGNORED_SUBSTITUTIONS 34173\r
+#define IDS_IGNSUB_STR1                 34174\r
+#define IDS_IGNSUB_STR2                 34175\r
+#define IDS_IGNSUB_STR3                 34176\r
+#define IDS_IGNSUB_STR4                 34177\r
+#define IDS_IGNSUB_STR5                 34178\r
+#define IDS_IGNSUB_STR6                 34179\r
+#define IDS_IGNSUB_STR7                 34180\r
 \r
 // Next default values for new objects\r
 // \r
 #ifndef APSTUDIO_READONLY_SYMBOLS\r
 #define _APS_3D_CONTROLS                     1\r
 #define _APS_NEXT_RESOURCE_VALUE        253\r
-#define _APS_NEXT_COMMAND_VALUE         34174\r
-#define _APS_NEXT_CONTROL_VALUE         8832\r
-#define _APS_NEXT_SYMED_VALUE           117\r
+#define _APS_NEXT_COMMAND_VALUE         34181\r
+#define _APS_NEXT_CONTROL_VALUE         8837\r
+#define _APS_NEXT_SYMED_VALUE           118\r
 #endif\r
 #endif\r
index 9f60850..2800fe7 100644 (file)
@@ -37,7 +37,7 @@
 </head>
 <body>
 <h1>Translations Status</h1>
-<p>Status from <strong>2021-01-08</strong>:</p>
+<p>Status from <strong>2021-01-09</strong>:</p>
 <h2>WinMerge</h2>
 <table class="status">
   <tr>
   </tr>
   <tr>
     <td class="left">Arabic</td>
-    <td class="right">1000</td>
-    <td class="right translated">919</td>
+    <td class="right">1018</td>
+    <td class="right translated">917</td>
     <td class="right fuzzy">0</td>
-    <td class="right untranslated">81</td>
+    <td class="right untranslated">101</td>
     <td class="center">2019-12-30</td>
   </tr>
   <tr>
     <td class="left">Basque</td>
-    <td class="right">1000</td>
-    <td class="right translated">654</td>
+    <td class="right">1018</td>
+    <td class="right translated">652</td>
     <td class="right fuzzy">0</td>
-    <td class="right untranslated">346</td>
+    <td class="right untranslated">366</td>
     <td class="center">2013-02-03</td>
   </tr>
   <tr>
     <td class="left">Brazilian</td>
-    <td class="right">1000</td>
-    <td class="right translated">986</td>
+    <td class="right">1018</td>
+    <td class="right translated">984</td>
     <td class="right fuzzy">0</td>
-    <td class="right untranslated">14</td>
+    <td class="right untranslated">34</td>
     <td class="center">2020-07-26</td>
   </tr>
   <tr>
     <td class="left">Bulgarian</td>
-    <td class="right">1000</td>
-    <td class="right translated">890</td>
+    <td class="right">1018</td>
+    <td class="right translated">888</td>
     <td class="right fuzzy">0</td>
-    <td class="right untranslated">110</td>
+    <td class="right untranslated">130</td>
     <td class="center">2019-10-24</td>
   </tr>
   <tr>
     <td class="left">Catalan</td>
-    <td class="right">1000</td>
-    <td class="right translated">578</td>
+    <td class="right">1018</td>
+    <td class="right translated">576</td>
     <td class="right fuzzy">0</td>
-    <td class="right untranslated">422</td>
+    <td class="right untranslated">442</td>
     <td class="center"></td>
   </tr>
   <tr>
     <td class="left">ChineseSimplified</td>
-    <td class="right">1000</td>
-    <td class="right translated">992</td>
+    <td class="right">1018</td>
+    <td class="right translated">990</td>
     <td class="right fuzzy">0</td>
-    <td class="right untranslated">8</td>
+    <td class="right untranslated">28</td>
     <td class="center"></td>
   </tr>
   <tr>
     <td class="left">ChineseTraditional</td>
-    <td class="right">1000</td>
-    <td class="right translated">872</td>
+    <td class="right">1018</td>
+    <td class="right translated">870</td>
     <td class="right fuzzy">0</td>
-    <td class="right untranslated">128</td>
+    <td class="right untranslated">148</td>
     <td class="center">2010-02-19</td>
   </tr>
   <tr>
     <td class="left">Croatian</td>
-    <td class="right">1000</td>
-    <td class="right translated">645</td>
+    <td class="right">1018</td>
+    <td class="right translated">643</td>
     <td class="right fuzzy">1</td>
-    <td class="right untranslated">354</td>
+    <td class="right untranslated">374</td>
     <td class="center">2009-02-13</td>
   </tr>
   <tr>
     <td class="left">Czech</td>
-    <td class="right">1000</td>
-    <td class="right translated">616</td>
+    <td class="right">1018</td>
+    <td class="right translated">614</td>
     <td class="right fuzzy">0</td>
-    <td class="right untranslated">384</td>
+    <td class="right untranslated">404</td>
     <td class="center"></td>
   </tr>
   <tr>
     <td class="left">Danish</td>
-    <td class="right">1000</td>
-    <td class="right translated">654</td>
+    <td class="right">1018</td>
+    <td class="right translated">652</td>
     <td class="right fuzzy">0</td>
-    <td class="right untranslated">346</td>
+    <td class="right untranslated">366</td>
     <td class="center">2013-01-13</td>
   </tr>
   <tr>
     <td class="left">Dutch</td>
-    <td class="right">1000</td>
-    <td class="right translated">993</td>
+    <td class="right">1018</td>
+    <td class="right translated">991</td>
     <td class="right fuzzy">0</td>
-    <td class="right untranslated">7</td>
+    <td class="right untranslated">27</td>
     <td class="center">2018-09-06</td>
   </tr>
   <tr>
     <td class="left">English</td>
-    <td class="right">1000</td>
-    <td class="right translated">1000</td>
+    <td class="right">1018</td>
+    <td class="right translated">1018</td>
     <td class="right fuzzy">0</td>
     <td class="right untranslated">0</td>
-    <td class="center">2021-01-08</td>
+    <td class="center">2021-01-09</td>
   </tr>
   <tr>
     <td class="left">Finnish</td>
-    <td class="right">1000</td>
-    <td class="right translated">919</td>
+    <td class="right">1018</td>
+    <td class="right translated">917</td>
     <td class="right fuzzy">0</td>
-    <td class="right untranslated">81</td>
+    <td class="right untranslated">101</td>
     <td class="center"></td>
   </tr>
   <tr>
     <td class="left">French</td>
-    <td class="right">1000</td>
-    <td class="right translated">912</td>
+    <td class="right">1018</td>
+    <td class="right translated">910</td>
     <td class="right fuzzy">2</td>
-    <td class="right untranslated">86</td>
+    <td class="right untranslated">106</td>
     <td class="center">2019-06-02</td>
   </tr>
   <tr>
     <td class="left">Galician</td>
-    <td class="right">1000</td>
-    <td class="right translated">1000</td>
+    <td class="right">1018</td>
+    <td class="right translated">998</td>
     <td class="right fuzzy">0</td>
-    <td class="right untranslated">0</td>
+    <td class="right untranslated">20</td>
     <td class="center">2021-01-04</td>
   </tr>
   <tr>
     <td class="left">German</td>
-    <td class="right">1000</td>
-    <td class="right translated">1000</td>
+    <td class="right">1018</td>
+    <td class="right translated">998</td>
     <td class="right fuzzy">0</td>
-    <td class="right untranslated">0</td>
+    <td class="right untranslated">20</td>
     <td class="center">2020-12-31</td>
   </tr>
   <tr>
     <td class="left">Greek</td>
-    <td class="right">1000</td>
-    <td class="right translated">617</td>
+    <td class="right">1018</td>
+    <td class="right translated">615</td>
     <td class="right fuzzy">0</td>
-    <td class="right untranslated">383</td>
+    <td class="right untranslated">403</td>
     <td class="center"></td>
   </tr>
   <tr>
     <td class="left">Hungarian</td>
-    <td class="right">1000</td>
-    <td class="right translated">550</td>
+    <td class="right">1018</td>
+    <td class="right translated">548</td>
     <td class="right fuzzy">0</td>
-    <td class="right untranslated">450</td>
+    <td class="right untranslated">470</td>
     <td class="center">2011-01-24</td>
   </tr>
   <tr>
     <td class="left">Italian</td>
-    <td class="right">1000</td>
-    <td class="right translated">922</td>
+    <td class="right">1018</td>
+    <td class="right translated">920</td>
     <td class="right fuzzy">0</td>
-    <td class="right untranslated">78</td>
+    <td class="right untranslated">98</td>
     <td class="center">2019-07-12</td>
   </tr>
   <tr>
     <td class="left">Japanese</td>
-    <td class="right">1000</td>
-    <td class="right translated">1000</td>
+    <td class="right">1018</td>
+    <td class="right translated">998</td>
     <td class="right fuzzy">0</td>
-    <td class="right untranslated">0</td>
+    <td class="right untranslated">20</td>
     <td class="center">2021-01-02</td>
   </tr>
   <tr>
     <td class="left">Korean</td>
-    <td class="right">1000</td>
-    <td class="right translated">876</td>
+    <td class="right">1018</td>
+    <td class="right translated">874</td>
     <td class="right fuzzy">0</td>
-    <td class="right untranslated">124</td>
+    <td class="right untranslated">144</td>
     <td class="center">2018-02-05</td>
   </tr>
   <tr>
     <td class="left">Lithuanian</td>
-    <td class="right">1000</td>
-    <td class="right translated">1000</td>
+    <td class="right">1018</td>
+    <td class="right translated">998</td>
     <td class="right fuzzy">0</td>
-    <td class="right untranslated">0</td>
+    <td class="right untranslated">20</td>
     <td class="center">2021-01-02</td>
   </tr>
   <tr>
     <td class="left">Norwegian</td>
-    <td class="right">1000</td>
-    <td class="right translated">646</td>
+    <td class="right">1018</td>
+    <td class="right translated">644</td>
     <td class="right fuzzy">0</td>
-    <td class="right untranslated">354</td>
+    <td class="right untranslated">374</td>
     <td class="center"></td>
   </tr>
   <tr>
     <td class="left">Persian</td>
-    <td class="right">1000</td>
-    <td class="right translated">657</td>
+    <td class="right">1018</td>
+    <td class="right translated">655</td>
     <td class="right fuzzy">0</td>
-    <td class="right untranslated">343</td>
+    <td class="right untranslated">363</td>
     <td class="center">2013-08-15</td>
   </tr>
   <tr>
     <td class="left">Polish</td>
-    <td class="right">1000</td>
-    <td class="right translated">962</td>
+    <td class="right">1018</td>
+    <td class="right translated">960</td>
     <td class="right fuzzy">0</td>
-    <td class="right untranslated">38</td>
+    <td class="right untranslated">58</td>
     <td class="center"></td>
   </tr>
   <tr>
     <td class="left">Portuguese</td>
-    <td class="right">1000</td>
-    <td class="right translated">997</td>
+    <td class="right">1018</td>
+    <td class="right translated">995</td>
     <td class="right fuzzy">0</td>
-    <td class="right untranslated">3</td>
+    <td class="right untranslated">23</td>
     <td class="center">2020-11-29</td>
   </tr>
   <tr>
     <td class="left">Romanian</td>
-    <td class="right">1000</td>
-    <td class="right translated">575</td>
+    <td class="right">1018</td>
+    <td class="right translated">573</td>
     <td class="right fuzzy">44</td>
-    <td class="right untranslated">381</td>
+    <td class="right untranslated">401</td>
     <td class="center"></td>
   </tr>
   <tr>
     <td class="left">Russian</td>
-    <td class="right">1000</td>
-    <td class="right translated">993</td>
+    <td class="right">1018</td>
+    <td class="right translated">991</td>
     <td class="right fuzzy">0</td>
-    <td class="right untranslated">7</td>
+    <td class="right untranslated">27</td>
     <td class="center">2020-11-29</td>
   </tr>
   <tr>
     <td class="left">Serbian</td>
-    <td class="right">1000</td>
-    <td class="right translated">645</td>
+    <td class="right">1018</td>
+    <td class="right translated">643</td>
     <td class="right fuzzy">0</td>
-    <td class="right untranslated">355</td>
+    <td class="right untranslated">375</td>
     <td class="center"></td>
   </tr>
   <tr>
     <td class="left">Sinhala</td>
-    <td class="right">1000</td>
-    <td class="right translated">574</td>
-    <td class="right fuzzy">64</td>
-    <td class="right untranslated">362</td>
+    <td class="right">1018</td>
+    <td class="right translated">573</td>
+    <td class="right fuzzy">63</td>
+    <td class="right untranslated">382</td>
     <td class="center">2010-12-12</td>
   </tr>
   <tr>
     <td class="left">Slovak</td>
-    <td class="right">1000</td>
-    <td class="right translated">992</td>
+    <td class="right">1018</td>
+    <td class="right translated">990</td>
     <td class="right fuzzy">0</td>
-    <td class="right untranslated">8</td>
+    <td class="right untranslated">28</td>
     <td class="center">2020-11-02</td>
   </tr>
   <tr>
     <td class="left">Slovenian</td>
-    <td class="right">1000</td>
-    <td class="right translated">999</td>
+    <td class="right">1018</td>
+    <td class="right translated">997</td>
     <td class="right fuzzy">0</td>
-    <td class="right untranslated">1</td>
+    <td class="right untranslated">21</td>
     <td class="center">2020-12-29</td>
   </tr>
   <tr>
     <td class="left">Spanish</td>
-    <td class="right">1000</td>
-    <td class="right translated">888</td>
+    <td class="right">1018</td>
+    <td class="right translated">886</td>
     <td class="right fuzzy">0</td>
-    <td class="right untranslated">112</td>
+    <td class="right untranslated">132</td>
     <td class="center">2020-04-03</td>
   </tr>
   <tr>
     <td class="left">Swedish</td>
-    <td class="right">1000</td>
-    <td class="right translated">922</td>
+    <td class="right">1018</td>
+    <td class="right translated">920</td>
     <td class="right fuzzy">0</td>
-    <td class="right untranslated">78</td>
+    <td class="right untranslated">98</td>
     <td class="center">2019-10-07</td>
   </tr>
   <tr>
     <td class="left">Turkish</td>
-    <td class="right">1000</td>
-    <td class="right translated">988</td>
+    <td class="right">1018</td>
+    <td class="right translated">986</td>
     <td class="right fuzzy">0</td>
-    <td class="right untranslated">12</td>
+    <td class="right untranslated">32</td>
     <td class="center">2020-09-08</td>
   </tr>
   <tr>
     <td class="left">Ukrainian</td>
-    <td class="right">1000</td>
-    <td class="right translated">651</td>
+    <td class="right">1018</td>
+    <td class="right translated">649</td>
     <td class="right fuzzy">0</td>
-    <td class="right untranslated">349</td>
+    <td class="right untranslated">369</td>
     <td class="center">2009-06-13</td>
   </tr>
 </table>
index 646b5bd..e8d068a 100644 (file)
@@ -1,16 +1,16 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <status>
-  <update>2021-01-08</update>
+  <update>2021-01-09</update>
   <translations project="WinMerge">
     <translation>
       <language>Arabic</language>
       <file>Arabic.po</file>
       <update>2019-12-30</update>
       <strings>
-        <count>1000</count>
-        <translated>919</translated>
+        <count>1018</count>
+        <translated>917</translated>
         <fuzzy>0</fuzzy>
-        <untranslated>81</untranslated>
+        <untranslated>101</untranslated>
       </strings>
     </translation>
     <translation>
       <file>Basque.po</file>
       <update>2013-02-03</update>
       <strings>
-        <count>1000</count>
-        <translated>654</translated>
+        <count>1018</count>
+        <translated>652</translated>
         <fuzzy>0</fuzzy>
-        <untranslated>346</untranslated>
+        <untranslated>366</untranslated>
       </strings>
       <translators>
         <translator>
       <file>Brazilian.po</file>
       <update>2020-07-26</update>
       <strings>
-        <count>1000</count>
-        <translated>986</translated>
+        <count>1018</count>
+        <translated>984</translated>
         <fuzzy>0</fuzzy>
-        <untranslated>14</untranslated>
+        <untranslated>34</untranslated>
       </strings>
       <translators>
         <translator>
       <file>Bulgarian.po</file>
       <update>2019-10-24</update>
       <strings>
-        <count>1000</count>
-        <translated>890</translated>
+        <count>1018</count>
+        <translated>888</translated>
         <fuzzy>0</fuzzy>
-        <untranslated>110</untranslated>
+        <untranslated>130</untranslated>
       </strings>
       <translators>
         <translator>
       <file>Catalan.po</file>
       <update></update>
       <strings>
-        <count>1000</count>
-        <translated>578</translated>
+        <count>1018</count>
+        <translated>576</translated>
         <fuzzy>0</fuzzy>
-        <untranslated>422</untranslated>
+        <untranslated>442</untranslated>
       </strings>
       <translators>
         <translator>
       <file>ChineseSimplified.po</file>
       <update></update>
       <strings>
-        <count>1000</count>
-        <translated>992</translated>
+        <count>1018</count>
+        <translated>990</translated>
         <fuzzy>0</fuzzy>
-        <untranslated>8</untranslated>
+        <untranslated>28</untranslated>
       </strings>
       <translators>
         <translator>
       <file>ChineseTraditional.po</file>
       <update>2010-02-19</update>
       <strings>
-        <count>1000</count>
-        <translated>872</translated>
+        <count>1018</count>
+        <translated>870</translated>
         <fuzzy>0</fuzzy>
-        <untranslated>128</untranslated>
+        <untranslated>148</untranslated>
       </strings>
       <translators>
         <translator>
       <file>Croatian.po</file>
       <update>2009-02-13</update>
       <strings>
-        <count>1000</count>
-        <translated>645</translated>
+        <count>1018</count>
+        <translated>643</translated>
         <fuzzy>1</fuzzy>
-        <untranslated>354</untranslated>
+        <untranslated>374</untranslated>
       </strings>
       <translators>
         <translator>
       <file>Czech.po</file>
       <update></update>
       <strings>
-        <count>1000</count>
-        <translated>616</translated>
+        <count>1018</count>
+        <translated>614</translated>
         <fuzzy>0</fuzzy>
-        <untranslated>384</untranslated>
+        <untranslated>404</untranslated>
       </strings>
       <translators>
         <translator>
       <file>Danish.po</file>
       <update>2013-01-13</update>
       <strings>
-        <count>1000</count>
-        <translated>654</translated>
+        <count>1018</count>
+        <translated>652</translated>
         <fuzzy>0</fuzzy>
-        <untranslated>346</untranslated>
+        <untranslated>366</untranslated>
       </strings>
       <translators>
         <translator>
       <file>Dutch.po</file>
       <update>2018-09-06</update>
       <strings>
-        <count>1000</count>
-        <translated>993</translated>
+        <count>1018</count>
+        <translated>991</translated>
         <fuzzy>0</fuzzy>
-        <untranslated>7</untranslated>
+        <untranslated>27</untranslated>
       </strings>
       <translators>
         <translator>
     <translation template="1">
       <language>English</language>
       <file>English.pot</file>
-      <update>2021-01-08</update>
+      <update>2021-01-09</update>
       <strings>
-        <count>1000</count>
-        <translated>1000</translated>
+        <count>1018</count>
+        <translated>1018</translated>
         <fuzzy>0</fuzzy>
         <untranslated>0</untranslated>
       </strings>
       <file>Finnish.po</file>
       <update></update>
       <strings>
-        <count>1000</count>
-        <translated>919</translated>
+        <count>1018</count>
+        <translated>917</translated>
         <fuzzy>0</fuzzy>
-        <untranslated>81</untranslated>
+        <untranslated>101</untranslated>
       </strings>
     </translation>
     <translation>
       <file>French.po</file>
       <update>2019-06-02</update>
       <strings>
-        <count>1000</count>
-        <translated>912</translated>
+        <count>1018</count>
+        <translated>910</translated>
         <fuzzy>2</fuzzy>
-        <untranslated>86</untranslated>
+        <untranslated>106</untranslated>
       </strings>
       <translators>
         <translator maintainer="1">
       <file>Galician.po</file>
       <update>2021-01-04</update>
       <strings>
-        <count>1000</count>
-        <translated>1000</translated>
+        <count>1018</count>
+        <translated>998</translated>
         <fuzzy>0</fuzzy>
-        <untranslated>0</untranslated>
+        <untranslated>20</untranslated>
       </strings>
       <translators>
         <translator>
       <file>German.po</file>
       <update>2020-12-31</update>
       <strings>
-        <count>1000</count>
-        <translated>1000</translated>
+        <count>1018</count>
+        <translated>998</translated>
         <fuzzy>0</fuzzy>
-        <untranslated>0</untranslated>
+        <untranslated>20</untranslated>
       </strings>
       <translators>
         <translator maintainer="1">
       <file>Greek.po</file>
       <update></update>
       <strings>
-        <count>1000</count>
-        <translated>617</translated>
+        <count>1018</count>
+        <translated>615</translated>
         <fuzzy>0</fuzzy>
-        <untranslated>383</untranslated>
+        <untranslated>403</untranslated>
       </strings>
       <translators>
         <translator>
       <file>Hungarian.po</file>
       <update>2011-01-24</update>
       <strings>
-        <count>1000</count>
-        <translated>550</translated>
+        <count>1018</count>
+        <translated>548</translated>
         <fuzzy>0</fuzzy>
-        <untranslated>450</untranslated>
+        <untranslated>470</untranslated>
       </strings>
       <translators>
         <translator>
       <file>Italian.po</file>
       <update>2019-07-12</update>
       <strings>
-        <count>1000</count>
-        <translated>922</translated>
+        <count>1018</count>
+        <translated>920</translated>
         <fuzzy>0</fuzzy>
-        <untranslated>78</untranslated>
+        <untranslated>98</untranslated>
       </strings>
       <translators>
         <translator>
       <file>Japanese.po</file>
       <update>2021-01-02</update>
       <strings>
-        <count>1000</count>
-        <translated>1000</translated>
+        <count>1018</count>
+        <translated>998</translated>
         <fuzzy>0</fuzzy>
-        <untranslated>0</untranslated>
+        <untranslated>20</untranslated>
       </strings>
       <translators>
         <translator>
       <file>Korean.po</file>
       <update>2018-02-05</update>
       <strings>
-        <count>1000</count>
-        <translated>876</translated>
+        <count>1018</count>
+        <translated>874</translated>
         <fuzzy>0</fuzzy>
-        <untranslated>124</untranslated>
+        <untranslated>144</untranslated>
       </strings>
       <translators>
         <translator>
       <file>Lithuanian.po</file>
       <update>2021-01-02</update>
       <strings>
-        <count>1000</count>
-        <translated>1000</translated>
+        <count>1018</count>
+        <translated>998</translated>
         <fuzzy>0</fuzzy>
-        <untranslated>0</untranslated>
+        <untranslated>20</untranslated>
       </strings>
       <translators>
         <translator>
       <file>Norwegian.po</file>
       <update></update>
       <strings>
-        <count>1000</count>
-        <translated>646</translated>
+        <count>1018</count>
+        <translated>644</translated>
         <fuzzy>0</fuzzy>
-        <untranslated>354</untranslated>
+        <untranslated>374</untranslated>
       </strings>
       <translators>
         <translator>
       <file>Persian.po</file>
       <update>2013-08-15</update>
       <strings>
-        <count>1000</count>
-        <translated>657</translated>
+        <count>1018</count>
+        <translated>655</translated>
         <fuzzy>0</fuzzy>
-        <untranslated>343</untranslated>
+        <untranslated>363</untranslated>
       </strings>
       <translators>
         <translator>
       <file>Polish.po</file>
       <update></update>
       <strings>
-        <count>1000</count>
-        <translated>962</translated>
+        <count>1018</count>
+        <translated>960</translated>
         <fuzzy>0</fuzzy>
-        <untranslated>38</untranslated>
+        <untranslated>58</untranslated>
       </strings>
       <translators>
         <translator>
       <file>Portuguese.po</file>
       <update>2020-11-29</update>
       <strings>
-        <count>1000</count>
-        <translated>997</translated>
+        <count>1018</count>
+        <translated>995</translated>
         <fuzzy>0</fuzzy>
-        <untranslated>3</untranslated>
+        <untranslated>23</untranslated>
       </strings>
       <translators>
         <translator>
       <file>Romanian.po</file>
       <update></update>
       <strings>
-        <count>1000</count>
-        <translated>575</translated>
+        <count>1018</count>
+        <translated>573</translated>
         <fuzzy>44</fuzzy>
-        <untranslated>381</untranslated>
+        <untranslated>401</untranslated>
       </strings>
       <translators>
         <translator>
       <file>Russian.po</file>
       <update>2020-11-29</update>
       <strings>
-        <count>1000</count>
-        <translated>993</translated>
+        <count>1018</count>
+        <translated>991</translated>
         <fuzzy>0</fuzzy>
-        <untranslated>7</untranslated>
+        <untranslated>27</untranslated>
       </strings>
       <translators>
         <translator>
       <file>Serbian.po</file>
       <update></update>
       <strings>
-        <count>1000</count>
-        <translated>645</translated>
+        <count>1018</count>
+        <translated>643</translated>
         <fuzzy>0</fuzzy>
-        <untranslated>355</untranslated>
+        <untranslated>375</untranslated>
       </strings>
       <translators>
         <translator>
       <file>Sinhala.po</file>
       <update>2010-12-12</update>
       <strings>
-        <count>1000</count>
-        <translated>574</translated>
-        <fuzzy>64</fuzzy>
-        <untranslated>362</untranslated>
+        <count>1018</count>
+        <translated>573</translated>
+        <fuzzy>63</fuzzy>
+        <untranslated>382</untranslated>
       </strings>
       <translators>
         <translator>
       <file>Slovak.po</file>
       <update>2020-11-02</update>
       <strings>
-        <count>1000</count>
-        <translated>992</translated>
+        <count>1018</count>
+        <translated>990</translated>
         <fuzzy>0</fuzzy>
-        <untranslated>8</untranslated>
+        <untranslated>28</untranslated>
       </strings>
       <translators>
         <translator>
       <file>Slovenian.po</file>
       <update>2020-12-29</update>
       <strings>
-        <count>1000</count>
-        <translated>999</translated>
+        <count>1018</count>
+        <translated>997</translated>
         <fuzzy>0</fuzzy>
-        <untranslated>1</untranslated>
+        <untranslated>21</untranslated>
       </strings>
       <translators>
         <translator>
       <file>Spanish.po</file>
       <update>2020-04-03</update>
       <strings>
-        <count>1000</count>
-        <translated>888</translated>
+        <count>1018</count>
+        <translated>886</translated>
         <fuzzy>0</fuzzy>
-        <untranslated>112</untranslated>
+        <untranslated>132</untranslated>
       </strings>
       <translators>
         <translator>
       <file>Swedish.po</file>
       <update>2019-10-07</update>
       <strings>
-        <count>1000</count>
-        <translated>922</translated>
+        <count>1018</count>
+        <translated>920</translated>
         <fuzzy>0</fuzzy>
-        <untranslated>78</untranslated>
+        <untranslated>98</untranslated>
       </strings>
       <translators>
         <translator>
       <file>Turkish.po</file>
       <update>2020-09-08</update>
       <strings>
-        <count>1000</count>
-        <translated>988</translated>
+        <count>1018</count>
+        <translated>986</translated>
         <fuzzy>0</fuzzy>
-        <untranslated>12</untranslated>
+        <untranslated>32</untranslated>
       </strings>
       <translators>
         <translator>
       <file>Ukrainian.po</file>
       <update>2009-06-13</update>
       <strings>
-        <count>1000</count>
-        <translated>651</translated>
+        <count>1018</count>
+        <translated>649</translated>
         <fuzzy>0</fuzzy>
-        <untranslated>349</untranslated>
+        <untranslated>369</untranslated>
       </strings>
       <translators>
         <translator>
index fc7e3c3..472a52e 100644 (file)
@@ -42,6 +42,9 @@ msgstr "نسخ م&ن اليمين"
 msgid "&Select Line Difference\tF4"
 msgstr "تحديد الاختلاف في الس&طر\tF4"
 
+msgid "Add this change to &Ignored Substitutions"
+msgstr ""
+
 msgid "&Undo"
 msgstr "&تراجع"
 
@@ -1112,8 +1115,8 @@ msgstr "&موافق"
 msgid "&Apply"
 msgstr "ت&طبيق"
 
-msgid "Linefilters"
-msgstr "مرشحات الأسطر"
+msgid "Line Filters"
+msgstr ""
 
 msgid "Enable Line Filters"
 msgstr "تفعيل مرشحات الأسطر"
@@ -1127,6 +1130,30 @@ msgstr "تعديل"
 msgid "Remove"
 msgstr "حذف"
 
+msgid "Ignored Substitutions"
+msgstr ""
+
+msgid "Enable"
+msgstr ""
+
+msgid "Add"
+msgstr ""
+
+msgid "The changes that appear on the panels as the listed pairs below will be ignored or marked as insignificant. Patches are unaffected."
+msgstr ""
+
+msgid "Ignore changes in both directions"
+msgstr ""
+
+msgid "Completely unhighlight the ignored changes"
+msgstr ""
+
+msgid "Use regular expressions"
+msgstr ""
+
+msgid "Clear"
+msgstr ""
+
 msgid "Colors"
 msgstr "ألوان"
 
@@ -1391,8 +1418,8 @@ msgstr "رمو&ز الفصل للكلمات:"
 msgid "&Rendering Mode:"
 msgstr ""
 
-msgid "Filefilters"
-msgstr "مرشحات الملفات"
+msgid "File Filters"
+msgstr ""
 
 msgid "Test..."
 msgstr "اختبار..."
@@ -2187,6 +2214,9 @@ msgstr "الوسط غير معنون"
 msgid "Untitled right"
 msgstr "اليمين غير معنون"
 
+msgid "Base File"
+msgstr ""
+
 msgid "Theirs File"
 msgstr "ملفهم"
 
@@ -2361,6 +2391,10 @@ msgstr ""
 "هل تريد حفظ النسخة التي تم فك تحزيمها إلى ملف آخر؟"
 
 #, c-format
+msgid "Plugin '%2' cannot pack your changes to the middle file back into '%1'.\n\nThe original file will not be changed.\n\nDo you want to save the unpacked version to another file?"
+msgstr ""
+
+#, c-format
 msgid ""
 "Plugin '%2' cannot pack your changes to the right file back into '%1'.\n"
 "\n"
@@ -3501,3 +3535,24 @@ msgstr ""
 msgid "Rc: (%d, %d)  "
 msgstr ""
 
+msgid "On one panel"
+msgstr ""
+
+msgid "On the other panel"
+msgstr ""
+
+msgid "<Edit here>"
+msgstr ""
+
+msgid "No differences to select found"
+msgstr ""
+
+msgid "No differences found to add as ignored substitution"
+msgstr ""
+
+msgid "The pair is already present in the list of Ignored Substiturions"
+msgstr ""
+
+msgid "Add this change to Ignored Substitutions?"
+msgstr ""
+
index 1bb0663..0e3b6d9 100644 (file)
@@ -50,6 +50,9 @@ msgstr ""
 msgid "&Select Line Difference\tF4"
 msgstr "Hautatu &Lerro Ezberdintasuna\tF4"
 
+msgid "Add this change to &Ignored Substitutions"
+msgstr ""
+
 #, c-format
 msgid "&Undo"
 msgstr "&Desegin"
@@ -1404,9 +1407,8 @@ msgstr "&Ongi"
 msgid "&Apply"
 msgstr "&Ezarri"
 
-#, c-format
-msgid "Linefilters"
-msgstr "Lerro-iragazkiak"
+msgid "Line Filters"
+msgstr ""
 
 #, c-format
 msgid "Enable Line Filters"
@@ -1424,6 +1426,30 @@ msgstr "Editatu"
 msgid "Remove"
 msgstr "Kendu"
 
+msgid "Ignored Substitutions"
+msgstr ""
+
+msgid "Enable"
+msgstr ""
+
+msgid "Add"
+msgstr ""
+
+msgid "The changes that appear on the panels as the listed pairs below will be ignored or marked as insignificant. Patches are unaffected."
+msgstr ""
+
+msgid "Ignore changes in both directions"
+msgstr ""
+
+msgid "Completely unhighlight the ignored changes"
+msgstr ""
+
+msgid "Use regular expressions"
+msgstr ""
+
+msgid "Clear"
+msgstr ""
+
 #, c-format
 msgid "Colors"
 msgstr "Margoak"
@@ -1760,9 +1786,8 @@ msgstr ""
 msgid "&Rendering Mode:"
 msgstr ""
 
-#, c-format
-msgid "Filefilters"
-msgstr "Agiri-iragazkiak"
+msgid "File Filters"
+msgstr ""
 
 msgid "Test..."
 msgstr "Azterketa..."
@@ -2700,6 +2725,9 @@ msgstr ""
 msgid "Untitled right"
 msgstr "Izenburugabeko eskuina"
 
+msgid "Base File"
+msgstr ""
+
 #, c-format
 msgid "Theirs File"
 msgstr "Theirs Agiria"
@@ -2893,6 +2921,10 @@ msgstr ""
 "Nahi duzu despaketatutako bertsioa beste agiri batean gordetzea?"
 
 #, c-format
+msgid "Plugin '%2' cannot pack your changes to the middle file back into '%1'.\n\nThe original file will not be changed.\n\nDo you want to save the unpacked version to another file?"
+msgstr ""
+
+#, c-format
 msgid ""
 "Plugin '%2' cannot pack your changes to the right file back into '%1'.\n"
 "\n"
@@ -4111,3 +4143,24 @@ msgstr ""
 msgid "Rc: (%d, %d)  "
 msgstr ""
 
+msgid "On one panel"
+msgstr ""
+
+msgid "On the other panel"
+msgstr ""
+
+msgid "<Edit here>"
+msgstr ""
+
+msgid "No differences to select found"
+msgstr ""
+
+msgid "No differences found to add as ignored substitution"
+msgstr ""
+
+msgid "The pair is already present in the list of Ignored Substiturions"
+msgstr ""
+
+msgid "Add this change to Ignored Substitutions?"
+msgstr ""
+
index 60216f2..2611d46 100644 (file)
@@ -49,6 +49,9 @@ msgstr "Copiar d&a Direita"
 msgid "&Select Line Difference\tF4"
 msgstr "&Selecionar a Diferença da Linha\tF4"
 
+msgid "Add this change to &Ignored Substitutions"
+msgstr ""
+
 #, c-format
 msgid "&Undo"
 msgstr "&Desfazer"
@@ -1402,9 +1405,8 @@ msgstr "&Ok"
 msgid "&Apply"
 msgstr "&Aplicar"
 
-#, c-format
-msgid "Linefilters"
-msgstr "Filtros das Linhas"
+msgid "Line Filters"
+msgstr ""
 
 #, c-format
 msgid "Enable Line Filters"
@@ -1422,6 +1424,30 @@ msgstr "Editar"
 msgid "Remove"
 msgstr "Remover"
 
+msgid "Ignored Substitutions"
+msgstr ""
+
+msgid "Enable"
+msgstr ""
+
+msgid "Add"
+msgstr ""
+
+msgid "The changes that appear on the panels as the listed pairs below will be ignored or marked as insignificant. Patches are unaffected."
+msgstr ""
+
+msgid "Ignore changes in both directions"
+msgstr ""
+
+msgid "Completely unhighlight the ignored changes"
+msgstr ""
+
+msgid "Use regular expressions"
+msgstr ""
+
+msgid "Clear"
+msgstr ""
+
 #, c-format
 msgid "Colors"
 msgstr "Cores"
@@ -1759,9 +1785,8 @@ msgstr "C&aracters da quebra de linha:"
 msgid "&Rendering Mode:"
 msgstr "Modo de &Renderização:"
 
-#, c-format
-msgid "Filefilters"
-msgstr "Filtros dos arquivos"
+msgid "File Filters"
+msgstr ""
 
 msgid "Test..."
 msgstr "Teste..."
@@ -2727,6 +2752,9 @@ msgstr "Do Meio sem título"
 msgid "Untitled right"
 msgstr "Sem título a direita"
 
+msgid "Base File"
+msgstr ""
+
 #, c-format
 msgid "Theirs File"
 msgstr "O Arquivo Deles"
@@ -2928,6 +2956,10 @@ msgstr ""
 "Você quer salvar a versão desempacotada em outro arquivo?"
 
 #, c-format
+msgid "Plugin '%2' cannot pack your changes to the middle file back into '%1'.\n\nThe original file will not be changed.\n\nDo you want to save the unpacked version to another file?"
+msgstr ""
+
+#, c-format
 msgid ""
 "Plugin '%2' cannot pack your changes to the right file back into '%1'.\n"
 "\n"
@@ -4232,3 +4264,24 @@ msgstr "Page: %d/%d  Zoom: %d%%  %dx%dpx  %dbpp"
 msgid "Rc: (%d, %d)  "
 msgstr ""
 
+msgid "On one panel"
+msgstr ""
+
+msgid "On the other panel"
+msgstr ""
+
+msgid "<Edit here>"
+msgstr ""
+
+msgid "No differences to select found"
+msgstr ""
+
+msgid "No differences found to add as ignored substitution"
+msgstr ""
+
+msgid "The pair is already present in the list of Ignored Substiturions"
+msgstr ""
+
+msgid "Add this change to Ignored Substitutions?"
+msgstr ""
+
index 1fec572..ea98a3a 100644 (file)
@@ -38,6 +38,9 @@ msgstr "Копиране отд&ясно"
 msgid "&Select Line Difference\tF4"
 msgstr "&Избиране на разликите на реда\tF4"
 
+msgid "Add this change to &Ignored Substitutions"
+msgstr ""
+
 msgid "&Undo"
 msgstr "О&тменяне"
 
@@ -1106,8 +1109,8 @@ msgstr "&Добре"
 msgid "&Apply"
 msgstr "&Прилагане"
 
-msgid "Linefilters"
-msgstr "Филтри за ред"
+msgid "Line Filters"
+msgstr ""
 
 msgid "Enable Line Filters"
 msgstr "Включи филтри за ред"
@@ -1121,6 +1124,30 @@ msgstr "Променяне"
 msgid "Remove"
 msgstr "Премахване"
 
+msgid "Ignored Substitutions"
+msgstr ""
+
+msgid "Enable"
+msgstr ""
+
+msgid "Add"
+msgstr ""
+
+msgid "The changes that appear on the panels as the listed pairs below will be ignored or marked as insignificant. Patches are unaffected."
+msgstr ""
+
+msgid "Ignore changes in both directions"
+msgstr ""
+
+msgid "Completely unhighlight the ignored changes"
+msgstr ""
+
+msgid "Use regular expressions"
+msgstr ""
+
+msgid "Clear"
+msgstr ""
+
 msgid "Colors"
 msgstr "Цветове"
 
@@ -1385,8 +1412,8 @@ msgstr "Символ за пренасяне на &дума:"
 msgid "&Rendering Mode:"
 msgstr "&Режим на изчертаване:"
 
-msgid "Filefilters"
-msgstr "Филтри за файлове"
+msgid "File Filters"
+msgstr ""
 
 msgid "Test..."
 msgstr "Изпробване..."
@@ -2168,6 +2195,9 @@ msgstr "Неозаглавен среден"
 msgid "Untitled right"
 msgstr "Неозаглавен десен"
 
+msgid "Base File"
+msgstr ""
+
 msgid "Theirs File"
 msgstr "Техен файл"
 
@@ -2344,6 +2374,10 @@ msgstr ""
 "Искате ли да запишете непакетирана версия в друг файл?"
 
 #, c-format
+msgid "Plugin '%2' cannot pack your changes to the middle file back into '%1'.\n\nThe original file will not be changed.\n\nDo you want to save the unpacked version to another file?"
+msgstr ""
+
+#, c-format
 msgid ""
 "Plugin '%2' cannot pack your changes to the right file back into '%1'.\n"
 "\n"
@@ -3472,3 +3506,24 @@ msgstr ""
 msgid "Rc: (%d, %d)  "
 msgstr ""
 
+msgid "On one panel"
+msgstr ""
+
+msgid "On the other panel"
+msgstr ""
+
+msgid "<Edit here>"
+msgstr ""
+
+msgid "No differences to select found"
+msgstr ""
+
+msgid "No differences found to add as ignored substitution"
+msgstr ""
+
+msgid "The pair is already present in the list of Ignored Substiturions"
+msgstr ""
+
+msgid "Add this change to Ignored Substitutions?"
+msgstr ""
+
index 23a45e8..541f9ad 100644 (file)
@@ -46,6 +46,9 @@ msgstr "Copia des de la dreta"
 msgid "&Select Line Difference\tF4"
 msgstr "&Selecciona la diferència a la línia\tF4"
 
+msgid "Add this change to &Ignored Substitutions"
+msgstr ""
+
 #, c-format
 msgid "&Undo"
 msgstr "&Desfés"
@@ -1401,9 +1404,8 @@ msgstr "&D'acord"
 msgid "&Apply"
 msgstr "&Aplica"
 
-#, c-format
-msgid "Linefilters"
-msgstr "Filtres de línia"
+msgid "Line Filters"
+msgstr ""
 
 #, c-format
 msgid "Enable Line Filters"
@@ -1421,6 +1423,30 @@ msgstr "Edita"
 msgid "Remove"
 msgstr "Suprimeix"
 
+msgid "Ignored Substitutions"
+msgstr ""
+
+msgid "Enable"
+msgstr ""
+
+msgid "Add"
+msgstr ""
+
+msgid "The changes that appear on the panels as the listed pairs below will be ignored or marked as insignificant. Patches are unaffected."
+msgstr ""
+
+msgid "Ignore changes in both directions"
+msgstr ""
+
+msgid "Completely unhighlight the ignored changes"
+msgstr ""
+
+msgid "Use regular expressions"
+msgstr ""
+
+msgid "Clear"
+msgstr ""
+
 #, c-format
 msgid "Colors"
 msgstr ""
@@ -1758,9 +1784,8 @@ msgstr ""
 msgid "&Rendering Mode:"
 msgstr ""
 
-#, c-format
-msgid "Filefilters"
-msgstr "Filtres de fitxer"
+msgid "File Filters"
+msgstr ""
 
 msgid "Test..."
 msgstr "&Prova..."
@@ -2663,6 +2688,9 @@ msgstr ""
 msgid "Untitled right"
 msgstr "Fitxer dret sense títol"
 
+msgid "Base File"
+msgstr ""
+
 #, c-format
 msgid "Theirs File"
 msgstr ""
@@ -2850,6 +2878,10 @@ msgstr ""
 "Voleu desar la versió desempaquetada en un altre fitxer?"
 
 #, c-format
+msgid "Plugin '%2' cannot pack your changes to the middle file back into '%1'.\n\nThe original file will not be changed.\n\nDo you want to save the unpacked version to another file?"
+msgstr ""
+
+#, c-format
 msgid ""
 "Plugin '%2' cannot pack your changes to the right file back into '%1'.\n"
 "\n"
@@ -4040,3 +4072,24 @@ msgstr ""
 msgid "Rc: (%d, %d)  "
 msgstr ""
 
+msgid "On one panel"
+msgstr ""
+
+msgid "On the other panel"
+msgstr ""
+
+msgid "<Edit here>"
+msgstr ""
+
+msgid "No differences to select found"
+msgstr ""
+
+msgid "No differences found to add as ignored substitution"
+msgstr ""
+
+msgid "The pair is already present in the list of Ignored Substiturions"
+msgstr ""
+
+msgid "Add this change to Ignored Substitutions?"
+msgstr ""
+
index 544b0c0..ae0e53a 100644 (file)
@@ -44,6 +44,9 @@ msgstr "从右侧复制(&M)"
 msgid "&Select Line Difference\tF4"
 msgstr "选中行内差异(&S)\tF4"
 
+msgid "Add this change to &Ignored Substitutions"
+msgstr ""
+
 msgid "&Undo"
 msgstr "撤销(&U)"
 
@@ -1113,8 +1116,8 @@ msgstr "确定(&O)"
 msgid "&Apply"
 msgstr "应用(&A)"
 
-msgid "Linefilters"
-msgstr "行过滤器"
+msgid "Line Filters"
+msgstr ""
 
 msgid "Enable Line Filters"
 msgstr "忽略符合下列样式的行"
@@ -1128,6 +1131,30 @@ msgstr "编辑"
 msgid "Remove"
 msgstr "删除"
 
+msgid "Ignored Substitutions"
+msgstr ""
+
+msgid "Enable"
+msgstr ""
+
+msgid "Add"
+msgstr ""
+
+msgid "The changes that appear on the panels as the listed pairs below will be ignored or marked as insignificant. Patches are unaffected."
+msgstr ""
+
+msgid "Ignore changes in both directions"
+msgstr ""
+
+msgid "Completely unhighlight the ignored changes"
+msgstr ""
+
+msgid "Use regular expressions"
+msgstr ""
+
+msgid "Clear"
+msgstr ""
+
 msgid "Colors"
 msgstr "颜色"
 
@@ -1392,8 +1419,8 @@ msgstr "单词分隔字符:"
 msgid "&Rendering Mode:"
 msgstr "渲染模式(&R)"
 
-msgid "Filefilters"
-msgstr "文件过滤器"
+msgid "File Filters"
+msgstr ""
 
 msgid "Test..."
 msgstr "测试..."
@@ -2199,6 +2226,9 @@ msgstr "未命名 中"
 msgid "Untitled right"
 msgstr "未命名 右"
 
+msgid "Base File"
+msgstr ""
+
 msgid "Theirs File"
 msgstr "他们的文件"
 
@@ -2389,6 +2419,10 @@ msgstr ""
 "是否将未打包的版本另存为其他文件?"
 
 #, c-format
+msgid "Plugin '%2' cannot pack your changes to the middle file back into '%1'.\n\nThe original file will not be changed.\n\nDo you want to save the unpacked version to another file?"
+msgstr ""
+
+#, c-format
 msgid ""
 "Plugin '%2' cannot pack your changes to the right file back into '%1'.\n"
 "\n"
@@ -3540,3 +3574,24 @@ msgstr "页: %d/%d  缩放: %d%%  %dx%dpx  %dbpp"
 msgid "Rc: (%d, %d)  "
 msgstr ""
 
+msgid "On one panel"
+msgstr ""
+
+msgid "On the other panel"
+msgstr ""
+
+msgid "<Edit here>"
+msgstr ""
+
+msgid "No differences to select found"
+msgstr ""
+
+msgid "No differences found to add as ignored substitution"
+msgstr ""
+
+msgid "The pair is already present in the list of Ignored Substiturions"
+msgstr ""
+
+msgid "Add this change to Ignored Substitutions?"
+msgstr ""
+
index a757a02..5e4854d 100644 (file)
@@ -49,6 +49,9 @@ msgstr "從右邊複製(&M)"
 msgid "&Select Line Difference\tF4"
 msgstr "選取行內差異(&S)\tF4"
 
+msgid "Add this change to &Ignored Substitutions"
+msgstr ""
+
 #, c-format
 msgid "&Undo"
 msgstr "復原(&U)"
@@ -1412,9 +1415,8 @@ msgstr "確定(&O)"
 msgid "&Apply"
 msgstr "套用(&A)"
 
-#, c-format
-msgid "Linefilters"
-msgstr "行之篩除器"
+msgid "Line Filters"
+msgstr ""
 
 #, c-format
 msgid "Enable Line Filters"
@@ -1432,6 +1434,30 @@ msgstr "編輯"
 msgid "Remove"
 msgstr "移除"
 
+msgid "Ignored Substitutions"
+msgstr ""
+
+msgid "Enable"
+msgstr ""
+
+msgid "Add"
+msgstr ""
+
+msgid "The changes that appear on the panels as the listed pairs below will be ignored or marked as insignificant. Patches are unaffected."
+msgstr ""
+
+msgid "Ignore changes in both directions"
+msgstr ""
+
+msgid "Completely unhighlight the ignored changes"
+msgstr ""
+
+msgid "Use regular expressions"
+msgstr ""
+
+msgid "Clear"
+msgstr ""
+
 #, c-format
 msgid "Colors"
 msgstr "色彩"
@@ -1769,9 +1795,8 @@ msgstr "斷句字元(&O):"
 msgid "&Rendering Mode:"
 msgstr ""
 
-#, c-format
-msgid "Filefilters"
-msgstr "檔案篩選器"
+msgid "File Filters"
+msgstr ""
 
 msgid "Test..."
 msgstr "測試..."
@@ -2711,6 +2736,9 @@ msgstr "未設標題的中間"
 msgid "Untitled right"
 msgstr "未設標題的右邊"
 
+msgid "Base File"
+msgstr ""
+
 #, c-format
 msgid "Theirs File"
 msgstr "他們的(檔案)"
@@ -2904,6 +2932,10 @@ msgstr ""
 "要儲存解壓縮版成另一檔案嗎?"
 
 #, c-format
+msgid "Plugin '%2' cannot pack your changes to the middle file back into '%1'.\n\nThe original file will not be changed.\n\nDo you want to save the unpacked version to another file?"
+msgstr ""
+
+#, c-format
 msgid ""
 "Plugin '%2' cannot pack your changes to the right file back into '%1'.\n"
 "\n"
@@ -4120,3 +4152,24 @@ msgstr ""
 msgid "Rc: (%d, %d)  "
 msgstr ""
 
+msgid "On one panel"
+msgstr ""
+
+msgid "On the other panel"
+msgstr ""
+
+msgid "<Edit here>"
+msgstr ""
+
+msgid "No differences to select found"
+msgstr ""
+
+msgid "No differences found to add as ignored substitution"
+msgstr ""
+
+msgid "The pair is already present in the list of Ignored Substiturions"
+msgstr ""
+
+msgid "Add this change to Ignored Substitutions?"
+msgstr ""
+
index 61d8a83..fcd8866 100644 (file)
@@ -47,6 +47,9 @@ msgstr ""
 msgid "&Select Line Difference\tF4"
 msgstr "&Označi različite retke\tF4"
 
+msgid "Add this change to &Ignored Substitutions"
+msgstr ""
+
 #, c-format
 msgid "&Undo"
 msgstr "&Poništi"
@@ -1402,9 +1405,8 @@ msgstr "&U redu"
 msgid "&Apply"
 msgstr "&Primjeni"
 
-#, c-format
-msgid "Linefilters"
-msgstr "Filtar redaka"
+msgid "Line Filters"
+msgstr ""
 
 #, c-format
 msgid "Enable Line Filters"
@@ -1422,6 +1424,30 @@ msgstr "Uređivanje"
 msgid "Remove"
 msgstr "Ukloni"
 
+msgid "Ignored Substitutions"
+msgstr ""
+
+msgid "Enable"
+msgstr ""
+
+msgid "Add"
+msgstr ""
+
+msgid "The changes that appear on the panels as the listed pairs below will be ignored or marked as insignificant. Patches are unaffected."
+msgstr ""
+
+msgid "Ignore changes in both directions"
+msgstr ""
+
+msgid "Completely unhighlight the ignored changes"
+msgstr ""
+
+msgid "Use regular expressions"
+msgstr ""
+
+msgid "Clear"
+msgstr ""
+
 #, c-format
 msgid "Colors"
 msgstr "Boje"
@@ -1759,9 +1785,8 @@ msgstr ""
 msgid "&Rendering Mode:"
 msgstr ""
 
-#, c-format
-msgid "Filefilters"
-msgstr "Filtar redaka"
+msgid "File Filters"
+msgstr ""
 
 msgid "Test..."
 msgstr "Test..."
@@ -2699,6 +2724,9 @@ msgstr ""
 msgid "Untitled right"
 msgstr "Neimenovan"
 
+msgid "Base File"
+msgstr ""
+
 #, c-format
 msgid "Theirs File"
 msgstr "Tuđe datoteke"
@@ -2892,6 +2920,10 @@ msgstr ""
 "Pohraniti nespakiranu verziju kao datoteku?"
 
 #, c-format
+msgid "Plugin '%2' cannot pack your changes to the middle file back into '%1'.\n\nThe original file will not be changed.\n\nDo you want to save the unpacked version to another file?"
+msgstr ""
+
+#, c-format
 msgid ""
 "Plugin '%2' cannot pack your changes to the right file back into '%1'.\n"
 "\n"
@@ -4111,3 +4143,24 @@ msgstr ""
 msgid "Rc: (%d, %d)  "
 msgstr ""
 
+msgid "On one panel"
+msgstr ""
+
+msgid "On the other panel"
+msgstr ""
+
+msgid "<Edit here>"
+msgstr ""
+
+msgid "No differences to select found"
+msgstr ""
+
+msgid "No differences found to add as ignored substitution"
+msgstr ""
+
+msgid "The pair is already present in the list of Ignored Substiturions"
+msgstr ""
+
+msgid "Add this change to Ignored Substitutions?"
+msgstr ""
+
index b6b78dc..5b2c507 100644 (file)
@@ -47,6 +47,9 @@ msgstr ""
 msgid "&Select Line Difference\tF4"
 msgstr "Vybrat roz&díl v řádku\tF4"
 
+msgid "Add this change to &Ignored Substitutions"
+msgstr ""
+
 #, c-format
 msgid "&Undo"
 msgstr "&Zpět"
@@ -1404,9 +1407,8 @@ msgstr "&OK"
 msgid "&Apply"
 msgstr "P&oužít"
 
-#, c-format
-msgid "Linefilters"
-msgstr "Filtrování řádků"
+msgid "Line Filters"
+msgstr ""
 
 #, c-format
 msgid "Enable Line Filters"
@@ -1424,6 +1426,30 @@ msgstr "Upr&avit"
 msgid "Remove"
 msgstr "O&dstranit"
 
+msgid "Ignored Substitutions"
+msgstr ""
+
+msgid "Enable"
+msgstr ""
+
+msgid "Add"
+msgstr ""
+
+msgid "The changes that appear on the panels as the listed pairs below will be ignored or marked as insignificant. Patches are unaffected."
+msgstr ""
+
+msgid "Ignore changes in both directions"
+msgstr ""
+
+msgid "Completely unhighlight the ignored changes"
+msgstr ""
+
+msgid "Use regular expressions"
+msgstr ""
+
+msgid "Clear"
+msgstr ""
+
 #, c-format
 msgid "Colors"
 msgstr "Barvy"
@@ -1761,9 +1787,8 @@ msgstr "Zn&aky oddělující slova:"
 msgid "&Rendering Mode:"
 msgstr ""
 
-#, c-format
-msgid "Filefilters"
-msgstr "Filtrování souborů"
+msgid "File Filters"
+msgstr ""
 
 msgid "Test..."
 msgstr "Z&kouška..."
@@ -2666,6 +2691,9 @@ msgstr ""
 msgid "Untitled right"
 msgstr "Bez názvu vpravo"
 
+msgid "Base File"
+msgstr ""
+
 #, c-format
 msgid "Theirs File"
 msgstr ""
@@ -2853,6 +2881,10 @@ msgstr ""
 "Chcete uložit převedenou verzi do jiného souboru?"
 
 #, c-format
+msgid "Plugin '%2' cannot pack your changes to the middle file back into '%1'.\n\nThe original file will not be changed.\n\nDo you want to save the unpacked version to another file?"
+msgstr ""
+
+#, c-format
 msgid ""
 "Plugin '%2' cannot pack your changes to the right file back into '%1'.\n"
 "\n"
@@ -4042,3 +4074,24 @@ msgstr ""
 msgid "Rc: (%d, %d)  "
 msgstr ""
 
+msgid "On one panel"
+msgstr ""
+
+msgid "On the other panel"
+msgstr ""
+
+msgid "<Edit here>"
+msgstr ""
+
+msgid "No differences to select found"
+msgstr ""
+
+msgid "No differences found to add as ignored substitution"
+msgstr ""
+
+msgid "The pair is already present in the list of Ignored Substiturions"
+msgstr ""
+
+msgid "Add this change to Ignored Substitutions?"
+msgstr ""
+
index e0c3fc3..301380c 100644 (file)
@@ -48,6 +48,9 @@ msgstr ""
 msgid "&Select Line Difference\tF4"
 msgstr "&Vælg linjeforskel\tF4""
 
+msgid "Add this change to &Ignored Substitutions"
+msgstr ""
+
 #, c-format
 msgid "&Undo"
 msgstr "&Fortryd"
@@ -1405,9 +1408,8 @@ msgstr "&OK"
 msgid "&Apply"
 msgstr "&Anvend"
 
-#, c-format
-msgid "Linefilters"
-msgstr "Linjefiltre"
+msgid "Line Filters"
+msgstr ""
 
 #, c-format
 msgid "Enable Line Filters"
@@ -1425,6 +1427,30 @@ msgstr "Rediger"
 msgid "Remove"
 msgstr "Fjern"
 
+msgid "Ignored Substitutions"
+msgstr ""
+
+msgid "Enable"
+msgstr ""
+
+msgid "Add"
+msgstr ""
+
+msgid "The changes that appear on the panels as the listed pairs below will be ignored or marked as insignificant. Patches are unaffected."
+msgstr ""
+
+msgid "Ignore changes in both directions"
+msgstr ""
+
+msgid "Completely unhighlight the ignored changes"
+msgstr ""
+
+msgid "Use regular expressions"
+msgstr ""
+
+msgid "Clear"
+msgstr ""
+
 #, c-format
 msgid "Colors"
 msgstr "Farver"
@@ -1762,9 +1788,8 @@ msgstr ""
 msgid "&Rendering Mode:"
 msgstr ""
 
-#, c-format
-msgid "Filefilters"
-msgstr "Filfiltre"
+msgid "File Filters"
+msgstr ""
 
 msgid "Test..."
 msgstr "Test..."
@@ -2715,6 +2740,9 @@ msgstr ""
 msgid "Untitled right"
 msgstr "Ikke navngivet højre"
 
+msgid "Base File"
+msgstr ""
+
 #, c-format
 msgid "Theirs File"
 msgstr "Deres fil"
@@ -2911,6 +2939,10 @@ msgstr ""
 "Vil du gemme den udpakkede version under et andet filnavn?"
 
 #, c-format
+msgid "Plugin '%2' cannot pack your changes to the middle file back into '%1'.\n\nThe original file will not be changed.\n\nDo you want to save the unpacked version to another file?"
+msgstr ""
+
+#, c-format
 msgid ""
 "Plugin '%2' cannot pack your changes to the right file back into '%1'.\n"
 "\n"
@@ -4150,3 +4182,24 @@ msgstr ""
 msgid "Rc: (%d, %d)  "
 msgstr ""
 
+msgid "On one panel"
+msgstr ""
+
+msgid "On the other panel"
+msgstr ""
+
+msgid "<Edit here>"
+msgstr ""
+
+msgid "No differences to select found"
+msgstr ""
+
+msgid "No differences found to add as ignored substitution"
+msgstr ""
+
+msgid "The pair is already present in the list of Ignored Substiturions"
+msgstr ""
+
+msgid "Add this change to Ignored Substitutions?"
+msgstr ""
+
index 5e119e4..76aa6eb 100644 (file)
@@ -42,6 +42,9 @@ msgstr "Van rechts kopiëren"
 msgid "&Select Line Difference\tF4"
 msgstr "Regelverschil selecteren\tF4"
 
+msgid "Add this change to &Ignored Substitutions"
+msgstr ""
+
 msgid "&Undo"
 msgstr "Ongedaan maken"
 
@@ -1113,8 +1116,8 @@ msgstr "Ok"
 msgid "&Apply"
 msgstr "Toepassen"
 
-msgid "Linefilters"
-msgstr "Regelfilters"
+msgid "Line Filters"
+msgstr ""
 
 msgid "Enable Line Filters"
 msgstr "Regelfilters inschakelen"
@@ -1128,6 +1131,30 @@ msgstr "Bewerken"
 msgid "Remove"
 msgstr "Verwijderen"
 
+msgid "Ignored Substitutions"
+msgstr ""
+
+msgid "Enable"
+msgstr ""
+
+msgid "Add"
+msgstr ""
+
+msgid "The changes that appear on the panels as the listed pairs below will be ignored or marked as insignificant. Patches are unaffected."
+msgstr ""
+
+msgid "Ignore changes in both directions"
+msgstr ""
+
+msgid "Completely unhighlight the ignored changes"
+msgstr ""
+
+msgid "Use regular expressions"
+msgstr ""
+
+msgid "Clear"
+msgstr ""
+
 msgid "Colors"
 msgstr "Kleuren"
 
@@ -1392,8 +1419,8 @@ msgstr "Woordsplitsingstekens:"
 msgid "&Rendering Mode:"
 msgstr "Rendermodus:"
 
-msgid "Filefilters"
-msgstr "Bestandsfilters"
+msgid "File Filters"
+msgstr ""
 
 msgid "Test..."
 msgstr "Testen..."
@@ -2200,6 +2227,9 @@ msgstr "Naamloos midden"
 msgid "Untitled right"
 msgstr "Naamloos rechts"
 
+msgid "Base File"
+msgstr ""
+
 msgid "Theirs File"
 msgstr "Hun bestand"
 
@@ -2393,6 +2423,10 @@ msgstr ""
 "Wilt u de uitgepakte versie in een ander bestand opslaan?"
 
 #, c-format
+msgid "Plugin '%2' cannot pack your changes to the middle file back into '%1'.\n\nThe original file will not be changed.\n\nDo you want to save the unpacked version to another file?"
+msgstr ""
+
+#, c-format
 msgid ""
 "Plugin '%2' cannot pack your changes to the right file back into '%1'.\n"
 "\n"
@@ -3549,3 +3583,24 @@ msgstr "Pagina: %d/%d  Zoom: %d%%  %dx%dpx  %dbpp"
 msgid "Rc: (%d, %d)  "
 msgstr ""
 
+msgid "On one panel"
+msgstr ""
+
+msgid "On the other panel"
+msgstr ""
+
+msgid "<Edit here>"
+msgstr ""
+
+msgid "No differences to select found"
+msgstr ""
+
+msgid "No differences found to add as ignored substitution"
+msgstr ""
+
+msgid "The pair is already present in the list of Ignored Substiturions"
+msgstr ""
+
+msgid "Add this change to Ignored Substitutions?"
+msgstr ""
+
index 08c1b58..c15ab1b 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: 2021-01-08 22:03+0000\n"
+"POT-Creation-Date: 2021-01-09 11:00+0000\n"
 "PO-Revision-Date: \n"
 "Last-Translator: \n"
 "Language-Team: English <winmerge-translate@lists.sourceforge.net>\n"
@@ -35,6 +35,9 @@ msgstr ""
 msgid "&Select Line Difference\tF4"
 msgstr ""
 
+msgid "Add this change to &Ignored Substitutions"
+msgstr ""
+
 msgid "&Undo"
 msgstr ""
 
@@ -1101,7 +1104,7 @@ msgstr ""
 msgid "&Apply"
 msgstr ""
 
-msgid "Linefilters"
+msgid "Line Filters"
 msgstr ""
 
 msgid "Enable Line Filters"
@@ -1116,6 +1119,30 @@ msgstr ""
 msgid "Remove"
 msgstr ""
 
+msgid "Ignored Substitutions"
+msgstr ""
+
+msgid "Enable"
+msgstr ""
+
+msgid "Add"
+msgstr ""
+
+msgid "The changes that appear on the panels as the listed pairs below will be ignored or marked as insignificant. Patches are unaffected."
+msgstr ""
+
+msgid "Ignore changes in both directions"
+msgstr ""
+
+msgid "Completely unhighlight the ignored changes"
+msgstr ""
+
+msgid "Use regular expressions"
+msgstr ""
+
+msgid "Clear"
+msgstr ""
+
 msgid "Colors"
 msgstr ""
 
@@ -1380,7 +1407,7 @@ msgstr ""
 msgid "&Rendering Mode:"
 msgstr ""
 
-msgid "Filefilters"
+msgid "File Filters"
 msgstr ""
 
 msgid "Test..."
@@ -2060,6 +2087,9 @@ msgstr ""
 msgid "Untitled right"
 msgstr ""
 
+msgid "Base File"
+msgstr ""
+
 msgid "Theirs File"
 msgstr ""
 
@@ -2195,6 +2225,10 @@ msgid "Plugin '%2' cannot pack your changes to the left file back into '%1'.\n\n
 msgstr ""
 
 #, c-format
+msgid "Plugin '%2' cannot pack your changes to the middle file back into '%1'.\n\nThe original file will not be changed.\n\nDo you want to save the unpacked version to another file?"
+msgstr ""
+
+#, c-format
 msgid "Plugin '%2' cannot pack your changes to the right file back into '%1'.\n\nThe original file will not be changed.\n\nDo you want to save the unpacked version to another file?"
 msgstr ""
 
@@ -3136,3 +3170,24 @@ msgstr ""
 msgid "Rc: (%d, %d)  "
 msgstr ""
 
+msgid "On one panel"
+msgstr ""
+
+msgid "On the other panel"
+msgstr ""
+
+msgid "<Edit here>"
+msgstr ""
+
+msgid "No differences to select found"
+msgstr ""
+
+msgid "No differences found to add as ignored substitution"
+msgstr ""
+
+msgid "The pair is already present in the list of Ignored Substiturions"
+msgstr ""
+
+msgid "Add this change to Ignored Substitutions?"
+msgstr ""
+
index c137183..020319f 100644 (file)
@@ -45,6 +45,9 @@ msgstr "Kopioi &oikealta"
 msgid "&Select Line Difference\tF4"
 msgstr "Valitse riviero\tF4"
 
+msgid "Add this change to &Ignored Substitutions"
+msgstr ""
+
 #, c-format
 msgid "&Undo"
 msgstr "K&umoa"
@@ -1402,9 +1405,8 @@ msgstr "OK"
 msgid "&Apply"
 msgstr "Käytä"
 
-#, c-format
-msgid "Linefilters"
-msgstr "Rivisuodattimet"
+msgid "Line Filters"
+msgstr ""
 
 #, c-format
 msgid "Enable Line Filters"
@@ -1422,6 +1424,30 @@ msgstr "Muokkaa"
 msgid "Remove"
 msgstr "Poista"
 
+msgid "Ignored Substitutions"
+msgstr ""
+
+msgid "Enable"
+msgstr ""
+
+msgid "Add"
+msgstr ""
+
+msgid "The changes that appear on the panels as the listed pairs below will be ignored or marked as insignificant. Patches are unaffected."
+msgstr ""
+
+msgid "Ignore changes in both directions"
+msgstr ""
+
+msgid "Completely unhighlight the ignored changes"
+msgstr ""
+
+msgid "Use regular expressions"
+msgstr ""
+
+msgid "Clear"
+msgstr ""
+
 #, c-format
 msgid "Colors"
 msgstr "Värit"
@@ -1759,9 +1785,8 @@ msgstr "Sanakatk&on merkit:"
 msgid "&Rendering Mode:"
 msgstr ""
 
-#, c-format
-msgid "Filefilters"
-msgstr "Tiedostosuodattimet"
+msgid "File Filters"
+msgstr ""
 
 #, c-format
 msgid "Test..."
@@ -2726,6 +2751,9 @@ msgstr "Nimetön keskimmäinen"
 msgid "Untitled right"
 msgstr "Nimetön oikea"
 
+msgid "Base File"
+msgstr ""
+
 #, c-format
 msgid "Theirs File"
 msgstr "Niiden tiedosto"
@@ -2913,6 +2941,10 @@ msgstr ""
 "Haluatko tallentaa puretun version toiseen tiedostoon?"
 
 #, c-format
+msgid "Plugin '%2' cannot pack your changes to the middle file back into '%1'.\n\nThe original file will not be changed.\n\nDo you want to save the unpacked version to another file?"
+msgstr ""
+
+#, c-format
 msgid ""
 "Plugin '%2' cannot pack your changes to the right file back into '%1'.\n"
 "\n"
@@ -4213,3 +4245,24 @@ msgstr ""
 msgid "Rc: (%d, %d)  "
 msgstr ""
 
+msgid "On one panel"
+msgstr ""
+
+msgid "On the other panel"
+msgstr ""
+
+msgid "<Edit here>"
+msgstr ""
+
+msgid "No differences to select found"
+msgstr ""
+
+msgid "No differences found to add as ignored substitution"
+msgstr ""
+
+msgid "The pair is already present in the list of Ignored Substiturions"
+msgstr ""
+
+msgid "Add this change to Ignored Substitutions?"
+msgstr ""
+
index 254876c..c675cad 100644 (file)
@@ -52,6 +52,9 @@ msgstr "Copier depuis la Droite"
 msgid "&Select Line Difference\tF4"
 msgstr "&Sélectionner la distinction\tF4"
 
+msgid "Add this change to &Ignored Substitutions"
+msgstr ""
+
 #, c-format
 msgid "&Undo"
 msgstr "Ann&uler"
@@ -1411,9 +1414,8 @@ msgstr "&Ok"
 msgid "&Apply"
 msgstr "&Appliquer"
 
-#, c-format
-msgid "Linefilters"
-msgstr "Filtre des lignes"
+msgid "Line Filters"
+msgstr ""
 
 #, c-format
 msgid "Enable Line Filters"
@@ -1431,6 +1433,30 @@ msgstr "Editer"
 msgid "Remove"
 msgstr "Supprimer"
 
+msgid "Ignored Substitutions"
+msgstr ""
+
+msgid "Enable"
+msgstr ""
+
+msgid "Add"
+msgstr ""
+
+msgid "The changes that appear on the panels as the listed pairs below will be ignored or marked as insignificant. Patches are unaffected."
+msgstr ""
+
+msgid "Ignore changes in both directions"
+msgstr ""
+
+msgid "Completely unhighlight the ignored changes"
+msgstr ""
+
+msgid "Use regular expressions"
+msgstr ""
+
+msgid "Clear"
+msgstr ""
+
 #, c-format
 msgid "Colors"
 msgstr "Couleurs"
@@ -1768,9 +1794,8 @@ msgstr "Caractères pour distinction de mot :"
 msgid "&Rendering Mode:"
 msgstr ""
 
-#, c-format
-msgid "Filefilters"
-msgstr "Filtre des fichiers"
+msgid "File Filters"
+msgstr ""
 
 msgid "Test..."
 msgstr "Test..."
@@ -2759,6 +2784,9 @@ msgstr "Milieu sans titre"
 msgid "Untitled right"
 msgstr "Sans titre à Droite"
 
+msgid "Base File"
+msgstr ""
+
 #, c-format
 msgid "Theirs File"
 msgstr "Leur fichier"
@@ -2956,6 +2984,10 @@ msgstr ""
 "Voulez-vous enregistrer la version décompressée sous un autre nom ?"
 
 #, c-format
+msgid "Plugin '%2' cannot pack your changes to the middle file back into '%1'.\n\nThe original file will not be changed.\n\nDo you want to save the unpacked version to another file?"
+msgstr ""
+
+#, c-format
 msgid ""
 "Plugin '%2' cannot pack your changes to the right file back into '%1'.\n"
 "\n"
@@ -4286,3 +4318,24 @@ msgstr ""
 msgid "Rc: (%d, %d)  "
 msgstr ""
 
+msgid "On one panel"
+msgstr ""
+
+msgid "On the other panel"
+msgstr ""
+
+msgid "<Edit here>"
+msgstr ""
+
+msgid "No differences to select found"
+msgstr ""
+
+msgid "No differences found to add as ignored substitution"
+msgstr ""
+
+msgid "The pair is already present in the list of Ignored Substiturions"
+msgstr ""
+
+msgid "Add this change to Ignored Substitutions?"
+msgstr ""
+
index d67cfff..2f82aea 100644 (file)
@@ -48,6 +48,9 @@ msgstr "Copiar da &dereita"
 msgid "&Select Line Difference\tF4"
 msgstr "&Seleccionar a diferenza entre liñas\tF4"
 
+msgid "Add this change to &Ignored Substitutions"
+msgstr ""
+
 #, c-format
 msgid "&Undo"
 msgstr "&Desfacer"
@@ -1403,9 +1406,8 @@ msgstr "&Aceptar"
 msgid "&Apply"
 msgstr "&Aplicar"
 
-#, c-format
-msgid "Linefilters"
-msgstr "Filtros de liña"
+msgid "Line Filters"
+msgstr ""
 
 #, c-format
 msgid "Enable Line Filters"
@@ -1423,6 +1425,30 @@ msgstr "Editar"
 msgid "Remove"
 msgstr "Eliminar"
 
+msgid "Ignored Substitutions"
+msgstr ""
+
+msgid "Enable"
+msgstr ""
+
+msgid "Add"
+msgstr ""
+
+msgid "The changes that appear on the panels as the listed pairs below will be ignored or marked as insignificant. Patches are unaffected."
+msgstr ""
+
+msgid "Ignore changes in both directions"
+msgstr ""
+
+msgid "Completely unhighlight the ignored changes"
+msgstr ""
+
+msgid "Use regular expressions"
+msgstr ""
+
+msgid "Clear"
+msgstr ""
+
 #, c-format
 msgid "Colors"
 msgstr "Cores"
@@ -1760,9 +1786,8 @@ msgstr "Caracteres de separación de palabra:"
 msgid "&Rendering Mode:"
 msgstr "Modo de &renderizado:"
 
-#, c-format
-msgid "Filefilters"
-msgstr "Filtros de arquivos"
+msgid "File Filters"
+msgstr ""
 
 msgid "Test..."
 msgstr "Probar…"
@@ -2735,6 +2760,9 @@ msgstr "Centro sen título"
 msgid "Untitled right"
 msgstr "Lado dereito sen título"
 
+msgid "Base File"
+msgstr ""
+
 #, c-format
 msgid "Theirs File"
 msgstr "Arquivo Theirs"
@@ -2942,6 +2970,10 @@ msgstr ""
 "Desexas gardar a versión desempaquetada noutro arquivo?"
 
 #, c-format
+msgid "Plugin '%2' cannot pack your changes to the middle file back into '%1'.\n\nThe original file will not be changed.\n\nDo you want to save the unpacked version to another file?"
+msgstr ""
+
+#, c-format
 msgid ""
 "Plugin '%2' cannot pack your changes to the right file back into '%1'.\n"
 "\n"
@@ -4254,3 +4286,24 @@ msgstr "Páx: %d/%d  Zoom: %d%%  %dx%dpx  %dbpp"
 msgid "Rc: (%d, %d)  "
 msgstr "Rc: (%d, %d)  "
 
+msgid "On one panel"
+msgstr ""
+
+msgid "On the other panel"
+msgstr ""
+
+msgid "<Edit here>"
+msgstr ""
+
+msgid "No differences to select found"
+msgstr ""
+
+msgid "No differences found to add as ignored substitution"
+msgstr ""
+
+msgid "The pair is already present in the list of Ignored Substiturions"
+msgstr ""
+
+msgid "Add this change to Ignored Substitutions?"
+msgstr ""
+
index 977da98..ad2872f 100644 (file)
@@ -47,6 +47,9 @@ msgstr "V&on rechts kopieren"
 msgid "&Select Line Difference\tF4"
 msgstr "Zeilen&unterschied markieren\tF4"
 
+msgid "Add this change to &Ignored Substitutions"
+msgstr ""
+
 #, c-format
 msgid "&Undo"
 msgstr "&Rückgängig"
@@ -1402,9 +1405,8 @@ msgstr "&OK"
 msgid "&Apply"
 msgstr "An&wenden"
 
-#, c-format
-msgid "Linefilters"
-msgstr "Zeilenfilter"
+msgid "Line Filters"
+msgstr ""
 
 #, c-format
 msgid "Enable Line Filters"
@@ -1422,6 +1424,30 @@ msgstr "Bearbeiten"
 msgid "Remove"
 msgstr "Entfernen"
 
+msgid "Ignored Substitutions"
+msgstr ""
+
+msgid "Enable"
+msgstr ""
+
+msgid "Add"
+msgstr ""
+
+msgid "The changes that appear on the panels as the listed pairs below will be ignored or marked as insignificant. Patches are unaffected."
+msgstr ""
+
+msgid "Ignore changes in both directions"
+msgstr ""
+
+msgid "Completely unhighlight the ignored changes"
+msgstr ""
+
+msgid "Use regular expressions"
+msgstr ""
+
+msgid "Clear"
+msgstr ""
+
 #, c-format
 msgid "Colors"
 msgstr "Farben"
@@ -1759,9 +1785,8 @@ msgstr "W&ortumbruchzeichen:"
 msgid "&Rendering Mode:"
 msgstr "&Darstellungsmodus:"
 
-#, c-format
-msgid "Filefilters"
-msgstr "Dateifilter"
+msgid "File Filters"
+msgstr ""
 
 msgid "Test..."
 msgstr "Testen..."
@@ -2622,6 +2647,9 @@ msgstr "Unbenannt Mitte"
 msgid "Untitled right"
 msgstr "Unbenannt rechts"
 
+msgid "Base File"
+msgstr ""
+
 #, c-format
 msgid "Theirs File"
 msgstr "Deren Datei"
@@ -2777,6 +2805,10 @@ msgid "Plugin '%2' cannot pack your changes to the left file back into '%1'.\n\n
 msgstr "Plugin '%2' kann Ihre Änderungen der linken Datei nicht zurück in '%1' packen.\n\nDie ursprüngliche Datei wird nicht geändert.\n\nMöchten Sie die ungepackte Version in einer anderen Datei speichern?"
 
 #, c-format
+msgid "Plugin '%2' cannot pack your changes to the middle file back into '%1'.\n\nThe original file will not be changed.\n\nDo you want to save the unpacked version to another file?"
+msgstr ""
+
+#, c-format
 msgid "Plugin '%2' cannot pack your changes to the right file back into '%1'.\n\nThe original file will not be changed.\n\nDo you want to save the unpacked version to another file?"
 msgstr "Plugin '%2' kann Ihre Änderungen der rechten Datei nicht zurück in '%1' packen.\n\nDie ursprüngliche Datei wird nicht geändert.\n\nMöchten Sie die ungepackte Version in einer anderen Datei speichern?"
 
@@ -3893,3 +3925,24 @@ msgstr "Seite: %d/%d  Zoom: %d%%  %dx%dpx  %dbpp"
 msgid "Rc: (%d, %d)  "
 msgstr "Re.: (%d, %d)  "
 
+msgid "On one panel"
+msgstr ""
+
+msgid "On the other panel"
+msgstr ""
+
+msgid "<Edit here>"
+msgstr ""
+
+msgid "No differences to select found"
+msgstr ""
+
+msgid "No differences found to add as ignored substitution"
+msgstr ""
+
+msgid "The pair is already present in the list of Ignored Substiturions"
+msgstr ""
+
+msgid "Add this change to Ignored Substitutions?"
+msgstr ""
+
index c9fba96..6f54e3c 100644 (file)
@@ -46,6 +46,9 @@ msgstr ""
 msgid "&Select Line Difference\tF4"
 msgstr "Επιλογή Δια&φοράς Γραμμής\tF4"
 
+msgid "Add this change to &Ignored Substitutions"
+msgstr ""
+
 #, c-format
 msgid "&Undo"
 msgstr "Α&ναίρεση"
@@ -1401,9 +1404,8 @@ msgstr "&ΟΚ"
 msgid "&Apply"
 msgstr "Ε&φαρμογή"
 
-#, c-format
-msgid "Linefilters"
-msgstr "Φίλτρα Γραμμών"
+msgid "Line Filters"
+msgstr ""
 
 #, c-format
 msgid "Enable Line Filters"
@@ -1421,6 +1423,30 @@ msgstr "Επεξεργασία"
 msgid "Remove"
 msgstr "Διαγραφή"
 
+msgid "Ignored Substitutions"
+msgstr ""
+
+msgid "Enable"
+msgstr ""
+
+msgid "Add"
+msgstr ""
+
+msgid "The changes that appear on the panels as the listed pairs below will be ignored or marked as insignificant. Patches are unaffected."
+msgstr ""
+
+msgid "Ignore changes in both directions"
+msgstr ""
+
+msgid "Completely unhighlight the ignored changes"
+msgstr ""
+
+msgid "Use regular expressions"
+msgstr ""
+
+msgid "Clear"
+msgstr ""
+
 #, c-format
 msgid "Colors"
 msgstr "Χρώματα"
@@ -1758,9 +1784,8 @@ msgstr ""
 msgid "&Rendering Mode:"
 msgstr ""
 
-#, c-format
-msgid "Filefilters"
-msgstr "Αρχειοφίλτρα"
+msgid "File Filters"
+msgstr ""
 
 msgid "Test..."
 msgstr "Δοκιμή..."
@@ -2693,6 +2718,9 @@ msgstr ""
 msgid "Untitled right"
 msgstr "Χωρίς τίτλο δεξιά"
 
+msgid "Base File"
+msgstr ""
+
 #, c-format
 msgid "Theirs File"
 msgstr "Αρχείο Αυτών"
@@ -2886,6 +2914,10 @@ msgstr ""
 "Επιθυμείτε να αποθηκεύσετε το αποσυμπιεσμένο αρχείο ως διαφορετικό αρχείο;"
 
 #, c-format
+msgid "Plugin '%2' cannot pack your changes to the middle file back into '%1'.\n\nThe original file will not be changed.\n\nDo you want to save the unpacked version to another file?"
+msgstr ""
+
+#, c-format
 msgid ""
 "Plugin '%2' cannot pack your changes to the right file back into '%1'.\n"
 "\n"
@@ -4089,3 +4121,24 @@ msgstr ""
 msgid "Rc: (%d, %d)  "
 msgstr ""
 
+msgid "On one panel"
+msgstr ""
+
+msgid "On the other panel"
+msgstr ""
+
+msgid "<Edit here>"
+msgstr ""
+
+msgid "No differences to select found"
+msgstr ""
+
+msgid "No differences found to add as ignored substitution"
+msgstr ""
+
+msgid "The pair is already present in the list of Ignored Substiturions"
+msgstr ""
+
+msgid "Add this change to Ignored Substitutions?"
+msgstr ""
+
index 7db8389..f7401bf 100644 (file)
@@ -47,6 +47,9 @@ msgstr ""
 msgid "&Select Line Difference\tF4"
 msgstr ""
 
+msgid "Add this change to &Ignored Substitutions"
+msgstr ""
+
 #, c-format
 msgid "&Undo"
 msgstr "&Visszavonás"
@@ -1402,9 +1405,8 @@ msgstr "&Rendben"
 msgid "&Apply"
 msgstr "&Alkalmaz"
 
-#, c-format
-msgid "Linefilters"
-msgstr "Sorszűrők"
+msgid "Line Filters"
+msgstr ""
 
 #, c-format
 msgid "Enable Line Filters"
@@ -1422,6 +1424,30 @@ msgstr "Szerkesztés"
 msgid "Remove"
 msgstr "Eltávolítás"
 
+msgid "Ignored Substitutions"
+msgstr ""
+
+msgid "Enable"
+msgstr ""
+
+msgid "Add"
+msgstr ""
+
+msgid "The changes that appear on the panels as the listed pairs below will be ignored or marked as insignificant. Patches are unaffected."
+msgstr ""
+
+msgid "Ignore changes in both directions"
+msgstr ""
+
+msgid "Completely unhighlight the ignored changes"
+msgstr ""
+
+msgid "Use regular expressions"
+msgstr ""
+
+msgid "Clear"
+msgstr ""
+
 #, c-format
 msgid "Colors"
 msgstr "Színek"
@@ -1759,9 +1785,8 @@ msgstr ""
 msgid "&Rendering Mode:"
 msgstr ""
 
-#, c-format
-msgid "Filefilters"
-msgstr "FájlSzűrők"
+msgid "File Filters"
+msgstr ""
 
 msgid "Test..."
 msgstr ""
@@ -2643,6 +2668,9 @@ msgstr ""
 msgid "Untitled right"
 msgstr "Névtelen jobb oldal"
 
+msgid "Base File"
+msgstr ""
+
 #, c-format
 msgid "Theirs File"
 msgstr ""
@@ -2830,6 +2858,10 @@ msgstr ""
 "Szeretnéd menteni a kicsomagolt változatot egy másik fájlba?"
 
 #, c-format
+msgid "Plugin '%2' cannot pack your changes to the middle file back into '%1'.\n\nThe original file will not be changed.\n\nDo you want to save the unpacked version to another file?"
+msgstr ""
+
+#, c-format
 msgid ""
 "Plugin '%2' cannot pack your changes to the right file back into '%1'.\n"
 "\n"
@@ -4016,3 +4048,24 @@ msgstr ""
 msgid "Rc: (%d, %d)  "
 msgstr ""
 
+msgid "On one panel"
+msgstr ""
+
+msgid "On the other panel"
+msgstr ""
+
+msgid "<Edit here>"
+msgstr ""
+
+msgid "No differences to select found"
+msgstr ""
+
+msgid "No differences found to add as ignored substitution"
+msgstr ""
+
+msgid "The pair is already present in the list of Ignored Substiturions"
+msgstr ""
+
+msgid "Add this change to Ignored Substitutions?"
+msgstr ""
+
index 59339f8..e633d7d 100644 (file)
@@ -41,6 +41,9 @@ msgstr "Copia da &destra"
 msgid "&Select Line Difference\tF4"
 msgstr "&Seleziona differenze riga\tF4"
 
+msgid "Add this change to &Ignored Substitutions"
+msgstr ""
+
 msgid "&Undo"
 msgstr "Annul&la"
 
@@ -1109,8 +1112,8 @@ msgstr "&OK"
 msgid "&Apply"
 msgstr "&Applica"
 
-msgid "Linefilters"
-msgstr "Filtri linee"
+msgid "Line Filters"
+msgstr ""
 
 msgid "Enable Line Filters"
 msgstr "Attiva i filtri linee"
@@ -1124,6 +1127,30 @@ msgstr "Modifica"
 msgid "Remove"
 msgstr "Rimuovi"
 
+msgid "Ignored Substitutions"
+msgstr ""
+
+msgid "Enable"
+msgstr ""
+
+msgid "Add"
+msgstr ""
+
+msgid "The changes that appear on the panels as the listed pairs below will be ignored or marked as insignificant. Patches are unaffected."
+msgstr ""
+
+msgid "Ignore changes in both directions"
+msgstr ""
+
+msgid "Completely unhighlight the ignored changes"
+msgstr ""
+
+msgid "Use regular expressions"
+msgstr ""
+
+msgid "Clear"
+msgstr ""
+
 msgid "Colors"
 msgstr "Colori"
 
@@ -1388,8 +1415,8 @@ msgstr "Caratteri terminatori &parola:"
 msgid "&Rendering Mode:"
 msgstr ""
 
-msgid "Filefilters"
-msgstr "Filtri file"
+msgid "File Filters"
+msgstr ""
 
 msgid "Test..."
 msgstr "Prova..."
@@ -2190,6 +2217,9 @@ msgstr "File centrale senza titolo"
 msgid "Untitled right"
 msgstr "File di destra senza titolo"
 
+msgid "Base File"
+msgstr ""
+
 msgid "Theirs File"
 msgstr "Loro file"
 
@@ -2366,6 +2396,10 @@ msgstr ""
 "Vuoi salvare la versione non compressa in un altro file?"
 
 #, c-format
+msgid "Plugin '%2' cannot pack your changes to the middle file back into '%1'.\n\nThe original file will not be changed.\n\nDo you want to save the unpacked version to another file?"
+msgstr ""
+
+#, c-format
 msgid ""
 "Plugin '%2' cannot pack your changes to the right file back into '%1'.\n"
 "\n"
@@ -3522,3 +3556,24 @@ msgstr ""
 msgid "Rc: (%d, %d)  "
 msgstr ""
 
+msgid "On one panel"
+msgstr ""
+
+msgid "On the other panel"
+msgstr ""
+
+msgid "<Edit here>"
+msgstr ""
+
+msgid "No differences to select found"
+msgstr ""
+
+msgid "No differences found to add as ignored substitution"
+msgstr ""
+
+msgid "The pair is already present in the list of Ignored Substiturions"
+msgstr ""
+
+msgid "Add this change to Ignored Substitutions?"
+msgstr ""
+
index 2a56ffc..a00f6a0 100644 (file)
@@ -42,6 +42,9 @@ msgstr "右側からコピー(&M)"
 msgid "&Select Line Difference\tF4"
 msgstr "行内差異を選択(&S)\tF4"
 
+msgid "Add this change to &Ignored Substitutions"
+msgstr ""
+
 msgid "&Undo"
 msgstr "元に戻す(&U)"
 
@@ -1108,8 +1111,8 @@ msgstr "&OK"
 msgid "&Apply"
 msgstr "適用(&A)"
 
-msgid "Linefilters"
-msgstr "行フィルター"
+msgid "Line Filters"
+msgstr ""
 
 msgid "Enable Line Filters"
 msgstr "行フィルターを有効にする"
@@ -1123,6 +1126,30 @@ msgstr "編集"
 msgid "Remove"
 msgstr "削除"
 
+msgid "Ignored Substitutions"
+msgstr ""
+
+msgid "Enable"
+msgstr ""
+
+msgid "Add"
+msgstr ""
+
+msgid "The changes that appear on the panels as the listed pairs below will be ignored or marked as insignificant. Patches are unaffected."
+msgstr ""
+
+msgid "Ignore changes in both directions"
+msgstr ""
+
+msgid "Completely unhighlight the ignored changes"
+msgstr ""
+
+msgid "Use regular expressions"
+msgstr ""
+
+msgid "Clear"
+msgstr ""
+
 msgid "Colors"
 msgstr "色"
 
@@ -1391,8 +1418,8 @@ msgstr "単語区切り文字(&O)"
 msgid "&Rendering Mode:"
 msgstr "レンダリングモード(&R):"
 
-msgid "Filefilters"
-msgstr "ファイル フィルター"
+msgid "File Filters"
+msgstr ""
 
 msgid "Test..."
 msgstr "テスト..."
@@ -2181,6 +2208,9 @@ msgstr "中無題"
 msgid "Untitled right"
 msgstr "右無題"
 
+msgid "Base File"
+msgstr ""
+
 msgid "Theirs File"
 msgstr "Theirs File"
 
@@ -2369,6 +2399,10 @@ msgstr ""
 "展開されたものを別ファイルに保存しますか?"
 
 #, c-format
+msgid "Plugin '%2' cannot pack your changes to the middle file back into '%1'.\n\nThe original file will not be changed.\n\nDo you want to save the unpacked version to another file?"
+msgstr ""
+
+#, c-format
 msgid ""
 "Plugin '%2' cannot pack your changes to the right file back into '%1'.\n"
 "\n"
@@ -3503,3 +3537,24 @@ msgstr "ページ: %d/%d  拡大: %d%%  %dx%dpx  %dbpp"
 msgid "Rc: (%d, %d)  "
 msgstr "範囲: (%d, %d)  "
 
+msgid "On one panel"
+msgstr ""
+
+msgid "On the other panel"
+msgstr ""
+
+msgid "<Edit here>"
+msgstr ""
+
+msgid "No differences to select found"
+msgstr ""
+
+msgid "No differences found to add as ignored substitution"
+msgstr ""
+
+msgid "The pair is already present in the list of Ignored Substiturions"
+msgstr ""
+
+msgid "Add this change to Ignored Substitutions?"
+msgstr ""
+
index 8cc1c48..79b7177 100644 (file)
@@ -51,6 +51,9 @@ msgstr "오른쪽에서 복사(&M)"
 msgid "&Select Line Difference\tF4"
 msgstr "줄 차이점 선택(&S)\tF4"
 
+msgid "Add this change to &Ignored Substitutions"
+msgstr ""
+
 #, c-format
 msgid "&Undo"
 msgstr "실행 취소(&U)"
@@ -1406,9 +1409,8 @@ msgstr "확인(&O)"
 msgid "&Apply"
 msgstr "적용(&A)"
 
-#, c-format
-msgid "Linefilters"
-msgstr "줄 필터"
+msgid "Line Filters"
+msgstr ""
 
 #, c-format
 msgid "Enable Line Filters"
@@ -1426,6 +1428,30 @@ msgstr "편집"
 msgid "Remove"
 msgstr "제거"
 
+msgid "Ignored Substitutions"
+msgstr ""
+
+msgid "Enable"
+msgstr ""
+
+msgid "Add"
+msgstr ""
+
+msgid "The changes that appear on the panels as the listed pairs below will be ignored or marked as insignificant. Patches are unaffected."
+msgstr ""
+
+msgid "Ignore changes in both directions"
+msgstr ""
+
+msgid "Completely unhighlight the ignored changes"
+msgstr ""
+
+msgid "Use regular expressions"
+msgstr ""
+
+msgid "Clear"
+msgstr ""
+
 #, c-format
 msgid "Colors"
 msgstr "색상"
@@ -1763,9 +1789,8 @@ msgstr "단어 분리 문자(&O):"
 msgid "&Rendering Mode:"
 msgstr ""
 
-#, c-format
-msgid "Filefilters"
-msgstr "파일 필터"
+msgid "File Filters"
+msgstr ""
 
 msgid "Test..."
 msgstr "테스트..."
@@ -2725,6 +2750,9 @@ msgstr "가운데 제목 없음"
 msgid "Untitled right"
 msgstr "오른쪽 제목 없음"
 
+msgid "Base File"
+msgstr ""
+
 #, c-format
 msgid "Theirs File"
 msgstr "그 파일"
@@ -2918,6 +2946,10 @@ msgstr ""
 "자료 변환되지 않은 버전을 다른 파일에 저장할까요?"
 
 #, c-format
+msgid "Plugin '%2' cannot pack your changes to the middle file back into '%1'.\n\nThe original file will not be changed.\n\nDo you want to save the unpacked version to another file?"
+msgstr ""
+
+#, c-format
 msgid ""
 "Plugin '%2' cannot pack your changes to the right file back into '%1'.\n"
 "\n"
@@ -4219,3 +4251,24 @@ msgstr ""
 msgid "Rc: (%d, %d)  "
 msgstr ""
 
+msgid "On one panel"
+msgstr ""
+
+msgid "On the other panel"
+msgstr ""
+
+msgid "<Edit here>"
+msgstr ""
+
+msgid "No differences to select found"
+msgstr ""
+
+msgid "No differences found to add as ignored substitution"
+msgstr ""
+
+msgid "The pair is already present in the list of Ignored Substiturions"
+msgstr ""
+
+msgid "Add this change to Ignored Substitutions?"
+msgstr ""
+
index 7095c18..b006c32 100644 (file)
@@ -44,6 +44,9 @@ msgstr "Kopijuoti iš &dešinės"
 msgid "&Select Line Difference\tF4"
 msgstr "&Pažymėti skirtumą\tF4"
 
+msgid "Add this change to &Ignored Substitutions"
+msgstr ""
+
 msgid "&Undo"
 msgstr "Atša&ukti"
 
@@ -1110,8 +1113,8 @@ msgstr "&Gerai"
 msgid "&Apply"
 msgstr "T&aikyti"
 
-msgid "Linefilters"
-msgstr "Eilutės filtrai"
+msgid "Line Filters"
+msgstr ""
 
 msgid "Enable Line Filters"
 msgstr "Įjungti eilutės filtrus"
@@ -1125,6 +1128,30 @@ msgstr "Redaguoti"
 msgid "Remove"
 msgstr "Pašalinti"
 
+msgid "Ignored Substitutions"
+msgstr ""
+
+msgid "Enable"
+msgstr ""
+
+msgid "Add"
+msgstr ""
+
+msgid "The changes that appear on the panels as the listed pairs below will be ignored or marked as insignificant. Patches are unaffected."
+msgstr ""
+
+msgid "Ignore changes in both directions"
+msgstr ""
+
+msgid "Completely unhighlight the ignored changes"
+msgstr ""
+
+msgid "Use regular expressions"
+msgstr ""
+
+msgid "Clear"
+msgstr ""
+
 msgid "Colors"
 msgstr "Spalvų"
 
@@ -1389,8 +1416,8 @@ msgstr "Ž&odžių skirtukų simboliai:"
 msgid "&Rendering Mode:"
 msgstr "Atvaizdavimo &režimas:"
 
-msgid "Filefilters"
-msgstr "Failo filtrai"
+msgid "File Filters"
+msgstr ""
 
 msgid "Test..."
 msgstr "Testas..."
@@ -2069,6 +2096,9 @@ msgstr "Bevardis vidurinis"
 msgid "Untitled right"
 msgstr "Bevardis dešinysis"
 
+msgid "Base File"
+msgstr ""
+
 msgid "Theirs File"
 msgstr "Jų failas"
 
@@ -2204,6 +2234,10 @@ msgid "Plugin '%2' cannot pack your changes to the left file back into '%1'.\n\n
 msgstr "Papildinys '%2' negali supakuoti pakeitimų kairiajame faile atgal į '%1'.\n\nOriginalus failas nebus pakeistas.\n\nAr norite išpakuotą versiją išsaugoti kitame faile?"
 
 #, c-format
+msgid "Plugin '%2' cannot pack your changes to the middle file back into '%1'.\n\nThe original file will not be changed.\n\nDo you want to save the unpacked version to another file?"
+msgstr ""
+
+#, c-format
 msgid "Plugin '%2' cannot pack your changes to the right file back into '%1'.\n\nThe original file will not be changed.\n\nDo you want to save the unpacked version to another file?"
 msgstr "Papildinys '%2' negali supakuoti pakeitimų dešiniajame faile atgal į '%1'.\n\nOriginalus failas nebus pakeistas.\n\nAr norite išpakuotą versiją išsaugoti kitame faile?"
 
@@ -3145,3 +3179,24 @@ msgstr "Psl.: %d/%d  Mastelis: %d%%  %dx%dpx  %dbpp"
 msgid "Rc: (%d, %d)  "
 msgstr "St.: (%d, %d)  "
 
+msgid "On one panel"
+msgstr ""
+
+msgid "On the other panel"
+msgstr ""
+
+msgid "<Edit here>"
+msgstr ""
+
+msgid "No differences to select found"
+msgstr ""
+
+msgid "No differences found to add as ignored substitution"
+msgstr ""
+
+msgid "The pair is already present in the list of Ignored Substiturions"
+msgstr ""
+
+msgid "Add this change to Ignored Substitutions?"
+msgstr ""
+
index 6064358..117fa1e 100644 (file)
@@ -47,6 +47,9 @@ msgstr ""
 msgid "&Select Line Difference\tF4"
 msgstr "&Marker linjeforskjell\tF4"
 
+msgid "Add this change to &Ignored Substitutions"
+msgstr ""
+
 #, c-format
 msgid "&Undo"
 msgstr "&Angre"
@@ -1402,9 +1405,8 @@ msgstr "&Ok"
 msgid "&Apply"
 msgstr "&Bruk"
 
-#, c-format
-msgid "Linefilters"
-msgstr "Linjefiltere"
+msgid "Line Filters"
+msgstr ""
 
 #, c-format
 msgid "Enable Line Filters"
@@ -1422,6 +1424,30 @@ msgstr "Rediger"
 msgid "Remove"
 msgstr "Fjern"
 
+msgid "Ignored Substitutions"
+msgstr ""
+
+msgid "Enable"
+msgstr ""
+
+msgid "Add"
+msgstr ""
+
+msgid "The changes that appear on the panels as the listed pairs below will be ignored or marked as insignificant. Patches are unaffected."
+msgstr ""
+
+msgid "Ignore changes in both directions"
+msgstr ""
+
+msgid "Completely unhighlight the ignored changes"
+msgstr ""
+
+msgid "Use regular expressions"
+msgstr ""
+
+msgid "Clear"
+msgstr ""
+
 #, c-format
 msgid "Colors"
 msgstr "Farger"
@@ -1759,9 +1785,8 @@ msgstr ""
 msgid "&Rendering Mode:"
 msgstr ""
 
-#, c-format
-msgid "Filefilters"
-msgstr "Filfiltere"
+msgid "File Filters"
+msgstr ""
 
 msgid "Test..."
 msgstr "Test..."
@@ -2699,6 +2724,9 @@ msgstr ""
 msgid "Untitled right"
 msgstr "Høyre uten tittel"
 
+msgid "Base File"
+msgstr ""
+
 #, c-format
 msgid "Theirs File"
 msgstr "Deres fil"
@@ -2892,6 +2920,10 @@ msgstr ""
 "Vil du lagre den utpakkede versjonen til en annen fil?"
 
 #, c-format
+msgid "Plugin '%2' cannot pack your changes to the middle file back into '%1'.\n\nThe original file will not be changed.\n\nDo you want to save the unpacked version to another file?"
+msgstr ""
+
+#, c-format
 msgid ""
 "Plugin '%2' cannot pack your changes to the right file back into '%1'.\n"
 "\n"
@@ -4111,3 +4143,24 @@ msgstr ""
 msgid "Rc: (%d, %d)  "
 msgstr ""
 
+msgid "On one panel"
+msgstr ""
+
+msgid "On the other panel"
+msgstr ""
+
+msgid "<Edit here>"
+msgstr ""
+
+msgid "No differences to select found"
+msgstr ""
+
+msgid "No differences found to add as ignored substitution"
+msgstr ""
+
+msgid "The pair is already present in the list of Ignored Substiturions"
+msgstr ""
+
+msgid "Add this change to Ignored Substitutions?"
+msgstr ""
+
index e310065..c5f3cb9 100644 (file)
@@ -48,6 +48,9 @@ msgstr ""
 msgid "&Select Line Difference\tF4"
 msgstr "&S انتخاب خط تفاوت \tF4"
 
+msgid "Add this change to &Ignored Substitutions"
+msgstr ""
+
 #, c-format
 msgid "&Undo"
 msgstr "&U بي اثر شدن آخرين دستور "
@@ -1407,9 +1410,8 @@ msgstr "&O تاييد "
 msgid "&Apply"
 msgstr "&A به کار بستن "
 
-#, c-format
-msgid "Linefilters"
-msgstr " صافيهاي خط "
+msgid "Line Filters"
+msgstr ""
 
 #, c-format
 msgid "Enable Line Filters"
@@ -1427,6 +1429,30 @@ msgstr " ويرايش "
 msgid "Remove"
 msgstr " برداشتن "
 
+msgid "Ignored Substitutions"
+msgstr ""
+
+msgid "Enable"
+msgstr ""
+
+msgid "Add"
+msgstr ""
+
+msgid "The changes that appear on the panels as the listed pairs below will be ignored or marked as insignificant. Patches are unaffected."
+msgstr ""
+
+msgid "Ignore changes in both directions"
+msgstr ""
+
+msgid "Completely unhighlight the ignored changes"
+msgstr ""
+
+msgid "Use regular expressions"
+msgstr ""
+
+msgid "Clear"
+msgstr ""
+
 #, c-format
 msgid "Colors"
 msgstr " رنگها "
@@ -1764,9 +1790,8 @@ msgstr ""
 msgid "&Rendering Mode:"
 msgstr ""
 
-#, c-format
-msgid "Filefilters"
-msgstr " پرونده صافيها "
+msgid "File Filters"
+msgstr ""
 
 msgid "Test..."
 msgstr " آزمايش ..."
@@ -2718,6 +2743,9 @@ msgstr ""
 msgid "Untitled right"
 msgstr " راست بدون عنوان "
 
+msgid "Base File"
+msgstr ""
+
 #, c-format
 msgid "Theirs File"
 msgstr " پرونده ديگران "
@@ -2914,6 +2942,10 @@ msgstr ""
 " آيا مي خواهيد که نسخه با بسته بازشده به صورت پرونده ديگري ذخيره شود؟ "
 
 #, c-format
+msgid "Plugin '%2' cannot pack your changes to the middle file back into '%1'.\n\nThe original file will not be changed.\n\nDo you want to save the unpacked version to another file?"
+msgstr ""
+
+#, c-format
 msgid ""
 "Plugin '%2' cannot pack your changes to the right file back into '%1'.\n"
 "\n"
@@ -4154,3 +4186,24 @@ msgstr ""
 msgid "Rc: (%d, %d)  "
 msgstr ""
 
+msgid "On one panel"
+msgstr ""
+
+msgid "On the other panel"
+msgstr ""
+
+msgid "<Edit here>"
+msgstr ""
+
+msgid "No differences to select found"
+msgstr ""
+
+msgid "No differences found to add as ignored substitution"
+msgstr ""
+
+msgid "The pair is already present in the list of Ignored Substiturions"
+msgstr ""
+
+msgid "Add this change to Ignored Substitutions?"
+msgstr ""
+
index 0eca32b..632955e 100644 (file)
@@ -41,6 +41,9 @@ msgstr "Kopiuj z prawej"
 msgid "&Select Line Difference\tF4"
 msgstr "Zaznacz różniące się linie\tF4"
 
+msgid "Add this change to &Ignored Substitutions"
+msgstr ""
+
 msgid "&Undo"
 msgstr "Cofnij"
 
@@ -1107,8 +1110,8 @@ msgstr "&Ok"
 msgid "&Apply"
 msgstr "Z&astosuj"
 
-msgid "Linefilters"
-msgstr "Filtry linii"
+msgid "Line Filters"
+msgstr ""
 
 msgid "Enable Line Filters"
 msgstr "Włącz filtry linii"
@@ -1122,6 +1125,30 @@ msgstr "Edytuj"
 msgid "Remove"
 msgstr "Usuń"
 
+msgid "Ignored Substitutions"
+msgstr ""
+
+msgid "Enable"
+msgstr ""
+
+msgid "Add"
+msgstr ""
+
+msgid "The changes that appear on the panels as the listed pairs below will be ignored or marked as insignificant. Patches are unaffected."
+msgstr ""
+
+msgid "Ignore changes in both directions"
+msgstr ""
+
+msgid "Completely unhighlight the ignored changes"
+msgstr ""
+
+msgid "Use regular expressions"
+msgstr ""
+
+msgid "Clear"
+msgstr ""
+
 msgid "Colors"
 msgstr "Kolory"
 
@@ -1386,9 +1413,8 @@ msgstr "Znaki łamania wyrazów:"
 msgid "&Rendering Mode:"
 msgstr ""
 
-#, c-format
-msgid "Filefilters"
-msgstr "Filtry plików"
+msgid "File Filters"
+msgstr ""
 
 msgid "Test..."
 msgstr "Testuj..."
@@ -2067,6 +2093,9 @@ msgstr "Środkowy bez nazwy"
 msgid "Untitled right"
 msgstr "Prawy bez nazwy"
 
+msgid "Base File"
+msgstr ""
+
 msgid "Theirs File"
 msgstr "Ich plik"
 
@@ -2202,6 +2231,10 @@ msgid "Plugin '%2' cannot pack your changes to the left file back into '%1'.\n\n
 msgstr "Wtyczka '%2' nie może spakować zmian wprowadzonych w lewym pliku do '%1'.\n\nOryginalny plik nie zostanie zmieniony.\n\nCzy chcesz zapisać rozpakowaną wersję w innym pliku?"
 
 #, c-format
+msgid "Plugin '%2' cannot pack your changes to the middle file back into '%1'.\n\nThe original file will not be changed.\n\nDo you want to save the unpacked version to another file?"
+msgstr ""
+
+#, c-format
 msgid "Plugin '%2' cannot pack your changes to the right file back into '%1'.\n\nThe original file will not be changed.\n\nDo you want to save the unpacked version to another file?"
 msgstr "Wtyczka '%2' nie może spakować zmian wprowadzonych w prawym pliku do '%1'.\n\nOryginalny plik nie zostanie zmieniony.\n\nCzy chcesz zapisać rozpakowaną wersję w innym pliku?"
 
@@ -3143,3 +3176,24 @@ msgstr ""
 msgid "Rc: (%d, %d)  "
 msgstr ""
 
+msgid "On one panel"
+msgstr ""
+
+msgid "On the other panel"
+msgstr ""
+
+msgid "<Edit here>"
+msgstr ""
+
+msgid "No differences to select found"
+msgstr ""
+
+msgid "No differences found to add as ignored substitution"
+msgstr ""
+
+msgid "The pair is already present in the list of Ignored Substiturions"
+msgstr ""
+
+msgid "Add this change to Ignored Substitutions?"
+msgstr ""
+
index 2b96225..94a42df 100644 (file)
@@ -44,6 +44,9 @@ msgstr "C&opiar da Direita"
 msgid "&Select Line Difference\tF4"
 msgstr "&Selecionar diferença de linha\tF4"
 
+msgid "Add this change to &Ignored Substitutions"
+msgstr ""
+
 msgid "&Undo"
 msgstr "&Anular"
 
@@ -1116,8 +1119,8 @@ msgstr "OK"
 msgid "&Apply"
 msgstr "Aplicar"
 
-msgid "Linefilters"
-msgstr "Filtros de Linha"
+msgid "Line Filters"
+msgstr ""
 
 msgid "Enable Line Filters"
 msgstr "Ignorar Linhas com as Seguintes Características"
@@ -1131,6 +1134,30 @@ msgstr "Editar"
 msgid "Remove"
 msgstr "Remover"
 
+msgid "Ignored Substitutions"
+msgstr ""
+
+msgid "Enable"
+msgstr ""
+
+msgid "Add"
+msgstr ""
+
+msgid "The changes that appear on the panels as the listed pairs below will be ignored or marked as insignificant. Patches are unaffected."
+msgstr ""
+
+msgid "Ignore changes in both directions"
+msgstr ""
+
+msgid "Completely unhighlight the ignored changes"
+msgstr ""
+
+msgid "Use regular expressions"
+msgstr ""
+
+msgid "Clear"
+msgstr ""
+
 msgid "Colors"
 msgstr "Cores"
 
@@ -1395,8 +1422,8 @@ msgstr "Caracteres da palavra:"
 msgid "&Rendering Mode:"
 msgstr "Modo de &renderização:"
 
-msgid "Filefilters"
-msgstr "Filtros de ficheiro"
+msgid "File Filters"
+msgstr ""
 
 msgid "Test..."
 msgstr "Testar..."
@@ -2214,6 +2241,9 @@ msgstr "Sem título meio"
 msgid "Untitled right"
 msgstr "Sem título direita"
 
+msgid "Base File"
+msgstr ""
+
 msgid "Theirs File"
 msgstr "O ficheiro deles"
 
@@ -2409,6 +2439,10 @@ msgstr ""
 "Deseja guardar a versão não comprimida em outro ficheiro?"
 
 #, c-format
+msgid "Plugin '%2' cannot pack your changes to the middle file back into '%1'.\n\nThe original file will not be changed.\n\nDo you want to save the unpacked version to another file?"
+msgstr ""
+
+#, c-format
 msgid ""
 "Plugin '%2' cannot pack your changes to the right file back into '%1'.\n"
 "\n"
@@ -3586,3 +3620,24 @@ msgstr "Página: %d/%d  Zoom: %d%%  %dx%dpx  %dbpp"
 msgid "Rc: (%d, %d)  "
 msgstr ""
 
+msgid "On one panel"
+msgstr ""
+
+msgid "On the other panel"
+msgstr ""
+
+msgid "<Edit here>"
+msgstr ""
+
+msgid "No differences to select found"
+msgstr ""
+
+msgid "No differences found to add as ignored substitution"
+msgstr ""
+
+msgid "The pair is already present in the list of Ignored Substiturions"
+msgstr ""
+
+msgid "Add this change to Ignored Substitutions?"
+msgstr ""
+
index 1d58c98..7d2b9c9 100644 (file)
@@ -47,6 +47,9 @@ msgstr ""
 msgid "&Select Line Difference\tF4"
 msgstr "&Selectează diferenţele pe linie\tF4"
 
+msgid "Add this change to &Ignored Substitutions"
+msgstr ""
+
 #, c-format
 msgid "&Undo"
 msgstr "An&ulează"
@@ -1402,9 +1405,8 @@ msgstr "&Ok"
 msgid "&Apply"
 msgstr "&Aplică"
 
-#, c-format
-msgid "Linefilters"
-msgstr "Filtre de linie"
+msgid "Line Filters"
+msgstr ""
 
 #, c-format
 msgid "Enable Line Filters"
@@ -1422,6 +1424,30 @@ msgstr "Editează"
 msgid "Remove"
 msgstr "Înlătură"
 
+msgid "Ignored Substitutions"
+msgstr ""
+
+msgid "Enable"
+msgstr ""
+
+msgid "Add"
+msgstr ""
+
+msgid "The changes that appear on the panels as the listed pairs below will be ignored or marked as insignificant. Patches are unaffected."
+msgstr ""
+
+msgid "Ignore changes in both directions"
+msgstr ""
+
+msgid "Completely unhighlight the ignored changes"
+msgstr ""
+
+msgid "Use regular expressions"
+msgstr ""
+
+msgid "Clear"
+msgstr ""
+
 #, c-format
 msgid "Colors"
 msgstr "Culori"
@@ -1759,9 +1785,8 @@ msgstr ""
 msgid "&Rendering Mode:"
 msgstr ""
 
-#, c-format
-msgid "Filefilters"
-msgstr "Filtre fişiere"
+msgid "File Filters"
+msgstr ""
 
 msgid "Test..."
 msgstr "Testează..."
@@ -2694,6 +2719,9 @@ msgstr ""
 msgid "Untitled right"
 msgstr "Nedenumit dreapta"
 
+msgid "Base File"
+msgstr ""
+
 #, fuzzy, c-format
 msgid "Theirs File"
 msgstr "Fişierul lor"
@@ -2887,6 +2915,10 @@ msgstr ""
 "Doriţi să salvaţi versiunea nearhivată în alt fişier?"
 
 #, c-format
+msgid "Plugin '%2' cannot pack your changes to the middle file back into '%1'.\n\nThe original file will not be changed.\n\nDo you want to save the unpacked version to another file?"
+msgstr ""
+
+#, c-format
 msgid ""
 "Plugin '%2' cannot pack your changes to the right file back into '%1'.\n"
 "\n"
@@ -4090,3 +4122,24 @@ msgstr ""
 msgid "Rc: (%d, %d)  "
 msgstr ""
 
+msgid "On one panel"
+msgstr ""
+
+msgid "On the other panel"
+msgstr ""
+
+msgid "<Edit here>"
+msgstr ""
+
+msgid "No differences to select found"
+msgstr ""
+
+msgid "No differences found to add as ignored substitution"
+msgstr ""
+
+msgid "The pair is already present in the list of Ignored Substiturions"
+msgstr ""
+
+msgid "Add this change to Ignored Substitutions?"
+msgstr ""
+
index 114dbc0..ece8a0c 100644 (file)
@@ -43,6 +43,9 @@ msgstr "Копировать справа"
 msgid "&Select Line Difference\tF4"
 msgstr "&Выбрать отличие\tF4"
 
+msgid "Add this change to &Ignored Substitutions"
+msgstr ""
+
 msgid "&Undo"
 msgstr "&Отменить"
 
@@ -1109,8 +1112,8 @@ msgstr "&Ok"
 msgid "&Apply"
 msgstr "&Применить"
 
-msgid "Linefilters"
-msgstr "Строковые фильтры"
+msgid "Line Filters"
+msgstr ""
 
 msgid "Enable Line Filters"
 msgstr "Разрешить строковые фильтры"
@@ -1124,6 +1127,30 @@ msgstr "Изменить"
 msgid "Remove"
 msgstr "Удалить"
 
+msgid "Ignored Substitutions"
+msgstr ""
+
+msgid "Enable"
+msgstr ""
+
+msgid "Add"
+msgstr ""
+
+msgid "The changes that appear on the panels as the listed pairs below will be ignored or marked as insignificant. Patches are unaffected."
+msgstr ""
+
+msgid "Ignore changes in both directions"
+msgstr ""
+
+msgid "Completely unhighlight the ignored changes"
+msgstr ""
+
+msgid "Use regular expressions"
+msgstr ""
+
+msgid "Clear"
+msgstr ""
+
 msgid "Colors"
 msgstr "Цвета"
 
@@ -1388,8 +1415,8 @@ msgstr "Символы разрыва слов:"
 msgid "&Rendering Mode:"
 msgstr "Режим отрисовки:"
 
-msgid "Filefilters"
-msgstr "Фильтры файлов"
+msgid "File Filters"
+msgstr ""
 
 msgid "Test..."
 msgstr "Тест..."
@@ -2068,6 +2095,9 @@ msgstr "Безымянный посередине"
 msgid "Untitled right"
 msgstr "Безымянный справа"
 
+msgid "Base File"
+msgstr ""
+
 msgid "Theirs File"
 msgstr "Их файл"
 
@@ -2203,6 +2233,10 @@ msgid "Plugin '%2' cannot pack your changes to the left file back into '%1'.\n\n
 msgstr "Плагин '%2' не может упаковать изменения обратно в файл слева '%1'.\n\nИсходный файл не будет изменен.\n\nСохранить распакованную версию в другой файл?"
 
 #, c-format
+msgid "Plugin '%2' cannot pack your changes to the middle file back into '%1'.\n\nThe original file will not be changed.\n\nDo you want to save the unpacked version to another file?"
+msgstr ""
+
+#, c-format
 msgid "Plugin '%2' cannot pack your changes to the right file back into '%1'.\n\nThe original file will not be changed.\n\nDo you want to save the unpacked version to another file?"
 msgstr "Плагин '%2' не может упаковать изменения обратно в файл справа '%1'.\n\nИсходный файл не будет изменен.\n\nСохранить распакованную версию в другой файл?"
 
@@ -3144,3 +3178,24 @@ msgstr "Страница: %d/%d  Масштаб: %d%%  %dx%dpx  %dbpp"
 msgid "Rc: (%d, %d)  "
 msgstr ""
 
+msgid "On one panel"
+msgstr ""
+
+msgid "On the other panel"
+msgstr ""
+
+msgid "<Edit here>"
+msgstr ""
+
+msgid "No differences to select found"
+msgstr ""
+
+msgid "No differences found to add as ignored substitution"
+msgstr ""
+
+msgid "The pair is already present in the list of Ignored Substiturions"
+msgstr ""
+
+msgid "Add this change to Ignored Substitutions?"
+msgstr ""
+
index 3c6c271..8e14ab7 100644 (file)
@@ -46,6 +46,9 @@ msgstr ""
 msgid "&Select Line Difference\tF4"
 msgstr "&Изабери различите редове\tF4"
 
+msgid "Add this change to &Ignored Substitutions"
+msgstr ""
+
 #, c-format
 msgid "&Undo"
 msgstr "&Опозови"
@@ -1389,9 +1392,8 @@ msgstr "&У реду"
 msgid "&Apply"
 msgstr "П&римени"
 
-#, c-format
-msgid "Linefilters"
-msgstr "Филтер редова"
+msgid "Line Filters"
+msgstr ""
 
 #, c-format
 msgid "Enable Line Filters"
@@ -1409,6 +1411,30 @@ msgstr "Уреди"
 msgid "Remove"
 msgstr "Уклони"
 
+msgid "Ignored Substitutions"
+msgstr ""
+
+msgid "Enable"
+msgstr ""
+
+msgid "Add"
+msgstr ""
+
+msgid "The changes that appear on the panels as the listed pairs below will be ignored or marked as insignificant. Patches are unaffected."
+msgstr ""
+
+msgid "Ignore changes in both directions"
+msgstr ""
+
+msgid "Completely unhighlight the ignored changes"
+msgstr ""
+
+msgid "Use regular expressions"
+msgstr ""
+
+msgid "Clear"
+msgstr ""
+
 #, c-format
 msgid "Colors"
 msgstr "Боје"
@@ -1742,9 +1768,8 @@ msgstr ""
 msgid "&Rendering Mode:"
 msgstr ""
 
-#, c-format
-msgid "Filefilters"
-msgstr "Филтер датотека"
+msgid "File Filters"
+msgstr ""
 
 msgid "Test..."
 msgstr "Провера..."
@@ -2682,6 +2707,9 @@ msgstr ""
 msgid "Untitled right"
 msgstr "Неименована десна"
 
+msgid "Base File"
+msgstr ""
+
 #, c-format
 msgid "Theirs File"
 msgstr "Њихове датотеке"
@@ -2867,6 +2895,10 @@ msgstr ""
 "Да ли желите да сачувате нераспаковано издање као датотеку?"
 
 #, c-format
+msgid "Plugin '%2' cannot pack your changes to the middle file back into '%1'.\n\nThe original file will not be changed.\n\nDo you want to save the unpacked version to another file?"
+msgstr ""
+
+#, c-format
 msgid ""
 "Plugin '%2' cannot pack your changes to the right file back into '%1'.\n"
 "\n"
@@ -4083,3 +4115,24 @@ msgstr ""
 msgid "Rc: (%d, %d)  "
 msgstr ""
 
+msgid "On one panel"
+msgstr ""
+
+msgid "On the other panel"
+msgstr ""
+
+msgid "<Edit here>"
+msgstr ""
+
+msgid "No differences to select found"
+msgstr ""
+
+msgid "No differences found to add as ignored substitution"
+msgstr ""
+
+msgid "The pair is already present in the list of Ignored Substiturions"
+msgstr ""
+
+msgid "Add this change to Ignored Substitutions?"
+msgstr ""
+
index 073a4f5..8190d8b 100644 (file)
@@ -44,6 +44,9 @@ msgstr ""
 msgid "&Select Line Difference\tF4"
 msgstr "පේලි අතර වෙනස තේරීම\tF4"
 
+msgid "Add this change to &Ignored Substitutions"
+msgstr ""
+
 #, c-format
 msgid "&Undo"
 msgstr "නිෂ්ප්‍රභා කිරීම"
@@ -1399,9 +1402,8 @@ msgstr "&හරි"
 msgid "&Apply"
 msgstr "&යොමු කරන්න"
 
-#, fuzzy, c-format
-msgid "Linefilters"
-msgstr "Linefilters"
+msgid "Line Filters"
+msgstr ""
 
 #, fuzzy, c-format
 msgid "Enable Line Filters"
@@ -1419,6 +1421,30 @@ msgstr "සංස්කරණය කරන්න"
 msgid "Remove"
 msgstr "ඉවත් කරන්න"
 
+msgid "Ignored Substitutions"
+msgstr ""
+
+msgid "Enable"
+msgstr ""
+
+msgid "Add"
+msgstr ""
+
+msgid "The changes that appear on the panels as the listed pairs below will be ignored or marked as insignificant. Patches are unaffected."
+msgstr ""
+
+msgid "Ignore changes in both directions"
+msgstr ""
+
+msgid "Completely unhighlight the ignored changes"
+msgstr ""
+
+msgid "Use regular expressions"
+msgstr ""
+
+msgid "Clear"
+msgstr ""
+
 #, c-format
 msgid "Colors"
 msgstr "වර්ණ"
@@ -1756,9 +1782,8 @@ msgstr ""
 msgid "&Rendering Mode:"
 msgstr ""
 
-#, c-format
-msgid "Filefilters"
-msgstr "ගොනුපෙරහන්"
+msgid "File Filters"
+msgstr ""
 
 msgid "Test..."
 msgstr "පරීක්ෂාව..."
@@ -2691,6 +2716,9 @@ msgstr ""
 msgid "Untitled right"
 msgstr "නමක් නැති දකුණ"
 
+msgid "Base File"
+msgstr ""
+
 #, c-format
 msgid "Theirs File"
 msgstr "ඔවුන්ගේම ලිපිගොනු"
@@ -2884,6 +2912,10 @@ msgstr ""
 "Do you want to save the unpacked version to another file?"
 
 #, c-format
+msgid "Plugin '%2' cannot pack your changes to the middle file back into '%1'.\n\nThe original file will not be changed.\n\nDo you want to save the unpacked version to another file?"
+msgstr ""
+
+#, c-format
 msgid ""
 "Plugin '%2' cannot pack your changes to the right file back into '%1'.\n"
 "\n"
@@ -4101,3 +4133,24 @@ msgstr ""
 msgid "Rc: (%d, %d)  "
 msgstr ""
 
+msgid "On one panel"
+msgstr ""
+
+msgid "On the other panel"
+msgstr ""
+
+msgid "<Edit here>"
+msgstr ""
+
+msgid "No differences to select found"
+msgstr ""
+
+msgid "No differences found to add as ignored substitution"
+msgstr ""
+
+msgid "The pair is already present in the list of Ignored Substiturions"
+msgstr ""
+
+msgid "Add this change to Ignored Substitutions?"
+msgstr ""
+
index 3e2fabb..bccc7c0 100644 (file)
@@ -44,6 +44,9 @@ msgstr "Kopírovať &sprava"
 msgid "&Select Line Difference\tF4"
 msgstr "&Vybrať rozdiely riadkov\tF4"
 
+msgid "Add this change to &Ignored Substitutions"
+msgstr ""
+
 msgid "&Undo"
 msgstr "&Späť"
 
@@ -1114,8 +1117,8 @@ msgstr "&OK"
 msgid "&Apply"
 msgstr "&Použiť"
 
-msgid "Linefilters"
-msgstr "Riadkové filtre"
+msgid "Line Filters"
+msgstr ""
 
 msgid "Enable Line Filters"
 msgstr "Povoliť riadkové filtre"
@@ -1129,6 +1132,30 @@ msgstr "Upraviť"
 msgid "Remove"
 msgstr "Odstrániť"
 
+msgid "Ignored Substitutions"
+msgstr ""
+
+msgid "Enable"
+msgstr ""
+
+msgid "Add"
+msgstr ""
+
+msgid "The changes that appear on the panels as the listed pairs below will be ignored or marked as insignificant. Patches are unaffected."
+msgstr ""
+
+msgid "Ignore changes in both directions"
+msgstr ""
+
+msgid "Completely unhighlight the ignored changes"
+msgstr ""
+
+msgid "Use regular expressions"
+msgstr ""
+
+msgid "Clear"
+msgstr ""
+
 msgid "Colors"
 msgstr "Farby"
 
@@ -1393,8 +1420,8 @@ msgstr "Zalam&ovať slová:"
 msgid "&Rendering Mode:"
 msgstr "&Režim vytvárania prevodu:"
 
-msgid "Filefilters"
-msgstr "Filtre súborov"
+msgid "File Filters"
+msgstr ""
 
 msgid "Test..."
 msgstr "Testovať..."
@@ -2204,6 +2231,9 @@ msgstr "Nepomenovanmý stredný"
 msgid "Untitled right"
 msgstr "Nepomenovaný pravý"
 
+msgid "Base File"
+msgstr ""
+
 msgid "Theirs File"
 msgstr "Ich súbor"
 
@@ -2397,6 +2427,10 @@ msgstr ""
 "Želáte si uložiť rozbalenú verziu do iného súboru?"
 
 #, c-format
+msgid "Plugin '%2' cannot pack your changes to the middle file back into '%1'.\n\nThe original file will not be changed.\n\nDo you want to save the unpacked version to another file?"
+msgstr ""
+
+#, c-format
 msgid ""
 "Plugin '%2' cannot pack your changes to the right file back into '%1'.\n"
 "\n"
@@ -3563,3 +3597,24 @@ msgstr "Stránka: %d/%d  Priblíženie: %d%%  %dx%dpx  %dbpp"
 msgid "Rc: (%d, %d)  "
 msgstr ""
 
+msgid "On one panel"
+msgstr ""
+
+msgid "On the other panel"
+msgstr ""
+
+msgid "<Edit here>"
+msgstr ""
+
+msgid "No differences to select found"
+msgstr ""
+
+msgid "No differences found to add as ignored substitution"
+msgstr ""
+
+msgid "The pair is already present in the list of Ignored Substiturions"
+msgstr ""
+
+msgid "Add this change to Ignored Substitutions?"
+msgstr ""
+
index 6bd5a0a..81f2bd5 100644 (file)
@@ -48,6 +48,9 @@ msgstr "Kopiraj iz de&sne"
 msgid "&Select Line Difference\tF4"
 msgstr "&Izberi razliko vrstice\tF4"
 
+msgid "Add this change to &Ignored Substitutions"
+msgstr ""
+
 #, c-format
 msgid "&Undo"
 msgstr "&Razveljavi"
@@ -1402,9 +1405,8 @@ msgstr "&Vredu"
 msgid "&Apply"
 msgstr "&Uporabi"
 
-#, c-format
-msgid "Linefilters"
-msgstr "Filtri vrstic"
+msgid "Line Filters"
+msgstr ""
 
 #, c-format
 msgid "Enable Line Filters"
@@ -1422,6 +1424,30 @@ msgstr "Uredi"
 msgid "Remove"
 msgstr "Odstrani"
 
+msgid "Ignored Substitutions"
+msgstr ""
+
+msgid "Enable"
+msgstr ""
+
+msgid "Add"
+msgstr ""
+
+msgid "The changes that appear on the panels as the listed pairs below will be ignored or marked as insignificant. Patches are unaffected."
+msgstr ""
+
+msgid "Ignore changes in both directions"
+msgstr ""
+
+msgid "Completely unhighlight the ignored changes"
+msgstr ""
+
+msgid "Use regular expressions"
+msgstr ""
+
+msgid "Clear"
+msgstr ""
+
 #, c-format
 msgid "Colors"
 msgstr "Barve"
@@ -1757,9 +1783,8 @@ msgstr "&Znaki za prelom besed:"
 msgid "&Rendering Mode:"
 msgstr "Način upodab&ljanja:"
 
-#, c-format
-msgid "Filefilters"
-msgstr "Filtri datotek"
+msgid "File Filters"
+msgstr ""
 
 msgid "Test..."
 msgstr "Preizkusi..."
@@ -2730,6 +2755,9 @@ msgstr "Srednja neimenovana"
 msgid "Untitled right"
 msgstr "Desna neimenovana"
 
+msgid "Base File"
+msgstr ""
+
 #, c-format
 msgid "Theirs File"
 msgstr "Njihova datoteka"
@@ -2937,6 +2965,10 @@ msgstr ""
 "Ali želite shraniti nepakirano različico v drugo datoteko?"
 
 #, c-format
+msgid "Plugin '%2' cannot pack your changes to the middle file back into '%1'.\n\nThe original file will not be changed.\n\nDo you want to save the unpacked version to another file?"
+msgstr ""
+
+#, c-format
 msgid ""
 "Plugin '%2' cannot pack your changes to the right file back into '%1'.\n"
 "\n"
@@ -4248,3 +4280,24 @@ msgstr "Stran: %d/%d  Povečava: %d%%  %dx%dpx  %dbpp"
 msgid "Rc: (%d, %d)  "
 msgstr "Zapis: (%d, %d)  "
 
+msgid "On one panel"
+msgstr ""
+
+msgid "On the other panel"
+msgstr ""
+
+msgid "<Edit here>"
+msgstr ""
+
+msgid "No differences to select found"
+msgstr ""
+
+msgid "No differences found to add as ignored substitution"
+msgstr ""
+
+msgid "The pair is already present in the list of Ignored Substiturions"
+msgstr ""
+
+msgid "Add this change to Ignored Substitutions?"
+msgstr ""
+
index 0417e9d..d8f0b34 100644 (file)
@@ -45,6 +45,9 @@ msgstr ""
 msgid "&Select Line Difference\tF4"
 msgstr "&Seleccionar dif. de línea\tF4"
 
+msgid "Add this change to &Ignored Substitutions"
+msgstr ""
+
 msgid "&Undo"
 msgstr "Des&hacer"
 
@@ -1113,8 +1116,8 @@ msgstr "&Aceptar"
 msgid "&Apply"
 msgstr "&Aplicar"
 
-msgid "Linefilters"
-msgstr "Filtros de línea"
+msgid "Line Filters"
+msgstr ""
 
 msgid "Enable Line Filters"
 msgstr "Permitir filtros de línea"
@@ -1128,6 +1131,30 @@ msgstr "Editar"
 msgid "Remove"
 msgstr "Eliminar"
 
+msgid "Ignored Substitutions"
+msgstr ""
+
+msgid "Enable"
+msgstr ""
+
+msgid "Add"
+msgstr ""
+
+msgid "The changes that appear on the panels as the listed pairs below will be ignored or marked as insignificant. Patches are unaffected."
+msgstr ""
+
+msgid "Ignore changes in both directions"
+msgstr ""
+
+msgid "Completely unhighlight the ignored changes"
+msgstr ""
+
+msgid "Use regular expressions"
+msgstr ""
+
+msgid "Clear"
+msgstr ""
+
 msgid "Colors"
 msgstr "Colores"
 
@@ -1392,8 +1419,8 @@ msgstr "Caracteres de salt&o de palabra:"
 msgid "&Rendering Mode:"
 msgstr "Modo de &Renderizado:"
 
-msgid "Filefilters"
-msgstr "Filtros de archivo"
+msgid "File Filters"
+msgstr ""
 
 msgid "Test..."
 msgstr "Probar..."
@@ -2198,6 +2225,9 @@ msgstr "Sin título centro"
 msgid "Untitled right"
 msgstr "Sin título derecha"
 
+msgid "Base File"
+msgstr ""
+
 msgid "Theirs File"
 msgstr "Archivo externo"
 
@@ -2375,6 +2405,10 @@ msgstr ""
 "¿Desea guardar la versión sin empaquetar en otro archivo?"
 
 #, c-format
+msgid "Plugin '%2' cannot pack your changes to the middle file back into '%1'.\n\nThe original file will not be changed.\n\nDo you want to save the unpacked version to another file?"
+msgstr ""
+
+#, c-format
 msgid ""
 "Plugin '%2' cannot pack your changes to the right file back into '%1'.\n"
 "\n"
@@ -3539,3 +3573,24 @@ msgstr ""
 msgid "Rc: (%d, %d)  "
 msgstr ""
 
+msgid "On one panel"
+msgstr ""
+
+msgid "On the other panel"
+msgstr ""
+
+msgid "<Edit here>"
+msgstr ""
+
+msgid "No differences to select found"
+msgstr ""
+
+msgid "No differences found to add as ignored substitution"
+msgstr ""
+
+msgid "The pair is already present in the list of Ignored Substiturions"
+msgstr ""
+
+msgid "Add this change to Ignored Substitutions?"
+msgstr ""
+
index 8087bd7..2768538 100644 (file)
@@ -49,6 +49,9 @@ msgstr "Kopiera från Höger"
 msgid "&Select Line Difference\tF4"
 msgstr "Markera Radskillnad\tF4"
 
+msgid "Add this change to &Ignored Substitutions"
+msgstr ""
+
 #, c-format
 msgid "&Undo"
 msgstr "Ångra"
@@ -1404,9 +1407,8 @@ msgstr "OK"
 msgid "&Apply"
 msgstr "Tillämpa"
 
-#, c-format
-msgid "Linefilters"
-msgstr "Radfilter"
+msgid "Line Filters"
+msgstr ""
 
 #, c-format
 msgid "Enable Line Filters"
@@ -1424,6 +1426,30 @@ msgstr "Redigera"
 msgid "Remove"
 msgstr "Ta bort"
 
+msgid "Ignored Substitutions"
+msgstr ""
+
+msgid "Enable"
+msgstr ""
+
+msgid "Add"
+msgstr ""
+
+msgid "The changes that appear on the panels as the listed pairs below will be ignored or marked as insignificant. Patches are unaffected."
+msgstr ""
+
+msgid "Ignore changes in both directions"
+msgstr ""
+
+msgid "Completely unhighlight the ignored changes"
+msgstr ""
+
+msgid "Use regular expressions"
+msgstr ""
+
+msgid "Clear"
+msgstr ""
+
 #, c-format
 msgid "Colors"
 msgstr "Färger"
@@ -1761,9 +1787,8 @@ msgstr "Ordbrytningstecken:"
 msgid "&Rendering Mode:"
 msgstr ""
 
-#, c-format
-msgid "Filefilters"
-msgstr "Filfilter"
+msgid "File Filters"
+msgstr ""
 
 msgid "Test..."
 msgstr "Testa..."
@@ -2722,6 +2747,9 @@ msgstr "Namnlös mitter"
 msgid "Untitled right"
 msgstr "Namnlös höger"
 
+msgid "Base File"
+msgstr ""
+
 #, c-format
 msgid "Theirs File"
 msgstr "Deras fil"
@@ -2915,6 +2943,10 @@ msgstr ""
 "Vill Ni spara den uppackade versionen till en annan fil?"
 
 #, c-format
+msgid "Plugin '%2' cannot pack your changes to the middle file back into '%1'.\n\nThe original file will not be changed.\n\nDo you want to save the unpacked version to another file?"
+msgstr ""
+
+#, c-format
 msgid ""
 "Plugin '%2' cannot pack your changes to the right file back into '%1'.\n"
 "\n"
@@ -4195,3 +4227,24 @@ msgstr ""
 msgid "Rc: (%d, %d)  "
 msgstr ""
 
+msgid "On one panel"
+msgstr ""
+
+msgid "On the other panel"
+msgstr ""
+
+msgid "<Edit here>"
+msgstr ""
+
+msgid "No differences to select found"
+msgstr ""
+
+msgid "No differences found to add as ignored substitution"
+msgstr ""
+
+msgid "The pair is already present in the list of Ignored Substiturions"
+msgstr ""
+
+msgid "Add this change to Ignored Substitutions?"
+msgstr ""
+
index d9cc03b..c444a30 100644 (file)
@@ -41,6 +41,9 @@ msgstr "Sağ&dan Kopyala"
 msgid "&Select Line Difference\tF4"
 msgstr "Farklı &Satırları Seç\tF4"
 
+msgid "Add this change to &Ignored Substitutions"
+msgstr ""
+
 msgid "&Undo"
 msgstr "Geri A&l"
 
@@ -1109,8 +1112,8 @@ msgstr "&Tamam"
 msgid "&Apply"
 msgstr "&Uygula"
 
-msgid "Linefilters"
-msgstr "Satır Süzgeçleri"
+msgid "Line Filters"
+msgstr ""
 
 msgid "Enable Line Filters"
 msgstr "Satır süzgeçleri kullanılsın"
@@ -1124,6 +1127,30 @@ msgstr "Düzenle"
 msgid "Remove"
 msgstr "Sil"
 
+msgid "Ignored Substitutions"
+msgstr ""
+
+msgid "Enable"
+msgstr ""
+
+msgid "Add"
+msgstr ""
+
+msgid "The changes that appear on the panels as the listed pairs below will be ignored or marked as insignificant. Patches are unaffected."
+msgstr ""
+
+msgid "Ignore changes in both directions"
+msgstr ""
+
+msgid "Completely unhighlight the ignored changes"
+msgstr ""
+
+msgid "Use regular expressions"
+msgstr ""
+
+msgid "Clear"
+msgstr ""
+
 msgid "Colors"
 msgstr "Renkler"
 
@@ -1388,8 +1415,8 @@ msgstr "&Sözcük kesme karakterleri:"
 msgid "&Rendering Mode:"
 msgstr "Gö&rüntüleme Kipi:"
 
-msgid "Filefilters"
-msgstr "Dosya Süzgeçleri"
+msgid "File Filters"
+msgstr ""
 
 msgid "Test..."
 msgstr "Sına..."
@@ -2191,6 +2218,9 @@ msgstr "Orta adsız"
 msgid "Untitled right"
 msgstr "Sağ adsız"
 
+msgid "Base File"
+msgstr ""
+
 msgid "Theirs File"
 msgstr "Başkalarının Dosyası"
 
@@ -2378,6 +2408,10 @@ msgstr ""
 "Ayıklanmış sürümü başka bir dosyaya kaydetmek ister misiniz?"
 
 #, c-format
+msgid "Plugin '%2' cannot pack your changes to the middle file back into '%1'.\n\nThe original file will not be changed.\n\nDo you want to save the unpacked version to another file?"
+msgstr ""
+
+#, c-format
 msgid ""
 "Plugin '%2' cannot pack your changes to the right file back into '%1'.\n"
 "\n"
@@ -3534,3 +3568,24 @@ msgstr "Sayfa: %d/%d  Yakınlaştırma: %d%%  %dx%dpiksel  %dbpp"
 msgid "Rc: (%d, %d)  "
 msgstr ""
 
+msgid "On one panel"
+msgstr ""
+
+msgid "On the other panel"
+msgstr ""
+
+msgid "<Edit here>"
+msgstr ""
+
+msgid "No differences to select found"
+msgstr ""
+
+msgid "No differences found to add as ignored substitution"
+msgstr ""
+
+msgid "The pair is already present in the list of Ignored Substiturions"
+msgstr ""
+
+msgid "Add this change to Ignored Substitutions?"
+msgstr ""
+
index fc83a4c..9017388 100644 (file)
@@ -48,6 +48,9 @@ msgstr ""
 msgid "&Select Line Difference\tF4"
 msgstr "&Вибрати відмінність\tF4"
 
+msgid "Add this change to &Ignored Substitutions"
+msgstr ""
+
 #, c-format
 msgid "&Undo"
 msgstr "&Скасувати"
@@ -1403,9 +1406,8 @@ msgstr "&OК"
 msgid "&Apply"
 msgstr "&Застосувати"
 
-#, c-format
-msgid "Linefilters"
-msgstr "Фільтри рядків"
+msgid "Line Filters"
+msgstr ""
 
 #, c-format
 msgid "Enable Line Filters"
@@ -1423,6 +1425,30 @@ msgstr "Редакція"
 msgid "Remove"
 msgstr "Вилучити"
 
+msgid "Ignored Substitutions"
+msgstr ""
+
+msgid "Enable"
+msgstr ""
+
+msgid "Add"
+msgstr ""
+
+msgid "The changes that appear on the panels as the listed pairs below will be ignored or marked as insignificant. Patches are unaffected."
+msgstr ""
+
+msgid "Ignore changes in both directions"
+msgstr ""
+
+msgid "Completely unhighlight the ignored changes"
+msgstr ""
+
+msgid "Use regular expressions"
+msgstr ""
+
+msgid "Clear"
+msgstr ""
+
 #, c-format
 msgid "Colors"
 msgstr "Кольори"
@@ -1760,9 +1786,8 @@ msgstr "Символи, якимми розбиваються слова"
 msgid "&Rendering Mode:"
 msgstr ""
 
-#, c-format
-msgid "Filefilters"
-msgstr "Фільтри файлів"
+msgid "File Filters"
+msgstr ""
 
 msgid "Test..."
 msgstr "Випробувати..."
@@ -2700,6 +2725,9 @@ msgstr ""
 msgid "Untitled right"
 msgstr "Безіменний праворуч"
 
+msgid "Base File"
+msgstr ""
+
 #, c-format
 msgid "Theirs File"
 msgstr "Їхй файл"
@@ -2893,6 +2921,10 @@ msgstr ""
 "Хочете зберегти розпаковану версію в інший файл?"
 
 #, c-format
+msgid "Plugin '%2' cannot pack your changes to the middle file back into '%1'.\n\nThe original file will not be changed.\n\nDo you want to save the unpacked version to another file?"
+msgstr ""
+
+#, c-format
 msgid ""
 "Plugin '%2' cannot pack your changes to the right file back into '%1'.\n"
 "\n"
@@ -4111,3 +4143,24 @@ msgstr ""
 msgid "Rc: (%d, %d)  "
 msgstr ""
 
+msgid "On one panel"
+msgstr ""
+
+msgid "On the other panel"
+msgstr ""
+
+msgid "<Edit here>"
+msgstr ""
+
+msgid "No differences to select found"
+msgstr ""
+
+msgid "No differences found to add as ignored substitution"
+msgstr ""
+
+msgid "The pair is already present in the list of Ignored Substiturions"
+msgstr ""
+
+msgid "Add this change to Ignored Substitutions?"
+msgstr ""
+