Compare commits

..

1 Commits

Author SHA1 Message Date
Steve Groesz 0f6148c892 backport whitespace rendering to LM 19.3 Tricia 2021-07-17 03:05:39 -05:00
147 changed files with 1328 additions and 1445 deletions

1
.gitignore vendored
View File

@ -10,3 +10,4 @@ debian/xed-doc/
debian/files
debian/*.log
debian/*.substvars
build

43
README Normal file
View File

@ -0,0 +1,43 @@
General Information
===================
xed is a small and lightweight text editor.
xed supports most standard editing features, plus several not found in your
average text editor (plugins being the most notable of these).
Although new features are always under development, currently xed has:
* Complete support for UTF-8 text
* Syntax highlighting
* Support for editing remote files
* Search and Replace
* Printing and Print Previewing Support
* File Revert
* A complete preferences interface
* Configurable Plugin system, with optional python support
Some of the plugins, packaged and installed with xed include, among others:
* Word count
* Spell checker
* Change case of selected text
* File Browser
* Sort
* Insert Date/Time
* Tag list
xed is released under the GNU General Public License (GPL) version 2, see
the file 'COPYING' for more information.
Installation
============
Simple install procedure:
% meson --prefix=/usr/local build # run the `configure' script
% ninja -v -C build # build xed
[ Become root if necessary ]
% sudo ninja install -v -C build # install xed
see linuxmint/xed#265 if you see GLib-GIO-ERROR

View File

@ -1,74 +0,0 @@
# Xed Text Editor
xed is a small and lightweight text editor.
xed supports most standard editing features, plus several not found in your
average text editor (plugins being the most notable of these).
Although new features are always under development, currently xed has:
* Complete support for UTF-8 text
* Syntax highlighting
* Support for editing remote files
* Search and Replace
* Printing and Print Previewing Support
* File Revert
* A complete preferences interface
* Configurable Plugin system, with optional python support
Some of the plugins, packaged and installed with xed include, among others:
* Change Case
* Document Statistics
* File Browser
* Indent Lines
* Insert Date/Time
* Modelines
* Save Without Trailing Spaces
* Sort
* Spell checker
* Tag list
* Word Completion
## Installation
```
1. run the 'configure' script
# meson --prefix=/usr build
2. build xed
# ninja -v -C build
3. install xed
# sudo ninja install -v -C build
** Build Instructions for Debian-based distros **
1. run "dpkg-buildpackage" from the xed base directory
2. cd ..
3. run
# sudo dpkg -i *.deb
4. From then, any new changes can be applied by running
# sudo ninja -C debian/build install
```
### Xed look and feel
##### Classic Mode
![classic-screenshot](/screencaptures/classic_screencapture.png?raw=true)
##### Theme selections
![theme-screenshot](/screencaptures/theme_screencapture.png?raw=true)
##### Search and Replace feature
![search-replace-screenshot](/screencaptures/search_replace_screencapture.png?raw=true)
##### Select from several languages in Highlight syntax mode
![highlightmode-screenshot](/screencaptures/highlightmode_screencapture.png?raw=true)
##### Xed Shortcuts
![shortcuts-1-screenshot](/screencaptures/shortcuts_1_screencapture.png?raw=true)
![shortcuts-2-screenshot](/screencaptures/shortcuts_2_screencapture.png?raw=true)
> xed is released under the GNU General Public License (GPL) version 2, see
> the file 'COPYING' for more information.

View File

@ -167,6 +167,36 @@
<description>Whether xed will ensure that documents always end with a trailing newline.</description>
</key>
<key name="draw-whitespace" type="b">
<default>false</default>
<summary>Draw whitespace</summary>
<description>Whether xed should render whitespace</description>
</key>
<key name="draw-whitespace-leading" type="b">
<default>false</default>
<summary>Draw leading whitespace</summary>
<description>Whether xed should render leading whitespace</description>
</key>
<key name="draw-whitespace-inside" type="b">
<default>false</default>
<summary>Draw whitespace within text</summary>
<description>Whether xed should render whitespace between words and characters</description>
</key>
<key name="draw-whitespace-trailing" type="b">
<default>false</default>
<summary>Draw trailing whitespace</summary>
<description>Whether xed should render trailing whitespace</description>
</key>
<key name="draw-whitespace-newline" type="b">
<default>false</default>
<summary>Draw newline characters</summary>
<description>Whether xed should render newline characters</description>
</key>
</schema>
<schema gettext-domain="@GETTEXT_PACKAGE@" id="org.x.editor.preferences.ui" path="/org/x/editor/preferences/ui/">

View File

@ -42,9 +42,6 @@ Output version information and exit
\fB\-?, \-h, \-\-help\fR
Print standard command line options.
.TP
\fB\-w, \-\-wait\fR
Open files and block the xed process.
.TP
\fB\-\-help\-all\fR
Print all command line options.
.P

56
debian/changelog vendored
View File

@ -1,56 +1,8 @@
xed (2.6.0) ulyana; urgency=medium
xed (2.4.3) tricia; urgency=medium
[ Stephen Collins ]
* Disable the comments action when not supported to avoid confusion
* Trailsave plugin: remove second trailing line
* xed-tab-label.c: remove unused event box preventing scroll events
[ Michael Webster ]
* xed-tab-label.c: Apply tab tooltip to the box containing the tab's label and icon, regression from 808e77b052322b8f.
[ Stephen Collins ]
* Add .gitignore file
[ Clement Lefebvre ]
* l10n: Update translations
[ Stephen Collins ]
* Add settings widget to the prefs dialog for the implicit newline setting
[ icarter09 ]
* Created initial test dir. Created File menu test.
* Removed override_dh_auto_test so tests are not ran by default when building with dpkg.
* Removed link that was not working.
* Created new section for the Word Wrap shortcut. Increased height attribute to fit new section so a new page is not created.
* Added logic to support using replace all across documents.
* Added logic to check if the focus need to be set. Squashed formatting commits.
[ Clement Lefebvre ]
* Packaging: Remove python dependency
[ Isaac Carter ]
* Fixed memory issue found by valgrind (#366)
[ icarter09 ]
* Cleaned up broken links.
* Changed shortcut window to be non-model.
* Added wait entry to man page. Removed logic that cause wait to open extra tab.
* Added screen captures to README. Changed README to README.md and added markdown. Updated README with plugins and debian build instructions.
[ Isaac Carter ]
* Update README.md
[ icarter09 ]
* Added JoinLines plugin. Removed logic to split lines. Moved Join Line shortcut from Layout to Editing section.
[ JosephMcc ]
* taglist: Use a symbolic icon in the notebook sidebar
[ Clement Lefebvre ]
* l10n: Update POT
* l10n: Update translations
-- Clement Lefebvre <root@linuxmint.com> Mon, 11 May 2020 13:58:58 +0100
[ okaestne ] [backported by wolfpackmars2]
* Implement #225: Options to render whitespace
* backported from xed-3
xed (2.4.2) tricia; urgency=medium

3
debian/control vendored
View File

@ -53,7 +53,8 @@ Description: Text editor
Package: xed-common
Architecture: all
Depends: ${misc:Depends},
Depends: python,
${misc:Depends},
Description: Text editor (common files)
Xed is a text editor which supports most standard editor features,
extending this basic functionality with other features not usually

3
debian/rules vendored
View File

@ -15,6 +15,9 @@ override_dh_auto_configure:
override_dh_installchangelogs:
dh_installchangelogs NEWS
override_dh_auto_test:
ninja -C debian/build test
override_dh_strip:
dh_strip --dbg-package=xed-dbg

View File

@ -1191,7 +1191,7 @@
</variablelist>
</sect2>
<sect2 id="xed-prefs-plugins" xreflabel="Plugins Preferences">
<sect2 id="xed-prefs-plugins">
<title>Plugins Preferences</title>
<para>Plugins add extra features to <application>&app;</application>. For more information on plugins and how to use the built-in plugins, see <xref linkend="xed-plugins-overview"/>.</para>
@ -1245,42 +1245,45 @@
<title>Working with Plugins</title>
<para>You can add extra features to <application>&app;</application> by enabling <firstterm>plugins</firstterm>. A plugin is a supplementary program that enhances the functionality of an application. Plugins add new items to the <application>&app;</application> menus for the new features they provide.
</para>
<para>Several plugins come built-in with <application>&app;</application>, and you can install more.</para>
<para>To enable and disable plugins, or see which plugins are currently enabled, use the <xref linkend="xed-prefs-plugins"/>.</para>
<para>Several plugins come built-in with <application>&app;</application>, and you can install more. The <ulink type="http" url="http://live.gnome.org/Xed/Plugins">xed website</ulink> lists third-party plugins.</para>
<para>To enable and disable plugins, or see which plugins are currently enabled, use the <link linkend="xed-prefs-plugins">Plugins Preferences</link>.</para>
<para>The following plugins come built-in with <application>&app;</application>:</para>
<!-- Not yet documented:
File browser
-->
<itemizedlist>
<listitem>
<para><xref linkend="xed-change-case-plugin"/> allows you to change the case of the selected text.</para>
<para><link linkend="xed-change-case-plugin"><application>Change Case</application></link> allows you to change the case of the selected text.</para>
</listitem>
<listitem>
<para><xref linkend="xed-document-statistics-plugin"/> shows the number of lines, words, and characters in the document. </para>
<para><application><link linkend="xed-document-statistics-plugin">Document Statistics</link></application> shows the number of lines, words, and characters in the document. </para>
</listitem>
<listitem>
<para><xref linkend="xed-file-browser-plugin"/> allows you to browse your files and folders in the side pane.</para>
<para><application><!-- <link linkend="xed-file-browser-plugin">File Browser</link>-->File Browser</application> allows you to browse your files and folders in the side pane.</para>
</listitem>
<listitem>
<para><xref linkend="xed-indent-lines-plugin"/> adds or removes indentation from the selected lines.</para>
<para><application><link linkend="xed-indent-lines-plugin">Indent Lines</link></application> adds or removes indentation from the selected lines.</para>
</listitem>
<listitem>
<para><xref linkend="xed-insert-date-time-plugin"/> adds the current date and time into a document.</para>
<para><application><link linkend="xed-insert-date-time-plugin">Insert Date/Time</link></application> adds the current date and time into a document.</para>
</listitem>
<listitem>
<para><xref linkend="xed-modelines-plugin"/> allows you to set editing preferences for individual documents, and supports <application>Emacs</application>, <application>Kate</application> and <application>Vim</application>-style modelines.</para>
<para><application><link linkend="xed-modelines-plugin">Modelines</link></application> allows you to set editing preferences for individual documents, and supports <application>Emacs</application>, <application>Kate</application> and <application>Vim</application>-style modelines.</para>
</listitem>
<listitem>
<para><xref linkend="xed-sort-plugin"/> arranges selected lines of text into alphabetical order.</para>
<para><application><link linkend="xed-sort-plugin">Sort</link></application> arranges selected lines of text into alphabetical order.</para>
</listitem>
<listitem>
<para><xref linkend="xed-spell-checker-plugin"/> corrects the spelling in the selected text, or marks errors automatically in the document.</para>
<para><application><link linkend="xed-spell-checker-plugin">Spell Checker</link></application> corrects the spelling in the selected text, or marks errors automatically in the document.</para>
</listitem>
<listitem>
<para><xref linkend="xed-tag-list-plugin"/> lets you insert commonly-used tags for HTML and other languages from a list in the side pane.</para>
<para><application><link linkend="xed-tag-list-plugin">Tag List</link></application> lets you insert commonly-used tags for HTML and other languages from a list in the side pane.</para>
</listitem>
</itemizedlist>
</sect2>
<sect2 id="xed-change-case-plugin" xreflabel="Change Case">
<sect2 id="xed-change-case-plugin">
<title>Change Case Plugin</title>
<para>The <application>Change Case</application> plugin changes the case of the selected text.</para>
<para>The following items are added to the <guimenu>Edit</guimenu> menu when the <application>Change Case</application> plugin is enabled:</para>
@ -1331,7 +1334,7 @@
</sect2>
<sect2 id="xed-document-statistics-plugin" xreflabel="Document Statistics">
<sect2 id="xed-document-statistics-plugin">
<title>Document Statistics Plugin</title>
<para>The <application>Document Statistics</application> plugin counts the number of lines, words, characters with spaces, characters without spaces, and bytes in the current file. The plugin displays the results in a <guilabel>Document Statistics</guilabel> dialog. To use the Document Statistics plugin, perform the following steps:</para>
<orderedlist>
@ -1361,7 +1364,7 @@
</orderedlist>
</sect2>
<sect2 id="xed-file-browser-plugin" xreflabel="File Browser">
<sect2 id="xed-file-browser-plugin">
<title>File Browser Plugin</title>
<para>The <application>File Browser</application> Plugin shows your files and folders in the side pane, allowing you to quickly open files.</para>
<para>To view the File Browser, choose <menuchoice><guimenu>View</guimenu> <guimenuitem>Side Pane</guimenuitem> </menuchoice> and then click on the tab showing the File Browser icon at the bottom of the side pane.</para>
@ -1382,7 +1385,7 @@
</sect3>
</sect2>
<sect2 id="xed-indent-lines-plugin" xreflabel="Indent Lines">
<sect2 id="xed-indent-lines-plugin">
<title>Indent Lines Plugin</title>
<para>The <application>Indent Lines</application> plugin adds or removes space from the beginning of lines of text.</para>
<para>To indent or unindent text, perform the following steps:</para>
@ -1404,7 +1407,7 @@
</sect2>
<sect2 id="xed-insert-date-time-plugin" xreflabel="Insert Date/Time">
<sect2 id="xed-insert-date-time-plugin">
<title>Insert Date/Time Plugin</title>
<para>The <application>Insert Date/Time</application> plugin inserts the current date and time into a document. To use the Insert Date/Time plugin, perform the following steps:</para>
<orderedlist>
@ -1452,7 +1455,7 @@
</sect3>
</sect2>
<sect2 id="xed-modelines-plugin" xreflabel="Modelines">
<sect2 id="xed-modelines-plugin">
<title>Modelines Plugin</title>
<para>The <application>Modelines</application> plugin allows you to set preferences for individual documents. A <firstterm>modeline</firstterm> is a line of text at the start or end of the document with settings that <application>&app;</application> recognises.</para>
<para>Preferences set using modelines take precedence over the ones specified in the preference dialog.</para>
@ -1480,12 +1483,12 @@
<sect3 id="xed-modelines-plugin-emacs">
<title>Emacs Modelines</title>
<para>The first two lines of a document are scanned for <application>Emacs</application> modelines.</para>
<para>The <application>Emacs</application> options for tab-width, indent-offset, indent-tabs-mode and autowrap are supported. For more information, see the <ulink type="http" url="http://www.gnu.org/software/emacs/manual/html_node/emacs/index.html">GNU Emacs Manual</ulink>.</para>
<para>The <application>Emacs</application> options for tab-width, indent-offset, indent-tabs-mode and autowrap are supported. For more information, see the <ulink type="http" url="http://www.delorie.com/gnu/docs/emacs/emacs_486.html">GNU Emacs Manual</ulink>.</para>
</sect3>
<sect3 id="xed-modelines-plugin-kate">
<title>Kate Modelines</title>
<para>The first and last ten lines a document are scanned for <application>Kate</application> modelines.</para>
<para>The <application>Kate</application> options for tab-width, indent-width, space-indent, word-wrap and word-wrap-column are supported. For more information, see the <ulink type="http" url="http://www.kate-editor.org">Kate website</ulink>.</para>
<para>The <application>Kate</application> options for tab-width, indent-width, space-indent, word-wrap and word-wrap-column are supported. For more information, see the <ulink type="http" url="http://www.kate-editor.org/article/katepart_modelines">Kate website</ulink>.</para>
</sect3>
<sect3 id="xed-modelines-plugin-vim">
<title>Vim Modelines</title>
@ -1494,7 +1497,7 @@
</sect3>
</sect2>
<sect2 id="xed-sort-plugin" xreflabel="Sort">
<sect2 id="xed-sort-plugin">
<title>Sort Plugin</title>
<para>The <application>Sort</application> plugin arranges selected lines of text into alphabetical order.</para>
<caution><para>You cannot undo the Sort operation, so you should save the file before performing the sort. To revert to the saved version of the file after the sort operation, choose <menuchoice> <guimenu>File</guimenu> <guimenuitem>Revert</guimenuitem> </menuchoice>.
@ -1531,7 +1534,7 @@
</orderedlist>
</sect2>
<sect2 id="xed-spell-checker-plugin" xreflabel="Spell Checker">
<sect2 id="xed-spell-checker-plugin">
<title>Spell Checker Plugin</title>
<para>The <application>Spell Checker</application> plugin checks the spelling in the selected text. You can configure <application>&app;</application> to check the spelling automatically, or you can check the spelling manually, in the specified language. The language setting, and the autocheck spelling properties, apply per document. To use the Spell checker plugin, perform the following steps:</para>
<orderedlist>
@ -1586,7 +1589,7 @@
</orderedlist>
</sect2>
<sect2 id="xed-tag-list-plugin" xreflabel="Tag List">
<sect2 id="xed-tag-list-plugin">
<title>Tag List Plugin</title>
<para>The <application>Tag List</application> plugin allows you to insert common tags from a list in the side pane.</para>
<para>To use the Tag List plugin, perform the following steps:</para>

View File

@ -1,4 +1,4 @@
project('xed', 'c', version : '2.6.0')
project('xed', 'c', version : '2.4.3')
gnome = import('gnome')
i18n = import('i18n')
@ -8,8 +8,7 @@ version = meson.project_version()
xed_conf = configuration_data()
xed_conf.set_quoted('VERSION', version)
#xed_conf.set_quoted('GETTEXT_PACKAGE', 'xed')
xed_conf.set_quoted('GETTEXT_PACKAGE', meson.project_name())
xed_conf.set_quoted('GETTEXT_PACKAGE', 'xed')
# directories
prefix = get_option('prefix')
@ -95,15 +94,6 @@ if get_option('docs')
subdir('docs/reference')
endif
# The tests use an option that doesn't exist in meson before 0.46.
# Since they aren't strictly necessary, we'll just skip them for earlier versions
# rather than making 0.46 a hard requirement. This condition can be removed once we
# no longer need to worry about building on 0.45 or earlier
meson_version_parts = meson.version().split('.')
if meson_version_parts[0].to_int() > 0 or meson_version_parts[1].to_int() >= 46
subdir('test')
endif
message('prefix = @0@'.format(prefix))
message('bindir = @0@'.format(bindir))
message('datadir = @0@'.format(datadir))

View File

@ -1,12 +0,0 @@
[Plugin]
Loader=python3
Module=joinlines
IAge=3
_Name=Join Lines
_Description=Join several lines
Icon=gnome-mime-text-x-python
Authors=Steve Frécinaux <steve@istique.net>;André Homeyer;Linux Mint team
Copyright=Copyright @ 2006-2007 Steve Frécinaux, André Homeyer
Website=https://github.com/linuxmint
Builtin=true

View File

@ -1,91 +0,0 @@
from gi.repository import GObject, Gtk, Xed
import gettext
gettext.install("xed")
MENU_PATH = "/MenuBar/ViewMenu/ViewOps_1"
class JoinLinesPlugin(GObject.Object, Xed.WindowActivatable):
__gtype_name__ = "JoinLinesPlugin"
window = GObject.property(type=Xed.Window)
def __init__(self):
GObject.Object.__init__(self)
def do_activate(self):
self._views = {}
self._insert_menu()
def _insert_menu(self):
manager = self.window.get_ui_manager()
self._action_group = Gtk.ActionGroup(name="XedJoinLinesPluginActions")
self._action_group.add_actions(
[("JoinLinesAction", None, _("_Join Lines"), "<Ctrl>J",
_("Join the selected lines"),
lambda w: self.join_lines(w))])
manager.insert_action_group(self._action_group)
self._ui_id = manager.new_merge_id()
manager.add_ui(self._ui_id,
MENU_PATH,
"JoinLinesAction",
"JoinLinesAction",
Gtk.UIManagerItemType.MENUITEM,
False)
def do_update_state(self):
self._action_group.set_sensitive(self.window.get_active_document() != None)
def do_deactivate(self):
self._remove_menu()
def _remove_menu(self):
manager = self.window.get_ui_manager()
manager.remove_ui(self._ui_id)
manager.remove_action_group(self._action_group)
manager.ensure_update()
def join_lines(self, w):
doc = self.window.get_active_document()
if doc is None:
return
doc.begin_user_action()
# If there is a selection use it, otherwise join the
# next line
try:
start, end = doc.get_selection_bounds()
except ValueError:
start = doc.get_iter_at_mark(doc.get_insert())
end = start.copy()
end.forward_line()
end_mark = doc.create_mark(None, end)
if not start.ends_line():
start.forward_to_line_end()
# Include trailing spaces in the chunk to be removed
while start.backward_char() and start.get_char() in ('\t', ' '):
pass
start.forward_char()
while doc.get_iter_at_mark(end_mark).compare(start) == 1:
end = start.copy()
while end.get_char() in ('\r', '\n', ' ', '\t'):
end.forward_char()
doc.delete(start, end)
doc.insert(start, ' ')
start.forward_to_line_end()
doc.delete_mark(end_mark)
doc.end_user_action()

View File

@ -1,13 +0,0 @@
install_subdir(
'joinlines',
install_dir: pluginslibdir
)
textsize_desktop = custom_target(
'joinlines_desktop',
input: 'joinlines.plugin.desktop.in',
output: 'joinlines.plugin',
command: [intltool_merge, '-d', '-u', po_dir, '@INPUT@', '@OUTPUT@'],
install: true,
install_dir: pluginslibdir,
)

View File

@ -3,7 +3,6 @@ pluginslibdir = join_paths(libdir, 'xed', 'plugins')
subdir('docinfo')
subdir('filebrowser')
subdir('joinlines')
subdir('modelines')
subdir('open-uri-context-menu')
subdir('sort')

View File

@ -110,7 +110,7 @@ xed_taglist_plugin_activate (XedWindowActivatable *activatable)
priv->taglist_panel = xed_taglist_plugin_panel_new (priv->window, data_dir);
g_free (data_dir);
xed_panel_add_item (side_panel, priv->taglist_panel, _("Tags"), "list-add-symbolic");
xed_panel_add_item (side_panel, priv->taglist_panel, _("Tags"), "list-add");
}
static void

View File

@ -126,15 +126,10 @@ strip_trailing_spaces (GtkTextBuffer *text_buffer)
}
}
/* Strip trailing lines */
if (empty_lines_start != -1)
/* Strip trailing lines (except for one) */
if (empty_lines_start != -1 && empty_lines_start != (line_count - 1))
{
gtk_text_buffer_get_iter_at_line (text_buffer, &strip_start, empty_lines_start);
// if there's an implicit trailing newline, then we'll end up with 2 trailing lines instead of 1, so lets
// remove an extra one in that case
if (gtk_source_buffer_get_implicit_trailing_newline (GTK_SOURCE_BUFFER (text_buffer))) {
gtk_text_iter_backward_char (&strip_start); // move to the end of the previous line
}
gtk_text_buffer_get_end_iter (text_buffer, &strip_end);
gtk_text_buffer_delete (text_buffer, &strip_start, &strip_end);
}

