Merge lp:~leonardolemos/scratch/fix-1187310 into lp:~elementary-apps/scratch/scratch

Proposed by Leonardo Lemos
Status: Merged
Approved by: Cody Garver
Approved revision: 1615
Merged at revision: 1597
Proposed branch: lp:~leonardolemos/scratch/fix-1187310
Merge into: lp:~elementary-apps/scratch/scratch
Diff against target: 1324 lines (+523/-383)
19 files modified
plugins/brackets-completion/brackets-completion.vala (+2/-2)
plugins/browser-preview/browser-preview.vala (+2/-2)
plugins/clipboard-history/ClipboardHistory.vala (+3/-3)
plugins/contractor/contractor.vala (+1/-1)
plugins/detect-indent/detect-indent.vala (+2/-2)
plugins/filemanager/FileManagerPlugin.vala (+2/-2)
plugins/folder-manager/FolderManagerPlugin.vala (+2/-2)
plugins/highlight-word-selection/highlight-word-selection.vala (+2/-2)
plugins/open-with/open-with.vala (+2/-2)
plugins/outline/OutlinePlugin.vala (+2/-2)
plugins/pastebin/pastebin.vala (+2/-2)
plugins/preserve-indent/preserve-indent.vala (+2/-2)
plugins/source-tree/SourceTreePlugin.vala (+2/-2)
plugins/spell/spell.vala (+3/-3)
plugins/strip-trailing-save/strip-trailing-save.vala (+2/-2)
plugins/terminal/terminal.vala (+2/-2)
plugins/vim-emulation/vim-emulation.vala (+2/-2)
plugins/word-completion/plugin.vala (+2/-2)
po/scratch-text-editor.pot (+486/-346)
To merge this branch: bzr merge lp:~leonardolemos/scratch/fix-1187310
Reviewer Review Type Date Requested Status
elementary Apps team Pending
Review via email: mp+279101@code.launchpad.net

Commit message

Make plugins translatable (lp:1187310)

