Compare commits
29 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
8bb308de4f | ||
|
0cb924853d | ||
|
14896668d3 | ||
|
8b0f775e7e | ||
|
385d32dbfc | ||
|
2bb61b9190 | ||
|
c8a0150fd4 | ||
|
6f58fd2f2c | ||
|
b6483090b6 | ||
|
5e9e34ed60 | ||
|
6bbcc343dd | ||
|
1d39305c1c | ||
|
45bcb345e8 | ||
|
d1833f6591 | ||
|
8a98e18511 | ||
|
c3b8a73695 | ||
|
7302b14f78 | ||
|
5a16a65643 | ||
|
d5a48be670 | ||
|
bfa1fa0e00 | ||
|
c19752ec31 | ||
|
4eaddc1cb7 | ||
|
808e77b052 | ||
|
5e2c6f0369 | ||
|
55e386beef | ||
|
5fae2771c8 | ||
|
c912a44774 | ||
|
0d006777fc | ||
|
2e074fd0ed |
12
.gitignore
vendored
Normal file
12
.gitignore
vendored
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
# Specify filepatterns you want git to ignore.
|
||||||
|
debian/tmp/
|
||||||
|
debian/build/
|
||||||
|
debian/.debhelper/
|
||||||
|
debian/xed/
|
||||||
|
debian/xed-common/
|
||||||
|
debian/xed-dbg/
|
||||||
|
debian/xed-dev/
|
||||||
|
debian/xed-doc/
|
||||||
|
debian/files
|
||||||
|
debian/*.log
|
||||||
|
debian/*.substvars
|
41
README
41
README
@@ -1,41 +0,0 @@
|
|||||||
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 . build # run the `configure' script
|
|
||||||
% ninja -v -C build # build xed
|
|
||||||
[ Become root if necessary ]
|
|
||||||
% ninja install -v -C build # install xed
|
|
74
README.md
Normal file
74
README.md
Normal file
@@ -0,0 +1,74 @@
|
|||||||
|
# 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
|
||||||
|

|
||||||
|
|
||||||
|
##### Theme selections
|
||||||
|

|
||||||
|
|
||||||
|
##### Search and Replace feature
|
||||||
|

|
||||||
|
|
||||||
|
##### Select from several languages in Highlight syntax mode
|
||||||
|

|
||||||
|
|
||||||
|
##### Xed Shortcuts
|
||||||
|

|
||||||
|

|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
> xed is released under the GNU General Public License (GPL) version 2, see
|
||||||
|
> the file 'COPYING' for more information.
|
@@ -42,6 +42,9 @@ Output version information and exit
|
|||||||
\fB\-?, \-h, \-\-help\fR
|
\fB\-?, \-h, \-\-help\fR
|
||||||
Print standard command line options.
|
Print standard command line options.
|
||||||
.TP
|
.TP
|
||||||
|
\fB\-w, \-\-wait\fR
|
||||||
|
Open files and block the xed process.
|
||||||
|
.TP
|
||||||
\fB\-\-help\-all\fR
|
\fB\-\-help\-all\fR
|
||||||
Print all command line options.
|
Print all command line options.
|
||||||
.P
|
.P
|
||||||
|
66
debian/changelog
vendored
66
debian/changelog
vendored
@@ -1,3 +1,69 @@
|
|||||||
|
xed (2.6.0) ulyana; 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
|
||||||
|
|
||||||
|
xed (2.4.2) tricia; urgency=medium
|
||||||
|
|
||||||
|
* l10n: Update translations
|
||||||
|
|
||||||
|
-- Clement Lefebvre <root@linuxmint.com> Wed, 11 Dec 2019 14:49:32 +0000
|
||||||
|
|
||||||
|
xed (2.4.1) tricia; urgency=medium
|
||||||
|
|
||||||
|
* l10n: Update translations
|
||||||
|
|
||||||
|
-- Clement Lefebvre <root@linuxmint.com> Tue, 26 Nov 2019 17:14:23 +0000
|
||||||
|
|
||||||
xed (2.4.0) tricia; urgency=medium
|
xed (2.4.0) tricia; urgency=medium
|
||||||
|
|
||||||
[ Michael Webster ]
|
[ Michael Webster ]
|
||||||
|
3
debian/control
vendored
3
debian/control
vendored
@@ -53,8 +53,7 @@ Description: Text editor
|
|||||||
|
|
||||||
Package: xed-common
|
Package: xed-common
|
||||||
Architecture: all
|
Architecture: all
|
||||||
Depends: python,
|
Depends: ${misc:Depends},
|
||||||
${misc:Depends},
|
|
||||||
Description: Text editor (common files)
|
Description: Text editor (common files)
|
||||||
Xed is a text editor which supports most standard editor features,
|
Xed is a text editor which supports most standard editor features,
|
||||||
extending this basic functionality with other features not usually
|
extending this basic functionality with other features not usually
|
||||||
|
3
debian/rules
vendored
3
debian/rules
vendored
@@ -15,9 +15,6 @@ override_dh_auto_configure:
|
|||||||
override_dh_installchangelogs:
|
override_dh_installchangelogs:
|
||||||
dh_installchangelogs NEWS
|
dh_installchangelogs NEWS
|
||||||
|
|
||||||
override_dh_auto_test:
|
|
||||||
ninja -C debian/build test
|
|
||||||
|
|
||||||
override_dh_strip:
|
override_dh_strip:
|
||||||
dh_strip --dbg-package=xed-dbg
|
dh_strip --dbg-package=xed-dbg
|
||||||
|
|
||||||
|
@@ -1191,7 +1191,7 @@
|
|||||||
</variablelist>
|
</variablelist>
|
||||||
</sect2>
|
</sect2>
|
||||||
|
|
||||||
<sect2 id="xed-prefs-plugins">
|
<sect2 id="xed-prefs-plugins" xreflabel="Plugins Preferences">
|
||||||
<title>Plugins Preferences</title>
|
<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>
|
<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,45 +1245,42 @@
|
|||||||
<title>Working with Plugins</title>
|
<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>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>
|
||||||
<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>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 <link linkend="xed-prefs-plugins">Plugins Preferences</link>.</para>
|
<para>To enable and disable plugins, or see which plugins are currently enabled, use the <xref linkend="xed-prefs-plugins"/>.</para>
|
||||||
<para>The following plugins come built-in with <application>&app;</application>:</para>
|
<para>The following plugins come built-in with <application>&app;</application>:</para>
|
||||||
<!-- Not yet documented:
|
|
||||||
File browser
|
|
||||||
-->
|
|
||||||
<itemizedlist>
|
<itemizedlist>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para><link linkend="xed-change-case-plugin"><application>Change Case</application></link> allows you to change the case of the selected text.</para>
|
<para><xref linkend="xed-change-case-plugin"/> allows you to change the case of the selected text.</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para><application><link linkend="xed-document-statistics-plugin">Document Statistics</link></application> shows the number of lines, words, and characters in the document. </para>
|
<para><xref linkend="xed-document-statistics-plugin"/> shows the number of lines, words, and characters in the document. </para>
|
||||||
</listitem>
|
</listitem>
|
||||||
<listitem>
|
<listitem>
|
||||||
<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>
|
<para><xref linkend="xed-file-browser-plugin"/> allows you to browse your files and folders in the side pane.</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para><application><link linkend="xed-indent-lines-plugin">Indent Lines</link></application> adds or removes indentation from the selected lines.</para>
|
<para><xref linkend="xed-indent-lines-plugin"/> adds or removes indentation from the selected lines.</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para><application><link linkend="xed-insert-date-time-plugin">Insert Date/Time</link></application> adds the current date and time into a document.</para>
|
<para><xref linkend="xed-insert-date-time-plugin"/> adds the current date and time into a document.</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
<listitem>
|
<listitem>
|
||||||
<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>
|
<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>
|
||||||
</listitem>
|
</listitem>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para><application><link linkend="xed-sort-plugin">Sort</link></application> arranges selected lines of text into alphabetical order.</para>
|
<para><xref linkend="xed-sort-plugin"/> arranges selected lines of text into alphabetical order.</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
<listitem>
|
<listitem>
|
||||||
<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>
|
<para><xref linkend="xed-spell-checker-plugin"/> corrects the spelling in the selected text, or marks errors automatically in the document.</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
<listitem>
|
<listitem>
|
||||||
<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>
|
<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>
|
||||||
</listitem>
|
</listitem>
|
||||||
</itemizedlist>
|
</itemizedlist>
|
||||||
|
|
||||||
</sect2>
|
</sect2>
|
||||||
|
|
||||||
<sect2 id="xed-change-case-plugin">
|
<sect2 id="xed-change-case-plugin" xreflabel="Change Case">
|
||||||
<title>Change Case Plugin</title>
|
<title>Change Case Plugin</title>
|
||||||
<para>The <application>Change Case</application> plugin changes the case of the selected text.</para>
|
<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>
|
<para>The following items are added to the <guimenu>Edit</guimenu> menu when the <application>Change Case</application> plugin is enabled:</para>
|
||||||
@@ -1334,7 +1331,7 @@
|
|||||||
|
|
||||||
</sect2>
|
</sect2>
|
||||||
|
|
||||||
<sect2 id="xed-document-statistics-plugin">
|
<sect2 id="xed-document-statistics-plugin" xreflabel="Document Statistics">
|
||||||
<title>Document Statistics Plugin</title>
|
<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>
|
<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>
|
<orderedlist>
|
||||||
@@ -1364,7 +1361,7 @@
|
|||||||
</orderedlist>
|
</orderedlist>
|
||||||
</sect2>
|
</sect2>
|
||||||
|
|
||||||
<sect2 id="xed-file-browser-plugin">
|
<sect2 id="xed-file-browser-plugin" xreflabel="File Browser">
|
||||||
<title>File Browser Plugin</title>
|
<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>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>
|
<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>
|
||||||
@@ -1385,7 +1382,7 @@
|
|||||||
</sect3>
|
</sect3>
|
||||||
</sect2>
|
</sect2>
|
||||||
|
|
||||||
<sect2 id="xed-indent-lines-plugin">
|
<sect2 id="xed-indent-lines-plugin" xreflabel="Indent Lines">
|
||||||
<title>Indent Lines Plugin</title>
|
<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>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>
|
<para>To indent or unindent text, perform the following steps:</para>
|
||||||
@@ -1407,7 +1404,7 @@
|
|||||||
|
|
||||||
</sect2>
|
</sect2>
|
||||||
|
|
||||||
<sect2 id="xed-insert-date-time-plugin">
|
<sect2 id="xed-insert-date-time-plugin" xreflabel="Insert Date/Time">
|
||||||
<title>Insert Date/Time Plugin</title>
|
<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>
|
<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>
|
<orderedlist>
|
||||||
@@ -1455,7 +1452,7 @@
|
|||||||
</sect3>
|
</sect3>
|
||||||
</sect2>
|
</sect2>
|
||||||
|
|
||||||
<sect2 id="xed-modelines-plugin">
|
<sect2 id="xed-modelines-plugin" xreflabel="Modelines">
|
||||||
<title>Modelines Plugin</title>
|
<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>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>
|
<para>Preferences set using modelines take precedence over the ones specified in the preference dialog.</para>
|
||||||
@@ -1483,12 +1480,12 @@
|
|||||||
<sect3 id="xed-modelines-plugin-emacs">
|
<sect3 id="xed-modelines-plugin-emacs">
|
||||||
<title>Emacs Modelines</title>
|
<title>Emacs Modelines</title>
|
||||||
<para>The first two lines of a document are scanned for <application>Emacs</application> modelines.</para>
|
<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.delorie.com/gnu/docs/emacs/emacs_486.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.gnu.org/software/emacs/manual/html_node/emacs/index.html">GNU Emacs Manual</ulink>.</para>
|
||||||
</sect3>
|
</sect3>
|
||||||
<sect3 id="xed-modelines-plugin-kate">
|
<sect3 id="xed-modelines-plugin-kate">
|
||||||
<title>Kate Modelines</title>
|
<title>Kate Modelines</title>
|
||||||
<para>The first and last ten lines a document are scanned for <application>Kate</application> modelines.</para>
|
<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/article/katepart_modelines">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">Kate website</ulink>.</para>
|
||||||
</sect3>
|
</sect3>
|
||||||
<sect3 id="xed-modelines-plugin-vim">
|
<sect3 id="xed-modelines-plugin-vim">
|
||||||
<title>Vim Modelines</title>
|
<title>Vim Modelines</title>
|
||||||
@@ -1497,7 +1494,7 @@
|
|||||||
</sect3>
|
</sect3>
|
||||||
</sect2>
|
</sect2>
|
||||||
|
|
||||||
<sect2 id="xed-sort-plugin">
|
<sect2 id="xed-sort-plugin" xreflabel="Sort">
|
||||||
<title>Sort Plugin</title>
|
<title>Sort Plugin</title>
|
||||||
<para>The <application>Sort</application> plugin arranges selected lines of text into alphabetical order.</para>
|
<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>.
|
<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>.
|
||||||
@@ -1534,7 +1531,7 @@
|
|||||||
</orderedlist>
|
</orderedlist>
|
||||||
</sect2>
|
</sect2>
|
||||||
|
|
||||||
<sect2 id="xed-spell-checker-plugin">
|
<sect2 id="xed-spell-checker-plugin" xreflabel="Spell Checker">
|
||||||
<title>Spell Checker Plugin</title>
|
<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>
|
<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>
|
<orderedlist>
|
||||||
@@ -1589,7 +1586,7 @@
|
|||||||
</orderedlist>
|
</orderedlist>
|
||||||
</sect2>
|
</sect2>
|
||||||
|
|
||||||
<sect2 id="xed-tag-list-plugin">
|
<sect2 id="xed-tag-list-plugin" xreflabel="Tag List">
|
||||||
<title>Tag List Plugin</title>
|
<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>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>
|
<para>To use the Tag List plugin, perform the following steps:</para>
|
||||||
|
14
meson.build
14
meson.build
@@ -1,4 +1,4 @@
|
|||||||
project('xed', 'c', version : '2.4.0')
|
project('xed', 'c', version : '2.6.0')
|
||||||
|
|
||||||
gnome = import('gnome')
|
gnome = import('gnome')
|
||||||
i18n = import('i18n')
|
i18n = import('i18n')
|
||||||
@@ -8,7 +8,8 @@ version = meson.project_version()
|
|||||||
|
|
||||||
xed_conf = configuration_data()
|
xed_conf = configuration_data()
|
||||||
xed_conf.set_quoted('VERSION', version)
|
xed_conf.set_quoted('VERSION', version)
|
||||||
xed_conf.set_quoted('GETTEXT_PACKAGE', 'xed')
|
#xed_conf.set_quoted('GETTEXT_PACKAGE', 'xed')
|
||||||
|
xed_conf.set_quoted('GETTEXT_PACKAGE', meson.project_name())
|
||||||
|
|
||||||
# directories
|
# directories
|
||||||
prefix = get_option('prefix')
|
prefix = get_option('prefix')
|
||||||
@@ -94,6 +95,15 @@ if get_option('docs')
|
|||||||
subdir('docs/reference')
|
subdir('docs/reference')
|
||||||
endif
|
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('prefix = @0@'.format(prefix))
|
||||||
message('bindir = @0@'.format(bindir))
|
message('bindir = @0@'.format(bindir))
|
||||||
message('datadir = @0@'.format(datadir))
|
message('datadir = @0@'.format(datadir))
|
||||||
|
12
plugins/joinlines/joinlines.plugin.desktop.in
Normal file
12
plugins/joinlines/joinlines.plugin.desktop.in
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
[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
|
||||||
|
|
91
plugins/joinlines/joinlines/__init__.py
Normal file
91
plugins/joinlines/joinlines/__init__.py
Normal file
@@ -0,0 +1,91 @@
|
|||||||
|
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()
|
||||||
|
|
13
plugins/joinlines/meson.build
Normal file
13
plugins/joinlines/meson.build
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
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,
|
||||||
|
)
|
@@ -3,6 +3,7 @@ pluginslibdir = join_paths(libdir, 'xed', 'plugins')
|
|||||||
|
|
||||||
subdir('docinfo')
|
subdir('docinfo')
|
||||||
subdir('filebrowser')
|
subdir('filebrowser')
|
||||||
|
subdir('joinlines')
|
||||||
subdir('modelines')
|
subdir('modelines')
|
||||||
subdir('open-uri-context-menu')
|
subdir('open-uri-context-menu')
|
||||||
subdir('sort')
|
subdir('sort')
|
||||||
|
@@ -110,7 +110,7 @@ xed_taglist_plugin_activate (XedWindowActivatable *activatable)
|
|||||||
priv->taglist_panel = xed_taglist_plugin_panel_new (priv->window, data_dir);
|
priv->taglist_panel = xed_taglist_plugin_panel_new (priv->window, data_dir);
|
||||||
g_free (data_dir);
|
g_free (data_dir);
|
||||||
|
|
||||||
xed_panel_add_item (side_panel, priv->taglist_panel, _("Tags"), "list-add");
|
xed_panel_add_item (side_panel, priv->taglist_panel, _("Tags"), "list-add-symbolic");
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
@@ -126,10 +126,15 @@ strip_trailing_spaces (GtkTextBuffer *text_buffer)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Strip trailing lines (except for one) */
|
/* Strip trailing lines */
|
||||||
if (empty_lines_start != -1 && empty_lines_start != (line_count - 1))
|
if (empty_lines_start != -1)
|
||||||
{
|
{
|
||||||
gtk_text_buffer_get_iter_at_line (text_buffer, &strip_start, empty_lines_start);
|
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_get_end_iter (text_buffer, &strip_end);
|
||||||
gtk_text_buffer_delete (text_buffer, &strip_start, &strip_end);
|
gtk_text_buffer_delete (text_buffer, &strip_start, &strip_end);
|
||||||
}
|
}
|
||||||
|
4
po/ab.po
4
po/ab.po
@@ -17,8 +17,8 @@ msgstr ""
|
|||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Launchpad-Export-Date: 2019-07-28 09:34+0000\n"
|
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
|
||||||
"X-Generator: Launchpad (build 19010)\n"
|
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
|
||||||
"Language: cmn\n"
|
"Language: cmn\n"
|
||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:1
|
#: ../data/org.x.editor.gschema.xml.in.h:1
|
||||||
|
4
po/af.po
4
po/af.po
@@ -16,8 +16,8 @@ msgstr ""
|
|||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Launchpad-Export-Date: 2019-07-28 09:34+0000\n"
|
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
|
||||||
"X-Generator: Launchpad (build 19010)\n"
|
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
|
||||||
"Language: af\n"
|
"Language: af\n"
|
||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:1
|
#: ../data/org.x.editor.gschema.xml.in.h:1
|
||||||
|
22
po/am.po
22
po/am.po
@@ -9,7 +9,7 @@ msgstr ""
|
|||||||
"Project-Id-Version: MATE Desktop Environment\n"
|
"Project-Id-Version: MATE Desktop Environment\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2019-06-23 14:24+0200\n"
|
"POT-Creation-Date: 2019-06-23 14:24+0200\n"
|
||||||
"PO-Revision-Date: 2018-12-26 16:33+0000\n"
|
"PO-Revision-Date: 2019-10-01 00:12+0000\n"
|
||||||
"Last-Translator: samson <Unknown>\n"
|
"Last-Translator: samson <Unknown>\n"
|
||||||
"Language-Team: Amharic "
|
"Language-Team: Amharic "
|
||||||
"(http://www.transifex.com/projects/p/MATE/language/am/)\n"
|
"(http://www.transifex.com/projects/p/MATE/language/am/)\n"
|
||||||
@@ -17,8 +17,8 @@ msgstr ""
|
|||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||||
"X-Launchpad-Export-Date: 2019-07-28 09:34+0000\n"
|
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
|
||||||
"X-Generator: Launchpad (build 19010)\n"
|
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
|
||||||
"Language: am\n"
|
"Language: am\n"
|
||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:1
|
#: ../data/org.x.editor.gschema.xml.in.h:1
|
||||||
@@ -1774,11 +1774,11 @@ msgstr "በ መጠቆሚያው ላይ የ መቀነሻ ቁጥር"
|
|||||||
|
|
||||||
#: ../xed/resources/ui/xed-shortcuts.ui.h:47
|
#: ../xed/resources/ui/xed-shortcuts.ui.h:47
|
||||||
msgid "Toggle comment block"
|
msgid "Toggle comment block"
|
||||||
msgstr ""
|
msgstr "አስተያየት መቀያየሪያ መከልከያ"
|
||||||
|
|
||||||
#: ../xed/resources/ui/xed-shortcuts.ui.h:48
|
#: ../xed/resources/ui/xed-shortcuts.ui.h:48
|
||||||
msgid "Toggle comment"
|
msgid "Toggle comment"
|
||||||
msgstr ""
|
msgstr "አስተያየት መቀያየሪያ"
|
||||||
|
|
||||||
#: ../xed/xed-searchbar.c:92
|
#: ../xed/xed-searchbar.c:92
|
||||||
#, c-format
|
#, c-format
|
||||||
@@ -2081,7 +2081,7 @@ msgstr "ጠቅላል ሰነዱን መምረጫ"
|
|||||||
|
|
||||||
#: ../xed/xed-ui.h:105
|
#: ../xed/xed-ui.h:105
|
||||||
msgid "_Toggle Comment"
|
msgid "_Toggle Comment"
|
||||||
msgstr ""
|
msgstr "አስተያየት _መቀያየሪያ"
|
||||||
|
|
||||||
#: ../xed/xed-ui.h:106 ../plugins/taglist/HTML.tags.xml.in.h:41
|
#: ../xed/xed-ui.h:106 ../plugins/taglist/HTML.tags.xml.in.h:41
|
||||||
msgid "Comment"
|
msgid "Comment"
|
||||||
@@ -2089,11 +2089,11 @@ msgstr "አስተያየት"
|
|||||||
|
|
||||||
#: ../xed/xed-ui.h:107
|
#: ../xed/xed-ui.h:107
|
||||||
msgid "Toggle Comment _Block"
|
msgid "Toggle Comment _Block"
|
||||||
msgstr ""
|
msgstr "አስተያየት መቀያየሪያ _መከልከያ"
|
||||||
|
|
||||||
#: ../xed/xed-ui.h:108
|
#: ../xed/xed-ui.h:108
|
||||||
msgid "Comment Block"
|
msgid "Comment Block"
|
||||||
msgstr ""
|
msgstr "አስተያየት መከልከያ"
|
||||||
|
|
||||||
#. View menu
|
#. View menu
|
||||||
#: ../xed/xed-ui.h:111
|
#: ../xed/xed-ui.h:111
|
||||||
@@ -2216,7 +2216,7 @@ msgstr "በ አሁኑ መስኮት ውስጥ የ ሁኔታዎች መደርደሪ
|
|||||||
|
|
||||||
#: ../xed/xed-ui.h:162
|
#: ../xed/xed-ui.h:162
|
||||||
msgid "Fullscreen"
|
msgid "Fullscreen"
|
||||||
msgstr ""
|
msgstr "በ ሙሉ መመልከቻ ዘዴ"
|
||||||
|
|
||||||
#: ../xed/xed-ui.h:163
|
#: ../xed/xed-ui.h:163
|
||||||
msgid "Edit text in fullscreen"
|
msgid "Edit text in fullscreen"
|
||||||
@@ -2293,12 +2293,12 @@ msgstr "ማስጀመሪያ '%s'"
|
|||||||
#: ../xed/xed-window.c:1330
|
#: ../xed/xed-window.c:1330
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Spaces: %u"
|
msgid "Spaces: %u"
|
||||||
msgstr ""
|
msgstr "ክፍተት: %u"
|
||||||
|
|
||||||
#: ../xed/xed-window.c:1334
|
#: ../xed/xed-window.c:1334
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Tabs: %u"
|
msgid "Tabs: %u"
|
||||||
msgstr ""
|
msgstr "Tabs: %u"
|
||||||
|
|
||||||
#: ../xed/xed-window.c:1411
|
#: ../xed/xed-window.c:1411
|
||||||
msgid "Use Spaces"
|
msgid "Use Spaces"
|
||||||
|
4
po/ar.po
4
po/ar.po
@@ -17,8 +17,8 @@ msgstr ""
|
|||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n % 100 >= "
|
"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"
|
"3 && n % 100 <= 10 ? 3 : n % 100 >= 11 && n % 100 <= 99 ? 4 : 5;\n"
|
||||||
"X-Launchpad-Export-Date: 2019-07-28 09:34+0000\n"
|
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
|
||||||
"X-Generator: Launchpad (build 19010)\n"
|
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
|
||||||
"Language: ar_EG\n"
|
"Language: ar_EG\n"
|
||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:1
|
#: ../data/org.x.editor.gschema.xml.in.h:1
|
||||||
|
4
po/as.po
4
po/as.po
@@ -16,8 +16,8 @@ msgstr ""
|
|||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n!=1;\n"
|
"Plural-Forms: nplurals=2; plural=n!=1;\n"
|
||||||
"X-Launchpad-Export-Date: 2019-07-28 09:34+0000\n"
|
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
|
||||||
"X-Generator: Launchpad (build 19010)\n"
|
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
|
||||||
"Language: as\n"
|
"Language: as\n"
|
||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:1
|
#: ../data/org.x.editor.gschema.xml.in.h:1
|
||||||
|
@@ -18,8 +18,8 @@ msgstr ""
|
|||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Launchpad-Export-Date: 2019-07-28 09:34+0000\n"
|
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
|
||||||
"X-Generator: Launchpad (build 19010)\n"
|
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
|
||||||
"Language: ast\n"
|
"Language: ast\n"
|
||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:1
|
#: ../data/org.x.editor.gschema.xml.in.h:1
|
||||||
|
4
po/az.po
4
po/az.po
@@ -16,8 +16,8 @@ msgstr ""
|
|||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Launchpad-Export-Date: 2019-07-28 09:34+0000\n"
|
"X-Launchpad-Export-Date: 2020-05-11 11:00+0000\n"
|
||||||
"X-Generator: Launchpad (build 19010)\n"
|
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
|
||||||
"Language: az\n"
|
"Language: az\n"
|
||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:1
|
#: ../data/org.x.editor.gschema.xml.in.h:1
|
||||||
|
4
po/be.po
4
po/be.po
@@ -18,8 +18,8 @@ msgstr ""
|
|||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
|
"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"
|
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||||
"X-Launchpad-Export-Date: 2019-07-28 09:34+0000\n"
|
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
|
||||||
"X-Generator: Launchpad (build 19010)\n"
|
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
|
||||||
"Language: be\n"
|
"Language: be\n"
|
||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:1
|
#: ../data/org.x.editor.gschema.xml.in.h:1
|
||||||
|
@@ -16,8 +16,8 @@ msgstr ""
|
|||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
|
"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"
|
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||||
"X-Launchpad-Export-Date: 2019-07-28 09:34+0000\n"
|
"X-Launchpad-Export-Date: 2020-05-11 11:00+0000\n"
|
||||||
"X-Generator: Launchpad (build 19010)\n"
|
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
|
||||||
"X-Poedit-Language: Belarsian Latin\n"
|
"X-Poedit-Language: Belarsian Latin\n"
|
||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:1
|
#: ../data/org.x.editor.gschema.xml.in.h:1
|
||||||
|
4
po/bg.po
4
po/bg.po
@@ -17,8 +17,8 @@ msgstr ""
|
|||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Launchpad-Export-Date: 2019-07-28 09:34+0000\n"
|
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
|
||||||
"X-Generator: Launchpad (build 19010)\n"
|
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
|
||||||
"Language: bg\n"
|
"Language: bg\n"
|
||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:1
|
#: ../data/org.x.editor.gschema.xml.in.h:1
|
||||||
|
4
po/bn.po
4
po/bn.po
@@ -16,8 +16,8 @@ msgstr ""
|
|||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Launchpad-Export-Date: 2019-07-28 09:34+0000\n"
|
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
|
||||||
"X-Generator: Launchpad (build 19010)\n"
|
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
|
||||||
"Language: bn\n"
|
"Language: bn\n"
|
||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:1
|
#: ../data/org.x.editor.gschema.xml.in.h:1
|
||||||
|
@@ -16,8 +16,8 @@ msgstr ""
|
|||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n!=1;\n"
|
"Plural-Forms: nplurals=2; plural=n!=1;\n"
|
||||||
"X-Launchpad-Export-Date: 2019-07-28 09:33+0000\n"
|
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
|
||||||
"X-Generator: Launchpad (build 19010)\n"
|
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
|
||||||
"Language: bn_IN\n"
|
"Language: bn_IN\n"
|
||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:1
|
#: ../data/org.x.editor.gschema.xml.in.h:1
|
||||||
|
4
po/br.po
4
po/br.po
@@ -16,8 +16,8 @@ msgstr ""
|
|||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||||
"X-Launchpad-Export-Date: 2019-07-28 09:34+0000\n"
|
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
|
||||||
"X-Generator: Launchpad (build 19010)\n"
|
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
|
||||||
"Language: br\n"
|
"Language: br\n"
|
||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:1
|
#: ../data/org.x.editor.gschema.xml.in.h:1
|
||||||
|
4
po/bs.po
4
po/bs.po
@@ -17,8 +17,8 @@ msgstr ""
|
|||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
|
"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"
|
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||||
"X-Launchpad-Export-Date: 2019-07-28 09:34+0000\n"
|
"X-Launchpad-Export-Date: 2020-05-11 11:00+0000\n"
|
||||||
"X-Generator: Launchpad (build 19010)\n"
|
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
|
||||||
"Language: bs\n"
|
"Language: bs\n"
|
||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:1
|
#: ../data/org.x.editor.gschema.xml.in.h:1
|
||||||
|
4
po/ca.po
4
po/ca.po
@@ -17,8 +17,8 @@ msgstr ""
|
|||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Launchpad-Export-Date: 2019-07-28 09:34+0000\n"
|
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
|
||||||
"X-Generator: Launchpad (build 19010)\n"
|
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
|
||||||
"Language: ca\n"
|
"Language: ca\n"
|
||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:1
|
#: ../data/org.x.editor.gschema.xml.in.h:1
|
||||||
|
@@ -16,8 +16,8 @@ msgstr ""
|
|||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Launchpad-Export-Date: 2019-07-28 09:33+0000\n"
|
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
|
||||||
"X-Generator: Launchpad (build 19010)\n"
|
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
|
||||||
"Language: ca@valencia\n"
|
"Language: ca@valencia\n"
|
||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:1
|
#: ../data/org.x.editor.gschema.xml.in.h:1
|
||||||
|
@@ -16,8 +16,8 @@ msgstr ""
|
|||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
"X-Launchpad-Export-Date: 2019-07-28 09:34+0000\n"
|
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
|
||||||
"X-Generator: Launchpad (build 19010)\n"
|
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
|
||||||
"Language: crh\n"
|
"Language: crh\n"
|
||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:1
|
#: ../data/org.x.editor.gschema.xml.in.h:1
|
||||||
|
4
po/cs.po
4
po/cs.po
@@ -19,8 +19,8 @@ msgstr ""
|
|||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
||||||
"X-Launchpad-Export-Date: 2019-07-28 09:34+0000\n"
|
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
|
||||||
"X-Generator: Launchpad (build 19010)\n"
|
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
|
||||||
"Language: cs\n"
|
"Language: cs\n"
|
||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:1
|
#: ../data/org.x.editor.gschema.xml.in.h:1
|
||||||
|
26
po/cy.po
26
po/cy.po
@@ -9,8 +9,8 @@ msgstr ""
|
|||||||
"Project-Id-Version: MATE Desktop Environment\n"
|
"Project-Id-Version: MATE Desktop Environment\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2019-06-23 14:24+0200\n"
|
"POT-Creation-Date: 2019-06-23 14:24+0200\n"
|
||||||
"PO-Revision-Date: 2018-12-18 18:50+0000\n"
|
"PO-Revision-Date: 2020-05-11 10:17+0000\n"
|
||||||
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
|
"Last-Translator: Clement Lefebvre <root@linuxmint.com>\n"
|
||||||
"Language-Team: Welsh "
|
"Language-Team: Welsh "
|
||||||
"(http://www.transifex.com/projects/p/MATE/language/cy/)\n"
|
"(http://www.transifex.com/projects/p/MATE/language/cy/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@@ -18,8 +18,8 @@ msgstr ""
|
|||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=4; plural=n==1 ? 0 : n==2 ? 1 : (n != 8 && n != 11) ? "
|
"Plural-Forms: nplurals=4; plural=n==1 ? 0 : n==2 ? 1 : (n != 8 && n != 11) ? "
|
||||||
"2 : 3;\n"
|
"2 : 3;\n"
|
||||||
"X-Launchpad-Export-Date: 2019-07-28 09:34+0000\n"
|
"X-Launchpad-Export-Date: 2020-05-11 11:00+0000\n"
|
||||||
"X-Generator: Launchpad (build 19010)\n"
|
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
|
||||||
"Language: cy\n"
|
"Language: cy\n"
|
||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:1
|
#: ../data/org.x.editor.gschema.xml.in.h:1
|
||||||
@@ -889,7 +889,7 @@ msgstr[3] ""
|
|||||||
msgid ""
|
msgid ""
|
||||||
"Changes made to the document in the last hour will be permanently lost."
|
"Changes made to the document in the last hour will be permanently lost."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Bydd newidiadau wnaed i'r ddogfen yn ystod y %d awr olaf yn cael eu colli."
|
"Bydd newidiadau wnaed i'r ddogfen yn ystod y awr olaf yn cael eu colli."
|
||||||
|
|
||||||
#: ../xed/xed-commands-file.c:1299
|
#: ../xed/xed-commands-file.c:1299
|
||||||
#, c-format
|
#, c-format
|
||||||
@@ -1924,11 +1924,11 @@ msgstr "Rhif gostyngol wrth y cyrchwr"
|
|||||||
|
|
||||||
#: ../xed/resources/ui/xed-shortcuts.ui.h:47
|
#: ../xed/resources/ui/xed-shortcuts.ui.h:47
|
||||||
msgid "Toggle comment block"
|
msgid "Toggle comment block"
|
||||||
msgstr ""
|
msgstr "Toglo bloc sylwadau"
|
||||||
|
|
||||||
#: ../xed/resources/ui/xed-shortcuts.ui.h:48
|
#: ../xed/resources/ui/xed-shortcuts.ui.h:48
|
||||||
msgid "Toggle comment"
|
msgid "Toggle comment"
|
||||||
msgstr ""
|
msgstr "Toglo sylwadau"
|
||||||
|
|
||||||
#: ../xed/xed-searchbar.c:92
|
#: ../xed/xed-searchbar.c:92
|
||||||
#, c-format
|
#, c-format
|
||||||
@@ -2239,7 +2239,7 @@ msgstr "Dewis yr holl ddogfen"
|
|||||||
|
|
||||||
#: ../xed/xed-ui.h:105
|
#: ../xed/xed-ui.h:105
|
||||||
msgid "_Toggle Comment"
|
msgid "_Toggle Comment"
|
||||||
msgstr ""
|
msgstr "_Toglo Sylwadau"
|
||||||
|
|
||||||
#: ../xed/xed-ui.h:106 ../plugins/taglist/HTML.tags.xml.in.h:41
|
#: ../xed/xed-ui.h:106 ../plugins/taglist/HTML.tags.xml.in.h:41
|
||||||
msgid "Comment"
|
msgid "Comment"
|
||||||
@@ -2247,11 +2247,11 @@ msgstr "Sylw"
|
|||||||
|
|
||||||
#: ../xed/xed-ui.h:107
|
#: ../xed/xed-ui.h:107
|
||||||
msgid "Toggle Comment _Block"
|
msgid "Toggle Comment _Block"
|
||||||
msgstr ""
|
msgstr "Togglo Bloc Sylwadau"
|
||||||
|
|
||||||
#: ../xed/xed-ui.h:108
|
#: ../xed/xed-ui.h:108
|
||||||
msgid "Comment Block"
|
msgid "Comment Block"
|
||||||
msgstr ""
|
msgstr "Bloc Sylwadau"
|
||||||
|
|
||||||
#. View menu
|
#. View menu
|
||||||
#: ../xed/xed-ui.h:111
|
#: ../xed/xed-ui.h:111
|
||||||
@@ -2374,7 +2374,7 @@ msgstr "Cuddio neu ddangos y bar statws yn y ffenestr bresennol"
|
|||||||
|
|
||||||
#: ../xed/xed-ui.h:162
|
#: ../xed/xed-ui.h:162
|
||||||
msgid "Fullscreen"
|
msgid "Fullscreen"
|
||||||
msgstr ""
|
msgstr "Sgrin Lawn"
|
||||||
|
|
||||||
#: ../xed/xed-ui.h:163
|
#: ../xed/xed-ui.h:163
|
||||||
msgid "Edit text in fullscreen"
|
msgid "Edit text in fullscreen"
|
||||||
@@ -2451,12 +2451,12 @@ msgstr "Gweithredu '%s'"
|
|||||||
#: ../xed/xed-window.c:1330
|
#: ../xed/xed-window.c:1330
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Spaces: %u"
|
msgid "Spaces: %u"
|
||||||
msgstr ""
|
msgstr "Mannau: %u"
|
||||||
|
|
||||||
#: ../xed/xed-window.c:1334
|
#: ../xed/xed-window.c:1334
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Tabs: %u"
|
msgid "Tabs: %u"
|
||||||
msgstr ""
|
msgstr "Tabiau: %u"
|
||||||
|
|
||||||
#: ../xed/xed-window.c:1411
|
#: ../xed/xed-window.c:1411
|
||||||
msgid "Use Spaces"
|
msgid "Use Spaces"
|
||||||
|
4
po/da.po
4
po/da.po
@@ -17,8 +17,8 @@ msgstr ""
|
|||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Launchpad-Export-Date: 2019-07-28 09:34+0000\n"
|
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
|
||||||
"X-Generator: Launchpad (build 19010)\n"
|
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
|
||||||
"Language: da\n"
|
"Language: da\n"
|
||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:1
|
#: ../data/org.x.editor.gschema.xml.in.h:1
|
||||||
|
4
po/de.po
4
po/de.po
@@ -20,8 +20,8 @@ msgstr ""
|
|||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Launchpad-Export-Date: 2019-07-28 09:34+0000\n"
|
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
|
||||||
"X-Generator: Launchpad (build 19010)\n"
|
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
|
||||||
"Language: de\n"
|
"Language: de\n"
|
||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:1
|
#: ../data/org.x.editor.gschema.xml.in.h:1
|
||||||
|
4
po/dz.po
4
po/dz.po
@@ -16,8 +16,8 @@ msgstr ""
|
|||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
"X-Launchpad-Export-Date: 2019-07-28 09:33+0000\n"
|
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
|
||||||
"X-Generator: Launchpad (build 19010)\n"
|
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
|
||||||
"Language: dz\n"
|
"Language: dz\n"
|
||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:1
|
#: ../data/org.x.editor.gschema.xml.in.h:1
|
||||||
|
4
po/el.po
4
po/el.po
@@ -19,8 +19,8 @@ msgstr ""
|
|||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Launchpad-Export-Date: 2019-07-28 09:34+0000\n"
|
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
|
||||||
"X-Generator: Launchpad (build 19010)\n"
|
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
|
||||||
"Language: el\n"
|
"Language: el\n"
|
||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:1
|
#: ../data/org.x.editor.gschema.xml.in.h:1
|
||||||
|
@@ -16,8 +16,8 @@ msgstr ""
|
|||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Launchpad-Export-Date: 2019-07-28 09:34+0000\n"
|
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
|
||||||
"X-Generator: Launchpad (build 19010)\n"
|
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
|
||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:1
|
#: ../data/org.x.editor.gschema.xml.in.h:1
|
||||||
msgid "Use Default Font"
|
msgid "Use Default Font"
|
||||||
|
@@ -17,8 +17,8 @@ msgstr ""
|
|||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Launchpad-Export-Date: 2019-07-28 09:34+0000\n"
|
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
|
||||||
"X-Generator: Launchpad (build 19010)\n"
|
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
|
||||||
"Language: en_AU\n"
|
"Language: en_AU\n"
|
||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:1
|
#: ../data/org.x.editor.gschema.xml.in.h:1
|
||||||
|
@@ -16,8 +16,8 @@ msgstr ""
|
|||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Launchpad-Export-Date: 2019-07-28 09:34+0000\n"
|
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
|
||||||
"X-Generator: Launchpad (build 19010)\n"
|
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
|
||||||
"Language: en_CA\n"
|
"Language: en_CA\n"
|
||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:1
|
#: ../data/org.x.editor.gschema.xml.in.h:1
|
||||||
|
@@ -18,8 +18,8 @@ msgstr ""
|
|||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Launchpad-Export-Date: 2019-07-28 09:34+0000\n"
|
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
|
||||||
"X-Generator: Launchpad (build 19010)\n"
|
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
|
||||||
"Language: en_GB\n"
|
"Language: en_GB\n"
|
||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:1
|
#: ../data/org.x.editor.gschema.xml.in.h:1
|
||||||
|
4
po/eo.po
4
po/eo.po
@@ -17,8 +17,8 @@ msgstr ""
|
|||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Launchpad-Export-Date: 2019-07-28 09:34+0000\n"
|
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
|
||||||
"X-Generator: Launchpad (build 19010)\n"
|
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
|
||||||
"Language: eo\n"
|
"Language: eo\n"
|
||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:1
|
#: ../data/org.x.editor.gschema.xml.in.h:1
|
||||||
|
4
po/et.po
4
po/et.po
@@ -17,8 +17,8 @@ msgstr ""
|
|||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Launchpad-Export-Date: 2019-07-28 09:34+0000\n"
|
"X-Launchpad-Export-Date: 2020-05-11 11:00+0000\n"
|
||||||
"X-Generator: Launchpad (build 19010)\n"
|
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
|
||||||
"Language: et\n"
|
"Language: et\n"
|
||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:1
|
#: ../data/org.x.editor.gschema.xml.in.h:1
|
||||||
|
4
po/eu.po
4
po/eu.po
@@ -17,8 +17,8 @@ msgstr ""
|
|||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Launchpad-Export-Date: 2019-07-28 09:34+0000\n"
|
"X-Launchpad-Export-Date: 2020-05-11 11:00+0000\n"
|
||||||
"X-Generator: Launchpad (build 19010)\n"
|
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
|
||||||
"Language: eu\n"
|
"Language: eu\n"
|
||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:1
|
#: ../data/org.x.editor.gschema.xml.in.h:1
|
||||||
|
4
po/fa.po
4
po/fa.po
@@ -16,8 +16,8 @@ msgstr ""
|
|||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
"X-Launchpad-Export-Date: 2019-07-28 09:34+0000\n"
|
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
|
||||||
"X-Generator: Launchpad (build 19010)\n"
|
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
|
||||||
"Language: fa\n"
|
"Language: fa\n"
|
||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:1
|
#: ../data/org.x.editor.gschema.xml.in.h:1
|
||||||
|
4
po/fi.po
4
po/fi.po
@@ -17,8 +17,8 @@ msgstr ""
|
|||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Launchpad-Export-Date: 2019-07-28 09:34+0000\n"
|
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
|
||||||
"X-Generator: Launchpad (build 19010)\n"
|
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
|
||||||
"Language: fi\n"
|
"Language: fi\n"
|
||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:1
|
#: ../data/org.x.editor.gschema.xml.in.h:1
|
||||||
|
8
po/fr.po
8
po/fr.po
@@ -10,7 +10,7 @@ msgstr ""
|
|||||||
"Project-Id-Version: MATE Desktop Environment\n"
|
"Project-Id-Version: MATE Desktop Environment\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2019-06-23 14:24+0200\n"
|
"POT-Creation-Date: 2019-06-23 14:24+0200\n"
|
||||||
"PO-Revision-Date: 2019-06-23 12:36+0000\n"
|
"PO-Revision-Date: 2019-11-22 12:05+0000\n"
|
||||||
"Last-Translator: Clement Lefebvre <root@linuxmint.com>\n"
|
"Last-Translator: Clement Lefebvre <root@linuxmint.com>\n"
|
||||||
"Language-Team: French "
|
"Language-Team: French "
|
||||||
"(http://www.transifex.com/projects/p/MATE/language/fr/)\n"
|
"(http://www.transifex.com/projects/p/MATE/language/fr/)\n"
|
||||||
@@ -18,8 +18,8 @@ msgstr ""
|
|||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||||
"X-Launchpad-Export-Date: 2019-07-28 09:34+0000\n"
|
"X-Launchpad-Export-Date: 2020-05-11 11:00+0000\n"
|
||||||
"X-Generator: Launchpad (build 19010)\n"
|
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
|
||||||
"Language: fr\n"
|
"Language: fr\n"
|
||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:1
|
#: ../data/org.x.editor.gschema.xml.in.h:1
|
||||||
@@ -2426,7 +2426,7 @@ msgstr "Afficher les _numéros de ligne"
|
|||||||
#: ../xed/xed-window.c:872
|
#: ../xed/xed-window.c:872
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Open '%s'"
|
msgid "Open '%s'"
|
||||||
msgstr "Ouvre « %s »"
|
msgstr "Ouvrir '%s'"
|
||||||
|
|
||||||
#. Translators: %s is a URI
|
#. Translators: %s is a URI
|
||||||
#: ../xed/xed-window.c:1142
|
#: ../xed/xed-window.c:1142
|
||||||
|
@@ -15,8 +15,8 @@ msgstr ""
|
|||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||||
"X-Launchpad-Export-Date: 2019-07-28 09:34+0000\n"
|
"X-Launchpad-Export-Date: 2020-05-11 11:00+0000\n"
|
||||||
"X-Generator: Launchpad (build 19010)\n"
|
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
|
||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:1
|
#: ../data/org.x.editor.gschema.xml.in.h:1
|
||||||
msgid "Use Default Font"
|
msgid "Use Default Font"
|
||||||
|
4
po/ga.po
4
po/ga.po
@@ -17,8 +17,8 @@ msgstr ""
|
|||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=5; plural=(n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : "
|
"Plural-Forms: nplurals=5; plural=(n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : "
|
||||||
"4);\n"
|
"4);\n"
|
||||||
"X-Launchpad-Export-Date: 2019-07-28 09:34+0000\n"
|
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
|
||||||
"X-Generator: Launchpad (build 19010)\n"
|
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
|
||||||
"Language: ga\n"
|
"Language: ga\n"
|
||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:1
|
#: ../data/org.x.editor.gschema.xml.in.h:1
|
||||||
|
4
po/gl.po
4
po/gl.po
@@ -18,8 +18,8 @@ msgstr ""
|
|||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Launchpad-Export-Date: 2019-07-28 09:34+0000\n"
|
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
|
||||||
"X-Generator: Launchpad (build 19010)\n"
|
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
|
||||||
"Language: gl\n"
|
"Language: gl\n"
|
||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:1
|
#: ../data/org.x.editor.gschema.xml.in.h:1
|
||||||
|
4
po/gu.po
4
po/gu.po
@@ -16,8 +16,8 @@ msgstr ""
|
|||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Launchpad-Export-Date: 2019-07-28 09:33+0000\n"
|
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
|
||||||
"X-Generator: Launchpad (build 19010)\n"
|
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
|
||||||
"Language: gu\n"
|
"Language: gu\n"
|
||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:1
|
#: ../data/org.x.editor.gschema.xml.in.h:1
|
||||||
|
4
po/he.po
4
po/he.po
@@ -17,8 +17,8 @@ msgstr ""
|
|||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Launchpad-Export-Date: 2019-07-28 09:34+0000\n"
|
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
|
||||||
"X-Generator: Launchpad (build 19010)\n"
|
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
|
||||||
"Language: he\n"
|
"Language: he\n"
|
||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:1
|
#: ../data/org.x.editor.gschema.xml.in.h:1
|
||||||
|
144
po/hi.po
144
po/hi.po
@@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Project-Id-Version: MATE Desktop Environment\n"
|
"Project-Id-Version: MATE Desktop Environment\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2019-06-23 14:24+0200\n"
|
"POT-Creation-Date: 2019-06-23 14:24+0200\n"
|
||||||
"PO-Revision-Date: 2018-01-22 17:49+0000\n"
|
"PO-Revision-Date: 2019-08-18 06:27+0000\n"
|
||||||
"Last-Translator: Panwar <Unknown>\n"
|
"Last-Translator: Panwar <Unknown>\n"
|
||||||
"Language-Team: Hindi "
|
"Language-Team: Hindi "
|
||||||
"(http://www.transifex.com/projects/p/MATE/language/hi/)\n"
|
"(http://www.transifex.com/projects/p/MATE/language/hi/)\n"
|
||||||
@@ -16,8 +16,8 @@ msgstr ""
|
|||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Launchpad-Export-Date: 2019-07-28 09:34+0000\n"
|
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
|
||||||
"X-Generator: Launchpad (build 19010)\n"
|
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
|
||||||
"Language: hi\n"
|
"Language: hi\n"
|
||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:1
|
#: ../data/org.x.editor.gschema.xml.in.h:1
|
||||||
@@ -79,7 +79,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:12
|
#: ../data/org.x.editor.gschema.xml.in.h:12
|
||||||
msgid "Autosave"
|
msgid "Autosave"
|
||||||
msgstr ""
|
msgstr "स्वतः संचित"
|
||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:13
|
#: ../data/org.x.editor.gschema.xml.in.h:13
|
||||||
msgid ""
|
msgid ""
|
||||||
@@ -89,7 +89,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:14
|
#: ../data/org.x.editor.gschema.xml.in.h:14
|
||||||
msgid "Autosave Interval"
|
msgid "Autosave Interval"
|
||||||
msgstr ""
|
msgstr "स्वतः संचित अंतराल"
|
||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:15
|
#: ../data/org.x.editor.gschema.xml.in.h:15
|
||||||
msgid ""
|
msgid ""
|
||||||
@@ -352,7 +352,7 @@ msgstr ""
|
|||||||
#: ../data/org.x.editor.gschema.xml.in.h:70
|
#: ../data/org.x.editor.gschema.xml.in.h:70
|
||||||
msgctxt "print-font-body-pango"
|
msgctxt "print-font-body-pango"
|
||||||
msgid "'Monospace 9'"
|
msgid "'Monospace 9'"
|
||||||
msgstr ""
|
msgstr "'Monospace 9'"
|
||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:71
|
#: ../data/org.x.editor.gschema.xml.in.h:71
|
||||||
msgid "Body Font for Printing"
|
msgid "Body Font for Printing"
|
||||||
@@ -368,7 +368,7 @@ msgstr ""
|
|||||||
#: ../data/org.x.editor.gschema.xml.in.h:73
|
#: ../data/org.x.editor.gschema.xml.in.h:73
|
||||||
msgctxt "print-font-header-pango"
|
msgctxt "print-font-header-pango"
|
||||||
msgid "'Sans 11'"
|
msgid "'Sans 11'"
|
||||||
msgstr ""
|
msgstr "'Sans 11'"
|
||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:74
|
#: ../data/org.x.editor.gschema.xml.in.h:74
|
||||||
msgid "Header Font for Printing"
|
msgid "Header Font for Printing"
|
||||||
@@ -385,7 +385,7 @@ msgstr ""
|
|||||||
#: ../data/org.x.editor.gschema.xml.in.h:76
|
#: ../data/org.x.editor.gschema.xml.in.h:76
|
||||||
msgctxt "print-font-numbers-pango"
|
msgctxt "print-font-numbers-pango"
|
||||||
msgid "'Sans 8'"
|
msgid "'Sans 8'"
|
||||||
msgstr ""
|
msgstr "'Sans 8'"
|
||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:77
|
#: ../data/org.x.editor.gschema.xml.in.h:77
|
||||||
msgid "Line Number Font for Printing"
|
msgid "Line Number Font for Printing"
|
||||||
@@ -402,7 +402,7 @@ msgstr ""
|
|||||||
#: ../data/org.x.editor.gschema.xml.in.h:79
|
#: ../data/org.x.editor.gschema.xml.in.h:79
|
||||||
msgctxt "auto-detected"
|
msgctxt "auto-detected"
|
||||||
msgid "[ 'UTF-8', 'CURRENT', 'ISO-8859-15', 'UTF-16' ]"
|
msgid "[ 'UTF-8', 'CURRENT', 'ISO-8859-15', 'UTF-16' ]"
|
||||||
msgstr ""
|
msgstr "[ 'UTF-8', 'CURRENT', 'ISO-8859-15', 'UTF-16' ]"
|
||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:80
|
#: ../data/org.x.editor.gschema.xml.in.h:80
|
||||||
msgid "Automatically Detected Encodings"
|
msgid "Automatically Detected Encodings"
|
||||||
@@ -418,7 +418,7 @@ msgstr ""
|
|||||||
#: ../data/org.x.editor.gschema.xml.in.h:82
|
#: ../data/org.x.editor.gschema.xml.in.h:82
|
||||||
msgctxt "shown-in-menu"
|
msgctxt "shown-in-menu"
|
||||||
msgid "[ 'ISO-8859-15' ]"
|
msgid "[ 'ISO-8859-15' ]"
|
||||||
msgstr ""
|
msgstr "[ 'ISO-8859-15' ]"
|
||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:83
|
#: ../data/org.x.editor.gschema.xml.in.h:83
|
||||||
msgid "Encodings shown in menu"
|
msgid "Encodings shown in menu"
|
||||||
@@ -458,7 +458,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: ../data/xed.appdata.xml.in.h:1
|
#: ../data/xed.appdata.xml.in.h:1
|
||||||
msgid "A Text Editor"
|
msgid "A Text Editor"
|
||||||
msgstr ""
|
msgstr "एक टेक्स्ट फ़ाइल संपादक"
|
||||||
|
|
||||||
#: ../data/xed.appdata.xml.in.h:2
|
#: ../data/xed.appdata.xml.in.h:2
|
||||||
msgid ""
|
msgid ""
|
||||||
@@ -477,7 +477,7 @@ msgstr "पाठ संपादक"
|
|||||||
|
|
||||||
#: ../data/xed.desktop.in.in.h:2
|
#: ../data/xed.desktop.in.in.h:2
|
||||||
msgid "Edit text files"
|
msgid "Edit text files"
|
||||||
msgstr ""
|
msgstr "टेक्स्ट फ़ाइल संपादित करें"
|
||||||
|
|
||||||
#: ../xed/xed-app.c:102
|
#: ../xed/xed-app.c:102
|
||||||
msgid "Show the application's version"
|
msgid "Show the application's version"
|
||||||
@@ -511,7 +511,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: ../xed/xed-app.c:137
|
#: ../xed/xed-app.c:137
|
||||||
msgid "GEOMETRY"
|
msgid "GEOMETRY"
|
||||||
msgstr ""
|
msgstr "रेखागणित"
|
||||||
|
|
||||||
#: ../xed/xed-app.c:143
|
#: ../xed/xed-app.c:143
|
||||||
msgid "Open files and block process until files are closed"
|
msgid "Open files and block process until files are closed"
|
||||||
@@ -523,7 +523,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: ../xed/xed-app.c:157
|
#: ../xed/xed-app.c:157
|
||||||
msgid "[FILE...] [+LINE]"
|
msgid "[FILE...] [+LINE]"
|
||||||
msgstr ""
|
msgstr "[फ़ाइल...] [+लाइन]"
|
||||||
|
|
||||||
#: ../xed/xed-app.c:529
|
#: ../xed/xed-app.c:529
|
||||||
#, c-format
|
#, c-format
|
||||||
@@ -554,17 +554,17 @@ msgstr "बिना सहेजे बंद करें (_w)"
|
|||||||
#: ../xed/resources/ui/xed-highlight-mode-dialog.ui.h:2
|
#: ../xed/resources/ui/xed-highlight-mode-dialog.ui.h:2
|
||||||
#: ../plugins/filebrowser/xed-file-browser-utils.c:153
|
#: ../plugins/filebrowser/xed-file-browser-utils.c:153
|
||||||
msgid "_Cancel"
|
msgid "_Cancel"
|
||||||
msgstr ""
|
msgstr "रद्द करें (_C)"
|
||||||
|
|
||||||
#: ../xed/xed-close-confirmation-dialog.c:159
|
#: ../xed/xed-close-confirmation-dialog.c:159
|
||||||
msgid "_Save As..."
|
msgid "_Save As..."
|
||||||
msgstr ""
|
msgstr "इस रूप में संचित करें (_S)..."
|
||||||
|
|
||||||
#. File menu
|
#. File menu
|
||||||
#: ../xed/xed-close-confirmation-dialog.c:165 ../xed/xed-commands-file.c:649
|
#: ../xed/xed-close-confirmation-dialog.c:165 ../xed/xed-commands-file.c:649
|
||||||
#: ../xed/xed-ui.h:79
|
#: ../xed/xed-ui.h:79
|
||||||
msgid "_Save"
|
msgid "_Save"
|
||||||
msgstr ""
|
msgstr "संचित करें (_S)"
|
||||||
|
|
||||||
#: ../xed/xed-close-confirmation-dialog.c:192
|
#: ../xed/xed-close-confirmation-dialog.c:192
|
||||||
msgid "Question"
|
msgid "Question"
|
||||||
@@ -700,7 +700,7 @@ msgstr "फ़ाइल खोलें"
|
|||||||
#: ../xed/xed-commands-file.c:400
|
#: ../xed/xed-commands-file.c:400
|
||||||
#: ../plugins/filebrowser/xed-file-browser-widget.c:766
|
#: ../plugins/filebrowser/xed-file-browser-widget.c:766
|
||||||
msgid "_Open"
|
msgid "_Open"
|
||||||
msgstr ""
|
msgstr "खोलें (_O)"
|
||||||
|
|
||||||
#: ../xed/xed-commands-file.c:494
|
#: ../xed/xed-commands-file.c:494
|
||||||
#, c-format
|
#, c-format
|
||||||
@@ -844,11 +844,11 @@ msgstr "वर्तमान लोकेल (%s)"
|
|||||||
|
|
||||||
#: ../xed/xed-encodings-combo-box.c:344
|
#: ../xed/xed-encodings-combo-box.c:344
|
||||||
msgid "Add or Remove..."
|
msgid "Add or Remove..."
|
||||||
msgstr ""
|
msgstr "जोड़े या हटाएँ..."
|
||||||
|
|
||||||
#: ../xed/xed-encodings-dialog.c:337 ../plugins/time/xed-time-plugin.c:789
|
#: ../xed/xed-encodings-dialog.c:337 ../plugins/time/xed-time-plugin.c:789
|
||||||
msgid "_OK"
|
msgid "_OK"
|
||||||
msgstr ""
|
msgstr "ठीक है (_O)"
|
||||||
|
|
||||||
#: ../xed/xed-encodings-dialog.c:338 ../xed/xed-ui.h:50
|
#: ../xed/xed-encodings-dialog.c:338 ../xed/xed-ui.h:50
|
||||||
#: ../plugins/spell/xed-spell-plugin.c:435
|
#: ../plugins/spell/xed-spell-plugin.c:435
|
||||||
@@ -857,7 +857,7 @@ msgstr "मदद (_H)"
|
|||||||
|
|
||||||
#: ../xed/xed-encodings-dialog.c:341
|
#: ../xed/xed-encodings-dialog.c:341
|
||||||
msgid "Character Encodings"
|
msgid "Character Encodings"
|
||||||
msgstr ""
|
msgstr "अक्षर एन्कोडिंग"
|
||||||
|
|
||||||
#: ../xed/xed-encodings-dialog.c:374 ../xed/xed-encodings-dialog.c:411
|
#: ../xed/xed-encodings-dialog.c:374 ../xed/xed-encodings-dialog.c:411
|
||||||
msgid "_Description"
|
msgid "_Description"
|
||||||
@@ -877,7 +877,7 @@ msgstr "सभी पाठ फ़ाइलें"
|
|||||||
|
|
||||||
#: ../xed/xed-file-chooser-dialog.c:89
|
#: ../xed/xed-file-chooser-dialog.c:89
|
||||||
msgid "C_haracter Encoding:"
|
msgid "C_haracter Encoding:"
|
||||||
msgstr ""
|
msgstr "अक्षर एन्कोडिंग (_h) :"
|
||||||
|
|
||||||
#: ../xed/xed-file-chooser-dialog.c:145
|
#: ../xed/xed-file-chooser-dialog.c:145
|
||||||
msgid "L_ine Ending:"
|
msgid "L_ine Ending:"
|
||||||
@@ -885,15 +885,15 @@ msgstr ""
|
|||||||
|
|
||||||
#: ../xed/xed-file-chooser-dialog.c:156
|
#: ../xed/xed-file-chooser-dialog.c:156
|
||||||
msgid "Unix/Linux"
|
msgid "Unix/Linux"
|
||||||
msgstr ""
|
msgstr "यूनिक्स/लिनक्स"
|
||||||
|
|
||||||
#: ../xed/xed-file-chooser-dialog.c:157
|
#: ../xed/xed-file-chooser-dialog.c:157
|
||||||
msgid "Mac OS Classic"
|
msgid "Mac OS Classic"
|
||||||
msgstr ""
|
msgstr "मैक ओएस क्लासिक"
|
||||||
|
|
||||||
#: ../xed/xed-file-chooser-dialog.c:158
|
#: ../xed/xed-file-chooser-dialog.c:158
|
||||||
msgid "Windows"
|
msgid "Windows"
|
||||||
msgstr ""
|
msgstr "विंडोज़"
|
||||||
|
|
||||||
#: ../xed/xed-highlight-mode-selector.c:291 ../xed/xed-window.c:1868
|
#: ../xed/xed-highlight-mode-selector.c:291 ../xed/xed-window.c:1868
|
||||||
msgid "Plain Text"
|
msgid "Plain Text"
|
||||||
@@ -986,7 +986,7 @@ msgstr "फ़ाइल %s को पुरानी स्थिति मे
|
|||||||
|
|
||||||
#: ../xed/xed-io-error-info-bar.c:359
|
#: ../xed/xed-io-error-info-bar.c:359
|
||||||
msgid "Ch_aracter Encoding:"
|
msgid "Ch_aracter Encoding:"
|
||||||
msgstr ""
|
msgstr "अक्षर एन्कोडिंग (_a) :"
|
||||||
|
|
||||||
#. Translators: the access key chosen for this string should be
|
#. Translators: the access key chosen for this string should be
|
||||||
#. different from other main menu access keys (Open, Edit, View...)
|
#. different from other main menu access keys (Open, Edit, View...)
|
||||||
@@ -1234,7 +1234,7 @@ msgstr "संपादक"
|
|||||||
|
|
||||||
#: ../xed/xed-preferences-dialog.c:414
|
#: ../xed/xed-preferences-dialog.c:414
|
||||||
msgid "Save"
|
msgid "Save"
|
||||||
msgstr ""
|
msgstr "संचित करें"
|
||||||
|
|
||||||
#: ../xed/xed-preferences-dialog.c:527
|
#: ../xed/xed-preferences-dialog.c:527
|
||||||
#, c-format
|
#, c-format
|
||||||
@@ -1253,7 +1253,7 @@ msgstr "योजना जोड़ें"
|
|||||||
|
|
||||||
#: ../xed/xed-preferences-dialog.c:707 ../xed/xed-progress-info-bar.c:64
|
#: ../xed/xed-preferences-dialog.c:707 ../xed/xed-progress-info-bar.c:64
|
||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr ""
|
msgstr "रद्द करें"
|
||||||
|
|
||||||
#: ../xed/xed-preferences-dialog.c:716
|
#: ../xed/xed-preferences-dialog.c:716
|
||||||
msgid "Color Scheme Files"
|
msgid "Color Scheme Files"
|
||||||
@@ -1266,7 +1266,7 @@ msgstr "रंग योजना \"%s\" को हटा नहीं सका
|
|||||||
|
|
||||||
#: ../xed/xed-preferences-dialog.c:820
|
#: ../xed/xed-preferences-dialog.c:820
|
||||||
msgid "Theme"
|
msgid "Theme"
|
||||||
msgstr ""
|
msgstr "थीम"
|
||||||
|
|
||||||
#: ../xed/xed-preferences-dialog.c:837
|
#: ../xed/xed-preferences-dialog.c:837
|
||||||
msgid "Plugins"
|
msgid "Plugins"
|
||||||
@@ -1274,12 +1274,12 @@ msgstr "प्लगइन"
|
|||||||
|
|
||||||
#: ../xed/xed-preferences-dialog.c:845
|
#: ../xed/xed-preferences-dialog.c:845
|
||||||
msgid "Help"
|
msgid "Help"
|
||||||
msgstr ""
|
msgstr "मदद"
|
||||||
|
|
||||||
#: ../xed/xed-preferences-dialog.c:850
|
#: ../xed/xed-preferences-dialog.c:850
|
||||||
#: ../xed/resources/ui/xed-searchbar.ui.h:11
|
#: ../xed/resources/ui/xed-searchbar.ui.h:11
|
||||||
msgid "Close"
|
msgid "Close"
|
||||||
msgstr ""
|
msgstr "बंद करें"
|
||||||
|
|
||||||
#: ../xed/xed-preferences-dialog.c:864
|
#: ../xed/xed-preferences-dialog.c:864
|
||||||
msgid "Xed Preferences"
|
msgid "Xed Preferences"
|
||||||
@@ -1372,7 +1372,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: ../xed/resources/ui/xed-highlight-mode-dialog.ui.h:3
|
#: ../xed/resources/ui/xed-highlight-mode-dialog.ui.h:3
|
||||||
msgid "_Select"
|
msgid "_Select"
|
||||||
msgstr ""
|
msgstr "चुनें (_S)"
|
||||||
|
|
||||||
#: ../xed/resources/ui/xed-highlight-mode-selector.ui.h:1
|
#: ../xed/resources/ui/xed-highlight-mode-selector.ui.h:1
|
||||||
msgid "Search highlight mode…"
|
msgid "Search highlight mode…"
|
||||||
@@ -1380,7 +1380,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: ../xed/resources/ui/xed-encodings-dialog.ui.h:1
|
#: ../xed/resources/ui/xed-encodings-dialog.ui.h:1
|
||||||
msgid "Character encodings"
|
msgid "Character encodings"
|
||||||
msgstr ""
|
msgstr "अक्षर एन्कोडिंग"
|
||||||
|
|
||||||
#: ../xed/resources/ui/xed-encodings-dialog.ui.h:2
|
#: ../xed/resources/ui/xed-encodings-dialog.ui.h:2
|
||||||
msgid "A_vailable encodings:"
|
msgid "A_vailable encodings:"
|
||||||
@@ -1392,11 +1392,11 @@ msgstr "मेन्यू में दिखाए गए एन्कोड
|
|||||||
|
|
||||||
#: ../xed/resources/ui/xed-preferences-dialog.ui.h:1
|
#: ../xed/resources/ui/xed-preferences-dialog.ui.h:1
|
||||||
msgid "Font"
|
msgid "Font"
|
||||||
msgstr ""
|
msgstr "मुद्रलिपि"
|
||||||
|
|
||||||
#: ../xed/resources/ui/xed-preferences-dialog.ui.h:4
|
#: ../xed/resources/ui/xed-preferences-dialog.ui.h:4
|
||||||
msgid "Display"
|
msgid "Display"
|
||||||
msgstr ""
|
msgstr "डिस्प्ले"
|
||||||
|
|
||||||
#: ../xed/resources/ui/xed-preferences-dialog.ui.h:5
|
#: ../xed/resources/ui/xed-preferences-dialog.ui.h:5
|
||||||
msgid "Display line numbers"
|
msgid "Display line numbers"
|
||||||
@@ -1416,7 +1416,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: ../xed/resources/ui/xed-preferences-dialog.ui.h:9
|
#: ../xed/resources/ui/xed-preferences-dialog.ui.h:9
|
||||||
msgid "4"
|
msgid "4"
|
||||||
msgstr ""
|
msgstr "4"
|
||||||
|
|
||||||
#: ../xed/resources/ui/xed-preferences-dialog.ui.h:10
|
#: ../xed/resources/ui/xed-preferences-dialog.ui.h:10
|
||||||
msgid "Highlighting"
|
msgid "Highlighting"
|
||||||
@@ -1546,7 +1546,7 @@ msgstr "पृष्ठ शीर्षिका छापें (_h)"
|
|||||||
|
|
||||||
#: ../xed/resources/ui/xed-print-preferences.ui.h:14
|
#: ../xed/resources/ui/xed-print-preferences.ui.h:14
|
||||||
msgid "Fonts"
|
msgid "Fonts"
|
||||||
msgstr ""
|
msgstr "मुद्रलिपियाँ"
|
||||||
|
|
||||||
#: ../xed/resources/ui/xed-print-preferences.ui.h:15
|
#: ../xed/resources/ui/xed-print-preferences.ui.h:15
|
||||||
msgid "_Body:"
|
msgid "_Body:"
|
||||||
@@ -1582,11 +1582,11 @@ msgstr "इससे बदलें: (_w) "
|
|||||||
|
|
||||||
#: ../xed/resources/ui/xed-searchbar.ui.h:5
|
#: ../xed/resources/ui/xed-searchbar.ui.h:5
|
||||||
msgid "Next"
|
msgid "Next"
|
||||||
msgstr ""
|
msgstr "अगला"
|
||||||
|
|
||||||
#: ../xed/resources/ui/xed-searchbar.ui.h:6
|
#: ../xed/resources/ui/xed-searchbar.ui.h:6
|
||||||
msgid "Previous"
|
msgid "Previous"
|
||||||
msgstr ""
|
msgstr "पिछला"
|
||||||
|
|
||||||
#: ../xed/resources/ui/xed-searchbar.ui.h:7
|
#: ../xed/resources/ui/xed-searchbar.ui.h:7
|
||||||
msgid "Regular expression"
|
msgid "Regular expression"
|
||||||
@@ -1610,11 +1610,11 @@ msgstr "नया दस्तावेज़ बनाएँ"
|
|||||||
|
|
||||||
#: ../xed/resources/ui/xed-shortcuts.ui.h:3
|
#: ../xed/resources/ui/xed-shortcuts.ui.h:3
|
||||||
msgid "Open a document"
|
msgid "Open a document"
|
||||||
msgstr ""
|
msgstr "दस्तावेज़ खोलें"
|
||||||
|
|
||||||
#: ../xed/resources/ui/xed-shortcuts.ui.h:4
|
#: ../xed/resources/ui/xed-shortcuts.ui.h:4
|
||||||
msgid "Save the document"
|
msgid "Save the document"
|
||||||
msgstr ""
|
msgstr "दस्तावेज़ संचित करें"
|
||||||
|
|
||||||
#: ../xed/resources/ui/xed-shortcuts.ui.h:5
|
#: ../xed/resources/ui/xed-shortcuts.ui.h:5
|
||||||
msgid "Save the document with a new filename"
|
msgid "Save the document with a new filename"
|
||||||
@@ -1622,15 +1622,15 @@ msgstr ""
|
|||||||
|
|
||||||
#: ../xed/resources/ui/xed-shortcuts.ui.h:6
|
#: ../xed/resources/ui/xed-shortcuts.ui.h:6
|
||||||
msgid "Save all the documents"
|
msgid "Save all the documents"
|
||||||
msgstr ""
|
msgstr "सभी दस्तावेज़ संचित करें"
|
||||||
|
|
||||||
#: ../xed/resources/ui/xed-shortcuts.ui.h:7
|
#: ../xed/resources/ui/xed-shortcuts.ui.h:7
|
||||||
msgid "Close the document"
|
msgid "Close the document"
|
||||||
msgstr ""
|
msgstr "दस्तावेज़ बंद करें"
|
||||||
|
|
||||||
#: ../xed/resources/ui/xed-shortcuts.ui.h:8
|
#: ../xed/resources/ui/xed-shortcuts.ui.h:8
|
||||||
msgid "Close all the documents"
|
msgid "Close all the documents"
|
||||||
msgstr ""
|
msgstr "सभी दस्तावेज़ बंद करें"
|
||||||
|
|
||||||
#: ../xed/resources/ui/xed-shortcuts.ui.h:9
|
#: ../xed/resources/ui/xed-shortcuts.ui.h:9
|
||||||
msgid "Switch to the next document"
|
msgid "Switch to the next document"
|
||||||
@@ -1658,11 +1658,11 @@ msgstr ""
|
|||||||
|
|
||||||
#: ../xed/resources/ui/xed-shortcuts.ui.h:15
|
#: ../xed/resources/ui/xed-shortcuts.ui.h:15
|
||||||
msgid "Fullscreen on / off"
|
msgid "Fullscreen on / off"
|
||||||
msgstr ""
|
msgstr "पूर्ण स्क्रीन चालू/बंद"
|
||||||
|
|
||||||
#: ../xed/resources/ui/xed-shortcuts.ui.h:16
|
#: ../xed/resources/ui/xed-shortcuts.ui.h:16
|
||||||
msgid "Quit the application"
|
msgid "Quit the application"
|
||||||
msgstr ""
|
msgstr "अनुप्रयोग बंद करें"
|
||||||
|
|
||||||
#: ../xed/resources/ui/xed-shortcuts.ui.h:17
|
#: ../xed/resources/ui/xed-shortcuts.ui.h:17
|
||||||
msgid "Find and Replace"
|
msgid "Find and Replace"
|
||||||
@@ -1722,19 +1722,19 @@ msgstr ""
|
|||||||
|
|
||||||
#: ../xed/resources/ui/xed-shortcuts.ui.h:31
|
#: ../xed/resources/ui/xed-shortcuts.ui.h:31
|
||||||
msgid "Tools"
|
msgid "Tools"
|
||||||
msgstr ""
|
msgstr "साधन"
|
||||||
|
|
||||||
#: ../xed/resources/ui/xed-shortcuts.ui.h:32
|
#: ../xed/resources/ui/xed-shortcuts.ui.h:32
|
||||||
msgid "Check spelling"
|
msgid "Check spelling"
|
||||||
msgstr ""
|
msgstr "वर्तनी जाँचें"
|
||||||
|
|
||||||
#: ../xed/resources/ui/xed-shortcuts.ui.h:33
|
#: ../xed/resources/ui/xed-shortcuts.ui.h:33
|
||||||
msgid "Print the document"
|
msgid "Print the document"
|
||||||
msgstr ""
|
msgstr "दस्तावेज़ मुद्रित करें"
|
||||||
|
|
||||||
#: ../xed/resources/ui/xed-shortcuts.ui.h:34
|
#: ../xed/resources/ui/xed-shortcuts.ui.h:34
|
||||||
msgid "Editing"
|
msgid "Editing"
|
||||||
msgstr ""
|
msgstr "संपादन"
|
||||||
|
|
||||||
#: ../xed/resources/ui/xed-shortcuts.ui.h:35
|
#: ../xed/resources/ui/xed-shortcuts.ui.h:35
|
||||||
msgid "Toggle insert / overwrite"
|
msgid "Toggle insert / overwrite"
|
||||||
@@ -1948,7 +1948,7 @@ msgstr "दस्तावेज़ (_D)"
|
|||||||
#. File menu
|
#. File menu
|
||||||
#: ../xed/xed-ui.h:53
|
#: ../xed/xed-ui.h:53
|
||||||
msgid "_New"
|
msgid "_New"
|
||||||
msgstr ""
|
msgstr "नया (_N)"
|
||||||
|
|
||||||
#: ../xed/xed-ui.h:55
|
#: ../xed/xed-ui.h:55
|
||||||
msgid "_Open..."
|
msgid "_Open..."
|
||||||
@@ -2059,7 +2059,7 @@ msgstr "चयनित काटें"
|
|||||||
|
|
||||||
#: ../xed/xed-ui.h:97
|
#: ../xed/xed-ui.h:97
|
||||||
msgid "_Copy"
|
msgid "_Copy"
|
||||||
msgstr ""
|
msgstr "कॉपी करें (_C)"
|
||||||
|
|
||||||
#: ../xed/xed-ui.h:98
|
#: ../xed/xed-ui.h:98
|
||||||
msgid "Copy the selection"
|
msgid "Copy the selection"
|
||||||
@@ -2067,7 +2067,7 @@ msgstr "चयनित नक़ल करें"
|
|||||||
|
|
||||||
#: ../xed/xed-ui.h:99
|
#: ../xed/xed-ui.h:99
|
||||||
msgid "_Paste"
|
msgid "_Paste"
|
||||||
msgstr ""
|
msgstr "पेस्ट करें (_P)"
|
||||||
|
|
||||||
#: ../xed/xed-ui.h:100
|
#: ../xed/xed-ui.h:100
|
||||||
msgid "Paste the clipboard"
|
msgid "Paste the clipboard"
|
||||||
@@ -2119,7 +2119,7 @@ msgstr ""
|
|||||||
#. Search menu
|
#. Search menu
|
||||||
#: ../xed/xed-ui.h:116
|
#: ../xed/xed-ui.h:116
|
||||||
msgid "_Find"
|
msgid "_Find"
|
||||||
msgstr ""
|
msgstr "खोजें (_F)"
|
||||||
|
|
||||||
#: ../xed/xed-ui.h:117
|
#: ../xed/xed-ui.h:117
|
||||||
msgid "Search for text"
|
msgid "Search for text"
|
||||||
@@ -2196,7 +2196,7 @@ msgstr "वर्तमान दस्तावेज़ को नये व
|
|||||||
|
|
||||||
#: ../xed/xed-ui.h:143
|
#: ../xed/xed-ui.h:143
|
||||||
msgid "_Close"
|
msgid "_Close"
|
||||||
msgstr ""
|
msgstr "बंद करें (_C)"
|
||||||
|
|
||||||
#: ../xed/xed-ui.h:144
|
#: ../xed/xed-ui.h:144
|
||||||
msgid "Close the current file"
|
msgid "Close the current file"
|
||||||
@@ -2204,7 +2204,7 @@ msgstr "वर्तमान फ़ाइल बंद करें"
|
|||||||
|
|
||||||
#: ../xed/xed-ui.h:150
|
#: ../xed/xed-ui.h:150
|
||||||
msgid "_Quit"
|
msgid "_Quit"
|
||||||
msgstr ""
|
msgstr "छोड़ें (_Q)"
|
||||||
|
|
||||||
#: ../xed/xed-ui.h:151
|
#: ../xed/xed-ui.h:151
|
||||||
msgid "Quit the program"
|
msgid "Quit the program"
|
||||||
@@ -2228,7 +2228,7 @@ msgstr "वर्तमान विंडो में स्थिति-प
|
|||||||
|
|
||||||
#: ../xed/xed-ui.h:162
|
#: ../xed/xed-ui.h:162
|
||||||
msgid "Fullscreen"
|
msgid "Fullscreen"
|
||||||
msgstr ""
|
msgstr "पूर्ण स्क्रीन"
|
||||||
|
|
||||||
#: ../xed/xed-ui.h:163
|
#: ../xed/xed-ui.h:163
|
||||||
msgid "Edit text in fullscreen"
|
msgid "Edit text in fullscreen"
|
||||||
@@ -2343,7 +2343,7 @@ msgstr "अद्यतन करें (_U)"
|
|||||||
|
|
||||||
#: ../plugins/docinfo/docinfo.ui.h:3
|
#: ../plugins/docinfo/docinfo.ui.h:3
|
||||||
msgid "File Name"
|
msgid "File Name"
|
||||||
msgstr ""
|
msgstr "फ़ाइल का नाम"
|
||||||
|
|
||||||
#: ../plugins/docinfo/docinfo.ui.h:4 ../plugins/time/xed-time-dialog.ui.h:4
|
#: ../plugins/docinfo/docinfo.ui.h:4 ../plugins/time/xed-time-dialog.ui.h:4
|
||||||
#: ../plugins/time/xed-time-setup-dialog.ui.h:3
|
#: ../plugins/time/xed-time-setup-dialog.ui.h:3
|
||||||
@@ -2432,7 +2432,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: ../plugins/filebrowser/org.x.editor.plugins.filebrowser.gschema.xml.h:7
|
#: ../plugins/filebrowser/org.x.editor.plugins.filebrowser.gschema.xml.h:7
|
||||||
msgid "Terminal Command"
|
msgid "Terminal Command"
|
||||||
msgstr ""
|
msgstr "टर्मिनल कमांड"
|
||||||
|
|
||||||
#: ../plugins/filebrowser/org.x.editor.plugins.filebrowser.gschema.xml.h:8
|
#: ../plugins/filebrowser/org.x.editor.plugins.filebrowser.gschema.xml.h:8
|
||||||
msgid "The terminal command when using the \"Open terminal here\" command."
|
msgid "The terminal command when using the \"Open terminal here\" command."
|
||||||
@@ -2630,7 +2630,7 @@ msgstr "चयनित फ़ाइल या निर्देशिका
|
|||||||
|
|
||||||
#: ../plugins/filebrowser/xed-file-browser-widget.c:767
|
#: ../plugins/filebrowser/xed-file-browser-widget.c:767
|
||||||
msgid "Open selected file"
|
msgid "Open selected file"
|
||||||
msgstr ""
|
msgstr "चयनित फ़इल खोलें"
|
||||||
|
|
||||||
#: ../plugins/filebrowser/xed-file-browser-widget.c:772
|
#: ../plugins/filebrowser/xed-file-browser-widget.c:772
|
||||||
msgid "Up"
|
msgid "Up"
|
||||||
@@ -2658,7 +2658,7 @@ msgstr "नया खाली फ़ाइल जोड़ें"
|
|||||||
|
|
||||||
#: ../plugins/filebrowser/xed-file-browser-widget.c:786
|
#: ../plugins/filebrowser/xed-file-browser-widget.c:786
|
||||||
msgid "_Rename..."
|
msgid "_Rename..."
|
||||||
msgstr ""
|
msgstr "नाम बदलें (_R)..."
|
||||||
|
|
||||||
#: ../plugins/filebrowser/xed-file-browser-widget.c:787
|
#: ../plugins/filebrowser/xed-file-browser-widget.c:787
|
||||||
msgid "Rename selected file or folder"
|
msgid "Rename selected file or folder"
|
||||||
@@ -2796,7 +2796,7 @@ msgstr "वर्तमान दस्तावेज़ की वर्तन
|
|||||||
|
|
||||||
#: ../plugins/spell/xed-spell-setup-dialog.ui.h:1
|
#: ../plugins/spell/xed-spell-setup-dialog.ui.h:1
|
||||||
msgid "button"
|
msgid "button"
|
||||||
msgstr ""
|
msgstr "बटन"
|
||||||
|
|
||||||
#: ../plugins/spell/xed-spell-setup-dialog.ui.h:2
|
#: ../plugins/spell/xed-spell-setup-dialog.ui.h:2
|
||||||
msgid "Autocheck settings"
|
msgid "Autocheck settings"
|
||||||
@@ -2804,7 +2804,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: ../plugins/spell/xed-spell-setup-dialog.ui.h:3
|
#: ../plugins/spell/xed-spell-setup-dialog.ui.h:3
|
||||||
msgid "Never"
|
msgid "Never"
|
||||||
msgstr ""
|
msgstr "कभी नहीं"
|
||||||
|
|
||||||
#: ../plugins/spell/xed-spell-setup-dialog.ui.h:4
|
#: ../plugins/spell/xed-spell-setup-dialog.ui.h:4
|
||||||
msgid "Never autocheck spelling on document load"
|
msgid "Never autocheck spelling on document load"
|
||||||
@@ -2820,7 +2820,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: ../plugins/spell/xed-spell-setup-dialog.ui.h:7
|
#: ../plugins/spell/xed-spell-setup-dialog.ui.h:7
|
||||||
msgid "Always"
|
msgid "Always"
|
||||||
msgstr ""
|
msgstr "सदैव"
|
||||||
|
|
||||||
#: ../plugins/spell/xed-spell-setup-dialog.ui.h:8
|
#: ../plugins/spell/xed-spell-setup-dialog.ui.h:8
|
||||||
msgid "Always autocheck on document load"
|
msgid "Always autocheck on document load"
|
||||||
@@ -3213,7 +3213,7 @@ msgstr "HTTP शीर्षिका नाम"
|
|||||||
|
|
||||||
#: ../plugins/taglist/HTML.tags.xml.in.h:110
|
#: ../plugins/taglist/HTML.tags.xml.in.h:110
|
||||||
msgid "I18N BiDi override"
|
msgid "I18N BiDi override"
|
||||||
msgstr ""
|
msgstr "I18N BiDi ओवरराईड"
|
||||||
|
|
||||||
#: ../plugins/taglist/HTML.tags.xml.in.h:111
|
#: ../plugins/taglist/HTML.tags.xml.in.h:111
|
||||||
msgid "Image map area"
|
msgid "Image map area"
|
||||||
@@ -4408,11 +4408,11 @@ msgstr ""
|
|||||||
|
|
||||||
#: ../plugins/time/org.x.editor.plugins.time.gschema.xml.in.h:2
|
#: ../plugins/time/org.x.editor.plugins.time.gschema.xml.in.h:2
|
||||||
msgid "Selected format"
|
msgid "Selected format"
|
||||||
msgstr ""
|
msgstr "चयनित प्रारूप"
|
||||||
|
|
||||||
#: ../plugins/time/org.x.editor.plugins.time.gschema.xml.in.h:3
|
#: ../plugins/time/org.x.editor.plugins.time.gschema.xml.in.h:3
|
||||||
msgid "Custom format"
|
msgid "Custom format"
|
||||||
msgstr ""
|
msgstr "अनुकूलित प्रारूप"
|
||||||
|
|
||||||
#: ../plugins/time/time.plugin.desktop.in.h:1
|
#: ../plugins/time/time.plugin.desktop.in.h:1
|
||||||
msgid "Insert Date/Time"
|
msgid "Insert Date/Time"
|
||||||
@@ -4445,13 +4445,13 @@ msgstr "मनपसंद प्रारूप का उपयोग कर
|
|||||||
#: ../plugins/time/xed-time-setup-dialog.ui.h:9
|
#: ../plugins/time/xed-time-setup-dialog.ui.h:9
|
||||||
#, no-c-format
|
#, no-c-format
|
||||||
msgid "%d/%m/%Y %H:%M:%S"
|
msgid "%d/%m/%Y %H:%M:%S"
|
||||||
msgstr ""
|
msgstr "%d/%m/%Y %H:%M:%S"
|
||||||
|
|
||||||
#. Translators: This example should follow the date format defined in the entry above
|
#. Translators: This example should follow the date format defined in the entry above
|
||||||
#: ../plugins/time/xed-time-dialog.ui.h:8
|
#: ../plugins/time/xed-time-dialog.ui.h:8
|
||||||
#: ../plugins/time/xed-time-setup-dialog.ui.h:11
|
#: ../plugins/time/xed-time-setup-dialog.ui.h:11
|
||||||
msgid "01/11/2009 17:52:00"
|
msgid "01/11/2009 17:52:00"
|
||||||
msgstr ""
|
msgstr "01/11/2009 17:52:00"
|
||||||
|
|
||||||
#: ../plugins/time/xed-time-plugin.c:179
|
#: ../plugins/time/xed-time-plugin.c:179
|
||||||
msgid "In_sert Date and Time..."
|
msgid "In_sert Date and Time..."
|
||||||
@@ -4487,7 +4487,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: ../plugins/wordcompletion/xed-wordcompletion-configure.ui.h:1
|
#: ../plugins/wordcompletion/xed-wordcompletion-configure.ui.h:1
|
||||||
msgid "Word Completion"
|
msgid "Word Completion"
|
||||||
msgstr ""
|
msgstr "शब्द पूर्ति"
|
||||||
|
|
||||||
#: ../plugins/wordcompletion/xed-wordcompletion-configure.ui.h:2
|
#: ../plugins/wordcompletion/xed-wordcompletion-configure.ui.h:2
|
||||||
msgid "Use Ctrl+Space to manually trigger word completion."
|
msgid "Use Ctrl+Space to manually trigger word completion."
|
||||||
@@ -4495,7 +4495,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: ../plugins/wordcompletion/xed-wordcompletion-configure.ui.h:3
|
#: ../plugins/wordcompletion/xed-wordcompletion-configure.ui.h:3
|
||||||
msgid "Automatic completion"
|
msgid "Automatic completion"
|
||||||
msgstr ""
|
msgstr "स्वतः पूर्ति"
|
||||||
|
|
||||||
#: ../plugins/wordcompletion/xed-wordcompletion-configure.ui.h:4
|
#: ../plugins/wordcompletion/xed-wordcompletion-configure.ui.h:4
|
||||||
msgid "Minimum word size for auto-completion"
|
msgid "Minimum word size for auto-completion"
|
||||||
@@ -4503,4 +4503,4 @@ msgstr ""
|
|||||||
|
|
||||||
#: ../plugins/wordcompletion/xed-wordcompletion-plugin.c:215
|
#: ../plugins/wordcompletion/xed-wordcompletion-plugin.c:215
|
||||||
msgid "Word completion"
|
msgid "Word completion"
|
||||||
msgstr ""
|
msgstr "शब्द पूर्ति"
|
||||||
|
4
po/hr.po
4
po/hr.po
@@ -19,8 +19,8 @@ msgstr ""
|
|||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
|
"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"
|
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||||
"X-Launchpad-Export-Date: 2019-07-28 09:33+0000\n"
|
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
|
||||||
"X-Generator: Launchpad (build 19010)\n"
|
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
|
||||||
"Language: hr\n"
|
"Language: hr\n"
|
||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:1
|
#: ../data/org.x.editor.gschema.xml.in.h:1
|
||||||
|
4
po/hu.po
4
po/hu.po
@@ -17,8 +17,8 @@ msgstr ""
|
|||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Launchpad-Export-Date: 2019-07-28 09:34+0000\n"
|
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
|
||||||
"X-Generator: Launchpad (build 19010)\n"
|
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
|
||||||
"Language: hu\n"
|
"Language: hu\n"
|
||||||
"(http: //www.transifex.com/projects/p/MATE/language/hu/)\n"
|
"(http: //www.transifex.com/projects/p/MATE/language/hu/)\n"
|
||||||
|
|
||||||
|
4
po/hy.po
4
po/hy.po
@@ -15,8 +15,8 @@ msgstr ""
|
|||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
"X-Launchpad-Export-Date: 2019-07-28 09:34+0000\n"
|
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
|
||||||
"X-Generator: Launchpad (build 19010)\n"
|
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
|
||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:1
|
#: ../data/org.x.editor.gschema.xml.in.h:1
|
||||||
msgid "Use Default Font"
|
msgid "Use Default Font"
|
||||||
|
12
po/ia.po
12
po/ia.po
@@ -8,15 +8,15 @@ msgstr ""
|
|||||||
"Project-Id-Version: linuxmint\n"
|
"Project-Id-Version: linuxmint\n"
|
||||||
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
|
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"POT-Creation-Date: 2019-06-23 14:24+0200\n"
|
"POT-Creation-Date: 2019-06-23 14:24+0200\n"
|
||||||
"PO-Revision-Date: 2018-12-18 03:01+0000\n"
|
"PO-Revision-Date: 2020-01-09 12:06+0000\n"
|
||||||
"Last-Translator: karm <melo@carmu.com>\n"
|
"Last-Translator: karm <melo@carmu.com>\n"
|
||||||
"Language-Team: Interlingua <ia@li.org>\n"
|
"Language-Team: Interlingua <ia@li.org>\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Launchpad-Export-Date: 2019-07-28 09:34+0000\n"
|
"X-Launchpad-Export-Date: 2020-05-11 11:00+0000\n"
|
||||||
"X-Generator: Launchpad (build 19010)\n"
|
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
|
||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:1
|
#: ../data/org.x.editor.gschema.xml.in.h:1
|
||||||
msgid "Use Default Font"
|
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
|
#: ../xed/xed-ui.h:162
|
||||||
msgid "Fullscreen"
|
msgid "Fullscreen"
|
||||||
msgstr ""
|
msgstr "Schermo plen"
|
||||||
|
|
||||||
#: ../xed/xed-ui.h:163
|
#: ../xed/xed-ui.h:163
|
||||||
msgid "Edit text in fullscreen"
|
msgid "Edit text in fullscreen"
|
||||||
@@ -2413,12 +2413,12 @@ msgstr "Activar '%s'"
|
|||||||
#: ../xed/xed-window.c:1330
|
#: ../xed/xed-window.c:1330
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Spaces: %u"
|
msgid "Spaces: %u"
|
||||||
msgstr ""
|
msgstr "Spatios: %u"
|
||||||
|
|
||||||
#: ../xed/xed-window.c:1334
|
#: ../xed/xed-window.c:1334
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Tabs: %u"
|
msgid "Tabs: %u"
|
||||||
msgstr ""
|
msgstr "Schedas: %u"
|
||||||
|
|
||||||
#: ../xed/xed-window.c:1411
|
#: ../xed/xed-window.c:1411
|
||||||
msgid "Use Spaces"
|
msgid "Use Spaces"
|
||||||
|
101
po/id.po
101
po/id.po
@@ -12,16 +12,16 @@ msgstr ""
|
|||||||
"Project-Id-Version: MATE Desktop Environment\n"
|
"Project-Id-Version: MATE Desktop Environment\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2019-06-23 14:24+0200\n"
|
"POT-Creation-Date: 2019-06-23 14:24+0200\n"
|
||||||
"PO-Revision-Date: 2018-09-05 13:11+0000\n"
|
"PO-Revision-Date: 2019-09-10 16:03+0000\n"
|
||||||
"Last-Translator: jemmy surya <j4m13s@yahoo.com>\n"
|
"Last-Translator: Abdul Munif Hanafi <amunifhanafi@gmail.com>\n"
|
||||||
"Language-Team: Indonesian "
|
"Language-Team: Indonesian "
|
||||||
"(http://www.transifex.com/projects/p/MATE/language/id/)\n"
|
"(http://www.transifex.com/projects/p/MATE/language/id/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
"X-Launchpad-Export-Date: 2019-07-28 09:34+0000\n"
|
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
|
||||||
"X-Generator: Launchpad (build 19010)\n"
|
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
|
||||||
"Language: id\n"
|
"Language: id\n"
|
||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:1
|
#: ../data/org.x.editor.gschema.xml.in.h:1
|
||||||
@@ -39,7 +39,7 @@ msgstr ""
|
|||||||
#: ../data/org.x.editor.gschema.xml.in.h:3
|
#: ../data/org.x.editor.gschema.xml.in.h:3
|
||||||
msgctxt "editor-font"
|
msgctxt "editor-font"
|
||||||
msgid "'Monospace 12'"
|
msgid "'Monospace 12'"
|
||||||
msgstr ""
|
msgstr "'Monospace 12'"
|
||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:4
|
#: ../data/org.x.editor.gschema.xml.in.h:4
|
||||||
msgid "Editor Font"
|
msgid "Editor Font"
|
||||||
@@ -55,7 +55,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:6
|
#: ../data/org.x.editor.gschema.xml.in.h:6
|
||||||
msgid "Prefer Dark Theme"
|
msgid "Prefer Dark Theme"
|
||||||
msgstr ""
|
msgstr "Lebih suka Tema Gelap"
|
||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:7
|
#: ../data/org.x.editor.gschema.xml.in.h:7
|
||||||
msgid ""
|
msgid ""
|
||||||
@@ -231,7 +231,7 @@ msgstr "Aktifkan Pencarian Penandaan"
|
|||||||
#: ../data/org.x.editor.gschema.xml.in.h:43
|
#: ../data/org.x.editor.gschema.xml.in.h:43
|
||||||
msgid ""
|
msgid ""
|
||||||
"Whether xed should highlight all the occurrences of the searched text."
|
"Whether xed should highlight all the occurrences of the searched text."
|
||||||
msgstr ""
|
msgstr "Apakah xed harus menyorot semua kemunculan teks yang dicari."
|
||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:44
|
#: ../data/org.x.editor.gschema.xml.in.h:44
|
||||||
msgid "Enable Syntax Highlighting"
|
msgid "Enable Syntax Highlighting"
|
||||||
@@ -353,11 +353,14 @@ msgid ""
|
|||||||
"If this value is 0, then no line numbers will be inserted when printing a "
|
"If this value is 0, then no line numbers will be inserted when printing a "
|
||||||
"document. Otherwise, xed will print line numbers every such number of lines."
|
"document. Otherwise, xed will print line numbers every such number of lines."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
"Jika nilai ini adalah 0, maka tidak ada nomor baris yang akan dimasukkan "
|
||||||
|
"saat mencetak dokumen. Jika tidak, xed akan mencetak nomor baris setiap "
|
||||||
|
"baris tersebut."
|
||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:70
|
#: ../data/org.x.editor.gschema.xml.in.h:70
|
||||||
msgctxt "print-font-body-pango"
|
msgctxt "print-font-body-pango"
|
||||||
msgid "'Monospace 9'"
|
msgid "'Monospace 9'"
|
||||||
msgstr ""
|
msgstr "'Monospace 9'"
|
||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:71
|
#: ../data/org.x.editor.gschema.xml.in.h:71
|
||||||
msgid "Body Font for Printing"
|
msgid "Body Font for Printing"
|
||||||
@@ -373,7 +376,7 @@ msgstr ""
|
|||||||
#: ../data/org.x.editor.gschema.xml.in.h:73
|
#: ../data/org.x.editor.gschema.xml.in.h:73
|
||||||
msgctxt "print-font-header-pango"
|
msgctxt "print-font-header-pango"
|
||||||
msgid "'Sans 11'"
|
msgid "'Sans 11'"
|
||||||
msgstr ""
|
msgstr "'Sans 11'"
|
||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:74
|
#: ../data/org.x.editor.gschema.xml.in.h:74
|
||||||
msgid "Header Font for Printing"
|
msgid "Header Font for Printing"
|
||||||
@@ -391,7 +394,7 @@ msgstr ""
|
|||||||
#: ../data/org.x.editor.gschema.xml.in.h:76
|
#: ../data/org.x.editor.gschema.xml.in.h:76
|
||||||
msgctxt "print-font-numbers-pango"
|
msgctxt "print-font-numbers-pango"
|
||||||
msgid "'Sans 8'"
|
msgid "'Sans 8'"
|
||||||
msgstr ""
|
msgstr "'Sans 8'"
|
||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:77
|
#: ../data/org.x.editor.gschema.xml.in.h:77
|
||||||
msgid "Line Number Font for Printing"
|
msgid "Line Number Font for Printing"
|
||||||
@@ -408,7 +411,7 @@ msgstr ""
|
|||||||
#: ../data/org.x.editor.gschema.xml.in.h:79
|
#: ../data/org.x.editor.gschema.xml.in.h:79
|
||||||
msgctxt "auto-detected"
|
msgctxt "auto-detected"
|
||||||
msgid "[ 'UTF-8', 'CURRENT', 'ISO-8859-15', 'UTF-16' ]"
|
msgid "[ 'UTF-8', 'CURRENT', 'ISO-8859-15', 'UTF-16' ]"
|
||||||
msgstr ""
|
msgstr "[ 'UTF-8', 'CURRENT', 'ISO-8859-15', 'UTF-16' ]"
|
||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:80
|
#: ../data/org.x.editor.gschema.xml.in.h:80
|
||||||
msgid "Automatically Detected Encodings"
|
msgid "Automatically Detected Encodings"
|
||||||
@@ -424,7 +427,7 @@ msgstr ""
|
|||||||
#: ../data/org.x.editor.gschema.xml.in.h:82
|
#: ../data/org.x.editor.gschema.xml.in.h:82
|
||||||
msgctxt "shown-in-menu"
|
msgctxt "shown-in-menu"
|
||||||
msgid "[ 'ISO-8859-15' ]"
|
msgid "[ 'ISO-8859-15' ]"
|
||||||
msgstr ""
|
msgstr "[ 'ISO-8859-15' ]"
|
||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:83
|
#: ../data/org.x.editor.gschema.xml.in.h:83
|
||||||
msgid "Encodings shown in menu"
|
msgid "Encodings shown in menu"
|
||||||
@@ -466,7 +469,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: ../data/xed.appdata.xml.in.h:1
|
#: ../data/xed.appdata.xml.in.h:1
|
||||||
msgid "A Text Editor"
|
msgid "A Text Editor"
|
||||||
msgstr ""
|
msgstr "Penyunting Teks"
|
||||||
|
|
||||||
#: ../data/xed.appdata.xml.in.h:2
|
#: ../data/xed.appdata.xml.in.h:2
|
||||||
msgid ""
|
msgid ""
|
||||||
@@ -485,7 +488,7 @@ msgstr "Penyunting Teks"
|
|||||||
|
|
||||||
#: ../data/xed.desktop.in.in.h:2
|
#: ../data/xed.desktop.in.in.h:2
|
||||||
msgid "Edit text files"
|
msgid "Edit text files"
|
||||||
msgstr ""
|
msgstr "Sunting berkas teks"
|
||||||
|
|
||||||
#: ../xed/xed-app.c:102
|
#: ../xed/xed-app.c:102
|
||||||
msgid "Show the application's version"
|
msgid "Show the application's version"
|
||||||
@@ -568,13 +571,13 @@ msgstr ""
|
|||||||
|
|
||||||
#: ../xed/xed-close-confirmation-dialog.c:159
|
#: ../xed/xed-close-confirmation-dialog.c:159
|
||||||
msgid "_Save As..."
|
msgid "_Save As..."
|
||||||
msgstr ""
|
msgstr "_Simpan Sebagai..."
|
||||||
|
|
||||||
#. File menu
|
#. File menu
|
||||||
#: ../xed/xed-close-confirmation-dialog.c:165 ../xed/xed-commands-file.c:649
|
#: ../xed/xed-close-confirmation-dialog.c:165 ../xed/xed-commands-file.c:649
|
||||||
#: ../xed/xed-ui.h:79
|
#: ../xed/xed-ui.h:79
|
||||||
msgid "_Save"
|
msgid "_Save"
|
||||||
msgstr ""
|
msgstr "_Simpan"
|
||||||
|
|
||||||
#: ../xed/xed-close-confirmation-dialog.c:192
|
#: ../xed/xed-close-confirmation-dialog.c:192
|
||||||
msgid "Question"
|
msgid "Question"
|
||||||
@@ -824,7 +827,7 @@ msgstr "Tambah atau Buang..."
|
|||||||
|
|
||||||
#: ../xed/xed-encodings-dialog.c:337 ../plugins/time/xed-time-plugin.c:789
|
#: ../xed/xed-encodings-dialog.c:337 ../plugins/time/xed-time-plugin.c:789
|
||||||
msgid "_OK"
|
msgid "_OK"
|
||||||
msgstr ""
|
msgstr "_OK"
|
||||||
|
|
||||||
#: ../xed/xed-encodings-dialog.c:338 ../xed/xed-ui.h:50
|
#: ../xed/xed-encodings-dialog.c:338 ../xed/xed-ui.h:50
|
||||||
#: ../plugins/spell/xed-spell-plugin.c:435
|
#: ../plugins/spell/xed-spell-plugin.c:435
|
||||||
@@ -898,7 +901,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: ../xed/xed-io-error-info-bar.c:194
|
#: ../xed/xed-io-error-info-bar.c:194
|
||||||
msgid "xed cannot handle this location."
|
msgid "xed cannot handle this location."
|
||||||
msgstr ""
|
msgstr "xed tidak dapat menangani lokasi ini."
|
||||||
|
|
||||||
#: ../xed/xed-io-error-info-bar.c:201
|
#: ../xed/xed-io-error-info-bar.c:201
|
||||||
msgid "The location of the file cannot be mounted."
|
msgid "The location of the file cannot be mounted."
|
||||||
@@ -1046,7 +1049,7 @@ msgstr "Jan_gan Sunting"
|
|||||||
#: ../xed/xed-io-error-info-bar.c:673
|
#: ../xed/xed-io-error-info-bar.c:673
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "This file (%s) is already open in another xed window."
|
msgid "This file (%s) is already open in another xed window."
|
||||||
msgstr ""
|
msgstr "Berkas ini (%s) sudah terbuka di jendela xed lain."
|
||||||
|
|
||||||
#: ../xed/xed-io-error-info-bar.c:687
|
#: ../xed/xed-io-error-info-bar.c:687
|
||||||
msgid ""
|
msgid ""
|
||||||
@@ -1214,7 +1217,7 @@ msgstr "Penyunting"
|
|||||||
|
|
||||||
#: ../xed/xed-preferences-dialog.c:414
|
#: ../xed/xed-preferences-dialog.c:414
|
||||||
msgid "Save"
|
msgid "Save"
|
||||||
msgstr ""
|
msgstr "Simpan"
|
||||||
|
|
||||||
#: ../xed/xed-preferences-dialog.c:527
|
#: ../xed/xed-preferences-dialog.c:527
|
||||||
#, c-format
|
#, c-format
|
||||||
@@ -1232,7 +1235,7 @@ msgstr "Tambah Skema"
|
|||||||
|
|
||||||
#: ../xed/xed-preferences-dialog.c:707 ../xed/xed-progress-info-bar.c:64
|
#: ../xed/xed-preferences-dialog.c:707 ../xed/xed-progress-info-bar.c:64
|
||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr ""
|
msgstr "Batal"
|
||||||
|
|
||||||
#: ../xed/xed-preferences-dialog.c:716
|
#: ../xed/xed-preferences-dialog.c:716
|
||||||
msgid "Color Scheme Files"
|
msgid "Color Scheme Files"
|
||||||
@@ -1245,7 +1248,7 @@ msgstr "Tak dapat menghapus skema warna \"%s\"."
|
|||||||
|
|
||||||
#: ../xed/xed-preferences-dialog.c:820
|
#: ../xed/xed-preferences-dialog.c:820
|
||||||
msgid "Theme"
|
msgid "Theme"
|
||||||
msgstr ""
|
msgstr "Tema"
|
||||||
|
|
||||||
#: ../xed/xed-preferences-dialog.c:837
|
#: ../xed/xed-preferences-dialog.c:837
|
||||||
msgid "Plugins"
|
msgid "Plugins"
|
||||||
@@ -1253,12 +1256,12 @@ msgstr "Plugin"
|
|||||||
|
|
||||||
#: ../xed/xed-preferences-dialog.c:845
|
#: ../xed/xed-preferences-dialog.c:845
|
||||||
msgid "Help"
|
msgid "Help"
|
||||||
msgstr ""
|
msgstr "Bantuan"
|
||||||
|
|
||||||
#: ../xed/xed-preferences-dialog.c:850
|
#: ../xed/xed-preferences-dialog.c:850
|
||||||
#: ../xed/resources/ui/xed-searchbar.ui.h:11
|
#: ../xed/resources/ui/xed-searchbar.ui.h:11
|
||||||
msgid "Close"
|
msgid "Close"
|
||||||
msgstr ""
|
msgstr "Tutup"
|
||||||
|
|
||||||
#: ../xed/xed-preferences-dialog.c:864
|
#: ../xed/xed-preferences-dialog.c:864
|
||||||
msgid "Xed Preferences"
|
msgid "Xed Preferences"
|
||||||
@@ -1347,7 +1350,7 @@ msgstr "Cuplikan halaman pada dokumen yang mau dicetak"
|
|||||||
|
|
||||||
#: ../xed/resources/ui/xed-highlight-mode-dialog.ui.h:1
|
#: ../xed/resources/ui/xed-highlight-mode-dialog.ui.h:1
|
||||||
msgid "Highlight Mode"
|
msgid "Highlight Mode"
|
||||||
msgstr ""
|
msgstr "Mode Penyorotan"
|
||||||
|
|
||||||
#: ../xed/resources/ui/xed-highlight-mode-dialog.ui.h:3
|
#: ../xed/resources/ui/xed-highlight-mode-dialog.ui.h:3
|
||||||
msgid "_Select"
|
msgid "_Select"
|
||||||
@@ -1395,7 +1398,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: ../xed/resources/ui/xed-preferences-dialog.ui.h:9
|
#: ../xed/resources/ui/xed-preferences-dialog.ui.h:9
|
||||||
msgid "4"
|
msgid "4"
|
||||||
msgstr ""
|
msgstr "4"
|
||||||
|
|
||||||
#: ../xed/resources/ui/xed-preferences-dialog.ui.h:10
|
#: ../xed/resources/ui/xed-preferences-dialog.ui.h:10
|
||||||
msgid "Highlighting"
|
msgid "Highlighting"
|
||||||
@@ -1415,7 +1418,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: ../xed/resources/ui/xed-preferences-dialog.ui.h:14
|
#: ../xed/resources/ui/xed-preferences-dialog.ui.h:14
|
||||||
msgid "Tab width"
|
msgid "Tab width"
|
||||||
msgstr ""
|
msgstr "Lebar tab"
|
||||||
|
|
||||||
#: ../xed/resources/ui/xed-preferences-dialog.ui.h:15
|
#: ../xed/resources/ui/xed-preferences-dialog.ui.h:15
|
||||||
msgid "Use spaces instead of tabs"
|
msgid "Use spaces instead of tabs"
|
||||||
@@ -1423,7 +1426,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: ../xed/resources/ui/xed-preferences-dialog.ui.h:16
|
#: ../xed/resources/ui/xed-preferences-dialog.ui.h:16
|
||||||
msgid "Automatic indentation"
|
msgid "Automatic indentation"
|
||||||
msgstr ""
|
msgstr "Indentasi otomatis"
|
||||||
|
|
||||||
#: ../xed/resources/ui/xed-preferences-dialog.ui.h:17
|
#: ../xed/resources/ui/xed-preferences-dialog.ui.h:17
|
||||||
msgid "Word wrap"
|
msgid "Word wrap"
|
||||||
@@ -1459,7 +1462,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: ../xed/resources/ui/xed-preferences-dialog.ui.h:25
|
#: ../xed/resources/ui/xed-preferences-dialog.ui.h:25
|
||||||
msgid "Dark theme"
|
msgid "Dark theme"
|
||||||
msgstr ""
|
msgstr "Tema gelap"
|
||||||
|
|
||||||
#: ../xed/resources/ui/xed-preferences-dialog.ui.h:26
|
#: ../xed/resources/ui/xed-preferences-dialog.ui.h:26
|
||||||
msgid "Use dark theme variant (if available)"
|
msgid "Use dark theme variant (if available)"
|
||||||
@@ -1561,11 +1564,11 @@ msgstr "Ganti _dengan: "
|
|||||||
|
|
||||||
#: ../xed/resources/ui/xed-searchbar.ui.h:5
|
#: ../xed/resources/ui/xed-searchbar.ui.h:5
|
||||||
msgid "Next"
|
msgid "Next"
|
||||||
msgstr ""
|
msgstr "Selanjutnya"
|
||||||
|
|
||||||
#: ../xed/resources/ui/xed-searchbar.ui.h:6
|
#: ../xed/resources/ui/xed-searchbar.ui.h:6
|
||||||
msgid "Previous"
|
msgid "Previous"
|
||||||
msgstr ""
|
msgstr "Sebelumnya"
|
||||||
|
|
||||||
#: ../xed/resources/ui/xed-searchbar.ui.h:7
|
#: ../xed/resources/ui/xed-searchbar.ui.h:7
|
||||||
msgid "Regular expression"
|
msgid "Regular expression"
|
||||||
@@ -1589,11 +1592,11 @@ msgstr "Buat dokumen baru"
|
|||||||
|
|
||||||
#: ../xed/resources/ui/xed-shortcuts.ui.h:3
|
#: ../xed/resources/ui/xed-shortcuts.ui.h:3
|
||||||
msgid "Open a document"
|
msgid "Open a document"
|
||||||
msgstr ""
|
msgstr "Buka dokumen"
|
||||||
|
|
||||||
#: ../xed/resources/ui/xed-shortcuts.ui.h:4
|
#: ../xed/resources/ui/xed-shortcuts.ui.h:4
|
||||||
msgid "Save the document"
|
msgid "Save the document"
|
||||||
msgstr ""
|
msgstr "Simpan dokumen"
|
||||||
|
|
||||||
#: ../xed/resources/ui/xed-shortcuts.ui.h:5
|
#: ../xed/resources/ui/xed-shortcuts.ui.h:5
|
||||||
msgid "Save the document with a new filename"
|
msgid "Save the document with a new filename"
|
||||||
@@ -1601,15 +1604,15 @@ msgstr ""
|
|||||||
|
|
||||||
#: ../xed/resources/ui/xed-shortcuts.ui.h:6
|
#: ../xed/resources/ui/xed-shortcuts.ui.h:6
|
||||||
msgid "Save all the documents"
|
msgid "Save all the documents"
|
||||||
msgstr ""
|
msgstr "Simpan semua dokumen"
|
||||||
|
|
||||||
#: ../xed/resources/ui/xed-shortcuts.ui.h:7
|
#: ../xed/resources/ui/xed-shortcuts.ui.h:7
|
||||||
msgid "Close the document"
|
msgid "Close the document"
|
||||||
msgstr ""
|
msgstr "Tutup dokumen"
|
||||||
|
|
||||||
#: ../xed/resources/ui/xed-shortcuts.ui.h:8
|
#: ../xed/resources/ui/xed-shortcuts.ui.h:8
|
||||||
msgid "Close all the documents"
|
msgid "Close all the documents"
|
||||||
msgstr ""
|
msgstr "Tutup semua dokumen"
|
||||||
|
|
||||||
#: ../xed/resources/ui/xed-shortcuts.ui.h:9
|
#: ../xed/resources/ui/xed-shortcuts.ui.h:9
|
||||||
msgid "Switch to the next document"
|
msgid "Switch to the next document"
|
||||||
@@ -1641,7 +1644,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: ../xed/resources/ui/xed-shortcuts.ui.h:16
|
#: ../xed/resources/ui/xed-shortcuts.ui.h:16
|
||||||
msgid "Quit the application"
|
msgid "Quit the application"
|
||||||
msgstr ""
|
msgstr "Keluar dari aplikasi"
|
||||||
|
|
||||||
#: ../xed/resources/ui/xed-shortcuts.ui.h:17
|
#: ../xed/resources/ui/xed-shortcuts.ui.h:17
|
||||||
msgid "Find and Replace"
|
msgid "Find and Replace"
|
||||||
@@ -1661,11 +1664,11 @@ msgstr ""
|
|||||||
|
|
||||||
#: ../xed/resources/ui/xed-shortcuts.ui.h:21
|
#: ../xed/resources/ui/xed-shortcuts.ui.h:21
|
||||||
msgid "Go to line"
|
msgid "Go to line"
|
||||||
msgstr ""
|
msgstr "Ke baris"
|
||||||
|
|
||||||
#: ../xed/resources/ui/xed-shortcuts.ui.h:22
|
#: ../xed/resources/ui/xed-shortcuts.ui.h:22
|
||||||
msgid "Copy and Paste"
|
msgid "Copy and Paste"
|
||||||
msgstr ""
|
msgstr "Salin dan Tempel"
|
||||||
|
|
||||||
#: ../xed/resources/ui/xed-shortcuts.ui.h:23
|
#: ../xed/resources/ui/xed-shortcuts.ui.h:23
|
||||||
msgid "Copy selected text to clipboard"
|
msgid "Copy selected text to clipboard"
|
||||||
@@ -1697,7 +1700,7 @@ msgstr "Pilihan"
|
|||||||
|
|
||||||
#: ../xed/resources/ui/xed-shortcuts.ui.h:30
|
#: ../xed/resources/ui/xed-shortcuts.ui.h:30
|
||||||
msgid "Select all text"
|
msgid "Select all text"
|
||||||
msgstr ""
|
msgstr "Pilih semua teks"
|
||||||
|
|
||||||
#: ../xed/resources/ui/xed-shortcuts.ui.h:31
|
#: ../xed/resources/ui/xed-shortcuts.ui.h:31
|
||||||
msgid "Tools"
|
msgid "Tools"
|
||||||
@@ -1709,7 +1712,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: ../xed/resources/ui/xed-shortcuts.ui.h:33
|
#: ../xed/resources/ui/xed-shortcuts.ui.h:33
|
||||||
msgid "Print the document"
|
msgid "Print the document"
|
||||||
msgstr ""
|
msgstr "Cetak dokumen"
|
||||||
|
|
||||||
#: ../xed/resources/ui/xed-shortcuts.ui.h:34
|
#: ../xed/resources/ui/xed-shortcuts.ui.h:34
|
||||||
msgid "Editing"
|
msgid "Editing"
|
||||||
@@ -1721,7 +1724,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: ../xed/resources/ui/xed-shortcuts.ui.h:36
|
#: ../xed/resources/ui/xed-shortcuts.ui.h:36
|
||||||
msgid "Delete current line"
|
msgid "Delete current line"
|
||||||
msgstr ""
|
msgstr "Hapus baris saat ini"
|
||||||
|
|
||||||
#: ../xed/resources/ui/xed-shortcuts.ui.h:37
|
#: ../xed/resources/ui/xed-shortcuts.ui.h:37
|
||||||
msgid "Move current line up"
|
msgid "Move current line up"
|
||||||
@@ -2205,7 +2208,7 @@ msgstr "Tampil atau sembunyikan batang status pada jendela saat ini"
|
|||||||
|
|
||||||
#: ../xed/xed-ui.h:162
|
#: ../xed/xed-ui.h:162
|
||||||
msgid "Fullscreen"
|
msgid "Fullscreen"
|
||||||
msgstr ""
|
msgstr "Layar Penuh"
|
||||||
|
|
||||||
#: ../xed/xed-ui.h:163
|
#: ../xed/xed-ui.h:163
|
||||||
msgid "Edit text in fullscreen"
|
msgid "Edit text in fullscreen"
|
||||||
@@ -2295,7 +2298,7 @@ msgstr "Gunakan Spasi"
|
|||||||
|
|
||||||
#: ../xed/xed-window.c:2198
|
#: ../xed/xed-window.c:2198
|
||||||
msgid "There are unsaved documents"
|
msgid "There are unsaved documents"
|
||||||
msgstr ""
|
msgstr "Ada dokumen yang belum disimpan"
|
||||||
|
|
||||||
#: ../xed/xed-window.c:3247
|
#: ../xed/xed-window.c:3247
|
||||||
msgid "Elevated Privileges"
|
msgid "Elevated Privileges"
|
||||||
@@ -2413,7 +2416,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: ../plugins/filebrowser/org.x.editor.plugins.filebrowser.gschema.xml.h:7
|
#: ../plugins/filebrowser/org.x.editor.plugins.filebrowser.gschema.xml.h:7
|
||||||
msgid "Terminal Command"
|
msgid "Terminal Command"
|
||||||
msgstr ""
|
msgstr "Perintah Terminal"
|
||||||
|
|
||||||
#: ../plugins/filebrowser/org.x.editor.plugins.filebrowser.gschema.xml.h:8
|
#: ../plugins/filebrowser/org.x.editor.plugins.filebrowser.gschema.xml.h:8
|
||||||
msgid "The terminal command when using the \"Open terminal here\" command."
|
msgid "The terminal command when using the \"Open terminal here\" command."
|
||||||
@@ -2777,7 +2780,7 @@ msgstr "Memeriksa ejaan pada dokumen aktif secara otomatis"
|
|||||||
|
|
||||||
#: ../plugins/spell/xed-spell-setup-dialog.ui.h:1
|
#: ../plugins/spell/xed-spell-setup-dialog.ui.h:1
|
||||||
msgid "button"
|
msgid "button"
|
||||||
msgstr ""
|
msgstr "tombol"
|
||||||
|
|
||||||
#: ../plugins/spell/xed-spell-setup-dialog.ui.h:2
|
#: ../plugins/spell/xed-spell-setup-dialog.ui.h:2
|
||||||
msgid "Autocheck settings"
|
msgid "Autocheck settings"
|
||||||
@@ -2801,7 +2804,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: ../plugins/spell/xed-spell-setup-dialog.ui.h:7
|
#: ../plugins/spell/xed-spell-setup-dialog.ui.h:7
|
||||||
msgid "Always"
|
msgid "Always"
|
||||||
msgstr ""
|
msgstr "Selalu"
|
||||||
|
|
||||||
#: ../plugins/spell/xed-spell-setup-dialog.ui.h:8
|
#: ../plugins/spell/xed-spell-setup-dialog.ui.h:8
|
||||||
msgid "Always autocheck on document load"
|
msgid "Always autocheck on document load"
|
||||||
@@ -4367,7 +4370,7 @@ msgstr "XUL - Tag"
|
|||||||
|
|
||||||
#: ../plugins/textsize/textsize.plugin.desktop.in.h:1
|
#: ../plugins/textsize/textsize.plugin.desktop.in.h:1
|
||||||
msgid "Text Size"
|
msgid "Text Size"
|
||||||
msgstr ""
|
msgstr "Ukuran Teks"
|
||||||
|
|
||||||
#: ../plugins/textsize/textsize.plugin.desktop.in.h:2
|
#: ../plugins/textsize/textsize.plugin.desktop.in.h:2
|
||||||
msgid "Allow controlling the zoom levels of the text"
|
msgid "Allow controlling the zoom levels of the text"
|
||||||
@@ -4383,7 +4386,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: ../plugins/textsize/textsize/__init__.py:129
|
#: ../plugins/textsize/textsize/__init__.py:129
|
||||||
msgid "_Normal size"
|
msgid "_Normal size"
|
||||||
msgstr ""
|
msgstr "Ukuran _normal"
|
||||||
|
|
||||||
#: ../plugins/time/org.x.editor.plugins.time.gschema.xml.in.h:1
|
#: ../plugins/time/org.x.editor.plugins.time.gschema.xml.in.h:1
|
||||||
msgid "Prompt type"
|
msgid "Prompt type"
|
||||||
|
4
po/ie.po
4
po/ie.po
@@ -15,8 +15,8 @@ msgstr ""
|
|||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Launchpad-Export-Date: 2019-07-28 09:34+0000\n"
|
"X-Launchpad-Export-Date: 2020-05-11 11:00+0000\n"
|
||||||
"X-Generator: Launchpad (build 19010)\n"
|
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
|
||||||
"Language: ie\n"
|
"Language: ie\n"
|
||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:1
|
#: ../data/org.x.editor.gschema.xml.in.h:1
|
||||||
|
10
po/is.po
10
po/is.po
@@ -7,15 +7,15 @@ msgstr ""
|
|||||||
"Project-Id-Version: xedit\n"
|
"Project-Id-Version: xedit\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2019-06-23 14:24+0200\n"
|
"POT-Creation-Date: 2019-06-23 14:24+0200\n"
|
||||||
"PO-Revision-Date: 2019-05-20 13:15+0000\n"
|
"PO-Revision-Date: 2020-03-25 08:48+0000\n"
|
||||||
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
|
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
|
||||||
"Language-Team: Icelandic <translation-team-is@lists.sourceforge.net>\n"
|
"Language-Team: Icelandic <translation-team-is@lists.sourceforge.net>\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Launchpad-Export-Date: 2019-07-28 09:33+0000\n"
|
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
|
||||||
"X-Generator: Launchpad (build 19010)\n"
|
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
|
||||||
"Language: is\n"
|
"Language: is\n"
|
||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:1
|
#: ../data/org.x.editor.gschema.xml.in.h:1
|
||||||
@@ -1449,7 +1449,7 @@ msgstr "Letur"
|
|||||||
|
|
||||||
#: ../xed/resources/ui/xed-preferences-dialog.ui.h:4
|
#: ../xed/resources/ui/xed-preferences-dialog.ui.h:4
|
||||||
msgid "Display"
|
msgid "Display"
|
||||||
msgstr "Birting"
|
msgstr "Skoða"
|
||||||
|
|
||||||
#: ../xed/resources/ui/xed-preferences-dialog.ui.h:5
|
#: ../xed/resources/ui/xed-preferences-dialog.ui.h:5
|
||||||
msgid "Display line numbers"
|
msgid "Display line numbers"
|
||||||
@@ -2281,7 +2281,7 @@ msgstr "Sýna eða fela stöðustikuna í þessum glugga"
|
|||||||
|
|
||||||
#: ../xed/xed-ui.h:162
|
#: ../xed/xed-ui.h:162
|
||||||
msgid "Fullscreen"
|
msgid "Fullscreen"
|
||||||
msgstr ""
|
msgstr "Fylla skjáinn"
|
||||||
|
|
||||||
#: ../xed/xed-ui.h:163
|
#: ../xed/xed-ui.h:163
|
||||||
msgid "Edit text in fullscreen"
|
msgid "Edit text in fullscreen"
|
||||||
|
4
po/it.po
4
po/it.po
@@ -18,8 +18,8 @@ msgstr ""
|
|||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Launchpad-Export-Date: 2019-07-28 09:34+0000\n"
|
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
|
||||||
"X-Generator: Launchpad (build 19010)\n"
|
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
|
||||||
"Language: it\n"
|
"Language: it\n"
|
||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:1
|
#: ../data/org.x.editor.gschema.xml.in.h:1
|
||||||
|
4
po/ka.po
4
po/ka.po
@@ -16,8 +16,8 @@ msgstr ""
|
|||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
"X-Launchpad-Export-Date: 2019-07-28 09:34+0000\n"
|
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
|
||||||
"X-Generator: Launchpad (build 19010)\n"
|
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
|
||||||
"Language: ka\n"
|
"Language: ka\n"
|
||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:1
|
#: ../data/org.x.editor.gschema.xml.in.h:1
|
||||||
|
24
po/kab.po
24
po/kab.po
@@ -8,15 +8,15 @@ msgstr ""
|
|||||||
"Project-Id-Version: linuxmint\n"
|
"Project-Id-Version: linuxmint\n"
|
||||||
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
|
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"POT-Creation-Date: 2019-06-23 14:24+0200\n"
|
"POT-Creation-Date: 2019-06-23 14:24+0200\n"
|
||||||
"PO-Revision-Date: 2018-12-06 12:06+0000\n"
|
"PO-Revision-Date: 2019-12-20 12:54+0000\n"
|
||||||
"Last-Translator: Slimane Amiri <slimane.amiri@gmail.com>\n"
|
"Last-Translator: Yacine Bouklif <yacinebouklif@gmail.com>\n"
|
||||||
"Language-Team: Kabyle <kab@li.org>\n"
|
"Language-Team: Kabyle <kab@li.org>\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Launchpad-Export-Date: 2019-07-28 09:34+0000\n"
|
"X-Launchpad-Export-Date: 2020-05-11 11:00+0000\n"
|
||||||
"X-Generator: Launchpad (build 19010)\n"
|
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
|
||||||
"Language: kab\n"
|
"Language: kab\n"
|
||||||
"X-Poedit-Bookmarks: -1,43,-1,-1,-1,-1,-1,-1,-1,-1\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
|
#: ../xed/resources/ui/xed-shortcuts.ui.h:47
|
||||||
msgid "Toggle comment block"
|
msgid "Toggle comment block"
|
||||||
msgstr ""
|
msgstr "Rmed/Sens iḥder n uwennit"
|
||||||
|
|
||||||
#: ../xed/resources/ui/xed-shortcuts.ui.h:48
|
#: ../xed/resources/ui/xed-shortcuts.ui.h:48
|
||||||
msgid "Toggle comment"
|
msgid "Toggle comment"
|
||||||
msgstr ""
|
msgstr "Rmed/Sens iwenniten"
|
||||||
|
|
||||||
#: ../xed/xed-searchbar.c:92
|
#: ../xed/xed-searchbar.c:92
|
||||||
#, c-format
|
#, c-format
|
||||||
@@ -2162,7 +2162,7 @@ msgstr "Fren isemli merra"
|
|||||||
|
|
||||||
#: ../xed/xed-ui.h:105
|
#: ../xed/xed-ui.h:105
|
||||||
msgid "_Toggle Comment"
|
msgid "_Toggle Comment"
|
||||||
msgstr ""
|
msgstr "_Rmed/Sens iwenniten"
|
||||||
|
|
||||||
#: ../xed/xed-ui.h:106 ../plugins/taglist/HTML.tags.xml.in.h:41
|
#: ../xed/xed-ui.h:106 ../plugins/taglist/HTML.tags.xml.in.h:41
|
||||||
msgid "Comment"
|
msgid "Comment"
|
||||||
@@ -2170,11 +2170,11 @@ msgstr "Awennit"
|
|||||||
|
|
||||||
#: ../xed/xed-ui.h:107
|
#: ../xed/xed-ui.h:107
|
||||||
msgid "Toggle Comment _Block"
|
msgid "Toggle Comment _Block"
|
||||||
msgstr ""
|
msgstr "Rmed/Sens iḥder n uwennit"
|
||||||
|
|
||||||
#: ../xed/xed-ui.h:108
|
#: ../xed/xed-ui.h:108
|
||||||
msgid "Comment Block"
|
msgid "Comment Block"
|
||||||
msgstr ""
|
msgstr "Iḥder n iwenniten"
|
||||||
|
|
||||||
#. View menu
|
#. View menu
|
||||||
#: ../xed/xed-ui.h:111
|
#: ../xed/xed-ui.h:111
|
||||||
@@ -2297,7 +2297,7 @@ msgstr "Sken neɣ ffer tafeggagt n waddad deg usfaylu amiran"
|
|||||||
|
|
||||||
#: ../xed/xed-ui.h:162
|
#: ../xed/xed-ui.h:162
|
||||||
msgid "Fullscreen"
|
msgid "Fullscreen"
|
||||||
msgstr ""
|
msgstr "Agdil aččuran"
|
||||||
|
|
||||||
#: ../xed/xed-ui.h:163
|
#: ../xed/xed-ui.h:163
|
||||||
msgid "Edit text in fullscreen"
|
msgid "Edit text in fullscreen"
|
||||||
@@ -2374,12 +2374,12 @@ msgstr "Rmed '%s'"
|
|||||||
#: ../xed/xed-window.c:1330
|
#: ../xed/xed-window.c:1330
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Spaces: %u"
|
msgid "Spaces: %u"
|
||||||
msgstr ""
|
msgstr "Tallunin: %u"
|
||||||
|
|
||||||
#: ../xed/xed-window.c:1334
|
#: ../xed/xed-window.c:1334
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Tabs: %u"
|
msgid "Tabs: %u"
|
||||||
msgstr ""
|
msgstr "Iccaren: %u"
|
||||||
|
|
||||||
#: ../xed/xed-window.c:1411
|
#: ../xed/xed-window.c:1411
|
||||||
msgid "Use Spaces"
|
msgid "Use Spaces"
|
||||||
|
6
po/kk.po
6
po/kk.po
@@ -9,15 +9,15 @@ msgstr ""
|
|||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2019-06-23 14:24+0200\n"
|
"POT-Creation-Date: 2019-06-23 14:24+0200\n"
|
||||||
"PO-Revision-Date: 2016-07-05 12:14+0000\n"
|
"PO-Revision-Date: 2016-07-05 12:14+0000\n"
|
||||||
"Last-Translator: Murat Káribaı <d2vsd1@mail.ru>\n"
|
"Last-Translator: Murat Käribay <d2vsd1@mail.ru>\n"
|
||||||
"Language-Team: Kazakh "
|
"Language-Team: Kazakh "
|
||||||
"(http://www.transifex.com/projects/p/MATE/language/kk/)\n"
|
"(http://www.transifex.com/projects/p/MATE/language/kk/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Launchpad-Export-Date: 2019-07-28 09:34+0000\n"
|
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
|
||||||
"X-Generator: Launchpad (build 19010)\n"
|
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
|
||||||
"Language: kk\n"
|
"Language: kk\n"
|
||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:1
|
#: ../data/org.x.editor.gschema.xml.in.h:1
|
||||||
|
4
po/kn.po
4
po/kn.po
@@ -16,8 +16,8 @@ msgstr ""
|
|||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Launchpad-Export-Date: 2019-07-28 09:34+0000\n"
|
"X-Launchpad-Export-Date: 2020-05-11 11:00+0000\n"
|
||||||
"X-Generator: Launchpad (build 19010)\n"
|
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
|
||||||
"Language: kn\n"
|
"Language: kn\n"
|
||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:1
|
#: ../data/org.x.editor.gschema.xml.in.h:1
|
||||||
|
4
po/ko.po
4
po/ko.po
@@ -20,8 +20,8 @@ msgstr ""
|
|||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
"X-Launchpad-Export-Date: 2019-07-28 09:33+0000\n"
|
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
|
||||||
"X-Generator: Launchpad (build 19010)\n"
|
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
|
||||||
"Language: ko\n"
|
"Language: ko\n"
|
||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:1
|
#: ../data/org.x.editor.gschema.xml.in.h:1
|
||||||
|
4
po/ku.po
4
po/ku.po
@@ -16,8 +16,8 @@ msgstr ""
|
|||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Launchpad-Export-Date: 2019-07-28 09:34+0000\n"
|
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
|
||||||
"X-Generator: Launchpad (build 19010)\n"
|
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
|
||||||
"Language: ku\n"
|
"Language: ku\n"
|
||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:1
|
#: ../data/org.x.editor.gschema.xml.in.h:1
|
||||||
|
4
po/ky.po
4
po/ky.po
@@ -19,8 +19,8 @@ msgstr ""
|
|||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
"X-Launchpad-Export-Date: 2019-07-28 09:34+0000\n"
|
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
|
||||||
"X-Generator: Launchpad (build 19010)\n"
|
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
|
||||||
"Language: ky\n"
|
"Language: ky\n"
|
||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:1
|
#: ../data/org.x.editor.gschema.xml.in.h:1
|
||||||
|
4
po/la.po
4
po/la.po
@@ -14,8 +14,8 @@ msgstr ""
|
|||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Launchpad-Export-Date: 2019-07-28 09:34+0000\n"
|
"X-Launchpad-Export-Date: 2020-05-11 11:00+0000\n"
|
||||||
"X-Generator: Launchpad (build 19010)\n"
|
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
|
||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:1
|
#: ../data/org.x.editor.gschema.xml.in.h:1
|
||||||
msgid "Use Default Font"
|
msgid "Use Default Font"
|
||||||
|
4
po/lt.po
4
po/lt.po
@@ -19,8 +19,8 @@ msgstr ""
|
|||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
|
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
|
||||||
"(n%100<10 || n%100>=20) ? 1 : 2;\n"
|
"(n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||||
"X-Launchpad-Export-Date: 2019-07-28 09:34+0000\n"
|
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
|
||||||
"X-Generator: Launchpad (build 19010)\n"
|
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
|
||||||
"Language: lt\n"
|
"Language: lt\n"
|
||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:1
|
#: ../data/org.x.editor.gschema.xml.in.h:1
|
||||||
|
4
po/lv.po
4
po/lv.po
@@ -17,8 +17,8 @@ msgstr ""
|
|||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2;\n"
|
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2;\n"
|
||||||
"X-Launchpad-Export-Date: 2019-07-28 09:34+0000\n"
|
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
|
||||||
"X-Generator: Launchpad (build 19010)\n"
|
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
|
||||||
"Language: lv\n"
|
"Language: lv\n"
|
||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:1
|
#: ../data/org.x.editor.gschema.xml.in.h:1
|
||||||
|
43
po/mai.po
43
po/mai.po
@@ -8,16 +8,16 @@ msgstr ""
|
|||||||
"Project-Id-Version: MATE Desktop Environment\n"
|
"Project-Id-Version: MATE Desktop Environment\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2019-06-23 14:24+0200\n"
|
"POT-Creation-Date: 2019-06-23 14:24+0200\n"
|
||||||
"PO-Revision-Date: 2016-01-26 17:29+0000\n"
|
"PO-Revision-Date: 2020-05-11 10:18+0000\n"
|
||||||
"Last-Translator: Stefano Karapetsas <stefano@karapetsas.com>\n"
|
"Last-Translator: Clement Lefebvre <root@linuxmint.com>\n"
|
||||||
"Language-Team: Maithili "
|
"Language-Team: Maithili "
|
||||||
"(http://www.transifex.com/projects/p/MATE/language/mai/)\n"
|
"(http://www.transifex.com/projects/p/MATE/language/mai/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
"X-Launchpad-Export-Date: 2019-07-28 09:34+0000\n"
|
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
|
||||||
"X-Generator: Launchpad (build 19010)\n"
|
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
|
||||||
"Language: mai\n"
|
"Language: mai\n"
|
||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:1
|
#: ../data/org.x.editor.gschema.xml.in.h:1
|
||||||
@@ -580,9 +580,6 @@ msgid_plural ""
|
|||||||
msgstr[0] ""
|
msgstr[0] ""
|
||||||
"जँ अहाँ सहेजैत नहि छी तँ अंतिम %ld सकेंडमे अहाँक द्वारा कएल गेल बदलाव स्थायी "
|
"जँ अहाँ सहेजैत नहि छी तँ अंतिम %ld सकेंडमे अहाँक द्वारा कएल गेल बदलाव स्थायी "
|
||||||
"रूपसँ मेटाए जएताह."
|
"रूपसँ मेटाए जएताह."
|
||||||
msgstr[1] ""
|
|
||||||
"जँ अहाँ सहेजैत नहि छी तँ अंतिम %ld सकेंडमे अहाँक द्वारा कएल गेल बदलाव स्थायी "
|
|
||||||
"रूपसँ मेटाए जएताह."
|
|
||||||
|
|
||||||
#: ../xed/xed-close-confirmation-dialog.c:394
|
#: ../xed/xed-close-confirmation-dialog.c:394
|
||||||
msgid ""
|
msgid ""
|
||||||
@@ -602,9 +599,6 @@ msgid_plural ""
|
|||||||
msgstr[0] ""
|
msgstr[0] ""
|
||||||
"जँ अहाँ सहेजैत नहि छी तँ अंतिम मिनट आओर %ld सकेंडमे अहाँक द्वारा कएल गेल "
|
"जँ अहाँ सहेजैत नहि छी तँ अंतिम मिनट आओर %ld सकेंडमे अहाँक द्वारा कएल गेल "
|
||||||
"बदलाव स्थायी रूप सँ मेटाए जएताह."
|
"बदलाव स्थायी रूप सँ मेटाए जएताह."
|
||||||
msgstr[1] ""
|
|
||||||
"जँ अहाँ सहेजैत नहि छी तँ अंतिम मिनट आओर %ld सकेंडमे अहाँक द्वारा कएल गेल "
|
|
||||||
"बदलाव स्थायी रूप सँ मेटाए जएताह."
|
|
||||||
|
|
||||||
#: ../xed/xed-close-confirmation-dialog.c:408
|
#: ../xed/xed-close-confirmation-dialog.c:408
|
||||||
#, c-format
|
#, c-format
|
||||||
@@ -616,9 +610,6 @@ msgid_plural ""
|
|||||||
msgstr[0] ""
|
msgstr[0] ""
|
||||||
"जँ अहाँ सहेजैत नहि छी तँ अहाँक द्वारा अंतिम %ld मिनटमे कएल गेल बदलाव स्थायी "
|
"जँ अहाँ सहेजैत नहि छी तँ अहाँक द्वारा अंतिम %ld मिनटमे कएल गेल बदलाव स्थायी "
|
||||||
"रूप सँ मेटाए जएताह."
|
"रूप सँ मेटाए जएताह."
|
||||||
msgstr[1] ""
|
|
||||||
"जँ अहाँ सहेजैत नहि छी तँ अहाँक द्वारा अंतिम %ld मिनटमे कएल गेल बदलाव स्थायी "
|
|
||||||
"रूप सँ मेटाए जएताह."
|
|
||||||
|
|
||||||
#: ../xed/xed-close-confirmation-dialog.c:423
|
#: ../xed/xed-close-confirmation-dialog.c:423
|
||||||
msgid ""
|
msgid ""
|
||||||
@@ -638,9 +629,6 @@ msgid_plural ""
|
|||||||
msgstr[0] ""
|
msgstr[0] ""
|
||||||
"जँ अहाँ सहेजैत नहि छी तँ अंतिम घंटा आ %d मिनटमे अहाँक द्वारा कएल गेल बदलाव "
|
"जँ अहाँ सहेजैत नहि छी तँ अंतिम घंटा आ %d मिनटमे अहाँक द्वारा कएल गेल बदलाव "
|
||||||
"स्थायी रूप सँ मेटाए जएताह."
|
"स्थायी रूप सँ मेटाए जएताह."
|
||||||
msgstr[1] ""
|
|
||||||
"जँ अहाँ सहेजैत नहि छी तँ अंतिम घंटा आ %d मिनटमे अहाँक द्वारा कएल गेल बदलाव "
|
|
||||||
"स्थायी रूप सँ मेटाए जएताह."
|
|
||||||
|
|
||||||
#: ../xed/xed-close-confirmation-dialog.c:442
|
#: ../xed/xed-close-confirmation-dialog.c:442
|
||||||
#, c-format
|
#, c-format
|
||||||
@@ -651,9 +639,6 @@ msgid_plural ""
|
|||||||
msgstr[0] ""
|
msgstr[0] ""
|
||||||
"जँ अहाँ सहेजैत नहि छी तँ अंतिम %d घंटामे कएल गेल बदलाव स्थायी रूप सँ मेटाए "
|
"जँ अहाँ सहेजैत नहि छी तँ अंतिम %d घंटामे कएल गेल बदलाव स्थायी रूप सँ मेटाए "
|
||||||
"जएताह."
|
"जएताह."
|
||||||
msgstr[1] ""
|
|
||||||
"जँ अहाँ सहेजैत नहि छी तँ अंतिम %d घंटामे कएल गेल बदलाव स्थायी रूप सँ मेटाए "
|
|
||||||
"जएताह."
|
|
||||||
|
|
||||||
#: ../xed/xed-close-confirmation-dialog.c:483
|
#: ../xed/xed-close-confirmation-dialog.c:483
|
||||||
#, c-format
|
#, c-format
|
||||||
@@ -668,8 +653,6 @@ msgid_plural ""
|
|||||||
"There are %d documents with unsaved changes. Save changes before closing?"
|
"There are %d documents with unsaved changes. Save changes before closing?"
|
||||||
msgstr[0] ""
|
msgstr[0] ""
|
||||||
"%d दस्ताबेज बिनु सहेजल गेल बदलाव क' सँग अछि बन्न करब क' पहिले बदलाव सहेजू?"
|
"%d दस्ताबेज बिनु सहेजल गेल बदलाव क' सँग अछि बन्न करब क' पहिले बदलाव सहेजू?"
|
||||||
msgstr[1] ""
|
|
||||||
"%d दस्ताबेज बिनु सहेजल गेल बदलाव क' सँग अछि बन्न करब क' पहिले बदलाव सहेजू?"
|
|
||||||
|
|
||||||
#: ../xed/xed-close-confirmation-dialog.c:665
|
#: ../xed/xed-close-confirmation-dialog.c:665
|
||||||
msgid "S_elect the documents you want to save:"
|
msgid "S_elect the documents you want to save:"
|
||||||
@@ -692,7 +675,6 @@ msgstr "'%s' फाइल लोड कए रहल अछि…"
|
|||||||
msgid "Loading %d file…"
|
msgid "Loading %d file…"
|
||||||
msgid_plural "Loading %d files…"
|
msgid_plural "Loading %d files…"
|
||||||
msgstr[0] "%d फाइल लोड कए रहल अछि..."
|
msgstr[0] "%d फाइल लोड कए रहल अछि..."
|
||||||
msgstr[1] "%d फाइल लोड कए रहल अछि..."
|
|
||||||
|
|
||||||
#. Translators: "Open Files" is the title of the file chooser window
|
#. Translators: "Open Files" is the title of the file chooser window
|
||||||
#: ../xed/xed-commands-file.c:395
|
#: ../xed/xed-commands-file.c:395
|
||||||
@@ -745,8 +727,6 @@ msgid_plural ""
|
|||||||
"lost."
|
"lost."
|
||||||
msgstr[0] ""
|
msgstr[0] ""
|
||||||
"दस्ताबेज़मे अंतिम %ld सकेंडमे कएल गेल बदलाव हरदम क' लेल मेटाए जएताह."
|
"दस्ताबेज़मे अंतिम %ld सकेंडमे कएल गेल बदलाव हरदम क' लेल मेटाए जएताह."
|
||||||
msgstr[1] ""
|
|
||||||
"दस्ताबेज़मे अंतिम %ld सकेंडमे कएल गेल बदलाव हरदम क' लेल मेटाए जएताह."
|
|
||||||
|
|
||||||
#: ../xed/xed-commands-file.c:1265
|
#: ../xed/xed-commands-file.c:1265
|
||||||
msgid ""
|
msgid ""
|
||||||
@@ -763,8 +743,6 @@ msgid_plural ""
|
|||||||
"permanently lost."
|
"permanently lost."
|
||||||
msgstr[0] ""
|
msgstr[0] ""
|
||||||
"दस्ताबेज़मे अंतिम मिनट आ %ld सकेंडमे कएल गेल बदलाव हरदम क' लेल मेटाए जएताह."
|
"दस्ताबेज़मे अंतिम मिनट आ %ld सकेंडमे कएल गेल बदलाव हरदम क' लेल मेटाए जएताह."
|
||||||
msgstr[1] ""
|
|
||||||
"दस्ताबेज़मे अंतिम मिनट आ %ld सकेंडमे कएल गेल बदलाव हरदम क' लेल मेटाए जएताह."
|
|
||||||
|
|
||||||
#: ../xed/xed-commands-file.c:1279
|
#: ../xed/xed-commands-file.c:1279
|
||||||
#, c-format
|
#, c-format
|
||||||
@@ -775,8 +753,6 @@ msgid_plural ""
|
|||||||
"lost."
|
"lost."
|
||||||
msgstr[0] ""
|
msgstr[0] ""
|
||||||
"दस्ताबेज़मे अंतिम मिनट %ld मे कएल गेल बदलाव हरदम क' लेल मेटाए जएताह."
|
"दस्ताबेज़मे अंतिम मिनट %ld मे कएल गेल बदलाव हरदम क' लेल मेटाए जएताह."
|
||||||
msgstr[1] ""
|
|
||||||
"दस्ताबेज़मे अंतिम मिनट %ld मे कएल गेल बदलाव हरदम क' लेल मेटाए जएताह."
|
|
||||||
|
|
||||||
#: ../xed/xed-commands-file.c:1294
|
#: ../xed/xed-commands-file.c:1294
|
||||||
msgid ""
|
msgid ""
|
||||||
@@ -793,8 +769,6 @@ msgid_plural ""
|
|||||||
"permanently lost."
|
"permanently lost."
|
||||||
msgstr[0] ""
|
msgstr[0] ""
|
||||||
"दस्ताबेज़मे अंतिम घंटा आ %d मिनटमे कएल गेल बदलाव हरदम क' लेल मेटाए जएताह."
|
"दस्ताबेज़मे अंतिम घंटा आ %d मिनटमे कएल गेल बदलाव हरदम क' लेल मेटाए जएताह."
|
||||||
msgstr[1] ""
|
|
||||||
"दस्ताबेज़मे अंतिम घंटा आ %d मिनटमे कएल गेल बदलाव हरदम क' लेल मेटाए जएताह."
|
|
||||||
|
|
||||||
#: ../xed/xed-commands-file.c:1313
|
#: ../xed/xed-commands-file.c:1313
|
||||||
#, c-format
|
#, c-format
|
||||||
@@ -804,8 +778,6 @@ msgid_plural ""
|
|||||||
"Changes made to the document in the last %d hours will be permanently lost."
|
"Changes made to the document in the last %d hours will be permanently lost."
|
||||||
msgstr[0] ""
|
msgstr[0] ""
|
||||||
"दस्ताबेज़मे अंतिम घंटा %d मे कएल गेल बदलाव हरदम क' लेल मेटाए जएताह."
|
"दस्ताबेज़मे अंतिम घंटा %d मे कएल गेल बदलाव हरदम क' लेल मेटाए जएताह."
|
||||||
msgstr[1] ""
|
|
||||||
"दस्ताबेज़मे अंतिम घंटा %d मे कएल गेल बदलाव हरदम क' लेल मेटाए जएताह."
|
|
||||||
|
|
||||||
#: ../xed/xed-commands-file.c:1334
|
#: ../xed/xed-commands-file.c:1334
|
||||||
msgid "_Revert"
|
msgid "_Revert"
|
||||||
@@ -1794,7 +1766,6 @@ msgstr ""
|
|||||||
msgid "Found and replaced %d occurrence"
|
msgid "Found and replaced %d occurrence"
|
||||||
msgid_plural "Found and replaced %d occurrences"
|
msgid_plural "Found and replaced %d occurrences"
|
||||||
msgstr[0] "%d आवृतिकेँ पाओलक आ विस्थापित कएलक."
|
msgstr[0] "%d आवृतिकेँ पाओलक आ विस्थापित कएलक."
|
||||||
msgstr[1] "%d आवृतिकेँ पाओलक आ विस्थापित कएलक."
|
|
||||||
|
|
||||||
#: ../xed/xed-searchbar.c:102
|
#: ../xed/xed-searchbar.c:102
|
||||||
msgid "Found and replaced one occurrence"
|
msgid "Found and replaced one occurrence"
|
||||||
@@ -1843,7 +1814,6 @@ msgstr " पं. %d, स्त. %d"
|
|||||||
msgid "There is a tab with errors"
|
msgid "There is a tab with errors"
|
||||||
msgid_plural "There are %d tabs with errors"
|
msgid_plural "There are %d tabs with errors"
|
||||||
msgstr[0] "त्रुटि क' सँग एकटा टैब अछि."
|
msgstr[0] "त्रुटि क' सँग एकटा टैब अछि."
|
||||||
msgstr[1] "त्रुटि क' सँग %d टैब अछि."
|
|
||||||
|
|
||||||
#: ../xed/xed-tab-label.c:276
|
#: ../xed/xed-tab-label.c:276
|
||||||
msgid "Close document"
|
msgid "Close document"
|
||||||
@@ -2563,8 +2533,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: ../plugins/filebrowser/xed-file-browser-plugin.c:992
|
#: ../plugins/filebrowser/xed-file-browser-plugin.c:992
|
||||||
msgid "Are you sure you want to permanently delete the selected files?"
|
msgid "Are you sure you want to permanently delete the selected files?"
|
||||||
msgstr ""
|
msgstr "की अहाँ समझैत छी जे अहाँ चुनल फाइल स्थायी रूपेँ मेटाएनाइ चाहैत छी?"
|
||||||
"की अहाँ समझैत छी जे अहाँ \"%s\" चुनल फाइल स्थायी रूपेँ मेटाएनाइ चाहैत छी?"
|
|
||||||
|
|
||||||
#: ../plugins/filebrowser/xed-file-browser-plugin.c:995
|
#: ../plugins/filebrowser/xed-file-browser-plugin.c:995
|
||||||
msgid "If you delete an item, it is permanently lost."
|
msgid "If you delete an item, it is permanently lost."
|
||||||
|
4
po/mg.po
4
po/mg.po
@@ -16,8 +16,8 @@ msgstr ""
|
|||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
"X-Launchpad-Export-Date: 2019-07-28 09:34+0000\n"
|
"X-Launchpad-Export-Date: 2020-05-11 11:00+0000\n"
|
||||||
"X-Generator: Launchpad (build 19010)\n"
|
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
|
||||||
"Language: mg\n"
|
"Language: mg\n"
|
||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:1
|
#: ../data/org.x.editor.gschema.xml.in.h:1
|
||||||
|
4
po/mi.po
4
po/mi.po
@@ -15,8 +15,8 @@ msgstr ""
|
|||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||||
"X-Launchpad-Export-Date: 2019-07-28 09:34+0000\n"
|
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
|
||||||
"X-Generator: Launchpad (build 19010)\n"
|
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
|
||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:1
|
#: ../data/org.x.editor.gschema.xml.in.h:1
|
||||||
msgid "Use Default Font"
|
msgid "Use Default Font"
|
||||||
|
4
po/mk.po
4
po/mk.po
@@ -16,8 +16,8 @@ msgstr ""
|
|||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n"
|
"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n"
|
||||||
"X-Launchpad-Export-Date: 2019-07-28 09:34+0000\n"
|
"X-Launchpad-Export-Date: 2020-05-11 11:00+0000\n"
|
||||||
"X-Generator: Launchpad (build 19010)\n"
|
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
|
||||||
"Language: mk\n"
|
"Language: mk\n"
|
||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:1
|
#: ../data/org.x.editor.gschema.xml.in.h:1
|
||||||
|
4
po/ml.po
4
po/ml.po
@@ -16,8 +16,8 @@ msgstr ""
|
|||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Launchpad-Export-Date: 2019-07-28 09:33+0000\n"
|
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
|
||||||
"X-Generator: Launchpad (build 19010)\n"
|
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
|
||||||
"Language: ml\n"
|
"Language: ml\n"
|
||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:1
|
#: ../data/org.x.editor.gschema.xml.in.h:1
|
||||||
|
4
po/mn.po
4
po/mn.po
@@ -16,8 +16,8 @@ msgstr ""
|
|||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
"X-Launchpad-Export-Date: 2019-07-28 09:33+0000\n"
|
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
|
||||||
"X-Generator: Launchpad (build 19010)\n"
|
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
|
||||||
"Language: mn\n"
|
"Language: mn\n"
|
||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:1
|
#: ../data/org.x.editor.gschema.xml.in.h:1
|
||||||
|
4
po/mr.po
4
po/mr.po
@@ -17,8 +17,8 @@ msgstr ""
|
|||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Launchpad-Export-Date: 2019-07-28 09:34+0000\n"
|
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
|
||||||
"X-Generator: Launchpad (build 19010)\n"
|
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
|
||||||
"Language: mr\n"
|
"Language: mr\n"
|
||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:1
|
#: ../data/org.x.editor.gschema.xml.in.h:1
|
||||||
|
4
po/ms.po
4
po/ms.po
@@ -17,8 +17,8 @@ msgstr ""
|
|||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Launchpad-Export-Date: 2019-07-28 09:34+0000\n"
|
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
|
||||||
"X-Generator: Launchpad (build 19010)\n"
|
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
|
||||||
"Language: ms\n"
|
"Language: ms\n"
|
||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:1
|
#: ../data/org.x.editor.gschema.xml.in.h:1
|
||||||
|
4
po/my.po
4
po/my.po
@@ -15,8 +15,8 @@ msgstr ""
|
|||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
"X-Launchpad-Export-Date: 2019-07-28 09:34+0000\n"
|
"X-Launchpad-Export-Date: 2020-05-11 11:00+0000\n"
|
||||||
"X-Generator: Launchpad (build 19010)\n"
|
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
|
||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:1
|
#: ../data/org.x.editor.gschema.xml.in.h:1
|
||||||
msgid "Use Default Font"
|
msgid "Use Default Font"
|
||||||
|
40
po/nb.po
40
po/nb.po
@@ -8,7 +8,7 @@ msgstr ""
|
|||||||
"Project-Id-Version: MATE Desktop Environment\n"
|
"Project-Id-Version: MATE Desktop Environment\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2019-06-23 14:24+0200\n"
|
"POT-Creation-Date: 2019-06-23 14:24+0200\n"
|
||||||
"PO-Revision-Date: 2018-12-29 22:26+0000\n"
|
"PO-Revision-Date: 2019-12-09 21:21+0000\n"
|
||||||
"Last-Translator: Erlend Østlie <erlendandreas12368@gmail.com>\n"
|
"Last-Translator: Erlend Østlie <erlendandreas12368@gmail.com>\n"
|
||||||
"Language-Team: Norwegian Bokmål "
|
"Language-Team: Norwegian Bokmål "
|
||||||
"(http://www.transifex.com/projects/p/MATE/language/nb/)\n"
|
"(http://www.transifex.com/projects/p/MATE/language/nb/)\n"
|
||||||
@@ -16,8 +16,8 @@ msgstr ""
|
|||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Launchpad-Export-Date: 2019-07-28 09:34+0000\n"
|
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
|
||||||
"X-Generator: Launchpad (build 19010)\n"
|
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
|
||||||
"Language: nb\n"
|
"Language: nb\n"
|
||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:1
|
#: ../data/org.x.editor.gschema.xml.in.h:1
|
||||||
@@ -1371,7 +1371,7 @@ msgstr "_Velg"
|
|||||||
|
|
||||||
#: ../xed/resources/ui/xed-highlight-mode-selector.ui.h:1
|
#: ../xed/resources/ui/xed-highlight-mode-selector.ui.h:1
|
||||||
msgid "Search highlight mode…"
|
msgid "Search highlight mode…"
|
||||||
msgstr ""
|
msgstr "Søk etter uthevingsmodus ..."
|
||||||
|
|
||||||
#: ../xed/resources/ui/xed-encodings-dialog.ui.h:1
|
#: ../xed/resources/ui/xed-encodings-dialog.ui.h:1
|
||||||
msgid "Character encodings"
|
msgid "Character encodings"
|
||||||
@@ -1447,7 +1447,7 @@ msgstr "Linjebryting"
|
|||||||
|
|
||||||
#: ../xed/resources/ui/xed-preferences-dialog.ui.h:18
|
#: ../xed/resources/ui/xed-preferences-dialog.ui.h:18
|
||||||
msgid "Split words over two lines"
|
msgid "Split words over two lines"
|
||||||
msgstr ""
|
msgstr "Del ord over to linjer"
|
||||||
|
|
||||||
#: ../xed/resources/ui/xed-preferences-dialog.ui.h:19
|
#: ../xed/resources/ui/xed-preferences-dialog.ui.h:19
|
||||||
msgid "Tab scrolling"
|
msgid "Tab scrolling"
|
||||||
@@ -1641,7 +1641,7 @@ msgstr "Bytt til første - niende dokument"
|
|||||||
|
|
||||||
#: ../xed/resources/ui/xed-shortcuts.ui.h:12
|
#: ../xed/resources/ui/xed-shortcuts.ui.h:12
|
||||||
msgid "Windows and Panes"
|
msgid "Windows and Panes"
|
||||||
msgstr ""
|
msgstr "Vinduer og paneler"
|
||||||
|
|
||||||
#: ../xed/resources/ui/xed-shortcuts.ui.h:13
|
#: ../xed/resources/ui/xed-shortcuts.ui.h:13
|
||||||
msgid "Show side pane"
|
msgid "Show side pane"
|
||||||
@@ -1681,7 +1681,7 @@ msgstr "Gå til linje"
|
|||||||
|
|
||||||
#: ../xed/resources/ui/xed-shortcuts.ui.h:22
|
#: ../xed/resources/ui/xed-shortcuts.ui.h:22
|
||||||
msgid "Copy and Paste"
|
msgid "Copy and Paste"
|
||||||
msgstr ""
|
msgstr "Kopier og lim inn"
|
||||||
|
|
||||||
#: ../xed/resources/ui/xed-shortcuts.ui.h:23
|
#: ../xed/resources/ui/xed-shortcuts.ui.h:23
|
||||||
msgid "Copy selected text to clipboard"
|
msgid "Copy selected text to clipboard"
|
||||||
@@ -1697,7 +1697,7 @@ msgstr "Lim inn tekst fra utklippstavlen"
|
|||||||
|
|
||||||
#: ../xed/resources/ui/xed-shortcuts.ui.h:26
|
#: ../xed/resources/ui/xed-shortcuts.ui.h:26
|
||||||
msgid "Undo and Redo"
|
msgid "Undo and Redo"
|
||||||
msgstr ""
|
msgstr "Angre og gjenopprett"
|
||||||
|
|
||||||
#: ../xed/resources/ui/xed-shortcuts.ui.h:27
|
#: ../xed/resources/ui/xed-shortcuts.ui.h:27
|
||||||
msgid "Undo previous command"
|
msgid "Undo previous command"
|
||||||
@@ -1717,7 +1717,7 @@ msgstr "Velg all tekst"
|
|||||||
|
|
||||||
#: ../xed/resources/ui/xed-shortcuts.ui.h:31
|
#: ../xed/resources/ui/xed-shortcuts.ui.h:31
|
||||||
msgid "Tools"
|
msgid "Tools"
|
||||||
msgstr ""
|
msgstr "Verktøy"
|
||||||
|
|
||||||
#: ../xed/resources/ui/xed-shortcuts.ui.h:32
|
#: ../xed/resources/ui/xed-shortcuts.ui.h:32
|
||||||
msgid "Check spelling"
|
msgid "Check spelling"
|
||||||
@@ -1981,11 +1981,11 @@ msgstr "Om denne applikasjonen"
|
|||||||
|
|
||||||
#: ../xed/xed-ui.h:67
|
#: ../xed/xed-ui.h:67
|
||||||
msgid "_Keyboard Shortcuts"
|
msgid "_Keyboard Shortcuts"
|
||||||
msgstr "_Hurtigtaster"
|
msgstr "_Tastatursnarveier"
|
||||||
|
|
||||||
#: ../xed/xed-ui.h:68
|
#: ../xed/xed-ui.h:68
|
||||||
msgid "Show the keyboard shortcuts dialog"
|
msgid "Show the keyboard shortcuts dialog"
|
||||||
msgstr "Vis dialogen for hurtigtaster"
|
msgstr "Vis dialogen for tastatursnarveier"
|
||||||
|
|
||||||
#: ../xed/xed-ui.h:72
|
#: ../xed/xed-ui.h:72
|
||||||
msgid "Leave fullscreen mode"
|
msgid "Leave fullscreen mode"
|
||||||
@@ -2223,7 +2223,7 @@ msgstr "Vis eller skjul statuslinjen i aktivt vindu"
|
|||||||
|
|
||||||
#: ../xed/xed-ui.h:162
|
#: ../xed/xed-ui.h:162
|
||||||
msgid "Fullscreen"
|
msgid "Fullscreen"
|
||||||
msgstr ""
|
msgstr "Fullskjerm"
|
||||||
|
|
||||||
#: ../xed/xed-ui.h:163
|
#: ../xed/xed-ui.h:163
|
||||||
msgid "Edit text in fullscreen"
|
msgid "Edit text in fullscreen"
|
||||||
@@ -2300,7 +2300,7 @@ msgstr "Aktiver «%s»"
|
|||||||
#: ../xed/xed-window.c:1330
|
#: ../xed/xed-window.c:1330
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Spaces: %u"
|
msgid "Spaces: %u"
|
||||||
msgstr ""
|
msgstr "Mellomrom: %u"
|
||||||
|
|
||||||
#: ../xed/xed-window.c:1334
|
#: ../xed/xed-window.c:1334
|
||||||
#, c-format
|
#, c-format
|
||||||
@@ -2403,7 +2403,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: ../plugins/filebrowser/org.x.editor.plugins.filebrowser.gschema.xml.h:3
|
#: ../plugins/filebrowser/org.x.editor.plugins.filebrowser.gschema.xml.h:3
|
||||||
msgid "File Browser Filter Mode"
|
msgid "File Browser Filter Mode"
|
||||||
msgstr "Filtermodus for filhåndterer"
|
msgstr "Filtermodus for filbehandler"
|
||||||
|
|
||||||
#: ../plugins/filebrowser/org.x.editor.plugins.filebrowser.gschema.xml.h:4
|
#: ../plugins/filebrowser/org.x.editor.plugins.filebrowser.gschema.xml.h:4
|
||||||
msgid ""
|
msgid ""
|
||||||
@@ -2419,7 +2419,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: ../plugins/filebrowser/org.x.editor.plugins.filebrowser.gschema.xml.h:5
|
#: ../plugins/filebrowser/org.x.editor.plugins.filebrowser.gschema.xml.h:5
|
||||||
msgid "File Browser Filter Pattern"
|
msgid "File Browser Filter Pattern"
|
||||||
msgstr "Filtermønster for filhåndterer"
|
msgstr "Filtermønster for filbehandler"
|
||||||
|
|
||||||
#: ../plugins/filebrowser/org.x.editor.plugins.filebrowser.gschema.xml.h:6
|
#: ../plugins/filebrowser/org.x.editor.plugins.filebrowser.gschema.xml.h:6
|
||||||
msgid ""
|
msgid ""
|
||||||
@@ -2446,12 +2446,12 @@ msgid ""
|
|||||||
"Open the tree view when the file browser plugin gets loaded instead of the "
|
"Open the tree view when the file browser plugin gets loaded instead of the "
|
||||||
"bookmarks view"
|
"bookmarks view"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Åpne trevisning når filhåndterertillegget lastes i stedet for "
|
"Åpne trevisning når filbehandlertillegget lastes i stedet for "
|
||||||
"bokmerkevisning."
|
"bokmerkevisning."
|
||||||
|
|
||||||
#: ../plugins/filebrowser/org.x.editor.plugins.filebrowser.gschema.xml.h:11
|
#: ../plugins/filebrowser/org.x.editor.plugins.filebrowser.gschema.xml.h:11
|
||||||
msgid "File Browser Root Directory"
|
msgid "File Browser Root Directory"
|
||||||
msgstr "Rotkatalog for filhåndterer"
|
msgstr "Rotkatalog for filbehandler"
|
||||||
|
|
||||||
#: ../plugins/filebrowser/org.x.editor.plugins.filebrowser.gschema.xml.h:12
|
#: ../plugins/filebrowser/org.x.editor.plugins.filebrowser.gschema.xml.h:12
|
||||||
msgid ""
|
msgid ""
|
||||||
@@ -2463,7 +2463,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: ../plugins/filebrowser/org.x.editor.plugins.filebrowser.gschema.xml.h:13
|
#: ../plugins/filebrowser/org.x.editor.plugins.filebrowser.gschema.xml.h:13
|
||||||
msgid "File Browser Virtual Root Directory"
|
msgid "File Browser Virtual Root Directory"
|
||||||
msgstr "Virtuell rotkatalog for filhåndterer"
|
msgstr "Virtuell rotkatalog for filbehandler"
|
||||||
|
|
||||||
#: ../plugins/filebrowser/org.x.editor.plugins.filebrowser.gschema.xml.h:14
|
#: ../plugins/filebrowser/org.x.editor.plugins.filebrowser.gschema.xml.h:14
|
||||||
msgid ""
|
msgid ""
|
||||||
@@ -2524,7 +2524,7 @@ msgstr "En feil oppsto ved sletting av en fil eller katalog"
|
|||||||
|
|
||||||
#: ../plugins/filebrowser/xed-file-browser-plugin.c:683
|
#: ../plugins/filebrowser/xed-file-browser-plugin.c:683
|
||||||
msgid "An error occurred while opening a directory in the file manager"
|
msgid "An error occurred while opening a directory in the file manager"
|
||||||
msgstr "En feil oppsto ved åpning av en katalog i filhåndtereren"
|
msgstr "En feil oppsto ved åpning av en katalog i filbehandleren"
|
||||||
|
|
||||||
#: ../plugins/filebrowser/xed-file-browser-plugin.c:686
|
#: ../plugins/filebrowser/xed-file-browser-plugin.c:686
|
||||||
msgid "An error occurred while setting a root directory"
|
msgid "An error occurred while setting a root directory"
|
||||||
@@ -2694,7 +2694,7 @@ msgstr "_Vis mappe"
|
|||||||
#: ../plugins/filebrowser/xed-file-browser-widget.c:799
|
#: ../plugins/filebrowser/xed-file-browser-widget.c:799
|
||||||
#: ../plugins/filebrowser/xed-file-browser-widget.c:813
|
#: ../plugins/filebrowser/xed-file-browser-widget.c:813
|
||||||
msgid "View folder in file manager"
|
msgid "View folder in file manager"
|
||||||
msgstr "Vis mappe i filhåndterer"
|
msgstr "Vis mappe i filbehandler"
|
||||||
|
|
||||||
#: ../plugins/filebrowser/xed-file-browser-widget.c:804
|
#: ../plugins/filebrowser/xed-file-browser-widget.c:804
|
||||||
msgid "Show _Hidden"
|
msgid "Show _Hidden"
|
||||||
|
@@ -16,8 +16,8 @@ msgstr ""
|
|||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Launchpad-Export-Date: 2019-07-28 09:34+0000\n"
|
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
|
||||||
"X-Generator: Launchpad (build 19010)\n"
|
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
|
||||||
"Language: nds\n"
|
"Language: nds\n"
|
||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:1
|
#: ../data/org.x.editor.gschema.xml.in.h:1
|
||||||
|
4
po/ne.po
4
po/ne.po
@@ -16,8 +16,8 @@ msgstr ""
|
|||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Launchpad-Export-Date: 2019-07-28 09:34+0000\n"
|
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
|
||||||
"X-Generator: Launchpad (build 19010)\n"
|
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
|
||||||
"Language: ne\n"
|
"Language: ne\n"
|
||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:1
|
#: ../data/org.x.editor.gschema.xml.in.h:1
|
||||||
|
4
po/nl.po
4
po/nl.po
@@ -17,8 +17,8 @@ msgstr ""
|
|||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Launchpad-Export-Date: 2019-07-28 09:33+0000\n"
|
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
|
||||||
"X-Generator: Launchpad (build 19010)\n"
|
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
|
||||||
"Language: nl\n"
|
"Language: nl\n"
|
||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:1
|
#: ../data/org.x.editor.gschema.xml.in.h:1
|
||||||
|
4
po/nn.po
4
po/nn.po
@@ -16,8 +16,8 @@ msgstr ""
|
|||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Launchpad-Export-Date: 2019-07-28 09:34+0000\n"
|
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
|
||||||
"X-Generator: Launchpad (build 19010)\n"
|
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
|
||||||
"Language: nn\n"
|
"Language: nn\n"
|
||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:1
|
#: ../data/org.x.editor.gschema.xml.in.h:1
|
||||||
|
4
po/oc.po
4
po/oc.po
@@ -16,8 +16,8 @@ msgstr ""
|
|||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||||
"X-Launchpad-Export-Date: 2019-07-28 09:34+0000\n"
|
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
|
||||||
"X-Generator: Launchpad (build 19010)\n"
|
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
|
||||||
"Language: oc\n"
|
"Language: oc\n"
|
||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:1
|
#: ../data/org.x.editor.gschema.xml.in.h:1
|
||||||
|
4
po/or.po
4
po/or.po
@@ -16,8 +16,8 @@ msgstr ""
|
|||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n!=1;\n"
|
"Plural-Forms: nplurals=2; plural=n!=1;\n"
|
||||||
"X-Launchpad-Export-Date: 2019-07-28 09:34+0000\n"
|
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
|
||||||
"X-Generator: Launchpad (build 19010)\n"
|
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
|
||||||
"Language: or\n"
|
"Language: or\n"
|
||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:1
|
#: ../data/org.x.editor.gschema.xml.in.h:1
|
||||||
|
4
po/pa.po
4
po/pa.po
@@ -16,8 +16,8 @@ msgstr ""
|
|||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Launchpad-Export-Date: 2019-07-28 09:34+0000\n"
|
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
|
||||||
"X-Generator: Launchpad (build 19010)\n"
|
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
|
||||||
"Language: pa\n"
|
"Language: pa\n"
|
||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:1
|
#: ../data/org.x.editor.gschema.xml.in.h:1
|
||||||
|
4
po/pl.po
4
po/pl.po
@@ -18,8 +18,8 @@ msgstr ""
|
|||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
|
"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
|
||||||
"|| n%100>=20) ? 1 : 2;\n"
|
"|| n%100>=20) ? 1 : 2;\n"
|
||||||
"X-Launchpad-Export-Date: 2019-07-28 09:34+0000\n"
|
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
|
||||||
"X-Generator: Launchpad (build 19010)\n"
|
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
|
||||||
"Language: pl\n"
|
"Language: pl\n"
|
||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:1
|
#: ../data/org.x.editor.gschema.xml.in.h:1
|
||||||
|
4
po/ps.po
4
po/ps.po
@@ -16,8 +16,8 @@ msgstr ""
|
|||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n!=1;\n"
|
"Plural-Forms: nplurals=2; plural=n!=1;\n"
|
||||||
"X-Launchpad-Export-Date: 2019-07-28 09:34+0000\n"
|
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
|
||||||
"X-Generator: Launchpad (build 19010)\n"
|
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
|
||||||
"Language: ps\n"
|
"Language: ps\n"
|
||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:1
|
#: ../data/org.x.editor.gschema.xml.in.h:1
|
||||||
|
10
po/pt.po
10
po/pt.po
@@ -12,15 +12,15 @@ msgstr ""
|
|||||||
"Project-Id-Version: MATE Desktop Environment\n"
|
"Project-Id-Version: MATE Desktop Environment\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2019-06-23 14:24+0200\n"
|
"POT-Creation-Date: 2019-06-23 14:24+0200\n"
|
||||||
"PO-Revision-Date: 2019-07-02 22:12+0000\n"
|
"PO-Revision-Date: 2019-12-08 22:06+0000\n"
|
||||||
"Last-Translator: Pereira <Unknown>\n"
|
"Last-Translator: Hugo Carvalho <hugokarvalho@hotmail.com>\n"
|
||||||
"Language-Team: Portuguese pt/)\n"
|
"Language-Team: Portuguese pt/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Launchpad-Export-Date: 2019-07-28 09:34+0000\n"
|
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
|
||||||
"X-Generator: Launchpad (build 19010)\n"
|
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
|
||||||
"Language: pt\n"
|
"Language: pt\n"
|
||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:1
|
#: ../data/org.x.editor.gschema.xml.in.h:1
|
||||||
@@ -58,7 +58,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:6
|
#: ../data/org.x.editor.gschema.xml.in.h:6
|
||||||
msgid "Prefer Dark Theme"
|
msgid "Prefer Dark Theme"
|
||||||
msgstr "Prefira o tema escuro"
|
msgstr "Preferir o tema escuro"
|
||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:7
|
#: ../data/org.x.editor.gschema.xml.in.h:7
|
||||||
msgid ""
|
msgid ""
|
||||||
|
@@ -19,8 +19,8 @@ msgstr ""
|
|||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||||
"X-Launchpad-Export-Date: 2019-07-28 09:34+0000\n"
|
"X-Launchpad-Export-Date: 2020-05-11 11:00+0000\n"
|
||||||
"X-Generator: Launchpad (build 19010)\n"
|
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
|
||||||
"Language: pt_BR\n"
|
"Language: pt_BR\n"
|
||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:1
|
#: ../data/org.x.editor.gschema.xml.in.h:1
|
||||||
|
4
po/ru.po
4
po/ru.po
@@ -19,8 +19,8 @@ msgstr ""
|
|||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
|
"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"
|
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||||
"X-Launchpad-Export-Date: 2019-07-28 09:34+0000\n"
|
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
|
||||||
"X-Generator: Launchpad (build 19010)\n"
|
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
|
||||||
"Language: ru\n"
|
"Language: ru\n"
|
||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:1
|
#: ../data/org.x.editor.gschema.xml.in.h:1
|
||||||
|
4
po/rw.po
4
po/rw.po
@@ -23,8 +23,8 @@ msgstr ""
|
|||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n!=1;\n"
|
"Plural-Forms: nplurals=2; plural=n!=1;\n"
|
||||||
"X-Launchpad-Export-Date: 2019-07-28 09:34+0000\n"
|
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
|
||||||
"X-Generator: Launchpad (build 19010)\n"
|
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
|
||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:1
|
#: ../data/org.x.editor.gschema.xml.in.h:1
|
||||||
msgid "Use Default Font"
|
msgid "Use Default Font"
|
||||||
|
4
po/si.po
4
po/si.po
@@ -16,8 +16,8 @@ msgstr ""
|
|||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Launchpad-Export-Date: 2019-07-28 09:34+0000\n"
|
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
|
||||||
"X-Generator: Launchpad (build 19010)\n"
|
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
|
||||||
"Language: si\n"
|
"Language: si\n"
|
||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:1
|
#: ../data/org.x.editor.gschema.xml.in.h:1
|
||||||
|
4
po/sk.po
4
po/sk.po
@@ -20,8 +20,8 @@ msgstr ""
|
|||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=3; plural=(n==1) ? 1 : (n>=2 && n<=4) ? 2 : 0;\n"
|
"Plural-Forms: nplurals=3; plural=(n==1) ? 1 : (n>=2 && n<=4) ? 2 : 0;\n"
|
||||||
"X-Launchpad-Export-Date: 2019-07-28 09:34+0000\n"
|
"X-Launchpad-Export-Date: 2020-05-11 10:59+0000\n"
|
||||||
"X-Generator: Launchpad (build 19010)\n"
|
"X-Generator: Launchpad (build fbdff7602bd10fb883bf7e2ddcc7fd5a16f60398)\n"
|
||||||
"Language: sk\n"
|
"Language: sk\n"
|
||||||
|
|
||||||
#: ../data/org.x.editor.gschema.xml.in.h:1
|
#: ../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
Reference in New Issue
Block a user