View File

@ -17,8 +17,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
"X-Launchpad-Export-Date: 2019-12-11 11:55+0000\n"
"X-Generator: Launchpad (build c597c3229eb023b1e626162d5947141bf7befb13)\n"
"Language: cmn\n"
#: ../data/org.x.editor.gschema.xml.in.h:1

View File

@ -16,8 +16,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
"X-Launchpad-Export-Date: 2019-12-11 11:55+0000\n"
"X-Generator: Launchpad (build c597c3229eb023b1e626162d5947141bf7befb13)\n"
"Language: af\n"
#: ../data/org.x.editor.gschema.xml.in.h:1

View File

@ -17,8 +17,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
"X-Launchpad-Export-Date: 2019-12-11 11:55+0000\n"
"X-Generator: Launchpad (build c597c3229eb023b1e626162d5947141bf7befb13)\n"
"Language: am\n"
#: ../data/org.x.editor.gschema.xml.in.h:1

View File

@ -17,8 +17,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n % 100 >= "
"3 && n % 100 <= 10 ? 3 : n % 100 >= 11 && n % 100 <= 99 ? 4 : 5;\n"
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
"X-Launchpad-Export-Date: 2019-12-11 11:55+0000\n"
"X-Generator: Launchpad (build c597c3229eb023b1e626162d5947141bf7befb13)\n"
"Language: ar_EG\n"
#: ../data/org.x.editor.gschema.xml.in.h:1