To post a comment you must log in.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'plugins/brackets-completion/brackets-completion.vala'
2--- plugins/brackets-completion/brackets-completion.vala 2015-09-16 01:11:55 +0000
3+++ plugins/brackets-completion/brackets-completion.vala 2015-12-01 11:49:52 +0000
4@@ -18,8 +18,8 @@
5 END LICENSE
6 ***/
7
8-public const string NAME = N_("Brackets Completion");
9-public const string DESCRIPTION = N_("Complete brackets while typing");
10+public const string NAME = _("Brackets Completion");
11+public const string DESCRIPTION = _("Complete brackets while typing");
12
13 public class Scratch.Plugins.BracketsCompletion : Peas.ExtensionBase, Peas.Activatable {
14 Gee.HashMap<string, string> brackets;
15
16=== modified file 'plugins/browser-preview/browser-preview.vala'
17--- plugins/browser-preview/browser-preview.vala 2014-12-16 18:14:16 +0000
18+++ plugins/browser-preview/browser-preview.vala 2015-12-01 11:49:52 +0000
19@@ -18,8 +18,8 @@
20 END LICENSE
21 ***/
22
23-public const string NAME = N_("Browser Preview");
24-public const string DESCRIPTION = N_("Get a preview your work in a web page");
25+public const string NAME = _("Browser Preview");
26+public const string DESCRIPTION = _("Get a preview your work in a web page");
27
28 namespace Scratch.Plugins {
29
30
31=== modified file 'plugins/clipboard-history/ClipboardHistory.vala'
32--- plugins/clipboard-history/ClipboardHistory.vala 2014-11-12 23:55:34 +0000
33+++ plugins/clipboard-history/ClipboardHistory.vala 2015-12-01 11:49:52 +0000
34@@ -18,8 +18,8 @@
35 END LICENSE
36 ***/
37
38-public const string NAME = N_("Clipboard History");
39-public const string DESCRIPTION = N_("Clipboard to view history");
40+public const string NAME = _("Clipboard History");
41+public const string DESCRIPTION = _("Clipboard to view history");
42
43 public class Scratch.Plugins.ClipboardHistory : Peas.ExtensionBase, Peas.Activatable {
44
45@@ -227,4 +227,4 @@
46 var objmodule = module as Peas.ObjectModule;
47 objmodule.register_extension_type (typeof (Peas.Activatable),
48 typeof (Scratch.Plugins.ClipboardHistory));
49-}
50\ No newline at end of file
51+}
52
53=== modified file 'plugins/contractor/contractor.vala'
54--- plugins/contractor/contractor.vala 2015-09-16 11:37:41 +0000
55+++ plugins/contractor/contractor.vala 2015-12-01 11:49:52 +0000
56@@ -18,7 +18,7 @@
57 END LICENSE
58 ***/
59
60-public const string DESCRIPTION = N_("Share your files with Contractor");
61+public const string DESCRIPTION = _("Share your files with Contractor");
62
63 public class Scratch.Plugins.ContractMenuItem : Gtk.MenuItem {
64 private Granite.Services.Contract contract;
65
66=== modified file 'plugins/detect-indent/detect-indent.vala'
67--- plugins/detect-indent/detect-indent.vala 2015-09-16 01:11:55 +0000
68+++ plugins/detect-indent/detect-indent.vala 2015-12-01 11:49:52 +0000
69@@ -1,5 +1,5 @@
70-public const string NAME = N_("Detect Indent");
71-public const string DESCRIPTION = N_("Heuristically detect tab or space settings");
72+public const string NAME = _("Detect Indent");
73+public const string DESCRIPTION = _("Heuristically detect tab or space settings");
74
75 public class Scratch.Plugins.DetectIndent: Peas.ExtensionBase, Peas.Activatable {
76 static const int MAX_LINES = 500;
77
78=== modified file 'plugins/filemanager/FileManagerPlugin.vala'
79--- plugins/filemanager/FileManagerPlugin.vala 2015-09-16 01:11:55 +0000
80+++ plugins/filemanager/FileManagerPlugin.vala 2015-12-01 11:49:52 +0000
81@@ -18,8 +18,8 @@
82 END LICENSE
83 ***/
84
85-public const string NAME = N_("Folder Manager");
86-public const string DESCRIPTION = N_("Basic folder manager with file browsing");
87+public const string NAME = _("Folder Manager");
88+public const string DESCRIPTION = _("Basic folder manager with file browsing");
89
90 namespace Scratch.Plugins {
91 public class FileManagerPlugin : Peas.ExtensionBase, Peas.Activatable {
92
93=== modified file 'plugins/folder-manager/FolderManagerPlugin.vala'
94--- plugins/folder-manager/FolderManagerPlugin.vala 2015-09-16 01:11:55 +0000
95+++ plugins/folder-manager/FolderManagerPlugin.vala 2015-12-01 11:49:52 +0000
96@@ -18,8 +18,8 @@
97 END LICENSE
98 ***/
99
100-public const string NAME = N_("Folder Manager");
101-public const string DESCRIPTION = N_("Basic folder manager with file browsing");
102+public const string NAME = _("Folder Manager");
103+public const string DESCRIPTION = _("Basic folder manager with file browsing");
104
105 namespace Scratch.Plugins {
106 public class FolderManagerPlugin : Peas.ExtensionBase, Peas.Activatable {
107
108=== modified file 'plugins/highlight-word-selection/highlight-word-selection.vala'
109--- plugins/highlight-word-selection/highlight-word-selection.vala 2015-09-16 01:11:55 +0000
110+++ plugins/highlight-word-selection/highlight-word-selection.vala 2015-12-01 11:49:52 +0000
111@@ -18,8 +18,8 @@
112 END LICENSE
113 ***/
114
115-public const string NAME = N_("Highlight Selected Words");
116-public const string DESCRIPTION = N_("Highlights all occurrences of words that are selected");
117+public const string NAME = _("Highlight Selected Words");
118+public const string DESCRIPTION = _("Highlights all occurrences of words that are selected");
119
120 public class Scratch.Plugins.HighlightSelectedWords : Peas.ExtensionBase, Peas.Activatable {
121 // Properties
122
123=== modified file 'plugins/open-with/open-with.vala'
124--- plugins/open-with/open-with.vala 2015-09-16 01:11:55 +0000
125+++ plugins/open-with/open-with.vala 2015-12-01 11:49:52 +0000
126@@ -18,8 +18,8 @@
127 END LICENSE
128 ***/
129
130-public const string NAME = N_("Open With");
131-public const string DESCRIPTION = N_("Open files you are editing with another application");
132+public const string NAME = _("Open With");
133+public const string DESCRIPTION = _("Open files you are editing with another application");
134
135 public class Scratch.Plugins.OpenWith : Peas.ExtensionBase, Peas.Activatable {
136 Gtk.MenuItem? item = null;
137
138=== modified file 'plugins/outline/OutlinePlugin.vala'
139--- plugins/outline/OutlinePlugin.vala 2015-09-16 01:11:55 +0000
140+++ plugins/outline/OutlinePlugin.vala 2015-12-01 11:49:52 +0000
141@@ -18,8 +18,8 @@
142 END LICENSE
143 ***/
144
145-public const string NAME = N_("Outline");
146-public const string DESCRIPTION = N_("Outline symbols in your current file in vala");
147+public const string NAME = _("Outline");
148+public const string DESCRIPTION = _("Outline symbols in your current file in vala");
149
150 namespace Scratch.Plugins {
151 public class OutlinePlugin : Peas.ExtensionBase, Peas.Activatable {
152
153=== modified file 'plugins/pastebin/pastebin.vala'
154--- plugins/pastebin/pastebin.vala 2015-10-27 05:03:44 +0000
155+++ plugins/pastebin/pastebin.vala 2015-12-01 11:49:52 +0000
156@@ -20,8 +20,8 @@
157
158 using Soup;
159
160-public const string NAME = N_("Pastebin");
161-public const string DESCRIPTION = N_("Share files with pastebin service");
162+public const string NAME = _("Pastebin");
163+public const string DESCRIPTION = _("Share files with pastebin service");
164
165 namespace Scratch.Services {
166
167
168=== modified file 'plugins/preserve-indent/preserve-indent.vala'
169--- plugins/preserve-indent/preserve-indent.vala 2015-07-11 06:43:41 +0000
170+++ plugins/preserve-indent/preserve-indent.vala 2015-12-01 11:49:52 +0000
171@@ -21,8 +21,8 @@
172 using Gtk;
173 using Scratch;
174
175-public const string NAME = N_("Preserve Indent");
176-public const string DESCRIPTION = N_("Maintains indent level of pasted text when auto-indent is active");
177+public const string NAME = _("Preserve Indent");
178+public const string DESCRIPTION = _("Maintains indent level of pasted text when auto-indent is active");
179
180 public class Scratch.Plugins.PreserveIndent : Peas.ExtensionBase, Peas.Activatable {
181
182
183=== modified file 'plugins/source-tree/SourceTreePlugin.vala'
184--- plugins/source-tree/SourceTreePlugin.vala 2014-06-03 19:27:24 +0000
185+++ plugins/source-tree/SourceTreePlugin.vala 2015-12-01 11:49:52 +0000
186@@ -17,8 +17,8 @@
187 END LICENSE
188 ***/
189
190-public const string NAME = N_("Source Tree");
191-public const string DESCRIPTION = N_("Have a look at your sources organized in a nice tree");
192+public const string NAME = _("Source Tree");
193+public const string DESCRIPTION = _("Have a look at your sources organized in a nice tree");
194
195 const bool HIDE_TOOLBAR = true;
196
197
198=== modified file 'plugins/spell/spell.vala'
199--- plugins/spell/spell.vala 2014-04-13 08:57:06 +0000
200+++ plugins/spell/spell.vala 2015-12-01 11:49:52 +0000
201@@ -15,8 +15,8 @@
202
203 using Gtk;
204
205-public const string NAME = N_("Spell Checker");
206-public const string DESCRIPTION = N_("Checks the spelling of your documents");
207+public const string NAME = _("Spell Checker");
208+public const string DESCRIPTION = _("Checks the spelling of your documents");
209
210 public class Scratch.Plugins.Spell: Peas.ExtensionBase, Peas.Activatable {
211
212@@ -76,4 +76,4 @@
213 var objmodule = module as Peas.ObjectModule;
214 objmodule.register_extension_type (typeof(Peas.Activatable),
215 typeof(Scratch.Plugins.Spell));
216-}
217\ No newline at end of file
218+}
219
220=== modified file 'plugins/strip-trailing-save/strip-trailing-save.vala'
221--- plugins/strip-trailing-save/strip-trailing-save.vala 2014-04-12 23:26:29 +0000
222+++ plugins/strip-trailing-save/strip-trailing-save.vala 2015-12-01 11:49:52 +0000
223@@ -15,8 +15,8 @@
224
225 using Gtk;
226
227-public const string NAME = N_("Strip trailing whitespace");
228-public const string DESCRIPTION = N_("Strip trailing whitespace on save");
229+public const string NAME = _("Strip trailing whitespace");
230+public const string DESCRIPTION = _("Strip trailing whitespace on save");
231
232 public class Scratch.Plugins.StripTrailSave: Peas.ExtensionBase, Peas.Activatable {
233
234
235=== modified file 'plugins/terminal/terminal.vala'
236--- plugins/terminal/terminal.vala 2015-09-05 13:57:14 +0000
237+++ plugins/terminal/terminal.vala 2015-12-01 11:49:52 +0000
238@@ -20,8 +20,8 @@
239
240 using Vte;
241
242-public const string NAME = N_("Terminal");
243-public const string DESCRIPTION = N_("A terminal in your text editor");
244+public const string NAME = _("Terminal");
245+public const string DESCRIPTION = _("A terminal in your text editor");
246
247 public class Scratch.Plugins.Terminal : Peas.ExtensionBase, Peas.Activatable {
248
249
250=== modified file 'plugins/vim-emulation/vim-emulation.vala'
251--- plugins/vim-emulation/vim-emulation.vala 2015-09-16 01:11:55 +0000
252+++ plugins/vim-emulation/vim-emulation.vala 2015-12-01 11:49:52 +0000
253@@ -18,8 +18,8 @@
254 END LICENSE
255 ***/
256
257-public const string NAME = N_("Vim Emulation");
258-public const string DESCRIPTION = N_("Use Vim commands in Scratch");
259+public const string NAME = _("Vim Emulation");
260+public const string DESCRIPTION = _("Use Vim commands in Scratch");
261
262 public class Scratch.Plugins.VimEmulation : Peas.ExtensionBase, Peas.Activatable {
263
264
265=== modified file 'plugins/word-completion/plugin.vala'
266--- plugins/word-completion/plugin.vala 2015-09-16 01:11:55 +0000
267+++ plugins/word-completion/plugin.vala 2015-12-01 11:49:52 +0000
268@@ -31,8 +31,8 @@
269 public Gtk.SourceView? current_view {get; private set;}
270 public Scratch.Services.Document current_document {get; private set;}
271
272- private const string NAME = N_("Words Completion");
273- private const string DESCRIPTION = N_("Show a completion dialog with most used words from your files");
274+ private const string NAME = _("Words Completion");
275+ private const string DESCRIPTION = _("Show a completion dialog with most used words from your files");
276
277 private const uint [] activate_keys = {Gdk.Key.Return,
278 Gdk.Key.KP_Enter,
279
280=== modified file 'po/scratch-text-editor.pot'
281--- po/scratch-text-editor.pot 2015-10-01 10:43:46 +0000
282+++ po/scratch-text-editor.pot 2015-12-01 11:49:52 +0000
283@@ -8,7 +8,7 @@
284 msgstr ""
285 "Project-Id-Version: PACKAGE VERSION\n"
286 "Report-Msgid-Bugs-To: \n"
287-"POT-Creation-Date: 2015-10-01 05:43-0500\n"
288+"POT-Creation-Date: 2015-12-01 09:46-0200\n"
289 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
290 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
291 "Language-Team: LANGUAGE <LL@li.org>\n"
292@@ -17,40 +17,8 @@
293 "Content-Type: text/plain; charset=UTF-8\n"
294 "Content-Transfer-Encoding: 8bit\n"
295
296-#: ../src/Scratch.vala:243
297-msgid "New Tab"
298-msgstr ""
299-
300-#: ../src/Scratch.vala:244 ../src/config.vala:18
301-msgid "New Window"
302-msgstr ""
303-
304-#: ../src/Scratch.vala:245
305-msgid "Print version info and exit"
306-msgstr ""
307-
308-#: ../src/Scratch.vala:246
309-msgid "Set of plugins"
310-msgstr ""
311-
312-#: ../src/Scratch.vala:247
313-msgid "Current working directory"
314-msgstr ""
315-
316-#: ../src/config.vala:15
317-msgid "Edit text files"
318-msgstr ""
319-
320-#: ../src/config.vala:16
321-msgid "Text Editor"
322-msgstr ""
323-
324-#: ../src/config.vala:17 ../src/Services/Document.vala:405
325-msgid "New Document"
326-msgstr ""
327-
328-#: ../src/config.vala:19
329-msgid "About Scratch"
330+#: ../src/Services/TemplateManager.vala:194 ../src/MainWindow.vala:905
331+msgid "Templates"
332 msgstr ""
333
334 #: ../src/Services/Document.vala:231
335@@ -71,7 +39,7 @@
336 msgstr ""
337
338 #: ../src/Services/Document.vala:241 ../src/Services/Document.vala:546
339-#: ../src/Utils.vala:33 ../src/MainWindow.vala:911
340+#: ../src/Utils.vala:33 ../src/MainWindow.vala:897
341 msgid "Save"
342 msgstr ""
343
344@@ -79,6 +47,10 @@
345 msgid "Save File"
346 msgstr ""
347
348+#: ../src/Services/Document.vala:405 ../src/config.vala:17
349+msgid "New Document"
350+msgstr ""
351+
352 #: ../src/Services/Document.vala:521
353 msgid ""
354 "File \"%s\" cannot be read. Maybe it is corrupt\n"
355@@ -91,7 +63,7 @@
356 "somewhere else?"
357 msgstr ""
358
359-#: ../src/Services/Document.vala:539 ../src/MainWindow.vala:915
360+#: ../src/Services/Document.vala:539 ../src/MainWindow.vala:901
361 msgid "Save As…"
362 msgstr ""
363
364@@ -123,96 +95,7 @@
365 msgid "Continue"
366 msgstr ""
367
368-#: ../src/Services/TemplateManager.vala:194 ../src/MainWindow.vala:919
369-msgid "Templates"
370-msgstr ""
371-
372-#: ../src/Widgets/DocumentView.vala:91
373-msgid "Text file from "
374-msgstr ""
375-
376-#: ../src/Widgets/SourceView.vala:120
377-msgid "Syntax Highlighting"
378-msgstr ""
379-
380-#: ../src/Widgets/SourceView.vala:131
381-msgid "Normal Text"
382-msgstr ""
383-
384-#: ../src/Widgets/LoadingView.vala:33
385-msgid "Wait while restoring last session..."
386-msgstr ""
387-
388-#: ../src/Widgets/SearchManager.vala:70
389-msgid "Find"
390-msgstr ""
391-
392-#: ../src/Widgets/SearchManager.vala:75
393-msgid "Replace With"
394-msgstr ""
395-
396-#: ../src/Widgets/SearchManager.vala:91
397-msgid "Search next"
398-msgstr ""
399-
400-#: ../src/Widgets/SearchManager.vala:97
401-msgid "Search previous"
402-msgstr ""
403-
404-#: ../src/Widgets/SearchManager.vala:104
405-msgid "Cyclic Search"
406-msgstr ""
407-
408-#: ../src/Widgets/SearchManager.vala:107 ../src/MainWindow.vala:863
409-#: ../src/MainWindow.vala:864
410-msgid "Replace"
411-msgstr ""
412-
413-#: ../src/Widgets/SearchManager.vala:112
414-msgid "Replace all"
415-msgstr ""
416-
417-#: ../src/Widgets/SearchManager.vala:121
418-msgid "Go To Line:"
419-msgstr ""
420-
421-#: ../src/Widgets/ToolBar.vala:58
422-msgid "Share"
423-msgstr ""
424-
425-#: ../src/Widgets/SplitView.vala:45
426-msgid "No Files Open"
427-msgstr ""
428-
429-#: ../src/Widgets/SplitView.vala:46
430-msgid "Open a file to begin editing."
431-msgstr ""
432-
433-#: ../src/Widgets/SplitView.vala:50
434-msgid "New file"
435-msgstr ""
436-
437-#: ../src/Widgets/SplitView.vala:50
438-msgid "Create a new empty file."
439-msgstr ""
440-
441-#: ../src/Widgets/SplitView.vala:51
442-msgid "Open file"
443-msgstr ""
444-
445-#: ../src/Widgets/SplitView.vala:51
446-msgid "Open a saved file."
447-msgstr ""
448-
449-#: ../src/Widgets/SplitView.vala:52
450-msgid "New file from clipboard"
451-msgstr ""
452-
453-#: ../src/Widgets/SplitView.vala:52
454-msgid "Create a new file from the contents of your clipboard."
455-msgstr ""
456-
457-#: ../src/Dialogs/PreferencesDialog.vala:50 ../src/MainWindow.vala:923
458+#: ../src/Dialogs/PreferencesDialog.vala:50 ../src/MainWindow.vala:909
459 msgid "Preferences"
460 msgstr ""
461
462@@ -228,8 +111,8 @@
463 msgid "Extensions"
464 msgstr ""
465
466-#: ../src/Dialogs/PreferencesDialog.vala:83 ../src/MainWindow.vala:859
467-#: ../src/MainWindow.vala:860
468+#: ../src/Dialogs/PreferencesDialog.vala:83 ../src/MainWindow.vala:845
469+#: ../src/MainWindow.vala:846
470 msgid "Close"
471 msgstr ""
472
473@@ -313,7 +196,7 @@
474 msgid "Custom font:"
475 msgstr ""
476
477-#: ../src/Utils.vala:31 ../src/MainWindow.vala:899
478+#: ../src/Utils.vala:31 ../src/MainWindow.vala:885
479 #: ../plugins/filemanager/FileView.vala:230
480 msgid "Open"
481 msgstr ""
482@@ -326,6 +209,123 @@
483 msgid "Text files"
484 msgstr ""
485
486+#: ../src/config.vala:15
487+msgid "Edit text files"
488+msgstr ""
489+
490+#: ../src/config.vala:16
491+msgid "Text Editor"
492+msgstr ""
493+
494+#: ../src/config.vala:18 ../src/Scratch.vala:247
495+msgid "New Window"
496+msgstr ""
497+
498+#: ../src/config.vala:19
499+msgid "About Scratch"
500+msgstr ""
501+
502+#: ../src/Scratch.vala:246
503+msgid "New Tab"
504+msgstr ""
505+
506+#: ../src/Scratch.vala:248
507+msgid "Print version info and exit"
508+msgstr ""
509+
510+#: ../src/Scratch.vala:249
511+msgid "Set of plugins"
512+msgstr ""
513+
514+#: ../src/Scratch.vala:250
515+msgid "Current working directory"
516+msgstr ""
517+
518+#: ../src/Widgets/SourceView.vala:120
519+msgid "Syntax Highlighting"
520+msgstr ""
521+
522+#: ../src/Widgets/SourceView.vala:131
523+msgid "Normal Text"
524+msgstr ""
525+
526+#: ../src/Widgets/ToolBar.vala:58
527+msgid "Share"
528+msgstr ""
529+
530+#: ../src/Widgets/LoadingView.vala:33
531+msgid "Wait while restoring last session..."
532+msgstr ""
533+
534+#: ../src/Widgets/DocumentView.vala:91
535+msgid "Text file from "
536+msgstr ""
537+
538+#: ../src/Widgets/SplitView.vala:45
539+msgid "No Files Open"
540+msgstr ""
541+
542+#: ../src/Widgets/SplitView.vala:46
543+msgid "Open a file to begin editing."
544+msgstr ""
545+
546+#: ../src/Widgets/SplitView.vala:50
547+msgid "New file"
548+msgstr ""
549+
550+#: ../src/Widgets/SplitView.vala:50
551+msgid "Create a new empty file."
552+msgstr ""
553+
554+#: ../src/Widgets/SplitView.vala:51
555+msgid "Open file"
556+msgstr ""
557+
558+#: ../src/Widgets/SplitView.vala:51
559+msgid "Open a saved file."
560+msgstr ""
561+
562+#: ../src/Widgets/SplitView.vala:52
563+msgid "New file from clipboard"
564+msgstr ""
565+
566+#: ../src/Widgets/SplitView.vala:52
567+msgid "Create a new file from the contents of your clipboard."
568+msgstr ""
569+
570+#: ../src/Widgets/SearchManager.vala:70
571+msgid "Find"
572+msgstr ""
573+
574+#: ../src/Widgets/SearchManager.vala:75
575+msgid "Replace With"
576+msgstr ""
577+
578+#: ../src/Widgets/SearchManager.vala:91
579+msgid "Search next"
580+msgstr ""
581+
582+#: ../src/Widgets/SearchManager.vala:97
583+msgid "Search previous"
584+msgstr ""
585+
586+#: ../src/Widgets/SearchManager.vala:104
587+msgid "Cyclic Search"
588+msgstr ""
589+
590+#: ../src/Widgets/SearchManager.vala:107 ../src/MainWindow.vala:849
591+#: ../src/MainWindow.vala:850
592+msgid "Replace"
593+msgstr ""
594+
595+#: ../src/Widgets/SearchManager.vala:112
596+msgid "Replace all"
597+msgstr ""
598+
599+#: ../src/Widgets/SearchManager.vala:121
600+msgid "Go To Line:"
601+msgstr ""
602+
603 #: ../src/MainWindow.vala:97
604 msgid "Zeitgeist Datasource for Scratch"
605 msgstr ""
606@@ -334,135 +334,239 @@
607 msgid "Trash"
608 msgstr ""
609
610-#: ../src/MainWindow.vala:660
611+#: ../src/MainWindow.vala:662
612 msgid "Open some files"
613 msgstr ""
614
615-#: ../src/MainWindow.vala:785
616+#: ../src/MainWindow.vala:771
617 msgid "Hide search bar"
618 msgstr ""
619
620-#: ../src/MainWindow.vala:788 ../src/MainWindow.vala:952
621-#: ../src/MainWindow.vala:953
622+#: ../src/MainWindow.vala:774 ../src/MainWindow.vala:938
623+#: ../src/MainWindow.vala:939
624 msgid "Find…"
625 msgstr ""
626
627-#: ../src/MainWindow.vala:851 ../src/MainWindow.vala:852
628+#: ../src/MainWindow.vala:837 ../src/MainWindow.vala:838
629 msgid "Go to line…"
630 msgstr ""
631
632-#: ../src/MainWindow.vala:855 ../src/MainWindow.vala:856
633+#: ../src/MainWindow.vala:841 ../src/MainWindow.vala:842
634 msgid "Quit"
635 msgstr ""
636
637-#: ../src/MainWindow.vala:867
638+#: ../src/MainWindow.vala:853
639 msgid "Reopen closed document"
640 msgstr ""
641
642-#: ../src/MainWindow.vala:868
643+#: ../src/MainWindow.vala:854
644 msgid "Open last closed document in a new tab"
645 msgstr ""
646
647-#: ../src/MainWindow.vala:871
648+#: ../src/MainWindow.vala:857
649 msgid "Add New Tab"
650 msgstr ""
651
652-#: ../src/MainWindow.vala:872
653+#: ../src/MainWindow.vala:858
654 msgid "Add a new tab"
655 msgstr ""
656
657-#: ../src/MainWindow.vala:875
658+#: ../src/MainWindow.vala:861
659 msgid "Add New View"
660 msgstr ""
661
662-#: ../src/MainWindow.vala:876
663+#: ../src/MainWindow.vala:862
664 msgid "Add a new view"
665 msgstr ""
666
667-#: ../src/MainWindow.vala:879
668+#: ../src/MainWindow.vala:865
669 msgid "Remove Current View"
670 msgstr ""
671
672-#: ../src/MainWindow.vala:880
673+#: ../src/MainWindow.vala:866
674 msgid "Remove this view"
675 msgstr ""
676
677-#: ../src/MainWindow.vala:883
678+#: ../src/MainWindow.vala:869
679 msgid "Undo"
680 msgstr ""
681
682-#: ../src/MainWindow.vala:884
683+#: ../src/MainWindow.vala:870
684 msgid "Undo the last action"
685 msgstr ""
686
687-#: ../src/MainWindow.vala:887
688+#: ../src/MainWindow.vala:873
689 msgid "Redo"
690 msgstr ""
691
692-#: ../src/MainWindow.vala:888
693+#: ../src/MainWindow.vala:874
694 msgid "Redo the last undone action"
695 msgstr ""
696
697-#: ../src/MainWindow.vala:891
698+#: ../src/MainWindow.vala:877
699 msgid "Revert"
700 msgstr ""
701
702-#: ../src/MainWindow.vala:892
703+#: ../src/MainWindow.vala:878
704 msgid "Restore this file"
705 msgstr ""
706
707-#: ../src/MainWindow.vala:895 ../src/MainWindow.vala:896
708+#: ../src/MainWindow.vala:881 ../src/MainWindow.vala:882
709 msgid "Duplicate selected strings"
710 msgstr ""
711
712-#: ../src/MainWindow.vala:900
713+#: ../src/MainWindow.vala:886
714 msgid "Open a file"
715 msgstr ""
716
717-#: ../src/MainWindow.vala:903
718+#: ../src/MainWindow.vala:889
719 msgid "Clipboard"
720 msgstr ""
721
722-#: ../src/MainWindow.vala:904
723+#: ../src/MainWindow.vala:890
724 msgid "New file from Clipboard"
725 msgstr ""
726
727-#: ../src/MainWindow.vala:907
728+#: ../src/MainWindow.vala:893
729 msgid "Zoom"
730 msgstr ""
731
732-#: ../src/MainWindow.vala:908
733+#: ../src/MainWindow.vala:894
734 msgid "Zoom 1:1"
735 msgstr ""
736
737-#: ../src/MainWindow.vala:912
738+#: ../src/MainWindow.vala:898
739 msgid "Save this file"
740 msgstr ""
741
742-#: ../src/MainWindow.vala:916
743+#: ../src/MainWindow.vala:902
744 msgid "Save this file with a different name"
745 msgstr ""
746
747-#: ../src/MainWindow.vala:920
748+#: ../src/MainWindow.vala:906
749 msgid "Project templates"
750 msgstr ""
751
752-#: ../src/MainWindow.vala:924
753+#: ../src/MainWindow.vala:910
754 msgid "Change Scratch settings"
755 msgstr ""
756
757-#: ../src/MainWindow.vala:927 ../src/MainWindow.vala:928
758+#: ../src/MainWindow.vala:913 ../src/MainWindow.vala:914
759 msgid "Next Tab"
760 msgstr ""
761
762-#: ../src/MainWindow.vala:931 ../src/MainWindow.vala:932
763+#: ../src/MainWindow.vala:917 ../src/MainWindow.vala:918
764 msgid "Previous Tab"
765 msgstr ""
766
767-#: ../src/MainWindow.vala:948 ../src/MainWindow.vala:949
768+#: ../src/MainWindow.vala:934 ../src/MainWindow.vala:935
769 msgid "Fullscreen"
770 msgstr ""
771
772+#. /or modify it
773+#. under the terms of the GNU Lesser General Public License version 3, as published
774+#. by the Free Software Foundation.
775+#.
776+#. This program is distributed in the hope that it will be useful, but
777+#. WITHOUT ANY WARRANTY; without even the implied warranties of
778+#. MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
779+#. PURPOSE. See the GNU General Public License for more details.
780+#.
781+#. You should have received a copy of the GNU General Public License along
782+#. with this program. If not, see <http://www.gnu.org/licenses/>
783+#.
784+#. END LICENSE
785+#. **
786+#: ../plugins/open-with/open-with.vala:21
787+msgid "Open With"
788+msgstr ""
789+
790+#: ../plugins/open-with/open-with.vala:22
791+msgid "Open files you are editing with another application"
792+msgstr ""
793+
794+#: ../plugins/open-with/open-with.vala:54
795+msgid "Open With…"
796+msgstr ""
797+
798+#. /or modify it
799+#. under the terms of the GNU Lesser General Public License version 3, as published
800+#. by the Free Software Foundation.
801+#.
802+#. This program is distributed in the hope that it will be useful, but
803+#. WITHOUT ANY WARRANTY; without even the implied warranties of
804+#. MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
805+#. PURPOSE. See the GNU General Public License for more details.
806+#.
807+#. You should have received a copy of the GNU General Public License along
808+#. with this program. If not, see <http://www.gnu.org/licenses/>
809+#.
810+#. END LICENSE
811+#. **
812+#: ../plugins/brackets-completion/brackets-completion.vala:21
813+msgid "Brackets Completion"
814+msgstr ""
815+
816+#: ../plugins/brackets-completion/brackets-completion.vala:22
817+msgid "Complete brackets while typing"
818+msgstr ""
819+
820+#. /or modify it
821+#. under the terms of the GNU Lesser General Public License version 3, as published
822+#. by the Free Software Foundation.
823+#.
824+#. This program is distributed in the hope that it will be useful, but
825+#. WITHOUT ANY WARRANTY; without even the implied warranties of
826+#. MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
827+#. PURPOSE. See the GNU General Public License for more details.
828+#.
829+#. You should have received a copy of the GNU General Public License along
830+#. with this program. If not, see <http://www.gnu.org/licenses/>
831+#.
832+#. END LICENSE
833+#. **
834+#: ../plugins/vim-emulation/vim-emulation.vala:21
835+msgid "Vim Emulation"
836+msgstr ""
837+
838+#: ../plugins/vim-emulation/vim-emulation.vala:22
839+msgid "Use Vim commands in Scratch"
840+msgstr ""
841+
842+#: ../plugins/word-completion/completion-provider.vala:80
843+msgid "Could not load icon theme: %s\n"
844+msgstr ""
845+
846+#: ../plugins/word-completion/plugin.vala:34
847+msgid "Words Completion"
848+msgstr ""
849+
850+#: ../plugins/word-completion/plugin.vala:35
851+msgid "Show a completion dialog with most used words from your files"
852+msgstr ""
853+
854+#: ../plugins/word-completion/plugin.vala:175
855+msgid "%s - Word Completion"
856+msgstr ""
857+
858+#: ../plugins/filemanager/FileView.vala:73
859+msgid "/New File"
860+msgstr ""
861+
862+#. /or modify it
863+#. under the terms of the GNU Lesser General Public License version 3, as published
864+#. by the Free Software Foundation.
865+#.
866+#. This program is distributed in the hope that it will be useful, but
867+#. WITHOUT ANY WARRANTY; without even the implied warranties of
868+#. MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
869+#. PURPOSE. See the GNU General Public License for more details.
870+#.
871+#. You should have received a copy of the GNU General Public License along
872+#. with this program. If not, see <http://www.gnu.org/licenses/>
873+#.
874+#. END LICENSE
875+#. **
876 #: ../plugins/filemanager/FileManagerPlugin.vala:21
877 #: ../plugins/folder-manager/FolderManagerPlugin.vala:21
878 msgid "Folder Manager"
879@@ -489,10 +593,6 @@
880 msgid "File Manager"
881 msgstr ""
882
883-#: ../plugins/filemanager/FileView.vala:73
884-msgid "/New File"
885-msgstr ""
886-
887 #: ../plugins/preserve-indent/preserve-indent.vala:24
888 msgid "Preserve Indent"
889 msgstr ""
890@@ -501,6 +601,20 @@
891 msgid "Maintains indent level of pasted text when auto-indent is active"
892 msgstr ""
893
894+#. /or modify it
895+#. under the terms of the GNU Lesser General Public License version 3, as published
896+#. by the Free Software Foundation.
897+#.
898+#. This program is distributed in the hope that it will be useful, but
899+#. WITHOUT ANY WARRANTY; without even the implied warranties of
900+#. MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
901+#. PURPOSE. See the GNU General Public License for more details.
902+#.
903+#. You should have received a copy of the GNU General Public License along
904+#. with this program. If not, see <http://www.gnu.org/licenses/>
905+#.
906+#. END LICENSE
907+#. **
908 #: ../plugins/highlight-word-selection/highlight-word-selection.vala:21
909 msgid "Highlight Selected Words"
910 msgstr ""
911@@ -509,32 +623,71 @@
912 msgid "Highlights all occurrences of words that are selected"
913 msgstr ""
914
915-#: ../plugins/clipboard-history/ClipboardHistory.vala:21
916-#: ../plugins/clipboard-history/ClipboardHistory.vala:89
917-msgid "Clipboard History"
918-msgstr ""
919-
920-#: ../plugins/clipboard-history/ClipboardHistory.vala:22
921-msgid "Clipboard to view history"
922-msgstr ""
923-
924-#: ../plugins/clipboard-history/ClipboardHistory.vala:28
925-msgid "..."
926-msgstr ""
927-
928-#: ../plugins/clipboard-history/ClipboardHistory.vala:156
929-msgid "Delete"
930-msgstr ""
931-
932-#: ../plugins/clipboard-history/ClipboardHistory.vala:159
933-#: ../plugins/terminal/terminal.vala:313
934-msgid "Paste"
935-msgstr ""
936-
937-#: ../plugins/browser-preview/BrowserView.vala:49
938-msgid "Close Inspector"
939-msgstr ""
940-
941+#. /or modify it
942+#. under the terms of the GNU Lesser General Public License version 3, as published
943+#. by the Free Software Foundation.
944+#.
945+#. This program is distributed in the hope that it will be useful, but
946+#. WITHOUT ANY WARRANTY; without even the implied warranties of
947+#. MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
948+#. PURPOSE. See the GNU General Public License for more details.
949+#.
950+#. You should have received a copy of the GNU General Public License along
951+#. with this program. If not, see <http://www.gnu.org/licenses/>
952+#.
953+#. END LICENSE
954+#. **
955+#: ../plugins/source-tree/SourceTreePlugin.vala:20
956+#: ../plugins/source-tree/SourceTreePlugin.vala:197
957+msgid "Source Tree"
958+msgstr ""
959+
960+#: ../plugins/source-tree/SourceTreePlugin.vala:21
961+msgid "Have a look at your sources organized in a nice tree"
962+msgstr ""
963+
964+#: ../plugins/source-tree/SourceTreePlugin.vala:42
965+msgid "Loading..."
966+msgstr ""
967+
968+#: ../plugins/source-tree/SourceTreePlugin.vala:175
969+msgid "Bookmark"
970+msgstr ""
971+
972+#: ../plugins/source-tree/SourceTreePlugin.vala:234
973+msgid "Files"
974+msgstr ""
975+
976+#: ../plugins/source-tree/SourceTreePlugin.vala:235
977+msgid "Project"
978+msgstr ""
979+
980+#: ../plugins/source-tree/SourceTreePlugin.vala:236
981+msgid "Bookmarks"
982+msgstr ""
983+
984+#: ../plugins/strip-trailing-save/strip-trailing-save.vala:18
985+msgid "Strip trailing whitespace"
986+msgstr ""
987+
988+#: ../plugins/strip-trailing-save/strip-trailing-save.vala:19
989+msgid "Strip trailing whitespace on save"
990+msgstr ""
991+
992+#. /or modify it
993+#. under the terms of the GNU Lesser General Public License version 3, as published
994+#. by the Free Software Foundation.
995+#.
996+#. This program is distributed in the hope that it will be useful, but
997+#. WITHOUT ANY WARRANTY; without even the implied warranties of
998+#. MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
999+#. PURPOSE. See the GNU General Public License for more details.
1000+#.
1001+#. You should have received a copy of the GNU General Public License along
1002+#. with this program. If not, see <http://www.gnu.org/licenses/>
1003+#.
1004+#. END LICENSE
1005+#. **
1006 #: ../plugins/browser-preview/browser-preview.vala:21
1007 msgid "Browser Preview"
1008 msgstr ""
1009@@ -557,10 +710,140 @@
1010 msgid "Hide Preview"
1011 msgstr ""
1012
1013+#: ../plugins/browser-preview/BrowserView.vala:49
1014+msgid "Close Inspector"
1015+msgstr ""
1016+
1017+#: ../plugins/terminal/terminal.vala:23 ../plugins/terminal/terminal.vala:116
1018+#: ../plugins/terminal/terminal.vala:125 ../plugins/terminal/terminal.vala:172
1019+#: ../plugins/terminal/terminal.vala:174
1020+msgid "Terminal"
1021+msgstr ""
1022+
1023+#: ../plugins/terminal/terminal.vala:24
1024+msgid "A terminal in your text editor"
1025+msgstr ""
1026+
1027+#: ../plugins/terminal/terminal.vala:167 ../plugins/terminal/terminal.vala:178
1028+msgid "Show Terminal"
1029+msgstr ""
1030+
1031+#: ../plugins/terminal/terminal.vala:170
1032+msgid "Hide Terminal"
1033+msgstr ""
1034+
1035+#: ../plugins/terminal/terminal.vala:306
1036+msgid "Copy"
1037+msgstr ""
1038+
1039+#: ../plugins/terminal/terminal.vala:313
1040+#: ../plugins/clipboard-history/ClipboardHistory.vala:159
1041+msgid "Paste"
1042+msgstr ""
1043+
1044+#: ../plugins/terminal/terminal.vala:323
1045+msgid "Terminal on Right"
1046+msgstr ""
1047+
1048+#: ../plugins/terminal/terminal.vala:331
1049+msgid "Terminal on Bottom"
1050+msgstr ""
1051+
1052+#: ../plugins/detect-indent/detect-indent.vala:1
1053+msgid "Detect Indent"
1054+msgstr ""
1055+
1056+#: ../plugins/detect-indent/detect-indent.vala:2
1057+msgid "Heuristically detect tab or space settings"
1058+msgstr ""
1059+
1060+#. /or modify it
1061+#. under the terms of the GNU Lesser General Public License version 3, as published
1062+#. by the Free Software Foundation.
1063+#.
1064+#. This program is distributed in the hope that it will be useful, but
1065+#. WITHOUT ANY WARRANTY; without even the implied warranties of
1066+#. MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
1067+#. PURPOSE. See the GNU General Public License for more details.
1068+#.
1069+#. You should have received a copy of the GNU General Public License along
1070+#. with this program. If not, see <http://www.gnu.org/licenses/>
1071+#.
1072+#. END LICENSE
1073+#. **
1074 #: ../plugins/contractor/contractor.vala:21
1075 msgid "Share your files with Contractor"
1076 msgstr ""
1077
1078+#: ../plugins/outline/ValaProcessing/SymbolOutline.vala:21
1079+#: ../plugins/outline/ValaProcessing/SymbolOutline.vala:94
1080+#: ../plugins/outline/CtagsSymbolResolver.vala:35
1081+#: ../plugins/outline/CtagsSymbolResolver.vala:68
1082+#: ../plugins/outline/OutlinePlugin.vala:111
1083+msgid "Symbols"
1084+msgstr ""
1085+
1086+#. /or modify it
1087+#. under the terms of the GNU Lesser General Public License version 3, as published
1088+#. by the Free Software Foundation.
1089+#.
1090+#. This program is distributed in the hope that it will be useful, but
1091+#. WITHOUT ANY WARRANTY; without even the implied warranties of
1092+#. MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
1093+#. PURPOSE. See the GNU General Public License for more details.
1094+#.
1095+#. You should have received a copy of the GNU General Public License along
1096+#. with this program. If not, see <http://www.gnu.org/licenses/>
1097+#.
1098+#. END LICENSE
1099+#. **
1100+#: ../plugins/outline/OutlinePlugin.vala:21
1101+msgid "Outline"
1102+msgstr ""
1103+
1104+#: ../plugins/outline/OutlinePlugin.vala:22
1105+msgid "Outline symbols in your current file in vala"
1106+msgstr ""
1107+
1108+#: ../plugins/spell/spell.vala:18
1109+msgid "Spell Checker"
1110+msgstr ""
1111+
1112+#: ../plugins/spell/spell.vala:19
1113+msgid "Checks the spelling of your documents"
1114+msgstr ""
1115+
1116+#. /or modify it
1117+#. under the terms of the GNU Lesser General Public License version 3, as published
1118+#. by the Free Software Foundation.
1119+#.
1120+#. This program is distributed in the hope that it will be useful, but
1121+#. WITHOUT ANY WARRANTY; without even the implied warranties of
1122+#. MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
1123+#. PURPOSE. See the GNU General Public License for more details.
1124+#.
1125+#. You should have received a copy of the GNU General Public License along
1126+#. with this program. If not, see <http://www.gnu.org/licenses/>
1127+#.
1128+#. END LICENSE
1129+#. **
1130+#: ../plugins/clipboard-history/ClipboardHistory.vala:21
1131+#: ../plugins/clipboard-history/ClipboardHistory.vala:89
1132+msgid "Clipboard History"
1133+msgstr ""
1134+
1135+#: ../plugins/clipboard-history/ClipboardHistory.vala:22
1136+msgid "Clipboard to view history"
1137+msgstr ""
1138+
1139+#: ../plugins/clipboard-history/ClipboardHistory.vala:28
1140+msgid "..."
1141+msgstr ""
1142+
1143+#: ../plugins/clipboard-history/ClipboardHistory.vala:156
1144+msgid "Delete"
1145+msgstr ""
1146+
1147 #: ../plugins/folder-manager/FolderManagerPlugin.vala:70
1148 msgid "Folders"
1149 msgstr ""
1150@@ -582,79 +865,6 @@
1151 msgid "Close Folder"
1152 msgstr ""
1153
1154-#: ../plugins/outline/OutlinePlugin.vala:21
1155-msgid "Outline"
1156-msgstr ""
1157-
1158-#: ../plugins/outline/OutlinePlugin.vala:22
1159-msgid "Outline symbols in your current file in vala"
1160-msgstr ""
1161-
1162-#: ../plugins/outline/OutlinePlugin.vala:111
1163-#: ../plugins/outline/CtagsSymbolResolver.vala:35
1164-#: ../plugins/outline/CtagsSymbolResolver.vala:68
1165-#: ../plugins/outline/ValaProcessing/SymbolOutline.vala:21
1166-#: ../plugins/outline/ValaProcessing/SymbolOutline.vala:94
1167-msgid "Symbols"
1168-msgstr ""
1169-
1170-#: ../plugins/brackets-completion/brackets-completion.vala:21
1171-msgid "Brackets Completion"
1172-msgstr ""
1173-
1174-#: ../plugins/brackets-completion/brackets-completion.vala:22
1175-msgid "Complete brackets while typing"
1176-msgstr ""
1177-
1178-#: ../plugins/source-tree/SourceTreePlugin.vala:20
1179-#: ../plugins/source-tree/SourceTreePlugin.vala:197
1180-msgid "Source Tree"
1181-msgstr ""
1182-
1183-#: ../plugins/source-tree/SourceTreePlugin.vala:21
1184-msgid "Have a look at your sources organized in a nice tree"
1185-msgstr ""
1186-
1187-#: ../plugins/source-tree/SourceTreePlugin.vala:42
1188-msgid "Loading..."
1189-msgstr ""
1190-
1191-#: ../plugins/source-tree/SourceTreePlugin.vala:175
1192-msgid "Bookmark"
1193-msgstr ""
1194-
1195-#: ../plugins/source-tree/SourceTreePlugin.vala:234
1196-msgid "Files"
1197-msgstr ""
1198-
1199-#: ../plugins/source-tree/SourceTreePlugin.vala:235
1200-msgid "Project"
1201-msgstr ""
1202-
1203-#: ../plugins/source-tree/SourceTreePlugin.vala:236
1204-msgid "Bookmarks"
1205-msgstr ""
1206-
1207-#: ../plugins/vim-emulation/vim-emulation.vala:21
1208-msgid "Vim Emulation"
1209-msgstr ""
1210-
1211-#: ../plugins/vim-emulation/vim-emulation.vala:22
1212-msgid "Use Vim commands in Scratch"
1213-msgstr ""
1214-
1215-#: ../plugins/pastebin/pastebin.vala:23
1216-msgid "Pastebin"
1217-msgstr ""
1218-
1219-#: ../plugins/pastebin/pastebin.vala:24
1220-msgid "Share files with pastebin service"
1221-msgstr ""
1222-
1223-#: ../plugins/pastebin/pastebin.vala:134
1224-msgid "Upload to Pastebin"
1225-msgstr ""
1226-
1227 #: ../plugins/pastebin/pastebin_dialog.vala:254
1228 msgid "Share via PasteBin"
1229 msgstr ""
1230@@ -707,84 +917,14 @@
1231 msgid "One month"
1232 msgstr ""
1233
1234-#: ../plugins/strip-trailing-save/strip-trailing-save.vala:18
1235-msgid "Strip trailing whitespace"
1236-msgstr ""
1237-
1238-#: ../plugins/strip-trailing-save/strip-trailing-save.vala:19
1239-msgid "Strip trailing whitespace on save"
1240-msgstr ""
1241-
1242-#: ../plugins/spell/spell.vala:18
1243-msgid "Spell Checker"
1244-msgstr ""
1245-
1246-#: ../plugins/spell/spell.vala:19
1247-msgid "Checks the spelling of your documents"
1248-msgstr ""
1249-
1250-#: ../plugins/open-with/open-with.vala:21
1251-msgid "Open With"
1252-msgstr ""
1253-
1254-#: ../plugins/open-with/open-with.vala:22
1255-msgid "Open files you are editing with another application"
1256-msgstr ""
1257-
1258-#: ../plugins/open-with/open-with.vala:54
1259-msgid "Open With…"
1260-msgstr ""
1261-
1262-#: ../plugins/detect-indent/detect-indent.vala:1
1263-msgid "Detect Indent"
1264-msgstr ""
1265-
1266-#: ../plugins/detect-indent/detect-indent.vala:2
1267-msgid "Heuristically detect tab or space settings"
1268-msgstr ""
1269-
1270-#: ../plugins/terminal/terminal.vala:23 ../plugins/terminal/terminal.vala:116
1271-#: ../plugins/terminal/terminal.vala:125 ../plugins/terminal/terminal.vala:172
1272-#: ../plugins/terminal/terminal.vala:174
1273-msgid "Terminal"
1274-msgstr ""
1275-
1276-#: ../plugins/terminal/terminal.vala:24
1277-msgid "A terminal in your text editor"
1278-msgstr ""
1279-
1280-#: ../plugins/terminal/terminal.vala:167 ../plugins/terminal/terminal.vala:178
1281-msgid "Show Terminal"
1282-msgstr ""
1283-
1284-#: ../plugins/terminal/terminal.vala:170
1285-msgid "Hide Terminal"
1286-msgstr ""
1287-
1288-#: ../plugins/terminal/terminal.vala:306
1289-msgid "Copy"
1290-msgstr ""
1291-
1292-#: ../plugins/terminal/terminal.vala:323
1293-msgid "Terminal on Right"
1294-msgstr ""
1295-
1296-#: ../plugins/terminal/terminal.vala:331
1297-msgid "Terminal on Bottom"
1298-msgstr ""
1299-
1300-#: ../plugins/word-completion/plugin.vala:34
1301-msgid "Words Completion"
1302-msgstr ""
1303-
1304-#: ../plugins/word-completion/plugin.vala:35
1305-msgid "Show a completion dialog with most used words from your files"
1306-msgstr ""
1307-
1308-#: ../plugins/word-completion/plugin.vala:175
1309-msgid "%s - Word Completion"
1310-msgstr ""
1311-
1312-#: ../plugins/word-completion/completion-provider.vala:80
1313-msgid "Could not load icon theme: %s\n"
1314+#: ../plugins/pastebin/pastebin.vala:23
1315+msgid "Pastebin"
1316+msgstr ""
1317+
1318+#: ../plugins/pastebin/pastebin.vala:24
1319+msgid "Share files with pastebin service"
1320+msgstr ""
1321+
1322+#: ../plugins/pastebin/pastebin.vala:134
1323+msgid "Upload to Pastebin"
1324 msgstr ""

Subscribers

People subscribed via source and target branches