diff --git a/help/C/figures/xedit_recent_files_menu_icon.png b/help/C/figures/xedit_recent_files_menu_icon.png index 322e5c4..4b36c53 100644 Binary files a/help/C/figures/xedit_recent_files_menu_icon.png and b/help/C/figures/xedit_recent_files_menu_icon.png differ diff --git a/help/C/figures/xedit_window.png b/help/C/figures/xedit_window.png index ba9b50a..9c7c90e 100644 Binary files a/help/C/figures/xedit_window.png and b/help/C/figures/xedit_window.png differ diff --git a/help/C/index.docbook b/help/C/index.docbook index 3ca14f8..f9cf382 100644 --- a/help/C/index.docbook +++ b/help/C/index.docbook @@ -6,119 +6,17 @@ ]> -
- Xedit Manual<!-- not using app entity because of lowercase ugliness --> - - 2015 - MATE Documentation Project - - 2007 - GNOME Documentation Project - - 2002 - 2003 - 2004 - Sun Microsystems - - 2000 - Eric Baudais - - - - MATE Documentation Project - - - GNOME Documentation Project - + Text Editor - - - MATE Documentation Project - - - MATE Desktop - - - - Joachim - Noreiko - - - GNOME Documentation Project - - - GNOME - - - - Hal - Canary - Added the Shortcut Keys Table - - - Sun Java Desktop System Documentation Team - - - Sun Microsystems -
gdocteam@sun.com
-
-
- - Eric - Baudais - - GNOME Documentation Project -
baudais@okstate.edu
-
-
- - Baris - Cicek provided information from earlier revisions of the xedit application. - Acknowledgements - - - Ajit - George provided information about plugins. - Acknowledgements - - - - -
- @@ -224,17 +122,6 @@ This manual describes version &appversion; of &app;. - - Feedback - To report a bug or make a suggestion regarding the &app; application or this manual, follow the directions in the MATE Feedback Page. - - - - - &app; is a text editor for the MATE Desktop featuring basic yet - robust capabilities such as printing, spell checking, find and replace, - and syntax highlighting. More advanced features are available as plugins. -
xedit text editor @@ -333,14 +220,12 @@ Bottom Pane - The bottom pane is used by programming tools such as the Python Console plugin to display output. By default the bottom pane is not shown. To show it, choose ViewBottom Pane. When you right-click in the &app; window, the application displays a popup menu. The popup menu contains the most common text editing commands. - Like other MATE applications, actions in &app; can be performed in several ways: with the menu, with the toolbar, or with shortcut keys. Shortcuts keys common to all applications are listed in the User Guide. @@ -406,9 +291,8 @@ Click Open. - Valid types of URI include http:, ftp:, file:, and all of the methods supported by mate-vfs. + Valid types of URI include http:, ftp:, file:, and all of the methods supported by gvfs. Files from some types of URI are opened as read-only, and any changes you make must be saved to a different location. HTTP only allows files to be read. Files opened from FTP are read-only because because not all FTP servers may correctly work with saving remote files. - Saving to FTP servers can be enabled with Configuration Editor, setting the key /apps/xedit/preferences/editor/save/writable_vfs_schemes, but this may cause errors. @@ -874,7 +758,6 @@ Shortcut Keys Use shortcut keys to perform common tasks more quickly than with the mouse and menus. The following tables list all of &app;'s shortcut keys. - For more on shortcut keys, see the Desktop User Guide. Tabs @@ -1375,9 +1258,6 @@ Document Statistics shows the number of lines, words, and characters in the document. - - External Tools allows you to execute external commands from &app;. - File Browser allows you to browse your files and folders in the side pane. @@ -1390,12 +1270,6 @@ Modelines allows you to set editing preferences for individual documents, and supports Emacs, Kate and Vim-style modelines. - - Python Console allows you to run commands in the python programming language. - - - Snippets allows you to store frequently-used pieces of text and insert them quickly into a document. - Sort arranges selected lines of text into alphabetical order. @@ -1407,7 +1281,6 @@ - For more information on creating plugins, see the &app; website. @@ -1491,119 +1364,6 @@ - - External Tools Plugin - The External Tools plugin allows you to execute external commands from &app;. You can pipe some content into a command and exploit its output (for example, sed), or launch a predefined command (for example, make). - Use the External Tools Manager to create and edit commands. To run an external command, choose it from the Tools menu. - - - Built-in Commands - The following commands are provided with the External Tools plugin: - - Build - - Runs make in the current document's directory. - - - Directory Listing - - Lists the contents of the current document's directory in a new document. - - - Environment Variables - - Displays the environment variables list in the bottom pane. - - - Grep - - Searches for a term in all files in the current document directory, using pattern matching. Results are shown in the bottom pane. - - - Remove Trailing Spaces - - Removes all spaces from the end of lines in the document. - - - - - - - Defining a Command - To add an external command, choose ToolsExternal Tools. - In the External Tools Manager window, click New. You can speficy the following details for the new command: - - Description - - This description is shown in the statusbar when the menu command is chosen. - - - Accelerator - - Enter a keyboard shortcut for the command. - - - Commands - - The actual commands to be run. Several &app; environment variables can be used to pass content to these commands: see . - - - Input - - The content to give to the commands (as stdin): the entire text of the current document, the current selection, line, or word. - - - Output - - What to do with the output of the commands: display in the bottom pane, put in a new document, or place in the current document, at the end, at the cursor position, or replacing the selection or the entire document. - - - Applicability - - Determines which sort of documents can be affected by the command, for example whether saved or not, and local or remote. - - - - - - - - Editing and Removing Tools - To edit a tool, select it in the list and make changes to its properties. - To rename a tool, click it again in the list. - To restore a built-in tool that you have changed, press Revert. - To remove a tool, select it in the list and press Remove. You can not remove built-in tools, only those you have created yourself. - - - - Variables - You can use the following variables in the Commands field of the command definition: - - - XEDIT_CURRENT_DOCUMENT_URI - - - XEDIT_CURRENT_DOCUMENT_NAME - - - XEDIT_CURRENT_DOCUMENT_SCHEME - - - XEDIT_CURRENT_DOCUMENT_PATH - - - XEDIT_CURRENT_DOCUMENT_DIR - - - XEDIT_DOCUMENTS_URI - - - XEDIT_DOCUMENTS_PATH - - - - - File Browser Plugin The File Browser Plugin shows your files and folders in the side pane, allowing you to quickly open files. @@ -1737,149 +1497,6 @@ - - Python Console Plugin - The Python Console Plugin allows you to run commands in the python programming language from &app;. Enabling the plugin adds a tab to the bottom pane. This shows recent output and a command prompt field. - Commands entered into the python console are not checked before they are run. It is therefore possible to hang &app;, for example by entering an infinite loop. - - - -Snippets Plugin - The Snippets plugin allows you to store frequently-used pieces of text, called snippets, and insert them quickly into a document. - Snippets are specific to the language syntax of the current document. For example, when you are working with an HTML document, you can choose from a list of snippets that are useful for HTML. In addition, some snippets are global, and are available in all documents. - A number of built-in snippets are installed with &app;, which can be modified. - - - Inserting Snippets - To insert a snippet into a document, type its tab trigger and press Tab. A snippet's tab trigger is usually the first few letters of the snippet, or something else that is short and easy to remember. - Alternatively, press CtrlSpace to see a list of snippets you can insert. - - - - Adding Snippets - To create a new snippet, do the following: - - - Choose ToolsManage Snippets. The Snippets Manager window opens. - - - The list of snippets is grouped by language. Select the language you want to add a snippet to, or a snippet in that language group. To add a snippet for all languages, choose Global at the top of the list. The syntax of the document you are currently working with is shown by default. - - - Click New. A new snippet appears in the list. - - - Enter the following information for the new snippet: - - Name - - Enter a name for the snippet in the text field within the snippet list. The name of a snippet serves only as a reminder of its purpose. You can change name of a snippet you create by clicking on it in the list. - - - Snippet text - - Enter the text of the snippet in the Edit snippet text box. For special codes you can use, see . - You can switch back to the document window to copy text without closing the Snippets Manager window. - - - Tab Trigger - - Enter the tab trigger for the snippet. This is the text that you type before pressing Tab to insert the snippet. - The tag must be either a single word comprising only letters, or any single character. The Tab trigger will highlight in red if an invalid tab trigger is entered. - - - Shortcut key - - Type a shortcut key to use for inserting the snippet. - - - - - - - - - Editing and Removing Snippets - To edit a snippet, select it in the list and make changes to its text and activation properties. - To rename a snippet, click it again in the list. - To restore a built-in snippet that you have changed, press Revert. - To remove a snippet, select it in the list and press Remove. You can not remove built-in snippets, only those you have created yourself. - - - - Snippet Substitutions - In addition to inserting stored text, a snippet can include customizable text, or mark spaces where you can add text once the snippet is inserted in your document. - - - - You can use the following placeholder codes in snippet text: - - Tab placeholders - - $n defines a tab placeholder, where n is any number from 1 upwards. - ${n:default} defines a tab placeholder with a default value. - A tab placeholder marks a place in the snippet text where you can add extra text after the snippet is inserted. - To use tab placeholders, insert the snippet as normal. The cursor is placed at the first tab placeholder. Type text, and press Tab to advance to the next tab placeholder. The number in the placeholder code defines the order in which tab advances to each place in the text. - Press ShiftTab to return to the previous tab placeholder. Pressing Tab when there are no more tab placeholders moves the cursor to the end of the snippet text, or to the end placeholder if it exists. - - - Mirror placeholders - - A repeated tab placeholder will mirror the placeholder already defined. This allows you to type in text only once that you want to appear several times in the snippet. - - - End placeholder - - $0 defines the end placeholder. This allows you to finish working with the snippet with the cursor at a point other than the end of the snippet text. - - - Environmental variables - - Environmental variable such as $PATH and $HOME are substituted in snippet text. The following variables specific to &app; can also be used: - - $XEDIT_SELECTED_TEXT - - The currently selected text. - - - $XEDIT_FILENAME - - The full filename of the document, or an empty string if the document isn't saved yet. - - - $XEDIT_BASENAME - - The basename of the filename of the document, or an empty string if the document isn't saved yet. - - - $XEDIT_CURRENT_WORD - - The word at the cursor's location in the document. When this variable is used, the current word will be replaced by the snippet text. - - - - - - - - Shell placeholders - - $(cmd) is replaced by the result of executing cmd in a shell. - $(n:cmd) allows you to give this placeholder a reference, where n is any number from 1 upwards. Use $n to use the output from one shell placeholder as input in another. - - - Python placeholders - - $<cmd> is replaced by the result of evaluating cmd in the python interpreter. - $<a:cmd> specifies another python placeholder as a dependency, where a gives its order in the snippet. This allows you to use python functions defined in another snippet. To specify several dependencies, separate the numbers with commas thus: $<a,b:cmd> - To use a variable in all other python snippets, declare it as global. - - - - - - - Sort Plugin The Sort plugin arranges selected lines of text into alphabetical order. diff --git a/help/C/legal.xml b/help/C/legal.xml index 9da725e..7e93e40 100644 --- a/help/C/legal.xml +++ b/help/C/legal.xml @@ -9,22 +9,6 @@ url="help:fdl">link or in the file COPYING-DOCS distributed with this manual. - This manual is part of a collection of MATE manuals - distributed under the GFDL. If you want to distribute this - manual separately from the collection, you can do so by - adding a copy of the license to the manual, as described in - section 6 of the license. - - - - Many of the names used by companies to distinguish their - products and services are claimed as trademarks. Where those - names appear in any MATE documentation, and the members of - the MATE Documentation Project are made aware of those - trademarks, then the names are in capital letters or initial - capital letters. - - DOCUMENT AND MODIFIED VERSIONS OF THE DOCUMENT ARE PROVIDED UNDER THE TERMS OF THE GNU FREE DOCUMENTATION LICENSE diff --git a/help/ar/ar.po b/help/ar/ar.po index ec9ddfd..4a22c23 100644 --- a/help/ar/ar.po +++ b/help/ar/ar.po @@ -35,7 +35,7 @@ msgstr "" "md5=62b4bede31db64226f7e7f9b18f5eb74" #: C/xedit.xml:23(title) -msgid "Xedit Manual" +msgid "Text Editor" msgstr "دليل محرر النصوص" #: C/xedit.xml:25(year) @@ -661,11 +661,11 @@ msgstr "انقر افتح." msgid "" "Valid types of URI include http:, ftp:, file:, and all of the " -"methods supported by mate-vfs." +"methods supported by gvfs." msgstr "" "الأنواع الصالحة للمسار تتضمن http:، ftp:، file:، وكل الوسائل " -"المدعومة من mate-vfs." +"المدعومة من gvfs." #: C/xedit.xml:389(para) msgid "" diff --git a/help/bg/bg.po b/help/bg/bg.po index 2d232aa..839a203 100644 --- a/help/bg/bg.po +++ b/help/bg/bg.po @@ -1066,14 +1066,14 @@ msgid "" "file that you want to open, then press Return. Valid types " "of URI include http:, " "ftp:, file:, and all of the methods " -"supported by mate-vfs." +"supported by gvfs." msgstr "" "Или просто въведете в командния ред xedit URI, където URI е адресът на " "файла, който искате да отворите. После натиснете Enter. " "Валидни видове URI са http:, " "ftp:, file: и всички методи поддържани " -"от mate-vfs." +"от gvfs." #: xedit.xml:491(para) msgid "The application opens the file located at the URI in read-only mode." diff --git a/help/bg/figures/xedit_window.png b/help/bg/figures/xedit_window.png deleted file mode 100644 index 98b96c7..0000000 Binary files a/help/bg/figures/xedit_window.png and /dev/null differ diff --git a/help/ca/ca.po b/help/ca/ca.po index 66b570d..bc36f49 100644 --- a/help/ca/ca.po +++ b/help/ca/ca.po @@ -133,8 +133,8 @@ msgstr "" "md5=62b4bede31db64226f7e7f9b18f5eb74" #: C/xedit.xml:23(title) -msgid "Xedit Manual" -msgstr "Manual del xedit" +msgid "Text Editor" +msgstr "Editor de Text" #: C/xedit.xml:25(year) msgid "2007" @@ -791,11 +791,11 @@ msgstr "Feu clic a Obre." msgid "" "Valid types of URI include http:, ftp:, file:, and all of the " -"methods supported by mate-vfs." +"methods supported by gvfs." msgstr "" "Els tipus d'URI vàlids inclouen http:, ftp:, file: i tots els " -"mètodes admesos pel mate-vfs." +"mètodes admesos pel gvfs." #: C/xedit.xml:389(para) msgid "" diff --git a/help/ca/figures/xedit_window.png b/help/ca/figures/xedit_window.png deleted file mode 100644 index 577a0b8..0000000 Binary files a/help/ca/figures/xedit_window.png and /dev/null differ diff --git a/help/cs/cs.po b/help/cs/cs.po index 7aaea42..70a6aa0 100644 --- a/help/cs/cs.po +++ b/help/cs/cs.po @@ -135,8 +135,8 @@ msgstr "" "md5=62b4bede31db64226f7e7f9b18f5eb74" #: C/xedit.xml:23(title) -msgid "Xedit Manual" -msgstr "Příručka k aplikaci Xedit" +msgid "Text Editor" +msgstr "Textový Editor" #: C/xedit.xml:25(year) msgid "2007" @@ -785,11 +785,11 @@ msgstr "Klikněte na Otevřít." msgid "" "Valid types of URI include http:, ftp:, file:, and all of the " -"methods supported by mate-vfs." +"methods supported by gvfs." msgstr "" "Platné typy URI zahrnují http:, ftp:, file: a všechny další " -"metody podporované mate-vfs." +"metody podporované gvfs." #: C/xedit.xml:389(para) msgid "" diff --git a/help/cs/figures/xedit_window.png b/help/cs/figures/xedit_window.png deleted file mode 100644 index 12d046a..0000000 Binary files a/help/cs/figures/xedit_window.png and /dev/null differ diff --git a/help/da/da.po b/help/da/da.po index 2e50026..5576c63 100644 --- a/help/da/da.po +++ b/help/da/da.po @@ -140,8 +140,8 @@ msgid "" msgstr "Intet skærmbillede" #: ../C/xedit.xml:23(title) -msgid "Xedit Manual" -msgstr "Manual til xedit" +msgid "Text Editor" +msgstr "Tekstredigering" #: ../C/xedit.xml:25(year) msgid "2007" @@ -802,11 +802,11 @@ msgstr "Klik Åbn." msgid "" "Valid types of URI include http:, ftp:, file:, and all of the " -"methods supported by mate-vfs." +"methods supported by gvfs." msgstr "" "Gyldige typer af URI omfatter http:, ftp:, file:, samt alle " -"metoder som understøttes af mate-vfs." +"metoder som understøttes af gvfs." #: ../C/xedit.xml:389(para) msgid "" diff --git a/help/de/de.po b/help/de/de.po index 07ef629..bc94ba6 100644 --- a/help/de/de.po +++ b/help/de/de.po @@ -136,8 +136,8 @@ msgid "" msgstr "translated" #: C/xedit.xml:23(title) -msgid "Xedit Manual" -msgstr "Xedit-Handbuch" +msgid "Text Editor" +msgstr "Textbearbeitung" #: C/xedit.xml:25(year) msgid "2007" @@ -794,11 +794,11 @@ msgstr "Klicken Sie auf Öffnen." msgid "" "Valid types of URI include http:, ftp:, file:, and all of the " -"methods supported by mate-vfs." +"methods supported by gvfs." msgstr "" "Zu den zulässigen Typen für URI gehören " "http:, ftp:, file: " -"sowie alle anderen von mate-vfs unterstützten Methoden." +"sowie alle anderen von gvfs unterstützten Methoden." #: C/xedit.xml:389(para) msgid "" diff --git a/help/de/figures/xedit_window.png b/help/de/figures/xedit_window.png deleted file mode 100644 index c73a15f..0000000 Binary files a/help/de/figures/xedit_window.png and /dev/null differ diff --git a/help/el/el.po b/help/el/el.po index c42049a..0dc19bf 100644 --- a/help/el/el.po +++ b/help/el/el.po @@ -48,8 +48,8 @@ msgid "@@image: 'figures/xedit_recent_files_menu_icon.png'; md5=62b4bede31db6422 msgstr "@@image: 'figures/xedit_recent_files_menu_icon.png'; md5=62b4bede31db64226f7e7f9b18f5eb74" #: C/xedit.xml:23(title) -msgid "Xedit Manual" -msgstr "Εγχειρίδιο του Xedit" +msgid "Text Editor" +msgstr "Επεξεργαστής κειμένου" #: C/xedit.xml:25(year) msgid "2007" @@ -531,8 +531,8 @@ msgid "Click Open." msgstr "Πατήστε το Άνοιγμα." #: C/xedit.xml:388(para) -msgid "Valid types of URI include http:, ftp:, file:, and all of the methods supported by mate-vfs." -msgstr "Τα http:, ftp:, file:, και όλες οι μέθοδοι που υποστηρίζονται από το mate-vfs είναι έγκυροι τύποι τοποθεσιών URI." +msgid "Valid types of URI include http:, ftp:, file:, and all of the methods supported by gvfs." +msgstr "Τα http:, ftp:, file:, και όλες οι μέθοδοι που υποστηρίζονται από το gvfs είναι έγκυροι τύποι τοποθεσιών URI." #: C/xedit.xml:389(para) msgid "Files from some types of URI are opened as read-only, and any changes you make must be saved to a different location. HTTP only allows files to be read. Files opened from FTP are read-only because because not all FTP servers may correctly work with saving remote files." diff --git a/help/el/figures/xedit_window.png b/help/el/figures/xedit_window.png deleted file mode 100644 index a5ec67b..0000000 Binary files a/help/el/figures/xedit_window.png and /dev/null differ diff --git a/help/es/es.po b/help/es/es.po index 83cfa0f..290cf13 100644 --- a/help/es/es.po +++ b/help/es/es.po @@ -135,8 +135,8 @@ msgid "" msgstr "@@image: 'figures/_xedit.png'; md5=62b4bede31db64226f7e7f9b18f5eb74" #: C/xedit.xml:23(title) -msgid "Xedit Manual" -msgstr "Manual de Xedit" +msgid "Text Editor" +msgstr "Editor de Textos" #: C/xedit.xml:25(year) msgid "2007" @@ -800,11 +800,11 @@ msgstr "Pulse Abrir." msgid "" "Valid types of URI include http:, ftp:, file:, and all of the " -"methods supported by mate-vfs." +"methods supported by gvfs." msgstr "" "Los tipos de URI válidos incluyen http:, ftp:, file: y todos los " -"métodos admitidos por mate-vfs." +"métodos admitidos por gvfs." #: C/xedit.xml:389(para) msgid "" diff --git a/help/es/figures/xedit_window.png b/help/es/figures/xedit_window.png deleted file mode 100644 index f04de29..0000000 Binary files a/help/es/figures/xedit_window.png and /dev/null differ diff --git a/help/fi/fi.po b/help/fi/fi.po index 0b9b7e3..c881dfb 100644 --- a/help/fi/fi.po +++ b/help/fi/fi.po @@ -109,8 +109,8 @@ msgstr "" "md5=62b4bede31db64226f7e7f9b18f5eb74" #: C/xedit.xml:23(title) -msgid "Xedit Manual" -msgstr "Xedit-käyttöohje" +msgid "Text Editor" +msgstr "Tekstimuokkain" #: C/xedit.xml:25(year) msgid "2007" @@ -757,11 +757,11 @@ msgstr "Napsauta Avaa." msgid "" "Valid types of URI include http:, ftp:, file:, and all of the " -"methods supported by mate-vfs." +"methods supported by gvfs." msgstr "" "Hyväksyttyjä URI-tyyppejä ovat http:, ftp:, file:, ja kaikki " -"mate-vfs:n tukemat muodot." +"gvfs:n tukemat muodot." #: C/xedit.xml:389(para) msgid "" diff --git a/help/fi/figures/xedit_window.png b/help/fi/figures/xedit_window.png deleted file mode 100644 index 5ab890d..0000000 Binary files a/help/fi/figures/xedit_window.png and /dev/null differ diff --git a/help/fr/figures/xedit_recent_files_menu_icon.png b/help/fr/figures/xedit_recent_files_menu_icon.png deleted file mode 100644 index 4b36c53..0000000 Binary files a/help/fr/figures/xedit_recent_files_menu_icon.png and /dev/null differ diff --git a/help/fr/figures/xedit_window.png b/help/fr/figures/xedit_window.png deleted file mode 100644 index 6c0b3bf..0000000 Binary files a/help/fr/figures/xedit_window.png and /dev/null differ diff --git a/help/fr/fr.po b/help/fr/fr.po index fbe2163..5e674f4 100644 --- a/help/fr/fr.po +++ b/help/fr/fr.po @@ -140,8 +140,8 @@ msgstr "" "md5=62b4bede31db64226f7e7f9b18f5eb74" #: C/xedit.xml:23(title) -msgid "Xedit Manual" -msgstr "Manuel de xedit" +msgid "Text Editor" +msgstr "Éditeur de texte" #: C/xedit.xml:25(year) msgid "2007" @@ -798,12 +798,11 @@ msgstr "Cliquez sur Ouvrir." msgid "" "Valid types of URI include http:, ftp:, file:, and all of the " -"methods supported by mate-vfs." +"methods supported by gvfs." msgstr "" "Voici quelques exemples d'URI pouvant être " "utilisés : http:, ftp:, file:" -" ainsi que toutes les méthodes prises en charge par mate-" -"vfs." +" ainsi que toutes les méthodes prises en charge par gvfs." #: C/xedit.xml:389(para) msgid "" diff --git a/help/hu/hu.po b/help/hu/hu.po index a08cab1..74fefb5 100644 --- a/help/hu/hu.po +++ b/help/hu/hu.po @@ -130,8 +130,8 @@ msgstr "" "md5=62b4bede31db64226f7e7f9b18f5eb74" #: C/xedit.xml:23(title) -msgid "Xedit Manual" -msgstr "Xedit kézikönyv" +msgid "Text Editor" +msgstr "Szövegszerkesztő" #: C/xedit.xml:25(year) msgid "2007" @@ -779,11 +779,11 @@ msgstr "Kattintson a Megnyitás gombra." msgid "" "Valid types of URI include http:, ftp:, file:, and all of the " -"methods supported by mate-vfs." +"methods supported by gvfs." msgstr "" "Az érvényes URI típusok a http:, az ftp:, a file: és minden " -"más, a mate-vfs által támogatott elérési mód." +"más, a gvfs által támogatott elérési mód." #: C/xedit.xml:389(para) msgid "" diff --git a/help/it/figures/xedit_window.png b/help/it/figures/xedit_window.png deleted file mode 100644 index 0f4c1ff..0000000 Binary files a/help/it/figures/xedit_window.png and /dev/null differ diff --git a/help/it/it.po b/help/it/it.po index 5548852..0bc75bf 100644 --- a/help/it/it.po +++ b/help/it/it.po @@ -131,8 +131,8 @@ msgid "" msgstr "fatto" #: C/xedit.xml:23(title) -msgid "Xedit Manual" -msgstr "Manuale di xedit" +msgid "Text Editor" +msgstr "Editor di testo" #: C/xedit.xml:25(year) msgid "2007" @@ -796,11 +796,11 @@ msgstr "Fare clic su Apri." msgid "" "Valid types of URI include http:, ftp:, file:, and all of the " -"methods supported by mate-vfs." +"methods supported by gvfs." msgstr "" "URI validi sono: http:, " "ftp:, file: e tutti i metodi " -"supportati da mate-vfs." +"supportati da gvfs." #: C/xedit.xml:389(para) msgid "" diff --git a/help/ja/figures/xedit_window.png b/help/ja/figures/xedit_window.png deleted file mode 100644 index 62fb6e5..0000000 Binary files a/help/ja/figures/xedit_window.png and /dev/null differ diff --git a/help/ja/ja.po b/help/ja/ja.po index b9881f6..b6c96b1 100644 --- a/help/ja/ja.po +++ b/help/ja/ja.po @@ -151,8 +151,8 @@ msgstr "" "md5=cf962f5d9df721c1f4f4cef2780915ed" #: C/xedit.xml:23(title) -msgid "Xedit Manual" -msgstr "xedit マニュアル" +msgid "Text Editor" +msgstr "テキストエディタ" #: C/xedit.xml:25(year) msgid "2007" @@ -800,11 +800,11 @@ msgstr "開くをクリックします。" msgid "" "Valid types of URI include http:, ftp:, file:, and all of the " -"methods supported by mate-vfs." +"methods supported by gvfs." msgstr "" "有効な URIhttp:ftp:file:、および" -" mate-vfs でサポートしている全ての形式です。" +" gvfs でサポートしている全ての形式です。" #: C/xedit.xml:389(para) msgid "" diff --git a/help/ko/figures/xedit_window.png b/help/ko/figures/xedit_window.png deleted file mode 100644 index 3d8368c..0000000 Binary files a/help/ko/figures/xedit_window.png and /dev/null differ diff --git a/help/ko/ko.po b/help/ko/ko.po index da91798..be49d91 100644 --- a/help/ko/ko.po +++ b/help/ko/ko.po @@ -155,8 +155,8 @@ msgstr "" "md5=cf962f5d9df721c1f4f4cef2780915ed" #: C/xedit.xml:23(title) -msgid "Xedit Manual" -msgstr "xedit 설명서" +msgid "Text Editor" +msgstr "텍스트 편집기" #: C/xedit.xml:25(year) msgid "2007" @@ -779,10 +779,10 @@ msgstr "열기를 누르십시오." msgid "" "Valid types of URI include http:, ftp:, file:, and all of the " -"methods supported by mate-vfs." +"methods supported by gvfs." msgstr "" "올바른 형식의 URIhttp:, " -"ftp:, file:mate-vfsftp:, file:gvfs에서 지원하는 모든 프로토콜을 사용할 수 있습니다." #: C/xedit.xml:387(para) diff --git a/help/oc/oc.po b/help/oc/oc.po index 2103b35..d778243 100644 --- a/help/oc/oc.po +++ b/help/oc/oc.po @@ -134,8 +134,8 @@ msgstr "" "md5=cf962f5d9df721c1f4f4cef2780915ed" #: ../C/xedit.xml:23(title) -msgid "Xedit Manual" -msgstr "" +msgid "Text Editor" +msgstr "Editor de tèxt" #: ../C/xedit.xml:25(year) msgid "2007" @@ -672,7 +672,7 @@ msgstr "" msgid "" "Valid types of URI include http:, ftp:, file:, and all of the " -"methods supported by mate-vfs." +"methods supported by gvfs." msgstr "" #: ../C/xedit.xml:382(para) diff --git a/help/pt_BR/pt_BR.po b/help/pt_BR/pt_BR.po index dcce140..123db37 100644 --- a/help/pt_BR/pt_BR.po +++ b/help/pt_BR/pt_BR.po @@ -139,8 +139,8 @@ msgstr "" "md5=62b4bede31db64226f7e7f9b18f5eb74" #: C/xedit.xml:23(title) -msgid "Xedit Manual" -msgstr "Manual do Xedit" +msgid "Text Editor" +msgstr "Editor de texto" #: C/xedit.xml:25(year) msgid "2007" @@ -797,11 +797,11 @@ msgstr "Clique no botão Abrir." msgid "" "Valid types of URI include http:, ftp:, file:, and all of the " -"methods supported by mate-vfs." +"methods supported by gvfs." msgstr "" "Tipos válidos de URI são http:, ftp:, file: e todos os " -"métodos aceitos pelo mate-vfs." +"métodos aceitos pelo gvfs." #: C/xedit.xml:389(para) msgid "" diff --git a/help/ru/ru.po b/help/ru/ru.po index e64fa2a..163908a 100644 --- a/help/ru/ru.po +++ b/help/ru/ru.po @@ -127,8 +127,8 @@ msgstr "" "md5=62b4bede31db64226f7e7f9b18f5eb74" #: C/xedit.xml:23(title) -msgid "Xedit Manual" -msgstr "Руководство по Xedit" +msgid "Text Editor" +msgstr "Текстовый редактор" #: C/xedit.xml:25(year) msgid "2007" @@ -783,11 +783,11 @@ msgstr "Нажмите кнопку Открыть." msgid "" "Valid types of URI include http:, ftp:, file:, and all of the " -"methods supported by mate-vfs." +"methods supported by gvfs." msgstr "" "URI может содержать http:, " "ftp:, file: и все протоколы, " -"поддерживаемые mate-vfs." +"поддерживаемые gvfs." #: C/xedit.xml:389(para) msgid "" diff --git a/help/sv/figures/xedit_window.png b/help/sv/figures/xedit_window.png deleted file mode 100644 index dc00184..0000000 Binary files a/help/sv/figures/xedit_window.png and /dev/null differ diff --git a/help/sv/sv.po b/help/sv/sv.po index 192c240..1534bcf 100644 --- a/help/sv/sv.po +++ b/help/sv/sv.po @@ -43,8 +43,8 @@ msgid "@@image: 'figures/xedit_recent_files_menu_icon.png'; md5=62b4bede31db6422 msgstr "@@image: 'figures/xedit_recent_files_menu_icon.png'; md5=62b4bede31db64226f7e7f9b18f5eb74" #: C/xedit.xml:23(title) -msgid "Xedit Manual" -msgstr "Handbok för Xedit" +msgid "Text Editor" +msgstr "Textredigerare" #: C/xedit.xml:25(year) msgid "2007" @@ -526,8 +526,8 @@ msgid "Click Open." msgstr "Klicka på Öppna." #: C/xedit.xml:388(para) -msgid "Valid types of URI include http:, ftp:, file:, and all of the methods supported by mate-vfs." -msgstr "Giltiga typer av uri inkluderar http:, ftp:, file:, och alla de metoder som stöds av mate-vfs." +msgid "Valid types of URI include http:, ftp:, file:, and all of the methods supported by gvfs." +msgstr "Giltiga typer av uri inkluderar http:, ftp:, file:, och alla de metoder som stöds av gvfs." #: C/xedit.xml:389(para) msgid "Files from some types of URI are opened as read-only, and any changes you make must be saved to a different location. HTTP only allows files to be read. Files opened from FTP are read-only because because not all FTP servers may correctly work with saving remote files." diff --git a/help/th/th.po b/help/th/th.po index bb0f2cb..71a620d 100644 --- a/help/th/th.po +++ b/help/th/th.po @@ -128,8 +128,8 @@ msgstr "" "md5=62b4bede31db64226f7e7f9b18f5eb74" #: C/xedit.xml:23(title) -msgid "Xedit Manual" -msgstr "คู่มือ Xedit" +msgid "Text Editor" +msgstr "เครื่องมือแก้ไขข้อความ" #: C/xedit.xml:25(year) msgid "2007" @@ -756,11 +756,11 @@ msgstr "คลิก เปิด" msgid "" "Valid types of URI include http:, ftp:, file:, and all of the " -"methods supported by mate-vfs." +"methods supported by gvfs." msgstr "" "ชนิดของ URI ที่ใช้ได้ มี http:, " "ftp:, file: และอื่น ๆ ที่รองรับโดย " -"mate-vfs" +"gvfs" #: C/xedit.xml:389(para) msgid "" diff --git a/help/uk/figures/xedit_window.png b/help/uk/figures/xedit_window.png deleted file mode 100644 index a568824..0000000 Binary files a/help/uk/figures/xedit_window.png and /dev/null differ diff --git a/help/uk/uk.po b/help/uk/uk.po index 02289a2..b90f4f3 100644 --- a/help/uk/uk.po +++ b/help/uk/uk.po @@ -170,8 +170,8 @@ msgstr "" "md5=cf962f5d9df721c1f4f4cef2780915ed" #: ../C/xedit.xml:23(title) -msgid "Xedit Manual" -msgstr "Посібник з xedit" +msgid "Text Editor" +msgstr "Текстовий редактор" #: ../C/xedit.xml:25(year) msgid "2007" @@ -785,13 +785,13 @@ msgstr "Натисніть кнопку Відкрити. msgid "" "Valid types of URI include http:, ftp:, file:, and all of the " -"methods supported by mate-vfs." +"methods supported by gvfs." msgstr "" "Інший спосіб - ввести у командному рядку: xedit URI, де URI — URI " "файлу, що відкривається, а потім натиснути клавішу Enter. " "URI може містити http:, " -"ftp:, file: та усі протоколи, що підтримуються mate-vfs." +"ftp:, file: та усі протоколи, що підтримуються gvfs." #: ../C/xedit.xml:382(para) msgid "" diff --git a/help/zh_CN/figures/xedit_window.png b/help/zh_CN/figures/xedit_window.png deleted file mode 100644 index b2b7c92..0000000 Binary files a/help/zh_CN/figures/xedit_window.png and /dev/null differ diff --git a/help/zh_CN/zh_CN.po b/help/zh_CN/zh_CN.po index c44062a..d9d9acc 100644 --- a/help/zh_CN/zh_CN.po +++ b/help/zh_CN/zh_CN.po @@ -117,8 +117,8 @@ msgstr "" "md5=62b4bede31db64226f7e7f9b18f5eb74" #: C/xedit.xml:23(title) -msgid "Xedit Manual" -msgstr "Xedit 手册" +msgid "Text Editor" +msgstr "文本编辑器" #: C/xedit.xml:25(year) msgid "2007" @@ -739,10 +739,10 @@ msgstr "点 打开。" msgid "" "Valid types of URI include http:, ftp:, file:, and all of the " -"methods supported by mate-vfs." +"methods supported by gvfs." msgstr "" "有效的 URI 包括 http:、" -"ftp:file: 和所有 mate-vfsftp:file: 和所有 gvfs 支持的格式。" #: C/xedit.xml:389(para) diff --git a/help/zh_HK/figures/xedit_window.png b/help/zh_HK/figures/xedit_window.png deleted file mode 100644 index b2b7c92..0000000 Binary files a/help/zh_HK/figures/xedit_window.png and /dev/null differ diff --git a/help/zh_HK/zh_HK.po b/help/zh_HK/zh_HK.po index 8b72f53..99f25fe 100644 --- a/help/zh_HK/zh_HK.po +++ b/help/zh_HK/zh_HK.po @@ -715,13 +715,13 @@ msgid "" "want to open, then press Return. Valid types of " "URI include http:, " "ftp:, file:, and all of the methods " -"supported by mate-vfs." +"supported by gvfs." msgstr "" "在指令行上輸入 xedit URI (此處" "的 URI 是指您要開啟之檔案的 URI),然後按下 " "Return 鍵。有效的 URI 類型包括 " "http:ftp:file:," -"以及 mate-vfs 支援的所有方法。" +"以及 gvfs 支援的所有方法。" #: ../base.xml:527(para) msgid "The application opens the file located at the URI in read-only mode." diff --git a/help/zh_TW/figures/xedit_window.png b/help/zh_TW/figures/xedit_window.png deleted file mode 100644 index b2b7c92..0000000 Binary files a/help/zh_TW/figures/xedit_window.png and /dev/null differ diff --git a/help/zh_TW/zh_TW.po b/help/zh_TW/zh_TW.po index 407bcc1..b6f3410 100644 --- a/help/zh_TW/zh_TW.po +++ b/help/zh_TW/zh_TW.po @@ -715,13 +715,13 @@ msgid "" "want to open, then press Return. Valid types of " "URI include http:, " "ftp:, file:, and all of the methods " -"supported by mate-vfs." +"supported by gvfs." msgstr "" "在指令行上輸入 xedit URI (此處" "的 URI 是指您要開啟之檔案的 URI),然後按下 " "Return 鍵。有效的 URI 類型包括 " "http:ftp:file:," -"以及 mate-vfs 支援的所有方法。" +"以及 gvfs 支援的所有方法。" #: ../base.xml:527(para) msgid "The application opens the file located at the URI in read-only mode." diff --git a/po/xedit.pot b/po/xedit.pot index c8ad0b7..0a78ceb 100644 --- a/po/xedit.pot +++ b/po/xedit.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-26 17:04+0000\n" +"POT-Creation-Date: 2016-01-27 11:07+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n"