View File

@ -16,8 +16,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n!=1;\n"
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
"X-Launchpad-Export-Date: 2019-12-11 11:56+0000\n"
"X-Generator: Launchpad (build c597c3229eb023b1e626162d5947141bf7befb13)\n"
"Language: as\n"
#: ../data/org.x.editor.gschema.xml.in.h:1

View File

@ -18,8 +18,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
"X-Launchpad-Export-Date: 2019-12-11 11:55+0000\n"
"X-Generator: Launchpad (build c597c3229eb023b1e626162d5947141bf7befb13)\n"
"Language: ast\n"
#: ../data/org.x.editor.gschema.xml.in.h:1

View File

@ -16,8 +16,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Launchpad-Export-Date: 2020-05-11 11:00+0000\n"
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
"X-Launchpad-Export-Date: 2019-12-11 11:56+0000\n"
"X-Generator: Launchpad (build c597c3229eb023b1e626162d5947141bf7befb13)\n"
"Language: az\n"
#: ../data/org.x.editor.gschema.xml.in.h:1

View File

@ -18,8 +18,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
"X-Launchpad-Export-Date: 2019-12-11 11:55+0000\n"
"X-Generator: Launchpad (build c597c3229eb023b1e626162d5947141bf7befb13)\n"
"Language: be\n"
#: ../data/org.x.editor.gschema.xml.in.h:1

