diff options
| author | jvoisin | 2013-05-28 15:02:41 +0200 |
|---|---|---|
| committer | jvoisin | 2013-05-28 15:02:41 +0200 |
| commit | 12a9ae6e435716d2bad56a61c20b01a4250baef3 (patch) | |
| tree | 37098f2f64ab9202be9a2da7a72f15f998f1f05a | |
| parent | 4fedba444a54a05ac7383b110692926cdcbe3ea3 (diff) | |
Update translations
| -rw-r--r-- | data/mat.ui | 5 | ||||
| -rwxr-xr-x | mat-gui | 6 | ||||
| -rw-r--r-- | po/mat-gui.pot | 176 |
3 files changed, 103 insertions, 84 deletions
diff --git a/data/mat.ui b/data/mat.ui index db16d67..a6d0f20 100644 --- a/data/mat.ui +++ b/data/mat.ui | |||
| @@ -22,7 +22,7 @@ | |||
| 22 | <object class="GtkWindow" id="MainWindow"> | 22 | <object class="GtkWindow" id="MainWindow"> |
| 23 | <property name="visible">True</property> | 23 | <property name="visible">True</property> |
| 24 | <property name="can_focus">False</property> | 24 | <property name="can_focus">False</property> |
| 25 | <property name="title" translatable="yes">Metadata Anonymisation Toolkit</property> | 25 | <property name="title">Metadata Anonymisation Toolkit</property> |
| 26 | <property name="window_position">center</property> | 26 | <property name="window_position">center</property> |
| 27 | <property name="default_width">400</property> | 27 | <property name="default_width">400</property> |
| 28 | <property name="default_height">400</property> | 28 | <property name="default_height">400</property> |
| @@ -272,6 +272,9 @@ | |||
| 272 | <property name="rubber_banding">True</property> | 272 | <property name="rubber_banding">True</property> |
| 273 | <signal name="drag-data-received" handler="cb_drag_data_received" swapped="no"/> | 273 | <signal name="drag-data-received" handler="cb_drag_data_received" swapped="no"/> |
| 274 | <signal name="row-activated" handler="cb_popup_metadata" swapped="no"/> | 274 | <signal name="row-activated" handler="cb_popup_metadata" swapped="no"/> |
| 275 | <child internal-child="selection"> | ||
| 276 | <object class="GtkTreeSelection" id="treeview-selection1"/> | ||
| 277 | </child> | ||
| 275 | <child> | 278 | <child> |
| 276 | <object class="GtkTreeViewColumn" id="tvc_path"> | 279 | <object class="GtkTreeViewColumn" id="tvc_path"> |
| 277 | <property name="resizable">True</property> | 280 | <property name="resizable">True</property> |
| @@ -160,10 +160,10 @@ class GUI(object): | |||
| 160 | Popup that display on double-clic | 160 | Popup that display on double-clic |
| 161 | metadata from a file | 161 | metadata from a file |
| 162 | ''' | 162 | ''' |
| 163 | label = '<b>%s</b>\'s metadatas:\n' % self.liststore[row][1] | 163 | label = _('<b>%s</b>\'s metadatas:\n') % self.liststore[row][1] |
| 164 | meta = '' | 164 | meta = '' |
| 165 | if not self.liststore[row][6] or self.liststore[row][0].file.is_clean(): | 165 | if not self.liststore[row][6] or self.liststore[row][0].file.is_clean(): |
| 166 | meta = 'No metadata found' | 166 | meta = _('No metadata found') |
| 167 | self.liststore[row][4] = _('Clean') | 167 | self.liststore[row][4] = _('Clean') |
| 168 | else: | 168 | else: |
| 169 | self.liststore[row][4] = _('Dirty') | 169 | self.liststore[row][4] = _('Dirty') |
| @@ -380,7 +380,7 @@ non-anonymised) file to output archive')) | |||
| 380 | if mime: | 380 | if mime: |
| 381 | store.append([item, mime]) | 381 | store.append([item, mime]) |
| 382 | else: | 382 | else: |
| 383 | store.append([item, 'unknown']) | 383 | store.append([item, _('unknown')]) |
| 384 | 384 | ||
| 385 | treeview = Gtk.TreeView(store) | 385 | treeview = Gtk.TreeView(store) |
| 386 | vbox.pack_start(treeview, True, True, 0) | 386 | vbox.pack_start(treeview, True, True, 0) |
diff --git a/po/mat-gui.pot b/po/mat-gui.pot index 88b9a2b..1078c8a 100644 --- a/po/mat-gui.pot +++ b/po/mat-gui.pot | |||
| @@ -8,7 +8,7 @@ msgid "" | |||
| 8 | msgstr "" | 8 | msgstr "" |
| 9 | "Project-Id-Version: PACKAGE VERSION\n" | 9 | "Project-Id-Version: PACKAGE VERSION\n" |
| 10 | "Report-Msgid-Bugs-To: \n" | 10 | "Report-Msgid-Bugs-To: \n" |
| 11 | "POT-Creation-Date: 2013-01-05 20:03+0100\n" | 11 | "POT-Creation-Date: 2013-05-28 15:00+0200\n" |
| 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" | 12 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" |
| 13 | "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" | 13 | "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
| 14 | "Language-Team: LANGUAGE <LL@li.org>\n" | 14 | "Language-Team: LANGUAGE <LL@li.org>\n" |
| @@ -17,161 +17,177 @@ msgstr "" | |||
| 17 | "Content-Type: text/plain; charset=CHARSET\n" | 17 | "Content-Type: text/plain; charset=CHARSET\n" |
| 18 | "Content-Transfer-Encoding: 8bit\n" | 18 | "Content-Transfer-Encoding: 8bit\n" |
| 19 | 19 | ||
| 20 | #: mat-gui:95 mat-gui:563 mat-gui:579 | 20 | #: mat-gui:72 mat-gui:416 mat-gui:432 |
| 21 | msgid "Ready" | 21 | msgid "Ready" |
| 22 | msgstr "" | 22 | msgstr "" |
| 23 | 23 | ||
| 24 | #: mat-gui:107 | 24 | #: mat-gui:134 |
| 25 | msgid "Add" | 25 | msgid "Choose files" |
| 26 | msgstr "" | ||
| 27 | |||
| 28 | #: mat-gui:141 | ||
| 29 | msgid "All files" | ||
| 30 | msgstr "" | ||
| 31 | |||
| 32 | #: mat-gui:148 | ||
| 33 | msgid "Supported files" | ||
| 26 | msgstr "" | 34 | msgstr "" |
| 27 | 35 | ||
| 28 | #: mat-gui:109 mat-gui:183 | 36 | #: mat-gui:163 |
| 29 | msgid "Add files" | 37 | #, python-format |
| 38 | msgid "<b>%s</b>'s metadatas:\n" | ||
| 39 | msgstr "" | ||
| 40 | |||
| 41 | #: mat-gui:166 | ||
| 42 | msgid "No metadata found" | ||
| 30 | msgstr "" | 43 | msgstr "" |
| 31 | 44 | ||
| 32 | #: mat-gui:113 mat-gui:203 mat-gui:308 mat-gui:311 mat-gui:555 mat-gui:557 | 45 | #: mat-gui:167 mat-gui:409 mat-gui:427 data/mat.ui:204 |
| 33 | #: mat-gui:573 mat-gui:575 | ||
| 34 | msgid "Clean" | 46 | msgid "Clean" |
| 35 | msgstr "" | 47 | msgstr "" |
| 36 | 48 | ||
| 37 | #: mat-gui:115 | 49 | #: mat-gui:169 mat-gui:412 |
| 38 | msgid "Clean selected files" | 50 | msgid "Dirty" |
| 39 | msgstr "" | 51 | msgstr "" |
| 40 | 52 | ||
| 41 | #: mat-gui:119 mat-gui:214 | 53 | #: mat-gui:201 |
| 42 | msgid "Check" | 54 | msgid "This software was coded during the GSoC 2011" |
| 43 | msgstr "" | 55 | msgstr "" |
| 44 | 56 | ||
| 45 | #: mat-gui:121 | 57 | #: mat-gui:206 |
| 46 | msgid "Check selected files for harmful meta" | 58 | msgid "Website" |
| 47 | msgstr "" | 59 | msgstr "" |
| 48 | 60 | ||
| 49 | #: mat-gui:125 mat-gui:185 | 61 | #: mat-gui:233 data/mat.ui:87 |
| 50 | msgid "Quit" | 62 | msgid "Preferences" |
| 51 | msgstr "" | 63 | msgstr "" |
| 52 | 64 | ||
| 53 | #: mat-gui:137 | 65 | #: mat-gui:247 |
| 54 | msgid "Path" | 66 | msgid "Force Clean" |
| 55 | msgstr "" | 67 | msgstr "" |
| 56 | 68 | ||
| 57 | #: mat-gui:137 mat-gui:363 | 69 | #: mat-gui:250 |
| 58 | msgid "Filename" | 70 | msgid "Do not check if already clean before cleaning" |
| 59 | msgstr "" | 71 | msgstr "" |
| 60 | 72 | ||
| 61 | #: mat-gui:137 mat-gui:365 | 73 | #: mat-gui:253 |
| 62 | msgid "Mimetype" | 74 | msgid "Backup" |
| 63 | msgstr "" | 75 | msgstr "" |
| 64 | 76 | ||
| 65 | #: mat-gui:137 | 77 | #: mat-gui:256 |
| 66 | msgid "State" | 78 | msgid "Keep a backup copy" |
| 67 | msgstr "" | 79 | msgstr "" |
| 68 | 80 | ||
| 69 | #: mat-gui:138 | 81 | #: mat-gui:259 |
| 70 | msgid "Cleaned file" | 82 | msgid "Reduce PDF quality" |
| 71 | msgstr "" | 83 | msgstr "" |
| 72 | 84 | ||
| 73 | #: mat-gui:182 | 85 | #: mat-gui:262 |
| 74 | msgid "Files" | 86 | msgid "Reduce the produced PDF size and quality" |
| 75 | msgstr "" | 87 | msgstr "" |
| 76 | 88 | ||
| 77 | #: mat-gui:188 | 89 | #: mat-gui:265 |
| 78 | msgid "Edit" | 90 | msgid "Add unsupported file to archives" |
| 79 | msgstr "" | 91 | msgstr "" |
| 80 | 92 | ||
| 81 | #: mat-gui:189 | 93 | #: mat-gui:269 |
| 82 | msgid "Clear the filelist" | 94 | msgid "Add non-supported (and so non-anonymised) file to output archive" |
| 83 | msgstr "" | 95 | msgstr "" |
| 84 | 96 | ||
| 85 | #: mat-gui:192 mat-gui:447 | 97 | #: mat-gui:316 |
| 86 | msgid "Preferences" | 98 | msgid "unknow" |
| 87 | msgstr "" | 99 | msgstr "" |
| 88 | 100 | ||
| 89 | #: mat-gui:195 | 101 | #: mat-gui:371 |
| 90 | msgid "Process" | 102 | msgid "Not-supported" |
| 91 | msgstr "" | 103 | msgstr "" |
| 92 | 104 | ||
| 93 | #: mat-gui:218 | 105 | #: mat-gui:383 |
| 94 | msgid "Help" | 106 | msgid "unknown" |
| 95 | msgstr "" | 107 | msgstr "" |
| 96 | 108 | ||
| 97 | #: mat-gui:219 mat-gui:395 | 109 | #: mat-gui:390 data/mat.ui:299 |
| 98 | msgid "Supported formats" | 110 | msgid "Filename" |
| 99 | msgstr "" | 111 | msgstr "" |
| 100 | 112 | ||
| 101 | #: mat-gui:220 | 113 | #: mat-gui:392 data/mat.ui:316 |
| 102 | msgid "About" | 114 | msgid "Mimetype" |
| 103 | msgstr "" | 115 | msgstr "" |
| 104 | 116 | ||
| 105 | #: mat-gui:241 | 117 | #: mat-gui:403 |
| 106 | msgid "Choose files" | 118 | #, python-format |
| 119 | msgid "Checking %s" | ||
| 107 | msgstr "" | 120 | msgstr "" |
| 108 | 121 | ||
| 109 | #: mat-gui:248 | 122 | #: mat-gui:422 |
| 110 | msgid "All files" | 123 | #, python-format |
| 124 | msgid "Cleaning %s" | ||
| 111 | msgstr "" | 125 | msgstr "" |
| 112 | 126 | ||
| 113 | #: mat-gui:255 | 127 | #: data/mat.ui:43 |
| 114 | msgid "Supported files" | 128 | msgid "_File" |
| 115 | msgstr "" | 129 | msgstr "" |
| 116 | 130 | ||
| 117 | #: mat-gui:297 | 131 | #: data/mat.ui:79 |
| 118 | msgid "unknow" | 132 | msgid "_Edit" |
| 119 | msgstr "" | 133 | msgstr "" |
| 120 | 134 | ||
| 121 | #: mat-gui:313 mat-gui:559 | 135 | #: data/mat.ui:98 data/mat.ui:230 |
| 122 | msgid "Dirty" | 136 | msgid "Clear" |
| 123 | msgstr "" | 137 | msgstr "" |
| 124 | 138 | ||
| 125 | #: mat-gui:343 | 139 | #: data/mat.ui:113 |
| 126 | msgid "Not-supported" | 140 | msgid "_Process" |
| 127 | msgstr "" | 141 | msgstr "" |
| 128 | 142 | ||
| 129 | #: mat-gui:381 | 143 | #: data/mat.ui:147 |
| 130 | msgid "This software was coded during the GSoC 2011" | 144 | msgid "_Help" |
| 131 | msgstr "" | 145 | msgstr "" |
| 132 | 146 | ||
| 133 | #: mat-gui:386 | 147 | #: data/mat.ui:191 |
| 134 | msgid "Website" | 148 | msgid "Add" |
| 135 | msgstr "" | 149 | msgstr "" |
| 136 | 150 | ||
| 137 | #: mat-gui:461 | 151 | #: data/mat.ui:217 |
| 138 | msgid "Force Clean" | 152 | msgid "Check" |
| 139 | msgstr "" | 153 | msgstr "" |
| 140 | 154 | ||
| 141 | #: mat-gui:464 | 155 | #: data/mat.ui:243 |
| 142 | msgid "Do not check if already clean before cleaning" | 156 | msgid "Quit" |
| 143 | msgstr "" | 157 | msgstr "" |
| 144 | 158 | ||
| 145 | #: mat-gui:468 | 159 | #: data/mat.ui:282 |
| 146 | msgid "Backup" | 160 | msgid "Path" |
| 147 | msgstr "" | 161 | msgstr "" |
| 148 | 162 | ||
| 149 | #: mat-gui:471 | 163 | #: data/mat.ui:333 |
| 150 | msgid "Keep a backup copy" | 164 | msgid "State" |
| 151 | msgstr "" | 165 | msgstr "" |
| 152 | 166 | ||
| 153 | #: mat-gui:474 | 167 | #: data/mat.ui:350 |
| 154 | msgid "Reduce PDF quality" | 168 | msgid "Cleaned copy" |
| 155 | msgstr "" | 169 | msgstr "" |
| 156 | 170 | ||
| 157 | #: mat-gui:477 | 171 | #: data/mat.ui:388 |
| 158 | msgid "Reduce the produced PDF size and quality" | 172 | msgid "Supported formats" |
| 159 | msgstr "" | 173 | msgstr "" |
| 160 | 174 | ||
| 161 | #: mat-gui:480 | 175 | #: data/mat.ui:431 |
| 162 | msgid "Add unsupported file to archives" | 176 | msgid "Support" |
| 163 | msgstr "" | 177 | msgstr "" |
| 164 | 178 | ||
| 165 | #: mat-gui:484 | 179 | #: data/mat.ui:444 |
| 166 | msgid "Add non-supported (and so non-anonymised) file to output archive" | 180 | msgid "Metadata" |
| 167 | msgstr "" | 181 | msgstr "" |
| 168 | 182 | ||
| 169 | #: mat-gui:554 | 183 | #: data/mat.ui:457 |
| 170 | #, python-format | 184 | msgid "Method" |
| 171 | msgid "Checking %s..." | ||
| 172 | msgstr "" | 185 | msgstr "" |
| 173 | 186 | ||
| 174 | #: mat-gui:572 | 187 | #: data/mat.ui:470 |
| 175 | #, python-format | 188 | msgid "Remaining" |
| 176 | msgid "Cleaning %s..." | 189 | msgstr "" |
| 190 | |||
| 191 | #: data/mat.ui:507 | ||
| 192 | msgid "Fileformat" | ||
| 177 | msgstr "" | 193 | msgstr "" |