View File

@ -16,8 +16,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Launchpad-Export-Date: 2020-05-11 11:00+0000\n"
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
"X-Launchpad-Export-Date: 2019-12-11 11:56+0000\n"
"X-Generator: Launchpad (build c597c3229eb023b1e626162d5947141bf7befb13)\n"
"X-Poedit-Language: Belarsian Latin\n"
#: ../data/org.x.editor.gschema.xml.in.h:1

View File

@ -17,8 +17,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
"X-Launchpad-Export-Date: 2019-12-11 11:55+0000\n"
"X-Generator: Launchpad (build c597c3229eb023b1e626162d5947141bf7befb13)\n"
"Language: bg\n"
#: ../data/org.x.editor.gschema.xml.in.h:1

View File

@ -16,8 +16,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
"X-Launchpad-Export-Date: 2019-12-11 11:55+0000\n"
"X-Generator: Launchpad (build c597c3229eb023b1e626162d5947141bf7befb13)\n"
"Language: bn\n"
#: ../data/org.x.editor.gschema.xml.in.h:1

View File

@ -16,8 +16,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n!=1;\n"
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
"X-Launchpad-Export-Date: 2019-12-11 11:55+0000\n"
"X-Generator: Launchpad (build c597c3229eb023b1e626162d5947141bf7befb13)\n"
"Language: bn_IN\n"
#: ../data/org.x.editor.gschema.xml.in.h:1

View File

@ -16,8 +16,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
"X-Launchpad-Export-Date: 2019-12-11 11:56+0000\n"
"X-Generator: Launchpad (build c597c3229eb023b1e626162d5947141bf7befb13)\n"
"Language: br\n"
#: ../data/org.x.editor.gschema.xml.in.h:1

View File

@ -17,8 +17,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Launchpad-Export-Date: 2020-05-11 11:00+0000\n"
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
"X-Launchpad-Export-Date: 2019-12-11 11:56+0000\n"
"X-Generator: Launchpad (build c597c3229eb023b1e626162d5947141bf7befb13)\n"
"Language: bs\n"
#: ../data/org.x.editor.gschema.xml.in.h:1

View File

@ -17,8 +17,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
"X-Launchpad-Export-Date: 2019-12-11 11:55+0000\n"
"X-Generator: Launchpad (build c597c3229eb023b1e626162d5947141bf7befb13)\n"
"Language: ca\n"
#: ../data/org.x.editor.gschema.xml.in.h:1

View File

@ -16,8 +16,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
"X-Launchpad-Export-Date: 2019-12-11 11:55+0000\n"
"X-Generator: Launchpad (build c597c3229eb023b1e626162d5947141bf7befb13)\n"
"Language: ca@valencia\n"
#: ../data/org.x.editor.gschema.xml.in.h:1

View File

@ -16,8 +16,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
"X-Launchpad-Export-Date: 2019-12-11 11:55+0000\n"
"X-Generator: Launchpad (build c597c3229eb023b1e626162d5947141bf7befb13)\n"
"Language: crh\n"
#: ../data/org.x.editor.gschema.xml.in.h:1

View File

@ -19,8 +19,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
"X-Launchpad-Export-Date: 2019-12-11 11:56+0000\n"
"X-Generator: Launchpad (build c597c3229eb023b1e626162d5947141bf7befb13)\n"
"Language: cs\n"
#: ../data/org.x.editor.gschema.xml.in.h:1

View File

@ -9,7 +9,7 @@ msgstr ""
"Project-Id-Version: MATE Desktop Environment\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-06-23 14:24+0200\n"
"PO-Revision-Date: 2020-05-11 10:17+0000\n"
"PO-Revision-Date: 2019-09-23 12:05+0000\n"
"Last-Translator: Clement Lefebvre <root@linuxmint.com>\n"
"Language-Team: Welsh "
"(http://www.transifex.com/projects/p/MATE/language/cy/)\n"
@ -18,8 +18,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=4; plural=n==1 ? 0 : n==2 ? 1 : (n != 8 && n != 11) ? "
"2 : 3;\n"
"X-Launchpad-Export-Date: 2020-05-11 11:00+0000\n"
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
"X-Launchpad-Export-Date: 2019-12-11 11:56+0000\n"
"X-Generator: Launchpad (build c597c3229eb023b1e626162d5947141bf7befb13)\n"
"Language: cy\n"
#: ../data/org.x.editor.gschema.xml.in.h:1
@ -889,7 +889,7 @@ msgstr[3] ""
msgid ""
"Changes made to the document in the last hour will be permanently lost."
msgstr ""
"Bydd newidiadau wnaed i'r ddogfen yn ystod y awr olaf yn cael eu colli."
"Bydd newidiadau wnaed i'r ddogfen yn ystod y %d awr olaf yn cael eu colli."
#: ../xed/xed-commands-file.c:1299
#, c-format

View File

@ -17,8 +17,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
"X-Launchpad-Export-Date: 2019-12-11 11:55+0000\n"
"X-Generator: Launchpad (build c597c3229eb023b1e626162d5947141bf7befb13)\n"
"Language: da\n"
#: ../data/org.x.editor.gschema.xml.in.h:1

View File

@ -20,8 +20,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
"X-Launchpad-Export-Date: 2019-12-11 11:55+0000\n"
"X-Generator: Launchpad (build c597c3229eb023b1e626162d5947141bf7befb13)\n"
"Language: de\n"
#: ../data/org.x.editor.gschema.xml.in.h:1

View File

@ -16,8 +16,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
"X-Launchpad-Export-Date: 2019-12-11 11:55+0000\n"
"X-Generator: Launchpad (build c597c3229eb023b1e626162d5947141bf7befb13)\n"
"Language: dz\n"
#: ../data/org.x.editor.gschema.xml.in.h:1

View File

@ -19,8 +19,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
"X-Launchpad-Export-Date: 2019-12-11 11:55+0000\n"
"X-Generator: Launchpad (build c597c3229eb023b1e626162d5947141bf7befb13)\n"
"Language: el\n"
#: ../data/org.x.editor.gschema.xml.in.h:1

View File

@ -16,8 +16,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
"X-Launchpad-Export-Date: 2019-12-11 11:55+0000\n"
"X-Generator: Launchpad (build c597c3229eb023b1e626162d5947141bf7befb13)\n"
#: ../data/org.x.editor.gschema.xml.in.h:1
msgid "Use Default Font"

View File

@ -17,8 +17,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
"X-Launchpad-Export-Date: 2019-12-11 11:55+0000\n"
"X-Generator: Launchpad (build c597c3229eb023b1e626162d5947141bf7befb13)\n"
"Language: en_AU\n"
#: ../data/org.x.editor.gschema.xml.in.h:1

View File

@ -16,8 +16,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
"X-Launchpad-Export-Date: 2019-12-11 11:56+0000\n"
"X-Generator: Launchpad (build c597c3229eb023b1e626162d5947141bf7befb13)\n"
"Language: en_CA\n"
#: ../data/org.x.editor.gschema.xml.in.h:1

View File

@ -18,8 +18,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
"X-Launchpad-Export-Date: 2019-12-11 11:55+0000\n"
"X-Generator: Launchpad (build c597c3229eb023b1e626162d5947141bf7befb13)\n"
"Language: en_GB\n"
#: ../data/org.x.editor.gschema.xml.in.h:1

View File

@ -17,8 +17,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
"X-Launchpad-Export-Date: 2019-12-11 11:56+0000\n"
"X-Generator: Launchpad (build c597c3229eb023b1e626162d5947141bf7befb13)\n"
"Language: eo\n"
#: ../data/org.x.editor.gschema.xml.in.h:1

633
po/es.po

File diff suppressed because it is too large Load Diff

View File

@ -17,8 +17,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Launchpad-Export-Date: 2020-05-11 11:00+0000\n"
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
"X-Launchpad-Export-Date: 2019-12-11 11:56+0000\n"
"X-Generator: Launchpad (build c597c3229eb023b1e626162d5947141bf7befb13)\n"
"Language: et\n"
#: ../data/org.x.editor.gschema.xml.in.h:1

View File

@ -17,8 +17,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Launchpad-Export-Date: 2020-05-11 11:00+0000\n"
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
"X-Launchpad-Export-Date: 2019-12-11 11:56+0000\n"
"X-Generator: Launchpad (build c597c3229eb023b1e626162d5947141bf7befb13)\n"
"Language: eu\n"
#: ../data/org.x.editor.gschema.xml.in.h:1

View File

@ -16,8 +16,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
"X-Launchpad-Export-Date: 2019-12-11 11:55+0000\n"
"X-Generator: Launchpad (build c597c3229eb023b1e626162d5947141bf7befb13)\n"
"Language: fa\n"
#: ../data/org.x.editor.gschema.xml.in.h:1

View File

@ -17,8 +17,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
"X-Launchpad-Export-Date: 2019-12-11 11:55+0000\n"
"X-Generator: Launchpad (build c597c3229eb023b1e626162d5947141bf7befb13)\n"
"Language: fi\n"
#: ../data/org.x.editor.gschema.xml.in.h:1

View File

@ -18,8 +18,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Launchpad-Export-Date: 2020-05-11 11:00+0000\n"
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
"X-Launchpad-Export-Date: 2019-12-11 11:56+0000\n"
"X-Generator: Launchpad (build c597c3229eb023b1e626162d5947141bf7befb13)\n"
"Language: fr\n"
#: ../data/org.x.editor.gschema.xml.in.h:1

View File

@ -15,8 +15,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Launchpad-Export-Date: 2020-05-11 11:00+0000\n"
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
"X-Launchpad-Export-Date: 2019-12-11 11:56+0000\n"
"X-Generator: Launchpad (build c597c3229eb023b1e626162d5947141bf7befb13)\n"
#: ../data/org.x.editor.gschema.xml.in.h:1
msgid "Use Default Font"

View File

@ -17,8 +17,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=5; plural=(n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : "
"4);\n"
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
"X-Launchpad-Export-Date: 2019-12-11 11:55+0000\n"
"X-Generator: Launchpad (build c597c3229eb023b1e626162d5947141bf7befb13)\n"
"Language: ga\n"
#: ../data/org.x.editor.gschema.xml.in.h:1

View File

@ -18,8 +18,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
"X-Launchpad-Export-Date: 2019-12-11 11:55+0000\n"
"X-Generator: Launchpad (build c597c3229eb023b1e626162d5947141bf7befb13)\n"
"Language: gl\n"
#: ../data/org.x.editor.gschema.xml.in.h:1

View File

@ -16,8 +16,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
"X-Launchpad-Export-Date: 2019-12-11 11:55+0000\n"
"X-Generator: Launchpad (build c597c3229eb023b1e626162d5947141bf7befb13)\n"
"Language: gu\n"
#: ../data/org.x.editor.gschema.xml.in.h:1

View File

@ -17,8 +17,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
"X-Launchpad-Export-Date: 2019-12-11 11:55+0000\n"
"X-Generator: Launchpad (build c597c3229eb023b1e626162d5947141bf7befb13)\n"
"Language: he\n"
#: ../data/org.x.editor.gschema.xml.in.h:1

View File

@ -16,8 +16,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
"X-Launchpad-Export-Date: 2019-12-11 11:55+0000\n"
"X-Generator: Launchpad (build c597c3229eb023b1e626162d5947141bf7befb13)\n"
"Language: hi\n"
#: ../data/org.x.editor.gschema.xml.in.h:1

View File

@ -19,8 +19,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
"X-Launchpad-Export-Date: 2019-12-11 11:55+0000\n"
"X-Generator: Launchpad (build c597c3229eb023b1e626162d5947141bf7befb13)\n"
"Language: hr\n"
#: ../data/org.x.editor.gschema.xml.in.h:1

View File

@ -17,8 +17,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
"X-Launchpad-Export-Date: 2019-12-11 11:55+0000\n"
"X-Generator: Launchpad (build c597c3229eb023b1e626162d5947141bf7befb13)\n"
"Language: hu\n"
"(http: //www.transifex.com/projects/p/MATE/language/hu/)\n"

View File

@ -15,8 +15,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
"X-Launchpad-Export-Date: 2019-12-11 11:55+0000\n"
"X-Generator: Launchpad (build c597c3229eb023b1e626162d5947141bf7befb13)\n"
#: ../data/org.x.editor.gschema.xml.in.h:1
msgid "Use Default Font"

View File

@ -8,15 +8,15 @@ msgstr ""
"Project-Id-Version: linuxmint\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2019-06-23 14:24+0200\n"
"PO-Revision-Date: 2020-01-09 12:06+0000\n"
"PO-Revision-Date: 2018-12-18 03:01+0000\n"
"Last-Translator: karm <melo@carmu.com>\n"
"Language-Team: Interlingua <ia@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Launchpad-Export-Date: 2020-05-11 11:00+0000\n"
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
"X-Launchpad-Export-Date: 2019-12-11 11:56+0000\n"
"X-Generator: Launchpad (build c597c3229eb023b1e626162d5947141bf7befb13)\n"
#: ../data/org.x.editor.gschema.xml.in.h:1
msgid "Use Default Font"
@ -2336,7 +2336,7 @@ msgstr "Monstrar o celar le barra de stato in le actual fenestra"
#: ../xed/xed-ui.h:162
msgid "Fullscreen"
msgstr "Schermo plen"
msgstr ""
#: ../xed/xed-ui.h:163
msgid "Edit text in fullscreen"
@ -2413,12 +2413,12 @@ msgstr "Activar '%s'"
#: ../xed/xed-window.c:1330
#, c-format
msgid "Spaces: %u"
msgstr "Spatios: %u"
msgstr ""
#: ../xed/xed-window.c:1334
#, c-format
msgid "Tabs: %u"
msgstr "Schedas: %u"
msgstr ""
#: ../xed/xed-window.c:1411
msgid "Use Spaces"

View File

@ -20,8 +20,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
"X-Launchpad-Export-Date: 2019-12-11 11:55+0000\n"
"X-Generator: Launchpad (build c597c3229eb023b1e626162d5947141bf7befb13)\n"
"Language: id\n"
#: ../data/org.x.editor.gschema.xml.in.h:1

View File

@ -15,8 +15,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Launchpad-Export-Date: 2020-05-11 11:00+0000\n"
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
"X-Launchpad-Export-Date: 2019-12-11 11:56+0000\n"
"X-Generator: Launchpad (build c597c3229eb023b1e626162d5947141bf7befb13)\n"
"Language: ie\n"
#: ../data/org.x.editor.gschema.xml.in.h:1

View File

@ -7,15 +7,15 @@ msgstr ""
"Project-Id-Version: xedit\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-06-23 14:24+0200\n"
"PO-Revision-Date: 2020-03-25 08:48+0000\n"
"PO-Revision-Date: 2019-05-20 13:15+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: Icelandic <translation-team-is@lists.sourceforge.net>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
"X-Launchpad-Export-Date: 2019-12-11 11:55+0000\n"
"X-Generator: Launchpad (build c597c3229eb023b1e626162d5947141bf7befb13)\n"
"Language: is\n"
#: ../data/org.x.editor.gschema.xml.in.h:1
@ -1449,7 +1449,7 @@ msgstr "Letur"
#: ../xed/resources/ui/xed-preferences-dialog.ui.h:4
msgid "Display"
msgstr "Skoða"
msgstr "Birting"
#: ../xed/resources/ui/xed-preferences-dialog.ui.h:5
msgid "Display line numbers"
@ -2281,7 +2281,7 @@ msgstr "Sýna eða fela stöðustikuna í þessum glugga"
#: ../xed/xed-ui.h:162
msgid "Fullscreen"
msgstr "Fylla skjáinn"
msgstr ""
#: ../xed/xed-ui.h:163
msgid "Edit text in fullscreen"

View File

@ -18,8 +18,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
"X-Launchpad-Export-Date: 2019-12-11 11:55+0000\n"
"X-Generator: Launchpad (build c597c3229eb023b1e626162d5947141bf7befb13)\n"
"Language: it\n"
#: ../data/org.x.editor.gschema.xml.in.h:1

View File

@ -10,7 +10,7 @@ msgstr ""
"Project-Id-Version: MATE Desktop Environment\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-06-23 14:24+0200\n"
"PO-Revision-Date: 2020-03-31 23:53+0000\n"
"PO-Revision-Date: 2019-08-21 14:47+0000\n"
"Last-Translator: ichro furuya <Unknown>\n"
"Language-Team: Japanese "
"(http://www.transifex.com/projects/p/MATE/language/ja/)\n"
@ -18,8 +18,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
"X-Launchpad-Export-Date: 2019-12-11 11:55+0000\n"
"X-Generator: Launchpad (build c597c3229eb023b1e626162d5947141bf7befb13)\n"
"Language: ja\n"
#: ../data/org.x.editor.gschema.xml.in.h:1
@ -276,21 +276,21 @@ msgstr "編集ウィンドウの下側にステータスバーを表示するか
#: ../data/org.x.editor.gschema.xml.in.h:52
msgid "Side Pane is Visible"
msgstr "サイドペインが表示されます"
msgstr "サイド・ペインの表示可否"
#: ../data/org.x.editor.gschema.xml.in.h:53
msgid ""
"Whether the side pane at the left of editing windows should be visible."
msgstr "編集ウィンドウの左側にサイドペインを表示するかどうか。"
msgstr "編集ウィンドウの左側にサイドペインを表示するかどうかです。"
#: ../data/org.x.editor.gschema.xml.in.h:54
msgid "Bottom Panel is Visible"
msgstr "ボトムパネルが表示されます"
msgstr "ボトム・ペインの表示可否"
#: ../data/org.x.editor.gschema.xml.in.h:55
msgid ""
"Whether the bottom panel at the bottom of editing windows should be visible."
msgstr "編集ウインドウの下側にボトムペインを表示するかどうか。"
msgstr "編集ウインドウの下側にボトムペインを表示するかどうかを指定します。"
#: ../data/org.x.editor.gschema.xml.in.h:56
msgid "Allow changing active tabs by scrolling"
@ -1597,7 +1597,7 @@ msgstr "サイドペインを表示"
#: ../xed/resources/ui/xed-shortcuts.ui.h:14
msgid "Show bottom pane"
msgstr "ボトムペインを表示"
msgstr "下部のペインを表示"
#: ../xed/resources/ui/xed-shortcuts.ui.h:15
msgid "Fullscreen on / off"
@ -2191,19 +2191,19 @@ msgstr "ミニマップを表示/非表示"
#: ../xed/xed-ui.h:176
msgid "Side _Pane"
msgstr "サイドペイン(_P)"
msgstr "サイドペイン(_P)"
#: ../xed/xed-ui.h:177
msgid "Show or hide the side pane in the current window"
msgstr "現在のウィンドウでサイドペインを表示または非表示にします"
msgstr "このウィンドウでサイド・ペインの表示/非表示を切り替えます"
#: ../xed/xed-ui.h:179
msgid "_Bottom Pane"
msgstr "ボトムペイン(_B)"
msgstr "ボトムペイン(_B)"
#: ../xed/xed-ui.h:180
msgid "Show or hide the bottom pane in the current window"
msgstr "現在のウィンドウでボトムペインを表示または非表示にします"
msgstr "このウィンドウでボトム・ペインの表示/非表示を切り替えます"
#: ../xed/xed-utils.c:642
msgid "Please check your installation."
@ -2325,7 +2325,7 @@ msgstr "ファイル参照ペイン"
#: ../plugins/filebrowser/filebrowser.plugin.desktop.in.h:2
msgid "Easy file access from the side pane"
msgstr "サイドペインから簡単にファイルにアクセスできます。"
msgstr "サイドペインから簡単にファイルにアクセスできます。"
#: ../plugins/filebrowser/org.x.editor.plugins.filebrowser.gschema.xml.h:1
msgid "Set Location to First Document"
@ -2698,7 +2698,7 @@ msgstr "このドキュメントのスペルをチェックします。"
#: ../plugins/spell/xed-spell-plugin.c:86
msgid "_Check Spelling..."
msgstr "スペルチェック(_C)..."
msgstr "スペルチェック(_C)..."
#: ../plugins/spell/xed-spell-plugin.c:88
msgid "Check the current document for incorrect spelling"
@ -2714,7 +2714,7 @@ msgstr "このドキュメントの言語を設定します"
#: ../plugins/spell/xed-spell-plugin.c:105
msgid "_Autocheck Spelling"
msgstr "自動スペルチェック(_A)"
msgstr "自動スペルチェック(_A)"
#: ../plugins/spell/xed-spell-plugin.c:107
msgid "Automatically spell-check the current document"

View File

@ -16,8 +16,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
"X-Launchpad-Export-Date: 2019-12-11 11:55+0000\n"
"X-Generator: Launchpad (build c597c3229eb023b1e626162d5947141bf7befb13)\n"
"Language: ka\n"
#: ../data/org.x.editor.gschema.xml.in.h:1

View File

@ -8,15 +8,15 @@ msgstr ""
"Project-Id-Version: linuxmint\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2019-06-23 14:24+0200\n"
"PO-Revision-Date: 2019-12-20 12:54+0000\n"
"Last-Translator: Yacine Bouklif <yacinebouklif@gmail.com>\n"
"PO-Revision-Date: 2018-12-06 12:06+0000\n"
"Last-Translator: Selyan Sliman Ɛmiri <selyan.kab@gmail.com>\n"
"Language-Team: Kabyle <kab@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Launchpad-Export-Date: 2020-05-11 11:00+0000\n"
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
"X-Launchpad-Export-Date: 2019-12-11 11:56+0000\n"
"X-Generator: Launchpad (build c597c3229eb023b1e626162d5947141bf7befb13)\n"
"Language: kab\n"
"X-Poedit-Bookmarks: -1,43,-1,-1,-1,-1,-1,-1,-1,-1\n"
@ -1855,11 +1855,11 @@ msgstr "Kkes amḍan i teḥnacaḍt"
#: ../xed/resources/ui/xed-shortcuts.ui.h:47
msgid "Toggle comment block"
msgstr "Rmed/Sens iḥder n uwennit"
msgstr ""
#: ../xed/resources/ui/xed-shortcuts.ui.h:48
msgid "Toggle comment"
msgstr "Rmed/Sens iwenniten"
msgstr ""
#: ../xed/xed-searchbar.c:92
#, c-format
@ -2162,7 +2162,7 @@ msgstr "Fren isemli merra"
#: ../xed/xed-ui.h:105
msgid "_Toggle Comment"
msgstr "_Rmed/Sens iwenniten"
msgstr ""
#: ../xed/xed-ui.h:106 ../plugins/taglist/HTML.tags.xml.in.h:41
msgid "Comment"
@ -2170,11 +2170,11 @@ msgstr "Awennit"
#: ../xed/xed-ui.h:107
msgid "Toggle Comment _Block"
msgstr "Rmed/Sens iḥder n uwennit"
msgstr ""
#: ../xed/xed-ui.h:108
msgid "Comment Block"
msgstr "Iḥder n iwenniten"
msgstr ""
#. View menu
#: ../xed/xed-ui.h:111
@ -2297,7 +2297,7 @@ msgstr "Sken neɣ ffer tafeggagt n waddad deg usfaylu amiran"
#: ../xed/xed-ui.h:162
msgid "Fullscreen"
msgstr "Agdil aččuran"
msgstr ""
#: ../xed/xed-ui.h:163
msgid "Edit text in fullscreen"
@ -2374,12 +2374,12 @@ msgstr "Rmed '%s'"
#: ../xed/xed-window.c:1330
#, c-format
msgid "Spaces: %u"
msgstr "Tallunin: %u"
msgstr ""
#: ../xed/xed-window.c:1334
#, c-format
msgid "Tabs: %u"
msgstr "Iccaren: %u"
msgstr ""
#: ../xed/xed-window.c:1411
msgid "Use Spaces"

View File

@ -9,15 +9,15 @@ msgstr ""
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-06-23 14:24+0200\n"
"PO-Revision-Date: 2016-07-05 12:14+0000\n"
"Last-Translator: Murat Käribay <d2vsd1@mail.ru>\n"
"Last-Translator: Murat Káribaı <d2vsd1@mail.ru>\n"
"Language-Team: Kazakh "
"(http://www.transifex.com/projects/p/MATE/language/kk/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
"X-Launchpad-Export-Date: 2019-12-11 11:56+0000\n"
"X-Generator: Launchpad (build c597c3229eb023b1e626162d5947141bf7befb13)\n"
"Language: kk\n"
#: ../data/org.x.editor.gschema.xml.in.h:1

View File

@ -16,8 +16,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Launchpad-Export-Date: 2020-05-11 11:00+0000\n"
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
"X-Launchpad-Export-Date: 2019-12-11 11:56+0000\n"
"X-Generator: Launchpad (build c597c3229eb023b1e626162d5947141bf7befb13)\n"
"Language: kn\n"
#: ../data/org.x.editor.gschema.xml.in.h:1

View File

@ -20,8 +20,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
"X-Launchpad-Export-Date: 2019-12-11 11:55+0000\n"
"X-Generator: Launchpad (build c597c3229eb023b1e626162d5947141bf7befb13)\n"
"Language: ko\n"
#: ../data/org.x.editor.gschema.xml.in.h:1

View File

@ -16,8 +16,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
"X-Launchpad-Export-Date: 2019-12-11 11:55+0000\n"
"X-Generator: Launchpad (build c597c3229eb023b1e626162d5947141bf7befb13)\n"
"Language: ku\n"
#: ../data/org.x.editor.gschema.xml.in.h:1

View File

@ -19,8 +19,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
"X-Launchpad-Export-Date: 2019-12-11 11:55+0000\n"
"X-Generator: Launchpad (build c597c3229eb023b1e626162d5947141bf7befb13)\n"
"Language: ky\n"
#: ../data/org.x.editor.gschema.xml.in.h:1

View File

@ -14,8 +14,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Launchpad-Export-Date: 2020-05-11 11:00+0000\n"
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
"X-Launchpad-Export-Date: 2019-12-11 11:56+0000\n"
"X-Generator: Launchpad (build c597c3229eb023b1e626162d5947141bf7befb13)\n"
#: ../data/org.x.editor.gschema.xml.in.h:1
msgid "Use Default Font"

View File

@ -19,8 +19,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
"(n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
"X-Launchpad-Export-Date: 2019-12-11 11:55+0000\n"
"X-Generator: Launchpad (build c597c3229eb023b1e626162d5947141bf7befb13)\n"
"Language: lt\n"
#: ../data/org.x.editor.gschema.xml.in.h:1

View File

@ -17,8 +17,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2;\n"
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
"X-Launchpad-Export-Date: 2019-12-11 11:55+0000\n"
"X-Generator: Launchpad (build c597c3229eb023b1e626162d5947141bf7befb13)\n"
"Language: lv\n"
#: ../data/org.x.editor.gschema.xml.in.h:1

View File

@ -8,16 +8,16 @@ msgstr ""
"Project-Id-Version: MATE Desktop Environment\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-06-23 14:24+0200\n"
"PO-Revision-Date: 2020-05-11 10:18+0000\n"
"Last-Translator: Clement Lefebvre <root@linuxmint.com>\n"
"PO-Revision-Date: 2016-01-26 17:29+0000\n"
"Last-Translator: Stefano Karapetsas <stefano@karapetsas.com>\n"
"Language-Team: Maithili "
"(http://www.transifex.com/projects/p/MATE/language/mai/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
"X-Launchpad-Export-Date: 2019-12-11 11:56+0000\n"
"X-Generator: Launchpad (build c597c3229eb023b1e626162d5947141bf7befb13)\n"
"Language: mai\n"
#: ../data/org.x.editor.gschema.xml.in.h:1
@ -2533,7 +2533,8 @@ msgstr ""
#: ../plugins/filebrowser/xed-file-browser-plugin.c:992
msgid "Are you sure you want to permanently delete the selected files?"
msgstr "की अहाँ समझैत छी जे अहाँ चुनल फाइल स्थायी रूपेँ मेटाएनाइ चाहैत छी?"
msgstr ""
"की अहाँ समझैत छी जे अहाँ \"%s\" चुनल फाइल स्थायी रूपेँ मेटाएनाइ चाहैत छी?"
#: ../plugins/filebrowser/xed-file-browser-plugin.c:995
msgid "If you delete an item, it is permanently lost."

View File

@ -16,8 +16,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Launchpad-Export-Date: 2020-05-11 11:00+0000\n"
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
"X-Launchpad-Export-Date: 2019-12-11 11:56+0000\n"
"X-Generator: Launchpad (build c597c3229eb023b1e626162d5947141bf7befb13)\n"
"Language: mg\n"
#: ../data/org.x.editor.gschema.xml.in.h:1

View File

@ -15,8 +15,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
"X-Launchpad-Export-Date: 2019-12-11 11:56+0000\n"
"X-Generator: Launchpad (build c597c3229eb023b1e626162d5947141bf7befb13)\n"
#: ../data/org.x.editor.gschema.xml.in.h:1
msgid "Use Default Font"

View File

@ -16,8 +16,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n"
"X-Launchpad-Export-Date: 2020-05-11 11:00+0000\n"
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
"X-Launchpad-Export-Date: 2019-12-11 11:56+0000\n"
"X-Generator: Launchpad (build c597c3229eb023b1e626162d5947141bf7befb13)\n"
"Language: mk\n"
#: ../data/org.x.editor.gschema.xml.in.h:1

View File

@ -16,8 +16,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
"X-Launchpad-Export-Date: 2019-12-11 11:55+0000\n"
"X-Generator: Launchpad (build c597c3229eb023b1e626162d5947141bf7befb13)\n"
"Language: ml\n"
#: ../data/org.x.editor.gschema.xml.in.h:1

View File

@ -16,8 +16,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
"X-Launchpad-Export-Date: 2019-12-11 11:55+0000\n"
"X-Generator: Launchpad (build c597c3229eb023b1e626162d5947141bf7befb13)\n"
"Language: mn\n"
#: ../data/org.x.editor.gschema.xml.in.h:1

View File

@ -17,8 +17,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
"X-Launchpad-Export-Date: 2019-12-11 11:55+0000\n"
"X-Generator: Launchpad (build c597c3229eb023b1e626162d5947141bf7befb13)\n"
"Language: mr\n"
#: ../data/org.x.editor.gschema.xml.in.h:1

View File

@ -17,8 +17,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
"X-Launchpad-Export-Date: 2019-12-11 11:55+0000\n"
"X-Generator: Launchpad (build c597c3229eb023b1e626162d5947141bf7befb13)\n"
"Language: ms\n"
#: ../data/org.x.editor.gschema.xml.in.h:1

View File

@ -15,8 +15,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Launchpad-Export-Date: 2020-05-11 11:00+0000\n"
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
"X-Launchpad-Export-Date: 2019-12-11 11:56+0000\n"
"X-Generator: Launchpad (build c597c3229eb023b1e626162d5947141bf7befb13)\n"
#: ../data/org.x.editor.gschema.xml.in.h:1
msgid "Use Default Font"

View File

@ -16,8 +16,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
"X-Launchpad-Export-Date: 2019-12-11 11:55+0000\n"
"X-Generator: Launchpad (build c597c3229eb023b1e626162d5947141bf7befb13)\n"
"Language: nb\n"
#: ../data/org.x.editor.gschema.xml.in.h:1

View File

@ -16,8 +16,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
"X-Launchpad-Export-Date: 2019-12-11 11:55+0000\n"
"X-Generator: Launchpad (build c597c3229eb023b1e626162d5947141bf7befb13)\n"
"Language: nds\n"
#: ../data/org.x.editor.gschema.xml.in.h:1

View File

@ -16,8 +16,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
"X-Launchpad-Export-Date: 2019-12-11 11:56+0000\n"
"X-Generator: Launchpad (build c597c3229eb023b1e626162d5947141bf7befb13)\n"
"Language: ne\n"
#: ../data/org.x.editor.gschema.xml.in.h:1

View File

@ -17,8 +17,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
"X-Launchpad-Export-Date: 2019-12-11 11:55+0000\n"
"X-Generator: Launchpad (build c597c3229eb023b1e626162d5947141bf7befb13)\n"
"Language: nl\n"
#: ../data/org.x.editor.gschema.xml.in.h:1

View File

@ -16,8 +16,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
"X-Launchpad-Export-Date: 2019-12-11 11:55+0000\n"
"X-Generator: Launchpad (build c597c3229eb023b1e626162d5947141bf7befb13)\n"
"Language: nn\n"
#: ../data/org.x.editor.gschema.xml.in.h:1

View File

@ -16,8 +16,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
"X-Launchpad-Export-Date: 2019-12-11 11:56+0000\n"
"X-Generator: Launchpad (build c597c3229eb023b1e626162d5947141bf7befb13)\n"
"Language: oc\n"
#: ../data/org.x.editor.gschema.xml.in.h:1

View File

@ -16,8 +16,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n!=1;\n"
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
"X-Launchpad-Export-Date: 2019-12-11 11:55+0000\n"
"X-Generator: Launchpad (build c597c3229eb023b1e626162d5947141bf7befb13)\n"
"Language: or\n"
#: ../data/org.x.editor.gschema.xml.in.h:1

View File

@ -16,8 +16,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
"X-Launchpad-Export-Date: 2019-12-11 11:56+0000\n"
"X-Generator: Launchpad (build c597c3229eb023b1e626162d5947141bf7befb13)\n"
"Language: pa\n"
#: ../data/org.x.editor.gschema.xml.in.h:1

View File

@ -18,8 +18,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
"|| n%100>=20) ? 1 : 2;\n"
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
"X-Launchpad-Export-Date: 2019-12-11 11:55+0000\n"
"X-Generator: Launchpad (build c597c3229eb023b1e626162d5947141bf7befb13)\n"
"Language: pl\n"
#: ../data/org.x.editor.gschema.xml.in.h:1

View File

@ -16,8 +16,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n!=1;\n"
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
"X-Launchpad-Export-Date: 2019-12-11 11:55+0000\n"
"X-Generator: Launchpad (build c597c3229eb023b1e626162d5947141bf7befb13)\n"
"Language: ps\n"
#: ../data/org.x.editor.gschema.xml.in.h:1

View File

@ -19,8 +19,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
"X-Launchpad-Export-Date: 2019-12-11 11:55+0000\n"
"X-Generator: Launchpad (build c597c3229eb023b1e626162d5947141bf7befb13)\n"
"Language: pt\n"
#: ../data/org.x.editor.gschema.xml.in.h:1

View File

@ -19,8 +19,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Launchpad-Export-Date: 2020-05-11 11:00+0000\n"
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
"X-Launchpad-Export-Date: 2019-12-11 11:56+0000\n"
"X-Generator: Launchpad (build c597c3229eb023b1e626162d5947141bf7befb13)\n"
"Language: pt_BR\n"
#: ../data/org.x.editor.gschema.xml.in.h:1

369
po/ro.po

File diff suppressed because it is too large Load Diff

View File

@ -19,8 +19,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
"X-Launchpad-Export-Date: 2019-12-11 11:55+0000\n"
"X-Generator: Launchpad (build c597c3229eb023b1e626162d5947141bf7befb13)\n"
"Language: ru\n"
#: ../data/org.x.editor.gschema.xml.in.h:1

View File

@ -23,8 +23,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n!=1;\n"
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
"X-Launchpad-Export-Date: 2019-12-11 11:55+0000\n"
"X-Generator: Launchpad (build c597c3229eb023b1e626162d5947141bf7befb13)\n"
#: ../data/org.x.editor.gschema.xml.in.h:1
msgid "Use Default Font"

View File

@ -16,8 +16,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
"X-Launchpad-Export-Date: 2019-12-11 11:55+0000\n"
"X-Generator: Launchpad (build c597c3229eb023b1e626162d5947141bf7befb13)\n"
"Language: si\n"
#: ../data/org.x.editor.gschema.xml.in.h:1

Some files were not shown because too many files have changed in this diff Show More