Tue, 23 Jun 2020 17:52:32 +0200
Removed support for Python2.
--- a/ChangeLog Tue Jun 23 17:52:01 2020 +0200 +++ b/ChangeLog Tue Jun 23 17:52:32 2020 +0200 @@ -1,5 +1,8 @@ ChangeLog --------- +Version 3.0.0: +- removed support for Python2 + Version 2.0.4: - updated Russian translations
--- a/PluginDjangoTagsMenu.e4p Tue Jun 23 17:52:01 2020 +0200 +++ b/PluginDjangoTagsMenu.e4p Tue Jun 23 17:52:32 2020 +0200 @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE Project SYSTEM "Project-5.1.dtd"> <!-- eric project file for project PluginDjangoTagsMenu --> -<!-- Copyright (C) 2017 Detlev Offenbach, detlev@die-offenbachs.de --> +<!-- Copyright (C) 2020 Detlev Offenbach, detlev@die-offenbachs.de --> <Project version="5.1"> <Language>en_US</Language> <Hash>fac07f0675a7c77618ebfac9d2cbbfb763f751f3</Hash> @@ -44,8 +44,6 @@ <Translation>ProjectDjangoTagsMenu/i18n/djangotagsmenu_ru.qm</Translation> <Translation>ProjectDjangoTagsMenu/i18n/djangotagsmenu_ru.ts</Translation> </Translations> - <Resources/> - <Interfaces/> <Others> <Other>.hgignore</Other> <Other>ChangeLog</Other> @@ -239,6 +237,34 @@ <value> <dict> <key> + <string>AnnotationsChecker</string> + </key> + <value> + <dict> + <key> + <string>MaximumComplexity</string> + </key> + <value> + <int>3</int> + </value> + <key> + <string>MinimumCoverage</string> + </key> + <value> + <int>75</int> + </value> + </dict> + </value> + <key> + <string>BlankLines</string> + </key> + <value> + <tuple> + <int>2</int> + <int>1</int> + </tuple> + </value> + <key> <string>BuiltinsChecker</string> </key> <value> @@ -270,6 +296,19 @@ </dict> </value> <key> + <string>CommentedCodeChecker</string> + </key> + <value> + <dict> + <key> + <string>Aggressive</string> + </key> + <value> + <bool>False</bool> + </value> + </dict> + </value> + <key> <string>CopyrightAuthor</string> </key> <value> @@ -288,6 +327,12 @@ <string>eric</string> </value> <key> + <string>EnabledCheckerCategories</string> + </key> + <value> + <string>C, D, E, M, N, S, W</string> + </value> + <key> <string>ExcludeFiles</string> </key> <value> @@ -297,7 +342,7 @@ <string>ExcludeMessages</string> </key> <value> - <string>C101, E265, E266, E305, E402, M811, N802, N803, N807, N808, N821, W293</string> + <string>C101,E265,E266,E305,E402,M811,N802,N803,N807,N808,N821,W293,W504,M305</string> </value> <key> <string>FixCodes</string> @@ -315,7 +360,7 @@ <string>FutureChecker</string> </key> <value> - <string>unicode_literals</string> + <string></string> </value> <key> <string>HangClosing</string> @@ -348,6 +393,12 @@ <int>10</int> </value> <key> + <string>MaxDocLineLength</string> + </key> + <value> + <int>79</int> + </value> + <key> <string>MaxLineLength</string> </key> <value> @@ -366,6 +417,91 @@ <bool>True</bool> </value> <key> + <string>SecurityChecker</string> + </key> + <value> + <dict> + <key> + <string>CheckTypedException</string> + </key> + <value> + <bool>False</bool> + </value> + <key> + <string>HardcodedTmpDirectories</string> + </key> + <value> + <list> + <string>/tmp</string> + <string>/var/tmp</string> + <string>/dev/shm</string> + <string>~/tmp</string> + </list> + </value> + <key> + <string>InsecureHashes</string> + </key> + <value> + <list> + <string>md4</string> + <string>md5</string> + <string>sha</string> + <string>sha1</string> + </list> + </value> + <key> + <string>InsecureSslProtocolVersions</string> + </key> + <value> + <list> + <string>PROTOCOL_SSLv2</string> + <string>SSLv2_METHOD</string> + <string>SSLv23_METHOD</string> + <string>PROTOCOL_SSLv3</string> + <string>PROTOCOL_TLSv1</string> + <string>SSLv3_METHOD</string> + <string>TLSv1_METHOD</string> + </list> + </value> + <key> + <string>WeakKeySizeDsaHigh</string> + </key> + <value> + <string>1024</string> + </value> + <key> + <string>WeakKeySizeDsaMedium</string> + </key> + <value> + <string>2048</string> + </value> + <key> + <string>WeakKeySizeEcHigh</string> + </key> + <value> + <string>160</string> + </value> + <key> + <string>WeakKeySizeEcMedium</string> + </key> + <value> + <string>224</string> + </value> + <key> + <string>WeakKeySizeRsaHigh</string> + </key> + <value> + <string>1024</string> + </value> + <key> + <string>WeakKeySizeRsaMedium</string> + </key> + <value> + <string>2048</string> + </value> + </dict> + </value> + <key> <string>ShowIgnored</string> </key> <value>
--- a/PluginProjectDjangoTagsMenu.py Tue Jun 23 17:52:01 2020 +0200 +++ b/PluginProjectDjangoTagsMenu.py Tue Jun 23 17:52:32 2020 +0200 @@ -7,8 +7,6 @@ Module implementing the Django tags menu plugin. """ -from __future__ import unicode_literals - import os from PyQt5.QtCore import QObject, QTranslator @@ -23,16 +21,16 @@ author = "Detlev Offenbach <detlev@die-offenbachs.de>" autoactivate = True deactivateable = True -version = "2.0.4" +version = "3.0.0" className = "ProjectDjangoTagsMenuPlugin" packageName = "ProjectDjangoTagsMenu" shortDescription = "Tags menu for Django projects." -longDescription = \ - """This plug-in adds a menu to select various tag templates to the""" \ +longDescription = ( + """This plug-in adds a menu to select various tag templates to the""" """ Django menu.""" +) needsRestart = False pyqtApi = 2 -python2Compatible = True # End-of-Header error = "" @@ -81,8 +79,8 @@ if pluginObject: djangoMenu = pluginObject.getMenu("main") - djangoDatabaseMenuAction = \ - pluginObject.getMenu("database").menuAction() + djangoDatabaseMenuAction = pluginObject.getMenu( + "database").menuAction() self.__menuAction = djangoMenu.insertMenu( djangoDatabaseMenuAction, self.__menu) self.__menuSeparator = djangoMenu.insertSeparator(
--- a/ProjectDjangoTagsMenu/DjangoTagInputDialog.py Tue Jun 23 17:52:01 2020 +0200 +++ b/ProjectDjangoTagsMenu/DjangoTagInputDialog.py Tue Jun 23 17:52:32 2020 +0200 @@ -7,8 +7,6 @@ Module implementing a dialog to enter data for the creation of a tag. """ -from __future__ import unicode_literals - from PyQt5.QtCore import Qt from PyQt5.QtWidgets import QDialog, QDialogButtonBox, QVBoxLayout, QLabel @@ -27,10 +25,14 @@ @param defaults list of default values for the entry fields (list of string) @param parent reference to the parent widget (QWidget) + @exception RuntimeError raised to signal too many labels were given """ super(DjangoTagInputDialog, self).__init__(parent) - assert 0 < len(labels) < 6 # max 5 entries allowed + if len(labels) == 0 or len(labels) > 5: + raise RuntimeError( + "Illegal number of labels given (max. 5 allowed)") + self.__inputs = [] self.__topLayout = QVBoxLayout(self) @@ -88,4 +90,4 @@ if dlg.exec_() == QDialog.Accepted: return dlg.getData(), True else: - return tuple(), False + return (), False
--- a/ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py Tue Jun 23 17:52:01 2020 +0200 +++ b/ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py Tue Jun 23 17:52:32 2020 +0200 @@ -7,12 +7,6 @@ Module implementing the Django tags menu handler. """ -from __future__ import unicode_literals -try: - str = unicode -except NameError: - pass - import os import datetime @@ -907,7 +901,7 @@ None, self.tr("SSI"), [self.tr("Full path to template:")], - ["/tmp/ssi_template.html"]) + ["/tmp/ssi_template.html"]) # secok if ok: templateText = '{{% ssi "{0}" parsed %}}'.format(data[0]) elif tag == "ssifile":
--- a/ProjectDjangoTagsMenu/Documentation/source/Plugin_Project_Django_Tags_Menu.PluginProjectDjangoTagsMenu.html Tue Jun 23 17:52:01 2020 +0200 +++ b/ProjectDjangoTagsMenu/Documentation/source/Plugin_Project_Django_Tags_Menu.PluginProjectDjangoTagsMenu.html Tue Jun 23 17:52:32 2020 +0200 @@ -18,155 +18,206 @@ </style> </head> -<body><a NAME="top" ID="top"></a> +<body> +<a NAME="top" ID="top"></a> <h1>Plugin_Project_Django_Tags_Menu.PluginProjectDjangoTagsMenu</h1> + <p> Module implementing the Django tags menu plugin. </p> <h3>Global Attributes</h3> + <table> -<tr><td>author</td></tr><tr><td>autoactivate</td></tr><tr><td>className</td></tr><tr><td>deactivateable</td></tr><tr><td>error</td></tr><tr><td>longDescription</td></tr><tr><td>name</td></tr><tr><td>needsRestart</td></tr><tr><td>packageName</td></tr><tr><td>pyqtApi</td></tr><tr><td>python2Compatible</td></tr><tr><td>shortDescription</td></tr><tr><td>version</td></tr> +<tr><td>author</td></tr><tr><td>autoactivate</td></tr><tr><td>className</td></tr><tr><td>deactivateable</td></tr><tr><td>error</td></tr><tr><td>longDescription</td></tr><tr><td>name</td></tr><tr><td>needsRestart</td></tr><tr><td>packageName</td></tr><tr><td>pyqtApi</td></tr><tr><td>shortDescription</td></tr><tr><td>version</td></tr> </table> <h3>Classes</h3> + <table> + <tr> <td><a href="#ProjectDjangoTagsMenuPlugin">ProjectDjangoTagsMenuPlugin</a></td> <td>Class implementing the Django tags menu plugin.</td> </tr> </table> <h3>Functions</h3> + <table> <tr><td>None</td></tr> </table> -<hr /><hr /> +<hr /> +<hr /> <a NAME="ProjectDjangoTagsMenuPlugin" ID="ProjectDjangoTagsMenuPlugin"></a> <h2>ProjectDjangoTagsMenuPlugin</h2> + <p> Class implementing the Django tags menu plugin. </p> <h3>Derived from</h3> QObject <h3>Class Attributes</h3> + <table> <tr><td>None</td></tr> </table> <h3>Class Methods</h3> + <table> <tr><td>None</td></tr> </table> <h3>Methods</h3> + <table> + <tr> <td><a href="#ProjectDjangoTagsMenuPlugin.__init__">ProjectDjangoTagsMenuPlugin</a></td> <td>Constructor</td> -</tr><tr> +</tr> +<tr> <td><a href="#ProjectDjangoTagsMenuPlugin.__attachMenu">__attachMenu</a></td> <td>Private method to attach the menu to the Django menu.</td> -</tr><tr> +</tr> +<tr> <td><a href="#ProjectDjangoTagsMenuPlugin.__detachMenu">__detachMenu</a></td> <td>Private method to detach the menu from the Django menu.</td> -</tr><tr> +</tr> +<tr> <td><a href="#ProjectDjangoTagsMenuPlugin.__initMenu">__initMenu</a></td> <td>Private slot to initialize the tags menu.</td> -</tr><tr> +</tr> +<tr> <td><a href="#ProjectDjangoTagsMenuPlugin.__loadTranslator">__loadTranslator</a></td> <td>Private method to load the translation file.</td> -</tr><tr> +</tr> +<tr> <td><a href="#ProjectDjangoTagsMenuPlugin.__pluginAboutToBeDeactivated">__pluginAboutToBeDeactivated</a></td> <td>Private slot to react on the Django plugin about to be deactivated.</td> -</tr><tr> +</tr> +<tr> <td><a href="#ProjectDjangoTagsMenuPlugin.__pluginActivated">__pluginActivated</a></td> <td>Private slot to react on plugin activation of the Django plugin.</td> -</tr><tr> +</tr> +<tr> <td><a href="#ProjectDjangoTagsMenuPlugin.__projectClosed">__projectClosed</a></td> <td>Private slot to handle the projectClosed signal.</td> -</tr><tr> +</tr> +<tr> <td><a href="#ProjectDjangoTagsMenuPlugin.activate">activate</a></td> <td>Public method to activate this plugin.</td> -</tr><tr> +</tr> +<tr> <td><a href="#ProjectDjangoTagsMenuPlugin.deactivate">deactivate</a></td> <td>Public method to deactivate this plugin.</td> </tr> </table> <h3>Static Methods</h3> + <table> <tr><td>None</td></tr> </table> + <a NAME="ProjectDjangoTagsMenuPlugin.__init__" ID="ProjectDjangoTagsMenuPlugin.__init__"></a> <h4>ProjectDjangoTagsMenuPlugin (Constructor)</h4> <b>ProjectDjangoTagsMenuPlugin</b>(<i>ui</i>) + <p> Constructor -</p><dl> +</p> +<dl> + <dt><i>ui</i></dt> <dd> reference to the user interface object (UI.UserInterface) </dd> -</dl><a NAME="ProjectDjangoTagsMenuPlugin.__attachMenu" ID="ProjectDjangoTagsMenuPlugin.__attachMenu"></a> +</dl> +<a NAME="ProjectDjangoTagsMenuPlugin.__attachMenu" ID="ProjectDjangoTagsMenuPlugin.__attachMenu"></a> <h4>ProjectDjangoTagsMenuPlugin.__attachMenu</h4> <b>__attachMenu</b>(<i></i>) + <p> Private method to attach the menu to the Django menu. -</p><a NAME="ProjectDjangoTagsMenuPlugin.__detachMenu" ID="ProjectDjangoTagsMenuPlugin.__detachMenu"></a> +</p> +<a NAME="ProjectDjangoTagsMenuPlugin.__detachMenu" ID="ProjectDjangoTagsMenuPlugin.__detachMenu"></a> <h4>ProjectDjangoTagsMenuPlugin.__detachMenu</h4> <b>__detachMenu</b>(<i></i>) + <p> Private method to detach the menu from the Django menu. -</p><a NAME="ProjectDjangoTagsMenuPlugin.__initMenu" ID="ProjectDjangoTagsMenuPlugin.__initMenu"></a> +</p> +<a NAME="ProjectDjangoTagsMenuPlugin.__initMenu" ID="ProjectDjangoTagsMenuPlugin.__initMenu"></a> <h4>ProjectDjangoTagsMenuPlugin.__initMenu</h4> <b>__initMenu</b>(<i></i>) + <p> Private slot to initialize the tags menu. -</p><a NAME="ProjectDjangoTagsMenuPlugin.__loadTranslator" ID="ProjectDjangoTagsMenuPlugin.__loadTranslator"></a> +</p> +<a NAME="ProjectDjangoTagsMenuPlugin.__loadTranslator" ID="ProjectDjangoTagsMenuPlugin.__loadTranslator"></a> <h4>ProjectDjangoTagsMenuPlugin.__loadTranslator</h4> <b>__loadTranslator</b>(<i></i>) + <p> Private method to load the translation file. -</p><a NAME="ProjectDjangoTagsMenuPlugin.__pluginAboutToBeDeactivated" ID="ProjectDjangoTagsMenuPlugin.__pluginAboutToBeDeactivated"></a> +</p> +<a NAME="ProjectDjangoTagsMenuPlugin.__pluginAboutToBeDeactivated" ID="ProjectDjangoTagsMenuPlugin.__pluginAboutToBeDeactivated"></a> <h4>ProjectDjangoTagsMenuPlugin.__pluginAboutToBeDeactivated</h4> <b>__pluginAboutToBeDeactivated</b>(<i>moduleName, pluginObject</i>) + <p> Private slot to react on the Django plugin about to be deactivated. -</p><dl> +</p> +<dl> + <dt><i>moduleName</i></dt> <dd> name of the module about to be deactivated (string) -</dd><dt><i>pluginObject</i></dt> +</dd> +<dt><i>pluginObject</i></dt> <dd> reference to the about to be deactivated plug-in object (object) </dd> -</dl><a NAME="ProjectDjangoTagsMenuPlugin.__pluginActivated" ID="ProjectDjangoTagsMenuPlugin.__pluginActivated"></a> +</dl> +<a NAME="ProjectDjangoTagsMenuPlugin.__pluginActivated" ID="ProjectDjangoTagsMenuPlugin.__pluginActivated"></a> <h4>ProjectDjangoTagsMenuPlugin.__pluginActivated</h4> <b>__pluginActivated</b>(<i>moduleName, pluginObject</i>) + <p> Private slot to react on plugin activation of the Django plugin. -</p><dl> +</p> +<dl> + <dt><i>moduleName</i></dt> <dd> name of the module activated (string) -</dd><dt><i>pluginObject</i></dt> +</dd> +<dt><i>pluginObject</i></dt> <dd> reference to the activated plug-in object (object) </dd> -</dl><a NAME="ProjectDjangoTagsMenuPlugin.__projectClosed" ID="ProjectDjangoTagsMenuPlugin.__projectClosed"></a> +</dl> +<a NAME="ProjectDjangoTagsMenuPlugin.__projectClosed" ID="ProjectDjangoTagsMenuPlugin.__projectClosed"></a> <h4>ProjectDjangoTagsMenuPlugin.__projectClosed</h4> <b>__projectClosed</b>(<i></i>) + <p> Private slot to handle the projectClosed signal. -</p><a NAME="ProjectDjangoTagsMenuPlugin.activate" ID="ProjectDjangoTagsMenuPlugin.activate"></a> +</p> +<a NAME="ProjectDjangoTagsMenuPlugin.activate" ID="ProjectDjangoTagsMenuPlugin.activate"></a> <h4>ProjectDjangoTagsMenuPlugin.activate</h4> <b>activate</b>(<i></i>) + <p> Public method to activate this plugin. -</p><dl> +</p> +<dl> <dt>Returns:</dt> <dd> tuple of None and activation status (boolean) </dd> -</dl><a NAME="ProjectDjangoTagsMenuPlugin.deactivate" ID="ProjectDjangoTagsMenuPlugin.deactivate"></a> +</dl> +<a NAME="ProjectDjangoTagsMenuPlugin.deactivate" ID="ProjectDjangoTagsMenuPlugin.deactivate"></a> <h4>ProjectDjangoTagsMenuPlugin.deactivate</h4> <b>deactivate</b>(<i></i>) + <p> Public method to deactivate this plugin. </p>
--- a/ProjectDjangoTagsMenu/Documentation/source/Plugin_Project_Django_Tags_Menu.ProjectDjangoTagsMenu.DjangoTagInputDialog.html Tue Jun 23 17:52:01 2020 +0200 +++ b/ProjectDjangoTagsMenu/Documentation/source/Plugin_Project_Django_Tags_Menu.ProjectDjangoTagsMenu.DjangoTagInputDialog.html Tue Jun 23 17:52:32 2020 +0200 @@ -18,107 +18,146 @@ </style> </head> -<body><a NAME="top" ID="top"></a> +<body> +<a NAME="top" ID="top"></a> <h1>Plugin_Project_Django_Tags_Menu.ProjectDjangoTagsMenu.DjangoTagInputDialog</h1> + <p> Module implementing a dialog to enter data for the creation of a tag. </p> <h3>Global Attributes</h3> + <table> <tr><td>None</td></tr> </table> <h3>Classes</h3> + <table> + <tr> <td><a href="#DjangoTagInputDialog">DjangoTagInputDialog</a></td> <td>Class implementing a dialog to enter data for the creation of a tag.</td> </tr> </table> <h3>Functions</h3> + <table> <tr><td>None</td></tr> </table> -<hr /><hr /> +<hr /> +<hr /> <a NAME="DjangoTagInputDialog" ID="DjangoTagInputDialog"></a> <h2>DjangoTagInputDialog</h2> + <p> Class implementing a dialog to enter data for the creation of a tag. </p> <h3>Derived from</h3> QDialog <h3>Class Attributes</h3> + <table> <tr><td>None</td></tr> </table> <h3>Class Methods</h3> + <table> <tr><td>None</td></tr> </table> <h3>Methods</h3> + <table> + <tr> <td><a href="#DjangoTagInputDialog.__init__">DjangoTagInputDialog</a></td> <td>Constructor</td> -</tr><tr> +</tr> +<tr> <td><a href="#DjangoTagInputDialog.getData">getData</a></td> <td>Public method to retrieve the entered data.</td> </tr> </table> <h3>Static Methods</h3> + <table> + <tr> <td><a href="#DjangoTagInputDialog.getText">getText</a></td> <td>Public static method to create the dialog and return the entered data.</td> </tr> </table> + <a NAME="DjangoTagInputDialog.__init__" ID="DjangoTagInputDialog.__init__"></a> <h4>DjangoTagInputDialog (Constructor)</h4> <b>DjangoTagInputDialog</b>(<i>labels, defaults=None, parent=None</i>) + <p> Constructor -</p><dl> +</p> +<dl> + <dt><i>labels</i></dt> <dd> list of labels for the entry fields (list of string) -</dd><dt><i>defaults</i></dt> +</dd> +<dt><i>defaults</i></dt> <dd> list of default values for the entry fields (list of string) -</dd><dt><i>parent</i></dt> +</dd> +<dt><i>parent</i></dt> <dd> reference to the parent widget (QWidget) </dd> -</dl><a NAME="DjangoTagInputDialog.getData" ID="DjangoTagInputDialog.getData"></a> +</dl> +<dl> + +<dt>Raises <b>RuntimeError</b>:</dt> +<dd> +raised to signal too many labels were given +</dd> +</dl> +<a NAME="DjangoTagInputDialog.getData" ID="DjangoTagInputDialog.getData"></a> <h4>DjangoTagInputDialog.getData</h4> <b>getData</b>(<i></i>) + <p> Public method to retrieve the entered data. -</p><dl> +</p> +<dl> <dt>Returns:</dt> <dd> tuple containing the text of all entries (tuple of string) </dd> -</dl><a NAME="DjangoTagInputDialog.getText" ID="DjangoTagInputDialog.getText"></a> +</dl> +<a NAME="DjangoTagInputDialog.getText" ID="DjangoTagInputDialog.getText"></a> <h4>DjangoTagInputDialog.getText (static)</h4> <b>getText</b>(<i>title, labels, defaults=None</i>) + <p> Public static method to create the dialog and return the entered data. -</p><dl> +</p> +<dl> + <dt><i>parent</i></dt> <dd> reference to the parent widget (QWidget) -</dd><dt><i>title</i></dt> +</dd> +<dt><i>title</i></dt> <dd> title of the dialog (string) -</dd><dt><i>labels</i></dt> +</dd> +<dt><i>labels</i></dt> <dd> list of labels for the entry fields (list of string) -</dd><dt><i>defaults</i></dt> +</dd> +<dt><i>defaults</i></dt> <dd> list of default values for the entry fields (list of string) </dd> -</dl><dl> +</dl> +<dl> <dt>Returns:</dt> <dd> tuple of a tuple containing the text of all entries
--- a/ProjectDjangoTagsMenu/Documentation/source/Plugin_Project_Django_Tags_Menu.ProjectDjangoTagsMenu.DjangoTagsMenuHandler.html Tue Jun 23 17:52:01 2020 +0200 +++ b/ProjectDjangoTagsMenu/Documentation/source/Plugin_Project_Django_Tags_Menu.ProjectDjangoTagsMenu.DjangoTagsMenuHandler.html Tue Jun 23 17:52:32 2020 +0200 @@ -18,243 +18,320 @@ </style> </head> -<body><a NAME="top" ID="top"></a> +<body> +<a NAME="top" ID="top"></a> <h1>Plugin_Project_Django_Tags_Menu.ProjectDjangoTagsMenu.DjangoTagsMenuHandler</h1> + <p> Module implementing the Django tags menu handler. </p> <h3>Global Attributes</h3> + <table> <tr><td>None</td></tr> </table> <h3>Classes</h3> + <table> + <tr> <td><a href="#DjangoTagsMenuHandler">DjangoTagsMenuHandler</a></td> <td>Class implementing the Django tags menu handler.</td> </tr> </table> <h3>Functions</h3> + <table> <tr><td>None</td></tr> </table> -<hr /><hr /> +<hr /> +<hr /> <a NAME="DjangoTagsMenuHandler" ID="DjangoTagsMenuHandler"></a> <h2>DjangoTagsMenuHandler</h2> + <p> Class implementing the Django tags menu handler. </p> <h3>Derived from</h3> QObject <h3>Class Attributes</h3> + <table> <tr><td>None</td></tr> </table> <h3>Class Methods</h3> + <table> <tr><td>None</td></tr> </table> <h3>Methods</h3> + <table> + <tr> <td><a href="#DjangoTagsMenuHandler.__init__">DjangoTagsMenuHandler</a></td> <td>Constructor</td> -</tr><tr> +</tr> +<tr> <td><a href="#DjangoTagsMenuHandler.__applyTemplate">__applyTemplate</a></td> <td>Private slot to generate and insert the template text.</td> -</tr><tr> +</tr> +<tr> <td><a href="#DjangoTagsMenuHandler.__findTemplateTag">__findTemplateTag</a></td> <td>Private slot to find a template tag and insert its text.</td> -</tr><tr> +</tr> +<tr> <td><a href="#DjangoTagsMenuHandler.__generateTemplateText">__generateTemplateText</a></td> <td>Private slot to generate the template text.</td> -</tr><tr> +</tr> +<tr> <td><a href="#DjangoTagsMenuHandler.__initCommentsMenu">__initCommentsMenu</a></td> <td>Private method to initialize the comments menu.</td> -</tr><tr> +</tr> +<tr> <td><a href="#DjangoTagsMenuHandler.__initFiltersMenu">__initFiltersMenu</a></td> <td>Private method to initialize the filters menu.</td> -</tr><tr> +</tr> +<tr> <td><a href="#DjangoTagsMenuHandler.__initHumanizeMenu">__initHumanizeMenu</a></td> <td>Private method to initialize the humanize menu.</td> -</tr><tr> +</tr> +<tr> <td><a href="#DjangoTagsMenuHandler.__initInternationalizationMenu">__initInternationalizationMenu</a></td> <td>Private method to initialize the static menu.</td> -</tr><tr> +</tr> +<tr> <td><a href="#DjangoTagsMenuHandler.__initLocalizationMenu">__initLocalizationMenu</a></td> <td>Private method to initialize the static menu.</td> -</tr><tr> +</tr> +<tr> <td><a href="#DjangoTagsMenuHandler.__initStaticMenu">__initStaticMenu</a></td> <td>Private method to initialize the static menu.</td> -</tr><tr> +</tr> +<tr> <td><a href="#DjangoTagsMenuHandler.__initTagsMenu">__initTagsMenu</a></td> <td>Private method to initialize the tags menu.</td> -</tr><tr> +</tr> +<tr> <td><a href="#DjangoTagsMenuHandler.__initTimezoneMenu">__initTimezoneMenu</a></td> <td>Private method to initialize the static menu.</td> -</tr><tr> +</tr> +<tr> <td><a href="#DjangoTagsMenuHandler.__initWebDesignMenu">__initWebDesignMenu</a></td> <td>Private method to initialize the web design menu.</td> -</tr><tr> +</tr> +<tr> <td><a href="#DjangoTagsMenuHandler.closeAllWindows">closeAllWindows</a></td> <td>Public method to close all dialogs managed by the handler.</td> -</tr><tr> +</tr> +<tr> <td><a href="#DjangoTagsMenuHandler.initMenus">initMenus</a></td> <td>Public method to initialize the various menus.</td> </tr> </table> <h3>Static Methods</h3> + <table> <tr><td>None</td></tr> </table> + <a NAME="DjangoTagsMenuHandler.__init__" ID="DjangoTagsMenuHandler.__init__"></a> <h4>DjangoTagsMenuHandler (Constructor)</h4> <b>DjangoTagsMenuHandler</b>(<i>ui, parent=None</i>) + <p> Constructor -</p><dl> +</p> +<dl> + <dt><i>ui</i></dt> <dd> reference to the user interface object (UI.UserInterface) -</dd><dt><i>parent</i></dt> +</dd> +<dt><i>parent</i></dt> <dd> reference to the parent object (QObject) </dd> -</dl><a NAME="DjangoTagsMenuHandler.__applyTemplate" ID="DjangoTagsMenuHandler.__applyTemplate"></a> +</dl> +<a NAME="DjangoTagsMenuHandler.__applyTemplate" ID="DjangoTagsMenuHandler.__applyTemplate"></a> <h4>DjangoTagsMenuHandler.__applyTemplate</h4> <b>__applyTemplate</b>(<i>tag</i>) + <p> Private slot to generate and insert the template text. -</p><dl> +</p> +<dl> + <dt><i>tag</i></dt> <dd> name of the tag to insert (string) </dd> -</dl><a NAME="DjangoTagsMenuHandler.__findTemplateTag" ID="DjangoTagsMenuHandler.__findTemplateTag"></a> +</dl> +<a NAME="DjangoTagsMenuHandler.__findTemplateTag" ID="DjangoTagsMenuHandler.__findTemplateTag"></a> <h4>DjangoTagsMenuHandler.__findTemplateTag</h4> <b>__findTemplateTag</b>(<i></i>) + <p> Private slot to find a template tag and insert its text. -</p><a NAME="DjangoTagsMenuHandler.__generateTemplateText" ID="DjangoTagsMenuHandler.__generateTemplateText"></a> +</p> +<a NAME="DjangoTagsMenuHandler.__generateTemplateText" ID="DjangoTagsMenuHandler.__generateTemplateText"></a> <h4>DjangoTagsMenuHandler.__generateTemplateText</h4> <b>__generateTemplateText</b>(<i>tag, selectedText</i>) + <p> Private slot to generate the template text. -</p><dl> +</p> +<dl> + <dt><i>tag</i></dt> <dd> name of the tag to insert (string) -</dd><dt><i>selectedText</i></dt> +</dd> +<dt><i>selectedText</i></dt> <dd> selected text of the current editor (string) </dd> -</dl><dl> +</dl> +<dl> <dt>Returns:</dt> <dd> tuple of generated template text (string), a flag indicating to perform a replace operation (boolean) </dd> -</dl><a NAME="DjangoTagsMenuHandler.__initCommentsMenu" ID="DjangoTagsMenuHandler.__initCommentsMenu"></a> +</dl> +<a NAME="DjangoTagsMenuHandler.__initCommentsMenu" ID="DjangoTagsMenuHandler.__initCommentsMenu"></a> <h4>DjangoTagsMenuHandler.__initCommentsMenu</h4> <b>__initCommentsMenu</b>(<i></i>) + <p> Private method to initialize the comments menu. -</p><dl> +</p> +<dl> <dt>Returns:</dt> <dd> generated menu (QMenu) </dd> -</dl><a NAME="DjangoTagsMenuHandler.__initFiltersMenu" ID="DjangoTagsMenuHandler.__initFiltersMenu"></a> +</dl> +<a NAME="DjangoTagsMenuHandler.__initFiltersMenu" ID="DjangoTagsMenuHandler.__initFiltersMenu"></a> <h4>DjangoTagsMenuHandler.__initFiltersMenu</h4> <b>__initFiltersMenu</b>(<i></i>) + <p> Private method to initialize the filters menu. -</p><dl> +</p> +<dl> <dt>Returns:</dt> <dd> generated menu (QMenu) </dd> -</dl><a NAME="DjangoTagsMenuHandler.__initHumanizeMenu" ID="DjangoTagsMenuHandler.__initHumanizeMenu"></a> +</dl> +<a NAME="DjangoTagsMenuHandler.__initHumanizeMenu" ID="DjangoTagsMenuHandler.__initHumanizeMenu"></a> <h4>DjangoTagsMenuHandler.__initHumanizeMenu</h4> <b>__initHumanizeMenu</b>(<i></i>) + <p> Private method to initialize the humanize menu. -</p><dl> +</p> +<dl> <dt>Returns:</dt> <dd> generated menu (QMenu) </dd> -</dl><a NAME="DjangoTagsMenuHandler.__initInternationalizationMenu" ID="DjangoTagsMenuHandler.__initInternationalizationMenu"></a> +</dl> +<a NAME="DjangoTagsMenuHandler.__initInternationalizationMenu" ID="DjangoTagsMenuHandler.__initInternationalizationMenu"></a> <h4>DjangoTagsMenuHandler.__initInternationalizationMenu</h4> <b>__initInternationalizationMenu</b>(<i></i>) + <p> Private method to initialize the static menu. -</p><dl> +</p> +<dl> <dt>Returns:</dt> <dd> generated menu (QMenu) </dd> -</dl><a NAME="DjangoTagsMenuHandler.__initLocalizationMenu" ID="DjangoTagsMenuHandler.__initLocalizationMenu"></a> +</dl> +<a NAME="DjangoTagsMenuHandler.__initLocalizationMenu" ID="DjangoTagsMenuHandler.__initLocalizationMenu"></a> <h4>DjangoTagsMenuHandler.__initLocalizationMenu</h4> <b>__initLocalizationMenu</b>(<i></i>) + <p> Private method to initialize the static menu. -</p><dl> +</p> +<dl> <dt>Returns:</dt> <dd> generated menu (QMenu) </dd> -</dl><a NAME="DjangoTagsMenuHandler.__initStaticMenu" ID="DjangoTagsMenuHandler.__initStaticMenu"></a> +</dl> +<a NAME="DjangoTagsMenuHandler.__initStaticMenu" ID="DjangoTagsMenuHandler.__initStaticMenu"></a> <h4>DjangoTagsMenuHandler.__initStaticMenu</h4> <b>__initStaticMenu</b>(<i></i>) + <p> Private method to initialize the static menu. -</p><dl> +</p> +<dl> <dt>Returns:</dt> <dd> generated menu (QMenu) </dd> -</dl><a NAME="DjangoTagsMenuHandler.__initTagsMenu" ID="DjangoTagsMenuHandler.__initTagsMenu"></a> +</dl> +<a NAME="DjangoTagsMenuHandler.__initTagsMenu" ID="DjangoTagsMenuHandler.__initTagsMenu"></a> <h4>DjangoTagsMenuHandler.__initTagsMenu</h4> <b>__initTagsMenu</b>(<i></i>) + <p> Private method to initialize the tags menu. -</p><dl> +</p> +<dl> <dt>Returns:</dt> <dd> generated menu (QMenu) </dd> -</dl><a NAME="DjangoTagsMenuHandler.__initTimezoneMenu" ID="DjangoTagsMenuHandler.__initTimezoneMenu"></a> +</dl> +<a NAME="DjangoTagsMenuHandler.__initTimezoneMenu" ID="DjangoTagsMenuHandler.__initTimezoneMenu"></a> <h4>DjangoTagsMenuHandler.__initTimezoneMenu</h4> <b>__initTimezoneMenu</b>(<i></i>) + <p> Private method to initialize the static menu. -</p><dl> +</p> +<dl> <dt>Returns:</dt> <dd> generated menu (QMenu) </dd> -</dl><a NAME="DjangoTagsMenuHandler.__initWebDesignMenu" ID="DjangoTagsMenuHandler.__initWebDesignMenu"></a> +</dl> +<a NAME="DjangoTagsMenuHandler.__initWebDesignMenu" ID="DjangoTagsMenuHandler.__initWebDesignMenu"></a> <h4>DjangoTagsMenuHandler.__initWebDesignMenu</h4> <b>__initWebDesignMenu</b>(<i></i>) + <p> Private method to initialize the web design menu. -</p><dl> +</p> +<dl> <dt>Returns:</dt> <dd> generated menu (QMenu) </dd> -</dl><a NAME="DjangoTagsMenuHandler.closeAllWindows" ID="DjangoTagsMenuHandler.closeAllWindows"></a> +</dl> +<a NAME="DjangoTagsMenuHandler.closeAllWindows" ID="DjangoTagsMenuHandler.closeAllWindows"></a> <h4>DjangoTagsMenuHandler.closeAllWindows</h4> <b>closeAllWindows</b>(<i></i>) + <p> Public method to close all dialogs managed by the handler. -</p><a NAME="DjangoTagsMenuHandler.initMenus" ID="DjangoTagsMenuHandler.initMenus"></a> +</p> +<a NAME="DjangoTagsMenuHandler.initMenus" ID="DjangoTagsMenuHandler.initMenus"></a> <h4>DjangoTagsMenuHandler.initMenus</h4> <b>initMenus</b>(<i>mainMenu</i>) + <p> Public method to initialize the various menus. -</p><dl> +</p> +<dl> + <dt><i>mainMenu</i></dt> <dd> reference to the main tags menu (QMenu)
--- a/ProjectDjangoTagsMenu/Documentation/source/Plugin_Project_Django_Tags_Menu.ProjectDjangoTagsMenu.FindTemplateTagDialog.html Tue Jun 23 17:52:01 2020 +0200 +++ b/ProjectDjangoTagsMenu/Documentation/source/Plugin_Project_Django_Tags_Menu.ProjectDjangoTagsMenu.FindTemplateTagDialog.html Tue Jun 23 17:52:32 2020 +0200 @@ -18,33 +18,43 @@ </style> </head> -<body><a NAME="top" ID="top"></a> +<body> +<a NAME="top" ID="top"></a> <h1>Plugin_Project_Django_Tags_Menu.ProjectDjangoTagsMenu.FindTemplateTagDialog</h1> + <p> Module implementing a dialog to search foe template tags. </p> <h3>Global Attributes</h3> + <table> <tr><td>None</td></tr> </table> <h3>Classes</h3> + <table> + <tr> <td><a href="#FindTemplateTagDialog">FindTemplateTagDialog</a></td> <td>Class implementing a dialog to search foe template tags.</td> </tr> </table> <h3>Functions</h3> + <table> <tr><td>None</td></tr> </table> -<hr /><hr /> +<hr /> +<hr /> <a NAME="FindTemplateTagDialog" ID="FindTemplateTagDialog"></a> <h2>FindTemplateTagDialog</h2> + <p> Class implementing a dialog to search foe template tags. -</p><h3>Signals</h3> +</p> +<h3>Signals</h3> <dl> + <dt>tag(str)</dt> <dd> emitted to indicate to generate template text for the @@ -54,48 +64,63 @@ <h3>Derived from</h3> QDialog, Ui_FindTemplateTagDialog <h3>Class Attributes</h3> + <table> <tr><td>None</td></tr> </table> <h3>Class Methods</h3> + <table> <tr><td>None</td></tr> </table> <h3>Methods</h3> + <table> + <tr> <td><a href="#FindTemplateTagDialog.__init__">FindTemplateTagDialog</a></td> <td>Constructor</td> -</tr><tr> +</tr> +<tr> <td><a href="#FindTemplateTagDialog.on_createButton_clicked">on_createButton_clicked</a></td> <td>Private slot handling the user pressing the create button.</td> -</tr><tr> +</tr> +<tr> <td><a href="#FindTemplateTagDialog.on_tagEdit_returnPressed">on_tagEdit_returnPressed</a></td> <td>Private slot handling the user pressing the return key.</td> </tr> </table> <h3>Static Methods</h3> + <table> <tr><td>None</td></tr> </table> + <a NAME="FindTemplateTagDialog.__init__" ID="FindTemplateTagDialog.__init__"></a> <h4>FindTemplateTagDialog (Constructor)</h4> <b>FindTemplateTagDialog</b>(<i>parent=None</i>) + <p> Constructor -</p><dl> +</p> +<dl> + <dt><i>parent</i></dt> <dd> reference to the parent widget (QWidget) </dd> -</dl><a NAME="FindTemplateTagDialog.on_createButton_clicked" ID="FindTemplateTagDialog.on_createButton_clicked"></a> +</dl> +<a NAME="FindTemplateTagDialog.on_createButton_clicked" ID="FindTemplateTagDialog.on_createButton_clicked"></a> <h4>FindTemplateTagDialog.on_createButton_clicked</h4> <b>on_createButton_clicked</b>(<i></i>) + <p> Private slot handling the user pressing the create button. -</p><a NAME="FindTemplateTagDialog.on_tagEdit_returnPressed" ID="FindTemplateTagDialog.on_tagEdit_returnPressed"></a> +</p> +<a NAME="FindTemplateTagDialog.on_tagEdit_returnPressed" ID="FindTemplateTagDialog.on_tagEdit_returnPressed"></a> <h4>FindTemplateTagDialog.on_tagEdit_returnPressed</h4> <b>on_tagEdit_returnPressed</b>(<i></i>) + <p> Private slot handling the user pressing the return key. </p>
--- a/ProjectDjangoTagsMenu/Documentation/source/Plugin_Project_Django_Tags_Menu.ProjectDjangoTagsMenu.IeCommentDialog.html Tue Jun 23 17:52:01 2020 +0200 +++ b/ProjectDjangoTagsMenu/Documentation/source/Plugin_Project_Django_Tags_Menu.ProjectDjangoTagsMenu.IeCommentDialog.html Tue Jun 23 17:52:32 2020 +0200 @@ -18,90 +18,117 @@ </style> </head> -<body><a NAME="top" ID="top"></a> +<body> +<a NAME="top" ID="top"></a> <h1>Plugin_Project_Django_Tags_Menu.ProjectDjangoTagsMenu.IeCommentDialog</h1> + <p> Module implementing a dialog to enter data for an IE comment. </p> <h3>Global Attributes</h3> + <table> <tr><td>None</td></tr> </table> <h3>Classes</h3> + <table> + <tr> <td><a href="#IeCommentDialog">IeCommentDialog</a></td> <td>Class implementing a dialog to enter data for an IE comment.</td> </tr> </table> <h3>Functions</h3> + <table> <tr><td>None</td></tr> </table> -<hr /><hr /> +<hr /> +<hr /> <a NAME="IeCommentDialog" ID="IeCommentDialog"></a> <h2>IeCommentDialog</h2> + <p> Class implementing a dialog to enter data for an IE comment. </p> <h3>Derived from</h3> QDialog, Ui_IeCommentDialog <h3>Class Attributes</h3> + <table> <tr><td>None</td></tr> </table> <h3>Class Methods</h3> + <table> <tr><td>None</td></tr> </table> <h3>Methods</h3> + <table> + <tr> <td><a href="#IeCommentDialog.__init__">IeCommentDialog</a></td> <td>Constructor</td> -</tr><tr> +</tr> +<tr> <td><a href="#IeCommentDialog.getData">getData</a></td> <td>Public method to retrieve the entered data.</td> </tr> </table> <h3>Static Methods</h3> + <table> + <tr> <td><a href="#IeCommentDialog.getTag">getTag</a></td> <td>Public static method to get the formatted tag.</td> </tr> </table> + <a NAME="IeCommentDialog.__init__" ID="IeCommentDialog.__init__"></a> <h4>IeCommentDialog (Constructor)</h4> <b>IeCommentDialog</b>(<i>parent=None</i>) + <p> Constructor -</p><dl> +</p> +<dl> + <dt><i>parent</i></dt> <dd> reference to the parent widget (QWidget) </dd> -</dl><a NAME="IeCommentDialog.getData" ID="IeCommentDialog.getData"></a> +</dl> +<a NAME="IeCommentDialog.getData" ID="IeCommentDialog.getData"></a> <h4>IeCommentDialog.getData</h4> <b>getData</b>(<i></i>) + <p> Public method to retrieve the entered data. -</p><dl> +</p> +<dl> <dt>Returns:</dt> <dd> tuple of condition (string) and version (integer) </dd> -</dl><a NAME="IeCommentDialog.getTag" ID="IeCommentDialog.getTag"></a> +</dl> +<a NAME="IeCommentDialog.getTag" ID="IeCommentDialog.getTag"></a> <h4>IeCommentDialog.getTag (static)</h4> <b>getTag</b>(<i></i>) + <p> Public static method to get the formatted tag. -</p><dl> +</p> +<dl> + <dt><i>selectedText</i></dt> <dd> selected text to embed (string) </dd> -</dl><dl> +</dl> +<dl> <dt>Returns:</dt> <dd> formatted tag (string) and a flag indicating the acceptance
--- a/ProjectDjangoTagsMenu/Documentation/source/Plugin_Project_Django_Tags_Menu.ProjectDjangoTagsMenu.IfTagInputDialog.html Tue Jun 23 17:52:01 2020 +0200 +++ b/ProjectDjangoTagsMenu/Documentation/source/Plugin_Project_Django_Tags_Menu.ProjectDjangoTagsMenu.IfTagInputDialog.html Tue Jun 23 17:52:32 2020 +0200 @@ -18,85 +18,111 @@ </style> </head> -<body><a NAME="top" ID="top"></a> +<body> +<a NAME="top" ID="top"></a> <h1>Plugin_Project_Django_Tags_Menu.ProjectDjangoTagsMenu.IfTagInputDialog</h1> + <p> Module implementing a dialog to enter the parameters for the if tag. </p> <h3>Global Attributes</h3> + <table> <tr><td>None</td></tr> </table> <h3>Classes</h3> + <table> + <tr> <td><a href="#IfTagInputDialog">IfTagInputDialog</a></td> <td>Class implementing a dialog to enter the parameters for the if tag.</td> </tr> </table> <h3>Functions</h3> + <table> <tr><td>None</td></tr> </table> -<hr /><hr /> +<hr /> +<hr /> <a NAME="IfTagInputDialog" ID="IfTagInputDialog"></a> <h2>IfTagInputDialog</h2> + <p> Class implementing a dialog to enter the parameters for the if tag. </p> <h3>Derived from</h3> QDialog, Ui_IfTagInputDialog <h3>Class Attributes</h3> + <table> <tr><td>None</td></tr> </table> <h3>Class Methods</h3> + <table> <tr><td>None</td></tr> </table> <h3>Methods</h3> + <table> + <tr> <td><a href="#IfTagInputDialog.__init__">IfTagInputDialog</a></td> <td>Constructor</td> -</tr><tr> +</tr> +<tr> <td><a href="#IfTagInputDialog.getTag">getTag</a></td> <td>Public method to retrieve the tag.</td> -</tr><tr> +</tr> +<tr> <td><a href="#IfTagInputDialog.on_ifEdit_textChanged">on_ifEdit_textChanged</a></td> <td>Private slot to handle changes of the 'if' expression.</td> </tr> </table> <h3>Static Methods</h3> + <table> <tr><td>None</td></tr> </table> + <a NAME="IfTagInputDialog.__init__" ID="IfTagInputDialog.__init__"></a> <h4>IfTagInputDialog (Constructor)</h4> <b>IfTagInputDialog</b>(<i>parent=None</i>) + <p> Constructor -</p><dl> +</p> +<dl> + <dt><i>parent</i></dt> <dd> reference to the parent widget (QWidget) </dd> -</dl><a NAME="IfTagInputDialog.getTag" ID="IfTagInputDialog.getTag"></a> +</dl> +<a NAME="IfTagInputDialog.getTag" ID="IfTagInputDialog.getTag"></a> <h4>IfTagInputDialog.getTag</h4> <b>getTag</b>(<i></i>) + <p> Public method to retrieve the tag. -</p><dl> +</p> +<dl> <dt>Returns:</dt> <dd> tag (string) </dd> -</dl><a NAME="IfTagInputDialog.on_ifEdit_textChanged" ID="IfTagInputDialog.on_ifEdit_textChanged"></a> +</dl> +<a NAME="IfTagInputDialog.on_ifEdit_textChanged" ID="IfTagInputDialog.on_ifEdit_textChanged"></a> <h4>IfTagInputDialog.on_ifEdit_textChanged</h4> <b>on_ifEdit_textChanged</b>(<i>txt</i>) + <p> Private slot to handle changes of the 'if' expression. -</p><dl> +</p> +<dl> + <dt><i>txt</i></dt> <dd> text of the line edit (string)
--- a/ProjectDjangoTagsMenu/Documentation/source/Plugin_Project_Django_Tags_Menu.ProjectDjangoTagsMenu.LoremTagInputDialog.html Tue Jun 23 17:52:01 2020 +0200 +++ b/ProjectDjangoTagsMenu/Documentation/source/Plugin_Project_Django_Tags_Menu.ProjectDjangoTagsMenu.LoremTagInputDialog.html Tue Jun 23 17:52:32 2020 +0200 @@ -18,72 +18,93 @@ </style> </head> -<body><a NAME="top" ID="top"></a> +<body> +<a NAME="top" ID="top"></a> <h1>Plugin_Project_Django_Tags_Menu.ProjectDjangoTagsMenu.LoremTagInputDialog</h1> + <p> Module implementing a dialog to enter the parameters for the lorem tag. </p> <h3>Global Attributes</h3> + <table> <tr><td>None</td></tr> </table> <h3>Classes</h3> + <table> + <tr> <td><a href="#LoremTagInputDialog">LoremTagInputDialog</a></td> <td>Class implementing a dialog to enter the parameters for the lorem tag.</td> </tr> </table> <h3>Functions</h3> + <table> <tr><td>None</td></tr> </table> -<hr /><hr /> +<hr /> +<hr /> <a NAME="LoremTagInputDialog" ID="LoremTagInputDialog"></a> <h2>LoremTagInputDialog</h2> + <p> Class implementing a dialog to enter the parameters for the lorem tag. </p> <h3>Derived from</h3> QDialog, Ui_LoremTagInputDialog <h3>Class Attributes</h3> + <table> <tr><td>None</td></tr> </table> <h3>Class Methods</h3> + <table> <tr><td>None</td></tr> </table> <h3>Methods</h3> + <table> + <tr> <td><a href="#LoremTagInputDialog.__init__">LoremTagInputDialog</a></td> <td>Constructor</td> -</tr><tr> +</tr> +<tr> <td><a href="#LoremTagInputDialog.getTag">getTag</a></td> <td>Public method to get the generated tag string.</td> </tr> </table> <h3>Static Methods</h3> + <table> <tr><td>None</td></tr> </table> + <a NAME="LoremTagInputDialog.__init__" ID="LoremTagInputDialog.__init__"></a> <h4>LoremTagInputDialog (Constructor)</h4> <b>LoremTagInputDialog</b>(<i>parent=None</i>) + <p> Constructor -</p><dl> +</p> +<dl> + <dt><i>parent</i></dt> <dd> reference to the parent widget (QWidget) </dd> -</dl><a NAME="LoremTagInputDialog.getTag" ID="LoremTagInputDialog.getTag"></a> +</dl> +<a NAME="LoremTagInputDialog.getTag" ID="LoremTagInputDialog.getTag"></a> <h4>LoremTagInputDialog.getTag</h4> <b>getTag</b>(<i></i>) + <p> Public method to get the generated tag string. -</p><dl> +</p> +<dl> <dt>Returns:</dt> <dd> tag string (string)
--- a/ProjectDjangoTagsMenu/Documentation/source/Plugin_Project_Django_Tags_Menu.ProjectDjangoTagsMenu.MultiLineInputDialog.html Tue Jun 23 17:52:01 2020 +0200 +++ b/ProjectDjangoTagsMenu/Documentation/source/Plugin_Project_Django_Tags_Menu.ProjectDjangoTagsMenu.MultiLineInputDialog.html Tue Jun 23 17:52:32 2020 +0200 @@ -18,106 +18,138 @@ </style> </head> -<body><a NAME="top" ID="top"></a> +<body> +<a NAME="top" ID="top"></a> <h1>Plugin_Project_Django_Tags_Menu.ProjectDjangoTagsMenu.MultiLineInputDialog</h1> + <p> Module implementing a dialog for the input of multi line text. </p> <h3>Global Attributes</h3> + <table> <tr><td>None</td></tr> </table> <h3>Classes</h3> + <table> + <tr> <td><a href="#MultiLineInputDialog">MultiLineInputDialog</a></td> <td>Class implementing a dialog for the input of multi line text.</td> </tr> </table> <h3>Functions</h3> + <table> <tr><td>None</td></tr> </table> -<hr /><hr /> +<hr /> +<hr /> <a NAME="MultiLineInputDialog" ID="MultiLineInputDialog"></a> <h2>MultiLineInputDialog</h2> + <p> Class implementing a dialog for the input of multi line text. </p> <h3>Derived from</h3> QDialog, Ui_MultiLineInputDialog <h3>Class Attributes</h3> + <table> <tr><td>None</td></tr> </table> <h3>Class Methods</h3> + <table> <tr><td>None</td></tr> </table> <h3>Methods</h3> + <table> + <tr> <td><a href="#MultiLineInputDialog.__init__">MultiLineInputDialog</a></td> <td>Constructor</td> -</tr><tr> +</tr> +<tr> <td><a href="#MultiLineInputDialog.getData">getData</a></td> <td>Public method to retrieve the multi line text.</td> </tr> </table> <h3>Static Methods</h3> + <table> + <tr> <td><a href="#MultiLineInputDialog.getText">getText</a></td> <td>Public static method to create the dialog and return the multi line text.</td> </tr> </table> + <a NAME="MultiLineInputDialog.__init__" ID="MultiLineInputDialog.__init__"></a> <h4>MultiLineInputDialog (Constructor)</h4> <b>MultiLineInputDialog</b>(<i>label, default, parent=None</i>) + <p> Constructor -</p><dl> +</p> +<dl> + <dt><i>label</i></dt> <dd> label for the entry field (string) -</dd><dt><i>default</i></dt> +</dd> +<dt><i>default</i></dt> <dd> default value for the entry field (string) -</dd><dt><i>parent</i></dt> +</dd> +<dt><i>parent</i></dt> <dd> reference to the parent widget (QWidget) </dd> -</dl><a NAME="MultiLineInputDialog.getData" ID="MultiLineInputDialog.getData"></a> +</dl> +<a NAME="MultiLineInputDialog.getData" ID="MultiLineInputDialog.getData"></a> <h4>MultiLineInputDialog.getData</h4> <b>getData</b>(<i></i>) + <p> Public method to retrieve the multi line text. -</p><dl> +</p> +<dl> <dt>Returns:</dt> <dd> multi line text (string) </dd> -</dl><a NAME="MultiLineInputDialog.getText" ID="MultiLineInputDialog.getText"></a> +</dl> +<a NAME="MultiLineInputDialog.getText" ID="MultiLineInputDialog.getText"></a> <h4>MultiLineInputDialog.getText (static)</h4> <b>getText</b>(<i>title, label, default=""</i>) + <p> Public static method to create the dialog and return the multi line text. -</p><dl> +</p> +<dl> + <dt><i>parent</i></dt> <dd> reference to the parent widget (QWidget) -</dd><dt><i>title</i></dt> +</dd> +<dt><i>title</i></dt> <dd> title of the dialog (string) -</dd><dt><i>label</i></dt> +</dd> +<dt><i>label</i></dt> <dd> label for the entry field (string) -</dd><dt><i>default</i></dt> +</dd> +<dt><i>default</i></dt> <dd> default value for the entry field (string) </dd> -</dl><dl> +</dl> +<dl> <dt>Returns:</dt> <dd> multi line text (string) and a flag indicating the acceptance
--- a/ProjectDjangoTagsMenu/Documentation/source/Plugin_Project_Django_Tags_Menu.ProjectDjangoTagsMenu.TimezoneSelectionDialog.html Tue Jun 23 17:52:01 2020 +0200 +++ b/ProjectDjangoTagsMenu/Documentation/source/Plugin_Project_Django_Tags_Menu.ProjectDjangoTagsMenu.TimezoneSelectionDialog.html Tue Jun 23 17:52:32 2020 +0200 @@ -18,119 +18,157 @@ </style> </head> -<body><a NAME="top" ID="top"></a> +<body> +<a NAME="top" ID="top"></a> <h1>Plugin_Project_Django_Tags_Menu.ProjectDjangoTagsMenu.TimezoneSelectionDialog</h1> + <p> Module implementing a dialog to select a time zone. </p> <h3>Global Attributes</h3> + <table> <tr><td>None</td></tr> </table> <h3>Classes</h3> + <table> + <tr> <td><a href="#TimezoneSelectionDialog">TimezoneSelectionDialog</a></td> <td>Class implementing a dialog to select a time zone.</td> </tr> </table> <h3>Functions</h3> + <table> <tr><td>None</td></tr> </table> -<hr /><hr /> +<hr /> +<hr /> <a NAME="TimezoneSelectionDialog" ID="TimezoneSelectionDialog"></a> <h2>TimezoneSelectionDialog</h2> + <p> Class implementing a dialog to select a time zone. </p> <h3>Derived from</h3> QDialog, Ui_TimezoneSelectionDialog <h3>Class Attributes</h3> + <table> <tr><td>Timezones</td></tr> </table> <h3>Class Methods</h3> + <table> <tr><td>None</td></tr> </table> <h3>Methods</h3> + <table> + <tr> <td><a href="#TimezoneSelectionDialog.__init__">TimezoneSelectionDialog</a></td> <td>Constructor</td> -</tr><tr> +</tr> +<tr> <td><a href="#TimezoneSelectionDialog.__updateOK">__updateOK</a></td> <td>Private method to update the OK button.</td> -</tr><tr> +</tr> +<tr> <td><a href="#TimezoneSelectionDialog.getData">getData</a></td> <td>Public method to retrieve the data.</td> -</tr><tr> +</tr> +<tr> <td><a href="#TimezoneSelectionDialog.on_cityList_itemSelectionChanged">on_cityList_itemSelectionChanged</a></td> <td>Private slot handling a change of the city selection.</td> -</tr><tr> +</tr> +<tr> <td><a href="#TimezoneSelectionDialog.on_regionCombo_currentIndexChanged">on_regionCombo_currentIndexChanged</a></td> <td>Private slot handling the selection of a time zone region.</td> </tr> </table> <h3>Static Methods</h3> + <table> + <tr> <td><a href="#TimezoneSelectionDialog.getTimezone">getTimezone</a></td> <td>Public static method to select a time zone.</td> </tr> </table> + <a NAME="TimezoneSelectionDialog.__init__" ID="TimezoneSelectionDialog.__init__"></a> <h4>TimezoneSelectionDialog (Constructor)</h4> <b>TimezoneSelectionDialog</b>(<i>parent=None</i>) + <p> Constructor -</p><dl> +</p> +<dl> + <dt><i>parent</i></dt> <dd> reference to the parent widget (QWidget) </dd> -</dl><a NAME="TimezoneSelectionDialog.__updateOK" ID="TimezoneSelectionDialog.__updateOK"></a> +</dl> +<a NAME="TimezoneSelectionDialog.__updateOK" ID="TimezoneSelectionDialog.__updateOK"></a> <h4>TimezoneSelectionDialog.__updateOK</h4> <b>__updateOK</b>(<i></i>) + <p> Private method to update the OK button. -</p><a NAME="TimezoneSelectionDialog.getData" ID="TimezoneSelectionDialog.getData"></a> +</p> +<a NAME="TimezoneSelectionDialog.getData" ID="TimezoneSelectionDialog.getData"></a> <h4>TimezoneSelectionDialog.getData</h4> <b>getData</b>(<i></i>) + <p> Public method to retrieve the data. -</p><dl> +</p> +<dl> <dt>Returns:</dt> <dd> selected time zone (string) </dd> -</dl><a NAME="TimezoneSelectionDialog.on_cityList_itemSelectionChanged" ID="TimezoneSelectionDialog.on_cityList_itemSelectionChanged"></a> +</dl> +<a NAME="TimezoneSelectionDialog.on_cityList_itemSelectionChanged" ID="TimezoneSelectionDialog.on_cityList_itemSelectionChanged"></a> <h4>TimezoneSelectionDialog.on_cityList_itemSelectionChanged</h4> <b>on_cityList_itemSelectionChanged</b>(<i></i>) + <p> Private slot handling a change of the city selection. -</p><a NAME="TimezoneSelectionDialog.on_regionCombo_currentIndexChanged" ID="TimezoneSelectionDialog.on_regionCombo_currentIndexChanged"></a> +</p> +<a NAME="TimezoneSelectionDialog.on_regionCombo_currentIndexChanged" ID="TimezoneSelectionDialog.on_regionCombo_currentIndexChanged"></a> <h4>TimezoneSelectionDialog.on_regionCombo_currentIndexChanged</h4> <b>on_regionCombo_currentIndexChanged</b>(<i>region</i>) + <p> Private slot handling the selection of a time zone region. -</p><dl> +</p> +<dl> + <dt><i>region</i></dt> <dd> selected region (string) </dd> -</dl><a NAME="TimezoneSelectionDialog.getTimezone" ID="TimezoneSelectionDialog.getTimezone"></a> +</dl> +<a NAME="TimezoneSelectionDialog.getTimezone" ID="TimezoneSelectionDialog.getTimezone"></a> <h4>TimezoneSelectionDialog.getTimezone (static)</h4> <b>getTimezone</b>(<i></i>) + <p> Public static method to select a time zone. -</p><dl> +</p> +<dl> + <dt><i>parent</i></dt> <dd> reference to the parent widget (QWidget) </dd> -</dl><dl> +</dl> +<dl> <dt>Returns:</dt> <dd> tuple of selected time zone (string) and flag indicating
--- a/ProjectDjangoTagsMenu/Documentation/source/index-Plugin_Project_Django_Tags_Menu.ProjectDjangoTagsMenu.html Tue Jun 23 17:52:01 2020 +0200 +++ b/ProjectDjangoTagsMenu/Documentation/source/index-Plugin_Project_Django_Tags_Menu.ProjectDjangoTagsMenu.html Tue Jun 23 17:52:32 2020 +0200 @@ -20,6 +20,7 @@ </head> <body> <h1>Plugin_Project_Django_Tags_Menu.ProjectDjangoTagsMenu</h1> + <p> Package implementing the Django tags menu handler and associated dialogs. </p> @@ -27,28 +28,36 @@ <h3>Modules</h3> <table> + <tr> <td><a href="Plugin_Project_Django_Tags_Menu.ProjectDjangoTagsMenu.DjangoTagInputDialog.html">DjangoTagInputDialog</a></td> <td>Module implementing a dialog to enter data for the creation of a tag.</td> -</tr><tr> +</tr> +<tr> <td><a href="Plugin_Project_Django_Tags_Menu.ProjectDjangoTagsMenu.DjangoTagsMenuHandler.html">DjangoTagsMenuHandler</a></td> <td>Module implementing the Django tags menu handler.</td> -</tr><tr> +</tr> +<tr> <td><a href="Plugin_Project_Django_Tags_Menu.ProjectDjangoTagsMenu.FindTemplateTagDialog.html">FindTemplateTagDialog</a></td> <td>Module implementing a dialog to search foe template tags.</td> -</tr><tr> +</tr> +<tr> <td><a href="Plugin_Project_Django_Tags_Menu.ProjectDjangoTagsMenu.IeCommentDialog.html">IeCommentDialog</a></td> <td>Module implementing a dialog to enter data for an IE comment.</td> -</tr><tr> +</tr> +<tr> <td><a href="Plugin_Project_Django_Tags_Menu.ProjectDjangoTagsMenu.IfTagInputDialog.html">IfTagInputDialog</a></td> <td>Module implementing a dialog to enter the parameters for the if tag.</td> -</tr><tr> +</tr> +<tr> <td><a href="Plugin_Project_Django_Tags_Menu.ProjectDjangoTagsMenu.LoremTagInputDialog.html">LoremTagInputDialog</a></td> <td>Module implementing a dialog to enter the parameters for the lorem tag.</td> -</tr><tr> +</tr> +<tr> <td><a href="Plugin_Project_Django_Tags_Menu.ProjectDjangoTagsMenu.MultiLineInputDialog.html">MultiLineInputDialog</a></td> <td>Module implementing a dialog for the input of multi line text.</td> -</tr><tr> +</tr> +<tr> <td><a href="Plugin_Project_Django_Tags_Menu.ProjectDjangoTagsMenu.TimezoneSelectionDialog.html">TimezoneSelectionDialog</a></td> <td>Module implementing a dialog to select a time zone.</td> </tr>
--- a/ProjectDjangoTagsMenu/Documentation/source/index-Plugin_Project_Django_Tags_Menu.html Tue Jun 23 17:52:01 2020 +0200 +++ b/ProjectDjangoTagsMenu/Documentation/source/index-Plugin_Project_Django_Tags_Menu.html Tue Jun 23 17:52:32 2020 +0200 @@ -20,12 +20,14 @@ </head> <body> <h1>Plugin_Project_Django_Tags_Menu</h1> + <p> Package implementing the Django tags menu plugin. </p> <h3>Packages</h3> <table> + <tr> <td><a href="index-Plugin_Project_Django_Tags_Menu.ProjectDjangoTagsMenu.html">ProjectDjangoTagsMenu</a></td> <td>Package implementing the Django tags menu handler and associated dialogs.</td> @@ -34,6 +36,7 @@ <h3>Modules</h3> <table> + <tr> <td><a href="Plugin_Project_Django_Tags_Menu.PluginProjectDjangoTagsMenu.html">PluginProjectDjangoTagsMenu</a></td> <td>Module implementing the Django tags menu plugin.</td>
--- a/ProjectDjangoTagsMenu/Documentation/source/index.html Tue Jun 23 17:52:01 2020 +0200 +++ b/ProjectDjangoTagsMenu/Documentation/source/index.html Tue Jun 23 17:52:32 2020 +0200 @@ -24,6 +24,7 @@ <h3>Packages</h3> <table> + <tr> <td><a href="index-Plugin_Project_Django_Tags_Menu.html">Plugin_Project_Django_Tags_Menu</a></td> <td>Package implementing the Django tags menu plugin.</td>
--- a/ProjectDjangoTagsMenu/FindTemplateTagDialog.py Tue Jun 23 17:52:01 2020 +0200 +++ b/ProjectDjangoTagsMenu/FindTemplateTagDialog.py Tue Jun 23 17:52:32 2020 +0200 @@ -7,8 +7,6 @@ Module implementing a dialog to search foe template tags. """ -from __future__ import unicode_literals - from PyQt5.QtCore import pyqtSignal, pyqtSlot from PyQt5.QtWidgets import QDialog, QCompleter
--- a/ProjectDjangoTagsMenu/IeCommentDialog.py Tue Jun 23 17:52:01 2020 +0200 +++ b/ProjectDjangoTagsMenu/IeCommentDialog.py Tue Jun 23 17:52:32 2020 +0200 @@ -7,8 +7,6 @@ Module implementing a dialog to enter data for an IE comment. """ -from __future__ import unicode_literals - from PyQt5.QtWidgets import QDialog from .Ui_IeCommentDialog import Ui_IeCommentDialog
--- a/ProjectDjangoTagsMenu/IfTagInputDialog.py Tue Jun 23 17:52:01 2020 +0200 +++ b/ProjectDjangoTagsMenu/IfTagInputDialog.py Tue Jun 23 17:52:32 2020 +0200 @@ -7,8 +7,6 @@ Module implementing a dialog to enter the parameters for the if tag. """ -from __future__ import unicode_literals - from PyQt5.QtCore import pyqtSlot from PyQt5.QtWidgets import QDialog, QDialogButtonBox
--- a/ProjectDjangoTagsMenu/LoremTagInputDialog.py Tue Jun 23 17:52:01 2020 +0200 +++ b/ProjectDjangoTagsMenu/LoremTagInputDialog.py Tue Jun 23 17:52:32 2020 +0200 @@ -7,8 +7,6 @@ Module implementing a dialog to enter the parameters for the lorem tag. """ -from __future__ import unicode_literals - from PyQt5.QtWidgets import QDialog from .Ui_LoremTagInputDialog import Ui_LoremTagInputDialog @@ -41,12 +39,10 @@ random = "random" if self.randomCheckBox.isChecked() else "" if random: - tag = "lorem {0} {1} {2}".format(count, method, random) + return "lorem {0} {1} {2}".format(count, method, random) elif method != "b": - tag = "lorem {0} {1}".format(count, method) + return "lorem {0} {1}".format(count, method) elif count != "1": - tag = "lorem {0}".format(count) + return "lorem {0}".format(count) else: - tag = "lorem" - - return tag + return "lorem"
--- a/ProjectDjangoTagsMenu/MultiLineInputDialog.py Tue Jun 23 17:52:01 2020 +0200 +++ b/ProjectDjangoTagsMenu/MultiLineInputDialog.py Tue Jun 23 17:52:32 2020 +0200 @@ -7,8 +7,6 @@ Module implementing a dialog for the input of multi line text. """ -from __future__ import unicode_literals - from PyQt5.QtWidgets import QDialog from .Ui_MultiLineInputDialog import Ui_MultiLineInputDialog
--- a/ProjectDjangoTagsMenu/TimezoneSelectionDialog.py Tue Jun 23 17:52:01 2020 +0200 +++ b/ProjectDjangoTagsMenu/TimezoneSelectionDialog.py Tue Jun 23 17:52:32 2020 +0200 @@ -7,8 +7,6 @@ Module implementing a dialog to select a time zone. """ -from __future__ import unicode_literals - from PyQt5.QtCore import pyqtSlot from PyQt5.QtWidgets import QDialog, QDialogButtonBox
--- a/ProjectDjangoTagsMenu/i18n/djangotagsmenu_de.ts Tue Jun 23 17:52:01 2020 +0200 +++ b/ProjectDjangoTagsMenu/i18n/djangotagsmenu_de.ts Tue Jun 23 17:52:32 2020 +0200 @@ -3,1297 +3,1297 @@ <context> <name>DjangoTagsMenuHandler</name> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="59"/> + <location filename="../DjangoTagsMenuHandler.py" line="53"/> <source>Django Template Tags Locator</source> <translation>Django Vorlagensuche</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="636"/> + <location filename="../DjangoTagsMenuHandler.py" line="630"/> <source>Tags</source> <translation>Tags</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="79"/> + <location filename="../DjangoTagsMenuHandler.py" line="73"/> <source>autoescape - Auto Escape Characters</source> <translation>autoescape - Zeichen automatisch maskieren</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="83"/> + <location filename="../DjangoTagsMenuHandler.py" line="77"/> <source>block - Named Block</source> <translation>block - Benannter Block</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="87"/> + <location filename="../DjangoTagsMenuHandler.py" line="81"/> <source>comment - Multiline Comment</source> <translation>comment - Mehrzeiliger Kommentar</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="90"/> + <location filename="../DjangoTagsMenuHandler.py" line="84"/> <source>csrf_token - Cross Site Request Forgery Token</source> <translation>csrf_token - Cross Site Request Forgery Token</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="93"/> + <location filename="../DjangoTagsMenuHandler.py" line="87"/> <source>cycle - Cycle variables each time used</source> <translation>cycle - Variablen bei Benutzung durchwechseln</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="97"/> + <location filename="../DjangoTagsMenuHandler.py" line="91"/> <source>debug - Output Debug Information</source> <translation>debug - Debug Informationen ausgeben</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="101"/> + <location filename="../DjangoTagsMenuHandler.py" line="95"/> <source>extends - Extend a template with variable contents</source> <translation>extends - Eine Vorlage mit dem Inhalt einer Variablen erweitern</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="104"/> + <location filename="../DjangoTagsMenuHandler.py" line="98"/> <source>extends - Extend a template with file</source> <translation>extends - Eine Vorlage mit dem Inhalt einer Datei erweitern</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="108"/> + <location filename="../DjangoTagsMenuHandler.py" line="102"/> <source>filter - Filtered Block for one or more filters</source> <translation>filter - Gefilterter Block für einen oder mehrere Filter</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="111"/> + <location filename="../DjangoTagsMenuHandler.py" line="105"/> <source>firstof - Outputs first argument variable that is True</source> <translation>firstof - Gibt erstes wahres Argument aus</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="114"/> + <location filename="../DjangoTagsMenuHandler.py" line="108"/> <source>for - For Loop</source> <translation>for - for Schleife</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="117"/> + <location filename="../DjangoTagsMenuHandler.py" line="111"/> <source>for...empty - For Loop with fallback for empty loop</source> <translation>for...empty - for Schleife mit Zweig für leere Schleife</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="121"/> + <location filename="../DjangoTagsMenuHandler.py" line="115"/> <source>if - if...elif...else... clauses</source> <translation>if - if...elif...else... Absätze</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="124"/> + <location filename="../DjangoTagsMenuHandler.py" line="118"/> <source>ifchanged - Check if a value has changed</source> <translation>ifchanged - Prüft eine Variable auf Veränderungen</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="127"/> + <location filename="../DjangoTagsMenuHandler.py" line="121"/> <source>ifequal - Output block if variables are equal</source> <translation>ifequal - Block ausgeben, wenn Variablen gleich sind</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="130"/> + <location filename="../DjangoTagsMenuHandler.py" line="124"/> <source>ifnotequal - Output block if variables are not equal</source> <translation>ifnotequal - Block ausgeben, wenn Variablen nicht gleich sind</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="133"/> + <location filename="../DjangoTagsMenuHandler.py" line="127"/> <source>include - Render template given by variable</source> <translation>include - Vorlage, die durch Variable benannt ist, anwenden</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="136"/> + <location filename="../DjangoTagsMenuHandler.py" line="130"/> <source>include - Render template given by file name</source> <translation>include - Vorlage, die durch Deteinamen benannt ist, anwenden</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="140"/> + <location filename="../DjangoTagsMenuHandler.py" line="134"/> <source>load - Load a custom template tag set</source> <translation>load - Spezifischen Tags Satz laden</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="144"/> + <location filename="../DjangoTagsMenuHandler.py" line="138"/> <source>now - Display current date and time</source> <translation>now - Aktuelles Datum und Zeit anzeigen</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="148"/> + <location filename="../DjangoTagsMenuHandler.py" line="142"/> <source>regroup - Regroup list of alike objects by a common attribute</source> <translation>regroup - Liste ähnlicher Objekte nach gemeinsamem Attribut ordnen</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="153"/> + <location filename="../DjangoTagsMenuHandler.py" line="147"/> <source>spaceless - Remove whitespace between HTML tags</source> <translation>spaceless - Leerzeichen zwischen HTML Tags entfernen</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="156"/> + <location filename="../DjangoTagsMenuHandler.py" line="150"/> <source>ssi - Output contents of a given file into the page</source> <translation>ssi - Inhalt einer gegebenen Datei in der Seite ausgeben</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="159"/> + <location filename="../DjangoTagsMenuHandler.py" line="153"/> <source>ssi - Output contents of a given file into the page (dialog selection)</source> <translation>ssi - Inhalt einer gegebenen Datei in der Seite ausgeben (Dialogauswahl)</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="164"/> + <location filename="../DjangoTagsMenuHandler.py" line="158"/> <source>templatetag - Output syntax characters used for template</source> <translation>templatetag - Für Vorlagen genutzte Syntaxzeichen ausgeben</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="169"/> + <location filename="../DjangoTagsMenuHandler.py" line="163"/> <source>url - Return an absolute path reference</source> <translation>url - Absolute Pfadreferenz zurückgeben</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="172"/> + <location filename="../DjangoTagsMenuHandler.py" line="166"/> <source>url...as - Return an absolute path reference</source> <translation>url...as - Absolute Pfadreferenz zurückgeben</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="176"/> + <location filename="../DjangoTagsMenuHandler.py" line="170"/> <source>verbatim - Output block contents without rendering</source> <translation>verbatim - Blockinhalt ohne Interpretation ausgeben</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="180"/> + <location filename="../DjangoTagsMenuHandler.py" line="174"/> <source>widthratio - Calculate width ratio</source> <translation>widthratio - Breitenverhältnis berechnen</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="183"/> + <location filename="../DjangoTagsMenuHandler.py" line="177"/> <source>with - Cache a complex variable under a simpler name</source> <translation>with - Eine komplexe Variable unter einem Namen speichern</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="655"/> + <location filename="../DjangoTagsMenuHandler.py" line="649"/> <source>Filters</source> <translation>Filter</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="198"/> + <location filename="../DjangoTagsMenuHandler.py" line="192"/> <source>A-I</source> <translation>A-I</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="199"/> + <location filename="../DjangoTagsMenuHandler.py" line="193"/> <source>add - Add variable or string</source> <translation>add - Variable oder Zeichenkette addieren</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="202"/> + <location filename="../DjangoTagsMenuHandler.py" line="196"/> <source>addslashes - Add slashes before quotes</source> <translation>addslashes - Schrägstriche vor Anführungszeichen einfügen</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="206"/> + <location filename="../DjangoTagsMenuHandler.py" line="200"/> <source>capfirst - Capitalize first character</source> <translation>capfirst - Erstes Zeichen groß</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="209"/> + <location filename="../DjangoTagsMenuHandler.py" line="203"/> <source>center - Center value</source> <translation>center - Wert zentrieren</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="212"/> + <location filename="../DjangoTagsMenuHandler.py" line="206"/> <source>cut - Cut characters</source> <translation>cut - Zeichen ausschneiden</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="216"/> + <location filename="../DjangoTagsMenuHandler.py" line="210"/> <source>date - Format date</source> <translation>date - als Datum formatieren</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="222"/> + <location filename="../DjangoTagsMenuHandler.py" line="216"/> <source>default_if_none - Use default if None</source> <translation>default_if_none - Standartwert wenn None</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="225"/> + <location filename="../DjangoTagsMenuHandler.py" line="219"/> <source>dictsort - Sort dictionaries</source> <translation>dictsort - Dictionaries sortieren</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="228"/> + <location filename="../DjangoTagsMenuHandler.py" line="222"/> <source>dictsortreversed - Sort dictionaries reversed</source> <translation>dictsortreversed - Dictionaries umgekehrt sortieren</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="231"/> + <location filename="../DjangoTagsMenuHandler.py" line="225"/> <source>divisibleby - Check divisibility</source> <translation>divisibleb - Teilbarkeit prüfen</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="238"/> + <location filename="../DjangoTagsMenuHandler.py" line="232"/> <source>escapejs - Escape as JavaScript</source> <translation>escapejs - Als JavaScript maskieren</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="242"/> + <location filename="../DjangoTagsMenuHandler.py" line="236"/> <source>filesizeformat - Format file sizes</source> <translation>filesizeformat - Dateigrößen formatieren</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="245"/> + <location filename="../DjangoTagsMenuHandler.py" line="239"/> <source>first - First item of a list</source> <translation>first - Erstes Element einer Liste</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="248"/> + <location filename="../DjangoTagsMenuHandler.py" line="242"/> <source>fix_ampersands - Replace ampersands</source> <translation>fix_ampersands - Und-Zeichen ersetzen</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="251"/> + <location filename="../DjangoTagsMenuHandler.py" line="245"/> <source>floatformat - Format floating numbers</source> <translation>floatformat - Fließkommazahlen formatieren</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="254"/> + <location filename="../DjangoTagsMenuHandler.py" line="248"/> <source>force_escape - Escape as HTML immediately</source> <translation>force_escape - Sofort als HTML maskieren</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="258"/> + <location filename="../DjangoTagsMenuHandler.py" line="252"/> <source>get_digit - Extract rightmost digit</source> <translation>get_digit - Ziffer von rechts extrahieren</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="262"/> + <location filename="../DjangoTagsMenuHandler.py" line="256"/> <source>iriencode - Convert IRI to string</source> <translation>iriencode - Konvertiert IRI zu Zeichenkette</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="267"/> + <location filename="../DjangoTagsMenuHandler.py" line="261"/> <source>J-R</source> <translation>J-R</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="268"/> + <location filename="../DjangoTagsMenuHandler.py" line="262"/> <source>join - Join list</source> <translation>join - Liste vereinigen</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="272"/> + <location filename="../DjangoTagsMenuHandler.py" line="266"/> <source>last - Return last item in list</source> <translation>last - Letztes Element einer Liste</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="275"/> + <location filename="../DjangoTagsMenuHandler.py" line="269"/> <source>length - Return length of the value</source> <translation>length - Länge des Wertes zurückliefern</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="278"/> + <location filename="../DjangoTagsMenuHandler.py" line="272"/> <source>length_is - Check length</source> <translation>length_is - Länge prüfen</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="281"/> + <location filename="../DjangoTagsMenuHandler.py" line="275"/> <source>linebreaks - Replace line breaks with HTML</source> <translation>linebreaks - Zeilenumbrüche mit HTML ersetzen</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="284"/> + <location filename="../DjangoTagsMenuHandler.py" line="278"/> <source>linebreaksbr - Replace line breaks with <br/></source> <translation>linebreaksbr - Zeilenumbrüche mit <br/> ersetzen</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="287"/> + <location filename="../DjangoTagsMenuHandler.py" line="281"/> <source>linenumbers - Display text with line numbers</source> <translation>linenumbers - Text mit Zeilennummern ausgeben</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="290"/> + <location filename="../DjangoTagsMenuHandler.py" line="284"/> <source>ljust - Left-align value</source> <translation>ljust - Wert linksbündig ausgeben</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="293"/> + <location filename="../DjangoTagsMenuHandler.py" line="287"/> <source>lower - Convert to lowercase</source> <translation>lower - In Kleinbuchstaben umwandeln</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="297"/> + <location filename="../DjangoTagsMenuHandler.py" line="291"/> <source>make_list - Turn value into a list</source> <translation>make_list - Wert in eine Liste umwandeln</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="301"/> + <location filename="../DjangoTagsMenuHandler.py" line="295"/> <source>phone2numeric - Convert phone number into numeric</source> <translation>phone2numeric - Telefonnummer in Zahl umwandeln</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="304"/> + <location filename="../DjangoTagsMenuHandler.py" line="298"/> <source>pluralize - Return plural suffix</source> <translation>pluralize - Endung für mehrzahl ausgeben</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="307"/> + <location filename="../DjangoTagsMenuHandler.py" line="301"/> <source>pprint - Pretty Print</source> <translation>pprint - Formatiert ausgeben</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="311"/> + <location filename="../DjangoTagsMenuHandler.py" line="305"/> <source>random - Return random item from list</source> <translation>random - Zufälliges Element einer Liste zurückgeben</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="314"/> + <location filename="../DjangoTagsMenuHandler.py" line="308"/> <source>removetags - Remove HTML tags</source> <translation>removetags - HTML Tags entfernen</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="317"/> + <location filename="../DjangoTagsMenuHandler.py" line="311"/> <source>rjust - Right-align value</source> <translation>rjust - Wert rechtsbündig ausgeben</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="322"/> + <location filename="../DjangoTagsMenuHandler.py" line="316"/> <source>S-Z</source> <translation>S-Z</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="323"/> + <location filename="../DjangoTagsMenuHandler.py" line="317"/> <source>safe - Mark as not requiring HTML escaping </source> <translation>safe - Als 'benötigt keine HTML Maskierung' markieren</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="326"/> + <location filename="../DjangoTagsMenuHandler.py" line="320"/> <source>safeseq - Mark as a safe sequence</source> <translation>safeseq - Als sichere Sequenz markieren</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="329"/> + <location filename="../DjangoTagsMenuHandler.py" line="323"/> <source>slice - Return a slice of a list</source> <translation>slice - Listenausschnitt zurückgeben</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="332"/> + <location filename="../DjangoTagsMenuHandler.py" line="326"/> <source>slugify - Return value slugified</source> <translation>slugify - Wert als Überschrift zurückgeben</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="335"/> + <location filename="../DjangoTagsMenuHandler.py" line="329"/> <source>stringformat - Format variable</source> <translation>stringformat - Variable formatieren</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="338"/> + <location filename="../DjangoTagsMenuHandler.py" line="332"/> <source>striptags - Strip all HTML tags</source> <translation>striptags - HTML Tags entfernen</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="342"/> + <location filename="../DjangoTagsMenuHandler.py" line="336"/> <source>time - Format time</source> <translation>time - Zeit formatieren</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="345"/> + <location filename="../DjangoTagsMenuHandler.py" line="339"/> <source>timesince - Format as time since</source> <translation>timesince - Als 'Zeit seit' formatieren</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="348"/> + <location filename="../DjangoTagsMenuHandler.py" line="342"/> <source>timeuntil - Format as time until</source> <translation>timeuntil - Als 'Zeit bis' formatieren</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="351"/> + <location filename="../DjangoTagsMenuHandler.py" line="345"/> <source>title - Convert to titlecase</source> <translation>title - In Überschriftenschreibung umwandeln</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="354"/> + <location filename="../DjangoTagsMenuHandler.py" line="348"/> <source>truncatechars - Truncate after a number of characters</source> <translation>truncatechars - Nach Anzahl Zeichen abschneiden</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="357"/> + <location filename="../DjangoTagsMenuHandler.py" line="351"/> <source>truncatewords - Truncate after a number of words</source> <translation>truncatewords - Nach Anzahl Worten abschneiden</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="360"/> + <location filename="../DjangoTagsMenuHandler.py" line="354"/> <source>truncatewords_html - Truncate after a number of words (HTML aware)</source> <translation>truncatewords_html - Nach Anzahl Worten abschneiden (HTML bewusst)</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="365"/> + <location filename="../DjangoTagsMenuHandler.py" line="359"/> <source>unordered_list - Return HTML unordered list</source> <translation>unordered_list - Ungeordnete HTML LIste zurückgeben</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="368"/> + <location filename="../DjangoTagsMenuHandler.py" line="362"/> <source>upper - Convert to uppercase</source> <translation>upper - In Großbuchstaben umwandeln</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="371"/> + <location filename="../DjangoTagsMenuHandler.py" line="365"/> <source>urlencode - Escape as URL</source> <translation>urlencode - Als URL maskieren</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="374"/> + <location filename="../DjangoTagsMenuHandler.py" line="368"/> <source>urlize - Convert URLs as clickable links</source> <translation>urlize - URL in anklickbaren Link umwandeln</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="377"/> + <location filename="../DjangoTagsMenuHandler.py" line="371"/> <source>urlizetrunc - Convert URLs as clickable links and truncate</source> <translation>urlizetrunc - URL in anklickbaren Link umwandeln und abschneiden</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="382"/> + <location filename="../DjangoTagsMenuHandler.py" line="376"/> <source>wordcount - Return number of word</source> <translation>wordcount - Wortanzahl zurückgeben</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="385"/> + <location filename="../DjangoTagsMenuHandler.py" line="379"/> <source>wordwrap - Wrap words</source> <translation>wordwrap - Worte umbrechen</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="389"/> + <location filename="../DjangoTagsMenuHandler.py" line="383"/> <source>yesno - Map True, False and None</source> <translation>yesno - True, False und None übersetzen</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="403"/> + <location filename="../DjangoTagsMenuHandler.py" line="397"/> <source>Humanize</source> <translation>Humanisierung</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="631"/> + <location filename="../DjangoTagsMenuHandler.py" line="625"/> <source>Load Package</source> <translation>Packet laden</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="408"/> + <location filename="../DjangoTagsMenuHandler.py" line="402"/> <source>apnumber - Format integer the Associated Press style</source> <translation>apnumber - Ganzahl im Associated Press Stil formatieren</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="412"/> + <location filename="../DjangoTagsMenuHandler.py" line="406"/> <source>intcomma - Format integer with commas</source> <translation>intcomma - Ganzzahl mit Kommas formatieren</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="415"/> + <location filename="../DjangoTagsMenuHandler.py" line="409"/> <source>intword - Convert integer to word</source> <translation>intword - Ganzzahl in Wort umwandeln</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="419"/> + <location filename="../DjangoTagsMenuHandler.py" line="413"/> <source>naturalday - Format date naturally</source> <translation>naturalday - Datum natürlich formatieren</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="422"/> + <location filename="../DjangoTagsMenuHandler.py" line="416"/> <source>naturaltime - Format time naturally</source> <translation>naturaltime - Zeit natürlich formatieren</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="426"/> + <location filename="../DjangoTagsMenuHandler.py" line="420"/> <source>ordinal - Convert integer to ordinal</source> <translation>ordinal - Ganzzahl in Ordinalzahl umwandeln</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="439"/> + <location filename="../DjangoTagsMenuHandler.py" line="433"/> <source>Web Design</source> <translation>Web Design</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="457"/> + <location filename="../DjangoTagsMenuHandler.py" line="451"/> <source>Static</source> <translation>Statisch</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="462"/> + <location filename="../DjangoTagsMenuHandler.py" line="456"/> <source>static - Link to static file</source> <translation>static - Link zu einer statischen Datei</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="465"/> + <location filename="../DjangoTagsMenuHandler.py" line="459"/> <source>static - Link to static file (via variable)</source> <translation>static - Link zu einer statischen Datei (durch Variable)</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="468"/> + <location filename="../DjangoTagsMenuHandler.py" line="462"/> <source>get_static_prefix - Insert static URL</source> <translation>get_static_prefix - Statische URL einfügen</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="471"/> + <location filename="../DjangoTagsMenuHandler.py" line="465"/> <source>get_media_prefix - Insert media URL</source> <translation>get_media_prefix - Media URL einfügen</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="484"/> + <location filename="../DjangoTagsMenuHandler.py" line="478"/> <source>Comment</source> <translation>Kommentar</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="485"/> + <location filename="../DjangoTagsMenuHandler.py" line="479"/> <source>Single Line Comment Selected Text</source> <translation>Einzeiliger Kommentar aus ausgewähltem Text</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="488"/> + <location filename="../DjangoTagsMenuHandler.py" line="482"/> <source>Multi Line Comment Selected Text</source> <translation>Mehrzeiliger Kommentar aus ausgewähltem Text</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="492"/> + <location filename="../DjangoTagsMenuHandler.py" line="486"/> <source>Single Line Comment from Input Dialog</source> <translation>Einzeiliger Kommentar aus Eingabedialog</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="495"/> + <location filename="../DjangoTagsMenuHandler.py" line="489"/> <source>Multi Line Comment from Input Dialog</source> <translation>Mehrzeiliger Kommentar aus Eingabedialog</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="499"/> + <location filename="../DjangoTagsMenuHandler.py" line="493"/> <source>Single Line Comment from Clipboard</source> <translation>Einzeiliger Kommentar aus Zwischenablage</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="502"/> + <location filename="../DjangoTagsMenuHandler.py" line="496"/> <source>Multi Line Comment from Clipboard</source> <translation>Mehrzeiliger Kommentar aus Zwischenablage</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="506"/> + <location filename="../DjangoTagsMenuHandler.py" line="500"/> <source>Multi Line Comment from File</source> <translation>Mehrzeiliger Kommentar aus Datei</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="510"/> + <location filename="../DjangoTagsMenuHandler.py" line="504"/> <source>Single Line Comment from Date Time Now</source> <translation>Einzeiliger Kommentar aus aktuellem Datum und Zeit</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="514"/> + <location filename="../DjangoTagsMenuHandler.py" line="508"/> <source>HTML Comment Out Selected Text</source> <translation>Selektierten Text auskommentieren (HTML Kommentar)</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="517"/> + <location filename="../DjangoTagsMenuHandler.py" line="511"/> <source>MS IE Conditional Comment Selected Text</source> <translation>Selektierten Text in bedingten MS IE Kommentar einbinden</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="530"/> + <location filename="../DjangoTagsMenuHandler.py" line="524"/> <source>Internationalization (i18n)</source> <translation>Internationalisierung (i18n)</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="537"/> + <location filename="../DjangoTagsMenuHandler.py" line="531"/> <source>trans - Translate String or Variable</source> <translation>trans - Zeichenkette oder Variable übersetzen</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="540"/> + <location filename="../DjangoTagsMenuHandler.py" line="534"/> <source>trans..as - Translate String into Variable</source> <translation>trans..as - Zeichenkette in Variable übersetzen</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="544"/> + <location filename="../DjangoTagsMenuHandler.py" line="538"/> <source>blocktrans - Translate Block</source> <translation>blocktrans - Block übersetzen</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="547"/> + <location filename="../DjangoTagsMenuHandler.py" line="541"/> <source>blocktrans..with - Translate Block with Attributes</source> <translation>blocktrans..with - Block mit Attributen übersetzen</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="550"/> + <location filename="../DjangoTagsMenuHandler.py" line="544"/> <source>plural - Plural Block</source> <translation>plural - Mehrzahlblock</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="553"/> + <location filename="../DjangoTagsMenuHandler.py" line="547"/> <source>language - Switch language</source> <translation>language - Sprache umschalten</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="557"/> + <location filename="../DjangoTagsMenuHandler.py" line="551"/> <source>get_current_language - Current language</source> <translation>get_current_language - Aktuelle Sprache</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="560"/> + <location filename="../DjangoTagsMenuHandler.py" line="554"/> <source>get_available_languages - Available languages</source> <translation>get_available_languages - Verfügbae Sprachen</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="563"/> + <location filename="../DjangoTagsMenuHandler.py" line="557"/> <source>get_current_language_bidi - Current language's direction</source> <translation>get_current_language_bidi - Richtung der aktuellen Sprache</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="567"/> + <location filename="../DjangoTagsMenuHandler.py" line="561"/> <source>get_language_info - Language Information</source> <translation>get_language_info - Sprachinformationen</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="570"/> + <location filename="../DjangoTagsMenuHandler.py" line="564"/> <source>get_language_info_list - Language Information for a list of languages</source> <translation>get_language_info_list - Sprachinformationen für eine Liste von Sprachen</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="577"/> + <location filename="../DjangoTagsMenuHandler.py" line="571"/> <source>language_name - Language name</source> <translation>language_name - Name der Sprache</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="580"/> + <location filename="../DjangoTagsMenuHandler.py" line="574"/> <source>language_name_local - Language name translated</source> <translation>language_name_local - Übersetzter Name der Sprache</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="583"/> + <location filename="../DjangoTagsMenuHandler.py" line="577"/> <source>bidi - Language's direction</source> <translation>bidi - Richtung der Sprache</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="597"/> + <location filename="../DjangoTagsMenuHandler.py" line="591"/> <source>Localization (l10n)</source> <translation>Lokalisierung (l10n)</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="604"/> + <location filename="../DjangoTagsMenuHandler.py" line="598"/> <source>localize on - Activate Localization</source> <translation>localize on - Lokalisierung aktivieren</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="607"/> + <location filename="../DjangoTagsMenuHandler.py" line="601"/> <source>localize off - Dectivate Localization</source> <translation>localize off - Lokalisierung deaktivieren</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="613"/> + <location filename="../DjangoTagsMenuHandler.py" line="607"/> <source>localize - Output value localized</source> <translation>localize - Wert lokalisiert ausgeben</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="616"/> + <location filename="../DjangoTagsMenuHandler.py" line="610"/> <source>unlocalize - Output value non-localized</source> <translation>unlocalize - Wert nicht lokalisiert ausgeben</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="630"/> + <location filename="../DjangoTagsMenuHandler.py" line="624"/> <source>Timezone (tz)</source> <translation>Zeitzone (tz)</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="637"/> + <location filename="../DjangoTagsMenuHandler.py" line="631"/> <source>localtime on - Activate date and time conversion</source> <translation>localtime on - Datums- und Zeitkonvertierung aktivieren</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="640"/> + <location filename="../DjangoTagsMenuHandler.py" line="634"/> <source>localtime off - Deactivate date and time conversion</source> <translation>localtime off - Datums- und Zeitkonvertierung deaktivieren</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="643"/> + <location filename="../DjangoTagsMenuHandler.py" line="637"/> <source>timezone - Set timezone for date and time conversion</source> <translation>timezone - Zeitzone für Datums- und Zeitkonvertierung setzen</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="646"/> + <location filename="../DjangoTagsMenuHandler.py" line="640"/> <source>timezone None - Unset timezone for date and time conversion</source> <translation>timezone None - Zeitzone für Datums- und Zeitkonvertierung löschen</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="650"/> + <location filename="../DjangoTagsMenuHandler.py" line="644"/> <source>get_current_timezone - Get current time zone</source> <translation>get_current_timezone - Aktuelle Zeitzone</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="656"/> + <location filename="../DjangoTagsMenuHandler.py" line="650"/> <source>localtime - Convert to local time zone</source> <translation>localtime - Nach lokaler Zeitzone umwandeln</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="659"/> + <location filename="../DjangoTagsMenuHandler.py" line="653"/> <source>utc - Convert to UTC</source> <translation>utc - Nach UTC umwandeln</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="662"/> + <location filename="../DjangoTagsMenuHandler.py" line="656"/> <source>timezone - Convert to a specific time zone</source> <translation>timezone - Nach einer spezifischen Zeitzone umwandeln</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="727"/> + <location filename="../DjangoTagsMenuHandler.py" line="720"/> <source>Named Block</source> <translation>Benannter Block</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="727"/> + <location filename="../DjangoTagsMenuHandler.py" line="720"/> <source>Enter block name:</source> <translation>Blocknamen eingeben:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="743"/> + <location filename="../DjangoTagsMenuHandler.py" line="736"/> <source>Cycle Variables</source> <translation>Variablen durchwechseln</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="743"/> + <location filename="../DjangoTagsMenuHandler.py" line="736"/> <source>Enter items to cycle, space separated</source> <translation>Durchzuwechselnde Elemente durch Leerzeichen getrennt angeben</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="761"/> + <location filename="../DjangoTagsMenuHandler.py" line="754"/> <source>Extends</source> <translation>Erweitern</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="859"/> + <location filename="../DjangoTagsMenuHandler.py" line="852"/> <source>Enter variable name:</source> <translation>Variablennamen eingeben:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="761"/> + <location filename="../DjangoTagsMenuHandler.py" line="754"/> <source>Enter parent file name:</source> <translation>Namen der Elterndatei eingeben:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="769"/> + <location filename="../DjangoTagsMenuHandler.py" line="762"/> <source>Tag Filters</source> <translation>Tag Filter</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="769"/> + <location filename="../DjangoTagsMenuHandler.py" line="762"/> <source>Multiple filters with arguments, pipes separated:</source> <translation>Mehrere Filter mit Argumenten (getrennt durch |):</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="780"/> + <location filename="../DjangoTagsMenuHandler.py" line="773"/> <source>First Of</source> <translation>Erstes Argument</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="780"/> + <location filename="../DjangoTagsMenuHandler.py" line="773"/> <source>Enter multiple variables, space separated:</source> <translation>Mehrer Variablen eingeben (getrennt durch Leerzeichen):</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="780"/> + <location filename="../DjangoTagsMenuHandler.py" line="773"/> <source>Enter fallback value:</source> <translation>Rückfallwert eingeben:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="805"/> + <location filename="../DjangoTagsMenuHandler.py" line="798"/> <source>For Loop</source> <translation>for Schleife</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="805"/> + <location filename="../DjangoTagsMenuHandler.py" line="798"/> <source>Enter variable to use for iteration:</source> <translation>Variable für Iteration eingeben:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="805"/> + <location filename="../DjangoTagsMenuHandler.py" line="798"/> <source>Enter sequence to iterate over:</source> <translation>Zu iterierende Sequenz eingeben:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="805"/> + <location filename="../DjangoTagsMenuHandler.py" line="798"/> <source>Enter output to use if loop is empty:</source> <translation>Ausgabe für leere Schleife eingeben:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="824"/> + <location filename="../DjangoTagsMenuHandler.py" line="817"/> <source>Check Variables for Changes</source> <translation>Prüfe Variable auf Veränderungen</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="824"/> + <location filename="../DjangoTagsMenuHandler.py" line="817"/> <source>Enter variables to check (space separated):</source> <translation>Zu prüfende Variablen eingeben (getrennt durch Leerzeichen):</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="835"/> + <location filename="../DjangoTagsMenuHandler.py" line="828"/> <source>Check If Equal</source> <translation>Gleichheit prüfen</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="847"/> + <location filename="../DjangoTagsMenuHandler.py" line="840"/> <source>Enter first variable or string to check:</source> <translation>Erste zu prüfende Variable eingeben:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="847"/> + <location filename="../DjangoTagsMenuHandler.py" line="840"/> <source>Enter second variable or string to check:</source> <translation>Zweite zu prüfende Variable eingeben:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="847"/> + <location filename="../DjangoTagsMenuHandler.py" line="840"/> <source>Check If Not Equal</source> <translation>Ungleichheit prüfen</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="867"/> + <location filename="../DjangoTagsMenuHandler.py" line="860"/> <source>Include</source> <translation>Einbinden</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="867"/> + <location filename="../DjangoTagsMenuHandler.py" line="860"/> <source>Enter file name:</source> <translation>Dateinamen eingeben:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="875"/> + <location filename="../DjangoTagsMenuHandler.py" line="868"/> <source>Load</source> <translation>Laden</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="875"/> + <location filename="../DjangoTagsMenuHandler.py" line="868"/> <source>Enter template tag set to load:</source> <translation>Namen des Vorlagen Tag Satzes eingeben:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="883"/> + <location filename="../DjangoTagsMenuHandler.py" line="876"/> <source>Now</source> <translation>Jetzt</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="883"/> + <location filename="../DjangoTagsMenuHandler.py" line="876"/> <source>Current date time format:</source> <translation>Format für aktuelles Datum und Zeit:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="893"/> + <location filename="../DjangoTagsMenuHandler.py" line="886"/> <source>Regroup List</source> <translation>Liste neu ordnen</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="893"/> + <location filename="../DjangoTagsMenuHandler.py" line="886"/> <source>List Variable:</source> <translation>Listenvariable:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="893"/> + <location filename="../DjangoTagsMenuHandler.py" line="886"/> <source>Common Attribute:</source> <translation>Gemeinsames Attribut:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="893"/> + <location filename="../DjangoTagsMenuHandler.py" line="886"/> <source>Name of resulting list:</source> <translation>Name der Ergebnisliste:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="915"/> + <location filename="../DjangoTagsMenuHandler.py" line="908"/> <source>SSI</source> <translation>SSI</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="907"/> + <location filename="../DjangoTagsMenuHandler.py" line="900"/> <source>Full path to template:</source> <translation>Vollständiger Pfad zur Vorlage:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1386"/> + <location filename="../DjangoTagsMenuHandler.py" line="1379"/> <source>All Files (*)</source> <translation>Alle Dateien (*)</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="923"/> + <location filename="../DjangoTagsMenuHandler.py" line="916"/> <source>Template Tag</source> <translation>Vorlagen Tag</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="923"/> + <location filename="../DjangoTagsMenuHandler.py" line="916"/> <source>Argument:</source> <translation>Argument:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="935"/> + <location filename="../DjangoTagsMenuHandler.py" line="928"/> <source>URL</source> <translation>URL</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="947"/> + <location filename="../DjangoTagsMenuHandler.py" line="940"/> <source>View method name:</source> <translation>Name der Anzeigemethode:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="947"/> + <location filename="../DjangoTagsMenuHandler.py" line="940"/> <source>Optional arguments (space separated):</source> <translation>Optionale Argumente (getrennt durch Leerzeichen):</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="947"/> + <location filename="../DjangoTagsMenuHandler.py" line="940"/> <source>URL...as</source> <translation>URL...as</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="947"/> + <location filename="../DjangoTagsMenuHandler.py" line="940"/> <source>URL name:</source> <translation>URL Name:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="964"/> + <location filename="../DjangoTagsMenuHandler.py" line="957"/> <source>Width Ratio</source> <translation>Breitenverhältnis</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="964"/> + <location filename="../DjangoTagsMenuHandler.py" line="957"/> <source>Variable:</source> <translation>Variable:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="964"/> + <location filename="../DjangoTagsMenuHandler.py" line="957"/> <source>Maximum Value:</source> <translation>Maximaler Wert:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="964"/> + <location filename="../DjangoTagsMenuHandler.py" line="957"/> <source>Maximum Width:</source> <translation>Maximale Breite:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="975"/> + <location filename="../DjangoTagsMenuHandler.py" line="968"/> <source>Cache Variables</source> <translation>Variablen zwischenspeichern</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="975"/> + <location filename="../DjangoTagsMenuHandler.py" line="968"/> <source>Variables to cache as key=value (space separated):</source> <translation>Zwischenzuspeichernde Variablen als Schlüssel=Wert (getrennt durch Leerzeichen):</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="990"/> + <location filename="../DjangoTagsMenuHandler.py" line="983"/> <source>Add Variable or String</source> <translation>Variable oder Zeichenkette addieren</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="990"/> + <location filename="../DjangoTagsMenuHandler.py" line="983"/> <source>Variables or String to add:</source> <translation>Zu addierende Variablen oder Zeichenkette:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1002"/> + <location filename="../DjangoTagsMenuHandler.py" line="995"/> <source>Center Value</source> <translation>Wert zentrieren</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1164"/> + <location filename="../DjangoTagsMenuHandler.py" line="1157"/> <source>Enter width of the output:</source> <translation>Breite der Ausgabe eingeben:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1010"/> + <location filename="../DjangoTagsMenuHandler.py" line="1003"/> <source>Cut Characters</source> <translation>Zeichen ausschneiden</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1010"/> + <location filename="../DjangoTagsMenuHandler.py" line="1003"/> <source>Characters to cut:</source> <translation>Auszuschneidende Zeichen:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1196"/> + <location filename="../DjangoTagsMenuHandler.py" line="1189"/> <source>Format Date</source> <translation>Datum formatieren</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1196"/> + <location filename="../DjangoTagsMenuHandler.py" line="1189"/> <source>Enter date format:</source> <translation>Datumsformat eingeben:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1031"/> + <location filename="../DjangoTagsMenuHandler.py" line="1024"/> <source>Default Value if False</source> <translation>Standardwert wenn nicht wahr</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1031"/> + <location filename="../DjangoTagsMenuHandler.py" line="1024"/> <source>Enter default value if result is False:</source> <translation>Standardwert wenn Ergebnis nicht wahr ist:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1039"/> + <location filename="../DjangoTagsMenuHandler.py" line="1032"/> <source>Default Value if None</source> <translation>Standardwert wenn None</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1039"/> + <location filename="../DjangoTagsMenuHandler.py" line="1032"/> <source>Enter default value if result is None:</source> <translation>Standardwert wenn Ergebnis None ist:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1047"/> + <location filename="../DjangoTagsMenuHandler.py" line="1040"/> <source>Sort Dictionaries</source> <translation>Dictionaries sortieren</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1055"/> + <location filename="../DjangoTagsMenuHandler.py" line="1048"/> <source>Enter key to sort on:</source> <translation>Sortierschlüssel eingeben:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1055"/> + <location filename="../DjangoTagsMenuHandler.py" line="1048"/> <source>Sort Dictionaries reversed</source> <translation>Dictionaries umgekehrt sortieren</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1063"/> + <location filename="../DjangoTagsMenuHandler.py" line="1056"/> <source>Check Divisibility</source> <translation>Teilbarkeit prüfen</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1063"/> + <location filename="../DjangoTagsMenuHandler.py" line="1056"/> <source>Enter divisor value:</source> <translation>Wert des Divisors eingeben:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1081"/> + <location filename="../DjangoTagsMenuHandler.py" line="1074"/> <source>Format Floating Number</source> <translation>Fließkommazahl formatieren</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1081"/> + <location filename="../DjangoTagsMenuHandler.py" line="1074"/> <source>Enter number of decimal places:</source> <translation>Nachkommastellen eingeben:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1091"/> + <location filename="../DjangoTagsMenuHandler.py" line="1084"/> <source>Get Rightmost Digit</source> <translation>Ziffer von rechts extrahieren</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1091"/> + <location filename="../DjangoTagsMenuHandler.py" line="1084"/> <source>Enter index of digit:</source> <translation>Index der Ziffer eingeben:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1101"/> + <location filename="../DjangoTagsMenuHandler.py" line="1094"/> <source>Join List</source> <translation>Liste vereinigen</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1101"/> + <location filename="../DjangoTagsMenuHandler.py" line="1094"/> <source>Enter string to join by:</source> <translation>Verbindungszeichenkette eingeben:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1113"/> + <location filename="../DjangoTagsMenuHandler.py" line="1106"/> <source>Check Length</source> <translation>Länge prüfen</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1113"/> + <location filename="../DjangoTagsMenuHandler.py" line="1106"/> <source>Enter desired length:</source> <translation>Geplante Länge eingeben:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1127"/> + <location filename="../DjangoTagsMenuHandler.py" line="1120"/> <source>Left-align Value</source> <translation>Wert linksbündig ausgeben</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1141"/> + <location filename="../DjangoTagsMenuHandler.py" line="1134"/> <source>Plural Suffix</source> <translation>Mehrzahlendung</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1141"/> + <location filename="../DjangoTagsMenuHandler.py" line="1134"/> <source>Enter plural suffix (nothing for default):</source> <translation>Mehrzahlendung eingeben (leer für Standard):</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1156"/> + <location filename="../DjangoTagsMenuHandler.py" line="1149"/> <source>Remove HTML Tags</source> <translation>HTML Tags entfernen</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1156"/> + <location filename="../DjangoTagsMenuHandler.py" line="1149"/> <source>Enter HTML tags to remove (space separated):</source> <translation>Zu entfernende HTML Tags eingeben (durch Leerzeichen getrennt):</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1164"/> + <location filename="../DjangoTagsMenuHandler.py" line="1157"/> <source>Right-align Value</source> <translation>Wert rechtsbündig ausgeben</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1176"/> + <location filename="../DjangoTagsMenuHandler.py" line="1169"/> <source>Extract slice of a list</source> <translation>Listenausschnitt extrahieren</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1176"/> + <location filename="../DjangoTagsMenuHandler.py" line="1169"/> <source>Enter Python like slice expression:</source> <translation>Python ähnlicher Ausdruck für Listenbereich:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1186"/> + <location filename="../DjangoTagsMenuHandler.py" line="1179"/> <source>Perform String Formatting</source> <translation>Zeichenkettenformatierung</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1186"/> + <location filename="../DjangoTagsMenuHandler.py" line="1179"/> <source>Enter Python like string format:</source> <translation>Python Zeichenkettenformat eingeben:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1208"/> + <location filename="../DjangoTagsMenuHandler.py" line="1201"/> <source>Time Since</source> <translation>Zeit seit</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1219"/> + <location filename="../DjangoTagsMenuHandler.py" line="1212"/> <source>Enter variable containing time reference:</source> <translation>Variable für Zeitreferenz eingeben:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1219"/> + <location filename="../DjangoTagsMenuHandler.py" line="1212"/> <source>Time Until</source> <translation>Zeit bis</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1248"/> + <location filename="../DjangoTagsMenuHandler.py" line="1241"/> <source>Truncate String</source> <translation>Zeichenkette abschneiden</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1274"/> + <location filename="../DjangoTagsMenuHandler.py" line="1267"/> <source>Enter number of characters:</source> <translation>Zeichenanzahl eingeben:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1248"/> + <location filename="../DjangoTagsMenuHandler.py" line="1241"/> <source>Enter number of words:</source> <translation>Wordanzahl eingeben:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1264"/> + <location filename="../DjangoTagsMenuHandler.py" line="1257"/> <source>Convert URLs as clickable links and truncate</source> <translation>URL in anklickbaren Link umwandeln und abschneiden</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1274"/> + <location filename="../DjangoTagsMenuHandler.py" line="1267"/> <source>Wrap words</source> <translation>Worte umbrechen</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1282"/> + <location filename="../DjangoTagsMenuHandler.py" line="1275"/> <source>Map True, False and None</source> <translation>True, False und None übersetzen</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1282"/> + <location filename="../DjangoTagsMenuHandler.py" line="1275"/> <source>Enter mapping (comma separated):</source> <translation>Übersetzung eingeben (getrennt durch Komma):</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1339"/> + <location filename="../DjangoTagsMenuHandler.py" line="1332"/> <source>Link to static file</source> <translation>Link zu einer statischen Datei</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1331"/> + <location filename="../DjangoTagsMenuHandler.py" line="1324"/> <source>Enter relative path of static file:</source> <translation>Relativen Pfad zur statischen Datei eingeben:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1339"/> + <location filename="../DjangoTagsMenuHandler.py" line="1332"/> <source>Enter variable containing relative path of static file:</source> <translation>Variable mit relativem Pfad der statischen Datei eingeben:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1364"/> + <location filename="../DjangoTagsMenuHandler.py" line="1357"/> <source>Single Line Comment</source> <translation>Einzeiliger Kommentar</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1373"/> + <location filename="../DjangoTagsMenuHandler.py" line="1366"/> <source>Enter comment:</source> <translation>Kommentar eingeben:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1373"/> + <location filename="../DjangoTagsMenuHandler.py" line="1366"/> <source>Multi Line Comment</source> <translation>Mehrzeiliger Kommentar</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1400"/> + <location filename="../DjangoTagsMenuHandler.py" line="1393"/> <source>Comment File</source> <translation>Kommentardatei</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1400"/> + <location filename="../DjangoTagsMenuHandler.py" line="1393"/> <source><p>The file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation><p>Die Datei <b>{0}</b> konnte nicht gelesen werden.</p><p>Ursache: {1}</p></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1433"/> + <location filename="../DjangoTagsMenuHandler.py" line="1426"/> <source>Translate String into Variable</source> <translation>Zeichenkette in Variable übersetzen</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1433"/> + <location filename="../DjangoTagsMenuHandler.py" line="1426"/> <source>Enter variable receiving translation:</source> <translation>Variable für Übersetzung eingeben:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1447"/> + <location filename="../DjangoTagsMenuHandler.py" line="1440"/> <source>Translate Block with Attributes</source> <translation>Block mit Attributen übersetzen</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1447"/> + <location filename="../DjangoTagsMenuHandler.py" line="1440"/> <source>Enter attribute binding expressions (space separated):</source> <translation>Ausdrücke für Attributbindungen eingeben (getrennt durch Leerzeichen):</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1462"/> + <location filename="../DjangoTagsMenuHandler.py" line="1455"/> <source>Switch language</source> <translation>Sprache umschalten</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1462"/> + <location filename="../DjangoTagsMenuHandler.py" line="1455"/> <source>Enter language:</source> <translation>Sprache eingeben:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1479"/> + <location filename="../DjangoTagsMenuHandler.py" line="1472"/> <source>Language Information</source> <translation>Sprachinformationen</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1479"/> + <location filename="../DjangoTagsMenuHandler.py" line="1472"/> <source>Enter language string or variable (empty for LANGUAGE_CODE):</source> <translation>Sprache als Zeichenkette oder Variable eingeben (leer für LANGUAGE_CODE):</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1494"/> + <location filename="../DjangoTagsMenuHandler.py" line="1487"/> <source>Language Information for a list of languages</source> <translation>Sprachinformationen für eine Liste von Sprachen</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1494"/> + <location filename="../DjangoTagsMenuHandler.py" line="1487"/> <source>Enter language list variable (empty for LANGUAGES):</source> <translation>Variable der Sprachenliste eingeben (leer für LANGUAGES):</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="219"/> + <location filename="../DjangoTagsMenuHandler.py" line="213"/> <source>default - Use default if False</source> <translation>default_if_none - Standartwert wenn Nicht Wahr</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="235"/> + <location filename="../DjangoTagsMenuHandler.py" line="229"/> <source>escape - Escape as HTML</source> <translation>escape - Als HTML maskieren</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="444"/> + <location filename="../DjangoTagsMenuHandler.py" line="438"/> <source>lorem - Builtin Lorem Ipsum Generator</source> <translation>lorem - Eingebauter Lorem Ipsum Generator</translation> </message> @@ -1301,27 +1301,27 @@ <context> <name>FindTemplateTagDialog</name> <message> - <location filename="../../ProjectDjangoTagsMenu/FindTemplateTagDialog.ui" line="14"/> + <location filename="../FindTemplateTagDialog.ui" line="14"/> <source>Find Template Tag</source> <translation>Vorlagentag suchen</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/FindTemplateTagDialog.ui" line="23"/> + <location filename="../FindTemplateTagDialog.ui" line="23"/> <source><b>Find Tags and Filters while Typing:</b></source> <translation><b>Tags und Filter während der Eingabe suchen:</b></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/FindTemplateTagDialog.ui" line="33"/> + <location filename="../FindTemplateTagDialog.ui" line="33"/> <source>Type to find tag</source> <translation>Tippen, um Tag zu suchen</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/FindTemplateTagDialog.ui" line="61"/> + <location filename="../FindTemplateTagDialog.ui" line="61"/> <source>Press to create the entered template tag</source> <translation>Drücken, um das eingegebene Vorlagentag zu erzeugen</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/FindTemplateTagDialog.ui" line="64"/> + <location filename="../FindTemplateTagDialog.ui" line="64"/> <source>Create Template Tag</source> <translation>Vorlagentag erzeugen</translation> </message> @@ -1329,27 +1329,27 @@ <context> <name>IeCommentDialog</name> <message> - <location filename="../../ProjectDjangoTagsMenu/IeCommentDialog.ui" line="14"/> + <location filename="../IeCommentDialog.ui" line="14"/> <source>IE Comment</source> <translation>IE Kommentar</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/IeCommentDialog.ui" line="25"/> + <location filename="../IeCommentDialog.ui" line="25"/> <source>Conditional Format:</source> <translation>Bedingung:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/IeCommentDialog.ui" line="34"/> + <location filename="../IeCommentDialog.ui" line="34"/> <source>Select the conditional</source> <translation>Bedingung auswählen</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/IeCommentDialog.ui" line="56"/> + <location filename="../IeCommentDialog.ui" line="56"/> <source>MS IE Version:</source> <translation>MS IE Version:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/IeCommentDialog.ui" line="65"/> + <location filename="../IeCommentDialog.ui" line="65"/> <source>Enter the IE Version</source> <translation>IE Version eingeben</translation> </message> @@ -1357,37 +1357,37 @@ <context> <name>IfTagInputDialog</name> <message> - <location filename="../../ProjectDjangoTagsMenu/IfTagInputDialog.ui" line="14"/> + <location filename="../IfTagInputDialog.ui" line="14"/> <source>If Tag Template</source> <translation>If Tag Vorlage</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/IfTagInputDialog.ui" line="23"/> + <location filename="../IfTagInputDialog.ui" line="23"/> <source>'if' expression:</source> <translation>'if' Ausdruck:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/IfTagInputDialog.ui" line="30"/> + <location filename="../IfTagInputDialog.ui" line="30"/> <source>Enter the 'if' expression</source> <translation>'if' Ausdruck eingeben</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/IfTagInputDialog.ui" line="37"/> + <location filename="../IfTagInputDialog.ui" line="37"/> <source>'elif' expressions (one per line):</source> <translation>'elif' Ausdrücke (einen pro Zeile):</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/IfTagInputDialog.ui" line="44"/> + <location filename="../IfTagInputDialog.ui" line="44"/> <source>Enter 'elif' expressions one per line</source> <translation>'elif' Ausdrücke zeilenweise eingeben</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/IfTagInputDialog.ui" line="51"/> + <location filename="../IfTagInputDialog.ui" line="51"/> <source>Select to include an 'else' part</source> <translation>Auswählen, um einen 'else' Zweig zu erzeugen</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/IfTagInputDialog.ui" line="54"/> + <location filename="../IfTagInputDialog.ui" line="54"/> <source>Include 'else'</source> <translation>'else' erzeugen</translation> </message> @@ -1395,37 +1395,37 @@ <context> <name>LoremTagInputDialog</name> <message> - <location filename="../../ProjectDjangoTagsMenu/LoremTagInputDialog.ui" line="14"/> + <location filename="../LoremTagInputDialog.ui" line="14"/> <source>Lorem Tag Template</source> <translation>Lorem Tag Vorlage</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/LoremTagInputDialog.ui" line="23"/> + <location filename="../LoremTagInputDialog.ui" line="23"/> <source>Count:</source> <translation>Anzahl:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/LoremTagInputDialog.ui" line="53"/> + <location filename="../LoremTagInputDialog.ui" line="53"/> <source>Method:</source> <translation>Methode:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/LoremTagInputDialog.ui" line="61"/> + <location filename="../LoremTagInputDialog.ui" line="61"/> <source>Plain text paragraphs</source> <translation>Klartext Abschnitte</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/LoremTagInputDialog.ui" line="66"/> + <location filename="../LoremTagInputDialog.ui" line="66"/> <source>HTML paragraphs</source> <translation>HTML Abschnitte</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/LoremTagInputDialog.ui" line="71"/> + <location filename="../LoremTagInputDialog.ui" line="71"/> <source>Words</source> <translation>Worte</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/LoremTagInputDialog.ui" line="79"/> + <location filename="../LoremTagInputDialog.ui" line="79"/> <source>Generate random text</source> <translation>Zufälligen Text generieren</translation> </message> @@ -1441,27 +1441,27 @@ <context> <name>TimezoneSelectionDialog</name> <message> - <location filename="../../ProjectDjangoTagsMenu/TimezoneSelectionDialog.ui" line="14"/> + <location filename="../TimezoneSelectionDialog.ui" line="14"/> <source>Select Time Zone</source> <translation>Zeitzone auswählen</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/TimezoneSelectionDialog.ui" line="25"/> + <location filename="../TimezoneSelectionDialog.ui" line="25"/> <source>Region:</source> <translation>Region:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/TimezoneSelectionDialog.ui" line="32"/> + <location filename="../TimezoneSelectionDialog.ui" line="32"/> <source>Select the time zone region</source> <translation>Region der Zeitzone auswählen</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/TimezoneSelectionDialog.ui" line="39"/> + <location filename="../TimezoneSelectionDialog.ui" line="39"/> <source>City:</source> <translation>Stadt:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/TimezoneSelectionDialog.ui" line="49"/> + <location filename="../TimezoneSelectionDialog.ui" line="49"/> <source>Select the time zone city</source> <translation>Stadt der Zeitzone auswählen</translation> </message>
--- a/ProjectDjangoTagsMenu/i18n/djangotagsmenu_en.ts Tue Jun 23 17:52:01 2020 +0200 +++ b/ProjectDjangoTagsMenu/i18n/djangotagsmenu_en.ts Tue Jun 23 17:52:32 2020 +0200 @@ -3,1297 +3,1297 @@ <context> <name>DjangoTagsMenuHandler</name> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="59"/> + <location filename="../DjangoTagsMenuHandler.py" line="53"/> <source>Django Template Tags Locator</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="636"/> + <location filename="../DjangoTagsMenuHandler.py" line="630"/> <source>Tags</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="79"/> + <location filename="../DjangoTagsMenuHandler.py" line="73"/> <source>autoescape - Auto Escape Characters</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="83"/> + <location filename="../DjangoTagsMenuHandler.py" line="77"/> <source>block - Named Block</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="87"/> + <location filename="../DjangoTagsMenuHandler.py" line="81"/> <source>comment - Multiline Comment</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="90"/> + <location filename="../DjangoTagsMenuHandler.py" line="84"/> <source>csrf_token - Cross Site Request Forgery Token</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="93"/> + <location filename="../DjangoTagsMenuHandler.py" line="87"/> <source>cycle - Cycle variables each time used</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="97"/> + <location filename="../DjangoTagsMenuHandler.py" line="91"/> <source>debug - Output Debug Information</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="101"/> + <location filename="../DjangoTagsMenuHandler.py" line="95"/> <source>extends - Extend a template with variable contents</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="104"/> + <location filename="../DjangoTagsMenuHandler.py" line="98"/> <source>extends - Extend a template with file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="108"/> + <location filename="../DjangoTagsMenuHandler.py" line="102"/> <source>filter - Filtered Block for one or more filters</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="111"/> + <location filename="../DjangoTagsMenuHandler.py" line="105"/> <source>firstof - Outputs first argument variable that is True</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="114"/> + <location filename="../DjangoTagsMenuHandler.py" line="108"/> <source>for - For Loop</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="117"/> + <location filename="../DjangoTagsMenuHandler.py" line="111"/> <source>for...empty - For Loop with fallback for empty loop</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="121"/> + <location filename="../DjangoTagsMenuHandler.py" line="115"/> <source>if - if...elif...else... clauses</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="124"/> + <location filename="../DjangoTagsMenuHandler.py" line="118"/> <source>ifchanged - Check if a value has changed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="127"/> + <location filename="../DjangoTagsMenuHandler.py" line="121"/> <source>ifequal - Output block if variables are equal</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="130"/> + <location filename="../DjangoTagsMenuHandler.py" line="124"/> <source>ifnotequal - Output block if variables are not equal</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="133"/> + <location filename="../DjangoTagsMenuHandler.py" line="127"/> <source>include - Render template given by variable</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="136"/> + <location filename="../DjangoTagsMenuHandler.py" line="130"/> <source>include - Render template given by file name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="140"/> + <location filename="../DjangoTagsMenuHandler.py" line="134"/> <source>load - Load a custom template tag set</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="144"/> + <location filename="../DjangoTagsMenuHandler.py" line="138"/> <source>now - Display current date and time</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="148"/> + <location filename="../DjangoTagsMenuHandler.py" line="142"/> <source>regroup - Regroup list of alike objects by a common attribute</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="153"/> + <location filename="../DjangoTagsMenuHandler.py" line="147"/> <source>spaceless - Remove whitespace between HTML tags</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="156"/> + <location filename="../DjangoTagsMenuHandler.py" line="150"/> <source>ssi - Output contents of a given file into the page</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="159"/> + <location filename="../DjangoTagsMenuHandler.py" line="153"/> <source>ssi - Output contents of a given file into the page (dialog selection)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="164"/> + <location filename="../DjangoTagsMenuHandler.py" line="158"/> <source>templatetag - Output syntax characters used for template</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="169"/> + <location filename="../DjangoTagsMenuHandler.py" line="163"/> <source>url - Return an absolute path reference</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="172"/> + <location filename="../DjangoTagsMenuHandler.py" line="166"/> <source>url...as - Return an absolute path reference</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="176"/> + <location filename="../DjangoTagsMenuHandler.py" line="170"/> <source>verbatim - Output block contents without rendering</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="180"/> + <location filename="../DjangoTagsMenuHandler.py" line="174"/> <source>widthratio - Calculate width ratio</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="183"/> + <location filename="../DjangoTagsMenuHandler.py" line="177"/> <source>with - Cache a complex variable under a simpler name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="655"/> + <location filename="../DjangoTagsMenuHandler.py" line="649"/> <source>Filters</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="198"/> + <location filename="../DjangoTagsMenuHandler.py" line="192"/> <source>A-I</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="199"/> + <location filename="../DjangoTagsMenuHandler.py" line="193"/> <source>add - Add variable or string</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="202"/> + <location filename="../DjangoTagsMenuHandler.py" line="196"/> <source>addslashes - Add slashes before quotes</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="206"/> + <location filename="../DjangoTagsMenuHandler.py" line="200"/> <source>capfirst - Capitalize first character</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="209"/> + <location filename="../DjangoTagsMenuHandler.py" line="203"/> <source>center - Center value</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="212"/> + <location filename="../DjangoTagsMenuHandler.py" line="206"/> <source>cut - Cut characters</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="216"/> + <location filename="../DjangoTagsMenuHandler.py" line="210"/> <source>date - Format date</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="222"/> + <location filename="../DjangoTagsMenuHandler.py" line="216"/> <source>default_if_none - Use default if None</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="225"/> + <location filename="../DjangoTagsMenuHandler.py" line="219"/> <source>dictsort - Sort dictionaries</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="228"/> + <location filename="../DjangoTagsMenuHandler.py" line="222"/> <source>dictsortreversed - Sort dictionaries reversed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="231"/> + <location filename="../DjangoTagsMenuHandler.py" line="225"/> <source>divisibleby - Check divisibility</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="238"/> + <location filename="../DjangoTagsMenuHandler.py" line="232"/> <source>escapejs - Escape as JavaScript</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="242"/> + <location filename="../DjangoTagsMenuHandler.py" line="236"/> <source>filesizeformat - Format file sizes</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="245"/> + <location filename="../DjangoTagsMenuHandler.py" line="239"/> <source>first - First item of a list</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="248"/> + <location filename="../DjangoTagsMenuHandler.py" line="242"/> <source>fix_ampersands - Replace ampersands</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="251"/> + <location filename="../DjangoTagsMenuHandler.py" line="245"/> <source>floatformat - Format floating numbers</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="254"/> + <location filename="../DjangoTagsMenuHandler.py" line="248"/> <source>force_escape - Escape as HTML immediately</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="258"/> + <location filename="../DjangoTagsMenuHandler.py" line="252"/> <source>get_digit - Extract rightmost digit</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="262"/> + <location filename="../DjangoTagsMenuHandler.py" line="256"/> <source>iriencode - Convert IRI to string</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="267"/> + <location filename="../DjangoTagsMenuHandler.py" line="261"/> <source>J-R</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="268"/> + <location filename="../DjangoTagsMenuHandler.py" line="262"/> <source>join - Join list</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="272"/> + <location filename="../DjangoTagsMenuHandler.py" line="266"/> <source>last - Return last item in list</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="275"/> + <location filename="../DjangoTagsMenuHandler.py" line="269"/> <source>length - Return length of the value</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="278"/> + <location filename="../DjangoTagsMenuHandler.py" line="272"/> <source>length_is - Check length</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="281"/> + <location filename="../DjangoTagsMenuHandler.py" line="275"/> <source>linebreaks - Replace line breaks with HTML</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="284"/> + <location filename="../DjangoTagsMenuHandler.py" line="278"/> <source>linebreaksbr - Replace line breaks with <br/></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="287"/> + <location filename="../DjangoTagsMenuHandler.py" line="281"/> <source>linenumbers - Display text with line numbers</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="290"/> + <location filename="../DjangoTagsMenuHandler.py" line="284"/> <source>ljust - Left-align value</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="293"/> + <location filename="../DjangoTagsMenuHandler.py" line="287"/> <source>lower - Convert to lowercase</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="297"/> + <location filename="../DjangoTagsMenuHandler.py" line="291"/> <source>make_list - Turn value into a list</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="301"/> + <location filename="../DjangoTagsMenuHandler.py" line="295"/> <source>phone2numeric - Convert phone number into numeric</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="304"/> + <location filename="../DjangoTagsMenuHandler.py" line="298"/> <source>pluralize - Return plural suffix</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="307"/> + <location filename="../DjangoTagsMenuHandler.py" line="301"/> <source>pprint - Pretty Print</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="311"/> + <location filename="../DjangoTagsMenuHandler.py" line="305"/> <source>random - Return random item from list</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="314"/> + <location filename="../DjangoTagsMenuHandler.py" line="308"/> <source>removetags - Remove HTML tags</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="317"/> + <location filename="../DjangoTagsMenuHandler.py" line="311"/> <source>rjust - Right-align value</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="322"/> + <location filename="../DjangoTagsMenuHandler.py" line="316"/> <source>S-Z</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="323"/> + <location filename="../DjangoTagsMenuHandler.py" line="317"/> <source>safe - Mark as not requiring HTML escaping </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="326"/> + <location filename="../DjangoTagsMenuHandler.py" line="320"/> <source>safeseq - Mark as a safe sequence</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="329"/> + <location filename="../DjangoTagsMenuHandler.py" line="323"/> <source>slice - Return a slice of a list</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="332"/> + <location filename="../DjangoTagsMenuHandler.py" line="326"/> <source>slugify - Return value slugified</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="335"/> + <location filename="../DjangoTagsMenuHandler.py" line="329"/> <source>stringformat - Format variable</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="338"/> + <location filename="../DjangoTagsMenuHandler.py" line="332"/> <source>striptags - Strip all HTML tags</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="342"/> + <location filename="../DjangoTagsMenuHandler.py" line="336"/> <source>time - Format time</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="345"/> + <location filename="../DjangoTagsMenuHandler.py" line="339"/> <source>timesince - Format as time since</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="348"/> + <location filename="../DjangoTagsMenuHandler.py" line="342"/> <source>timeuntil - Format as time until</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="351"/> + <location filename="../DjangoTagsMenuHandler.py" line="345"/> <source>title - Convert to titlecase</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="354"/> + <location filename="../DjangoTagsMenuHandler.py" line="348"/> <source>truncatechars - Truncate after a number of characters</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="357"/> + <location filename="../DjangoTagsMenuHandler.py" line="351"/> <source>truncatewords - Truncate after a number of words</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="360"/> + <location filename="../DjangoTagsMenuHandler.py" line="354"/> <source>truncatewords_html - Truncate after a number of words (HTML aware)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="365"/> + <location filename="../DjangoTagsMenuHandler.py" line="359"/> <source>unordered_list - Return HTML unordered list</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="368"/> + <location filename="../DjangoTagsMenuHandler.py" line="362"/> <source>upper - Convert to uppercase</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="371"/> + <location filename="../DjangoTagsMenuHandler.py" line="365"/> <source>urlencode - Escape as URL</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="374"/> + <location filename="../DjangoTagsMenuHandler.py" line="368"/> <source>urlize - Convert URLs as clickable links</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="377"/> + <location filename="../DjangoTagsMenuHandler.py" line="371"/> <source>urlizetrunc - Convert URLs as clickable links and truncate</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="382"/> + <location filename="../DjangoTagsMenuHandler.py" line="376"/> <source>wordcount - Return number of word</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="385"/> + <location filename="../DjangoTagsMenuHandler.py" line="379"/> <source>wordwrap - Wrap words</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="389"/> + <location filename="../DjangoTagsMenuHandler.py" line="383"/> <source>yesno - Map True, False and None</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="403"/> + <location filename="../DjangoTagsMenuHandler.py" line="397"/> <source>Humanize</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="631"/> + <location filename="../DjangoTagsMenuHandler.py" line="625"/> <source>Load Package</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="408"/> + <location filename="../DjangoTagsMenuHandler.py" line="402"/> <source>apnumber - Format integer the Associated Press style</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="412"/> + <location filename="../DjangoTagsMenuHandler.py" line="406"/> <source>intcomma - Format integer with commas</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="415"/> + <location filename="../DjangoTagsMenuHandler.py" line="409"/> <source>intword - Convert integer to word</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="419"/> + <location filename="../DjangoTagsMenuHandler.py" line="413"/> <source>naturalday - Format date naturally</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="422"/> + <location filename="../DjangoTagsMenuHandler.py" line="416"/> <source>naturaltime - Format time naturally</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="426"/> + <location filename="../DjangoTagsMenuHandler.py" line="420"/> <source>ordinal - Convert integer to ordinal</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="439"/> + <location filename="../DjangoTagsMenuHandler.py" line="433"/> <source>Web Design</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="457"/> + <location filename="../DjangoTagsMenuHandler.py" line="451"/> <source>Static</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="462"/> + <location filename="../DjangoTagsMenuHandler.py" line="456"/> <source>static - Link to static file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="465"/> + <location filename="../DjangoTagsMenuHandler.py" line="459"/> <source>static - Link to static file (via variable)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="468"/> + <location filename="../DjangoTagsMenuHandler.py" line="462"/> <source>get_static_prefix - Insert static URL</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="471"/> + <location filename="../DjangoTagsMenuHandler.py" line="465"/> <source>get_media_prefix - Insert media URL</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="484"/> + <location filename="../DjangoTagsMenuHandler.py" line="478"/> <source>Comment</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="485"/> + <location filename="../DjangoTagsMenuHandler.py" line="479"/> <source>Single Line Comment Selected Text</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="488"/> + <location filename="../DjangoTagsMenuHandler.py" line="482"/> <source>Multi Line Comment Selected Text</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="492"/> + <location filename="../DjangoTagsMenuHandler.py" line="486"/> <source>Single Line Comment from Input Dialog</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="495"/> + <location filename="../DjangoTagsMenuHandler.py" line="489"/> <source>Multi Line Comment from Input Dialog</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="499"/> + <location filename="../DjangoTagsMenuHandler.py" line="493"/> <source>Single Line Comment from Clipboard</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="502"/> + <location filename="../DjangoTagsMenuHandler.py" line="496"/> <source>Multi Line Comment from Clipboard</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="506"/> + <location filename="../DjangoTagsMenuHandler.py" line="500"/> <source>Multi Line Comment from File</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="510"/> + <location filename="../DjangoTagsMenuHandler.py" line="504"/> <source>Single Line Comment from Date Time Now</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="514"/> + <location filename="../DjangoTagsMenuHandler.py" line="508"/> <source>HTML Comment Out Selected Text</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="517"/> + <location filename="../DjangoTagsMenuHandler.py" line="511"/> <source>MS IE Conditional Comment Selected Text</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="530"/> + <location filename="../DjangoTagsMenuHandler.py" line="524"/> <source>Internationalization (i18n)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="537"/> + <location filename="../DjangoTagsMenuHandler.py" line="531"/> <source>trans - Translate String or Variable</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="540"/> + <location filename="../DjangoTagsMenuHandler.py" line="534"/> <source>trans..as - Translate String into Variable</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="544"/> + <location filename="../DjangoTagsMenuHandler.py" line="538"/> <source>blocktrans - Translate Block</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="547"/> + <location filename="../DjangoTagsMenuHandler.py" line="541"/> <source>blocktrans..with - Translate Block with Attributes</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="550"/> + <location filename="../DjangoTagsMenuHandler.py" line="544"/> <source>plural - Plural Block</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="553"/> + <location filename="../DjangoTagsMenuHandler.py" line="547"/> <source>language - Switch language</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="557"/> + <location filename="../DjangoTagsMenuHandler.py" line="551"/> <source>get_current_language - Current language</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="560"/> + <location filename="../DjangoTagsMenuHandler.py" line="554"/> <source>get_available_languages - Available languages</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="563"/> + <location filename="../DjangoTagsMenuHandler.py" line="557"/> <source>get_current_language_bidi - Current language's direction</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="567"/> + <location filename="../DjangoTagsMenuHandler.py" line="561"/> <source>get_language_info - Language Information</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="570"/> + <location filename="../DjangoTagsMenuHandler.py" line="564"/> <source>get_language_info_list - Language Information for a list of languages</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="577"/> + <location filename="../DjangoTagsMenuHandler.py" line="571"/> <source>language_name - Language name</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="580"/> + <location filename="../DjangoTagsMenuHandler.py" line="574"/> <source>language_name_local - Language name translated</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="583"/> + <location filename="../DjangoTagsMenuHandler.py" line="577"/> <source>bidi - Language's direction</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="597"/> + <location filename="../DjangoTagsMenuHandler.py" line="591"/> <source>Localization (l10n)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="604"/> + <location filename="../DjangoTagsMenuHandler.py" line="598"/> <source>localize on - Activate Localization</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="607"/> + <location filename="../DjangoTagsMenuHandler.py" line="601"/> <source>localize off - Dectivate Localization</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="613"/> + <location filename="../DjangoTagsMenuHandler.py" line="607"/> <source>localize - Output value localized</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="616"/> + <location filename="../DjangoTagsMenuHandler.py" line="610"/> <source>unlocalize - Output value non-localized</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="630"/> + <location filename="../DjangoTagsMenuHandler.py" line="624"/> <source>Timezone (tz)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="637"/> + <location filename="../DjangoTagsMenuHandler.py" line="631"/> <source>localtime on - Activate date and time conversion</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="640"/> + <location filename="../DjangoTagsMenuHandler.py" line="634"/> <source>localtime off - Deactivate date and time conversion</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="643"/> + <location filename="../DjangoTagsMenuHandler.py" line="637"/> <source>timezone - Set timezone for date and time conversion</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="646"/> + <location filename="../DjangoTagsMenuHandler.py" line="640"/> <source>timezone None - Unset timezone for date and time conversion</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="650"/> + <location filename="../DjangoTagsMenuHandler.py" line="644"/> <source>get_current_timezone - Get current time zone</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="656"/> + <location filename="../DjangoTagsMenuHandler.py" line="650"/> <source>localtime - Convert to local time zone</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="659"/> + <location filename="../DjangoTagsMenuHandler.py" line="653"/> <source>utc - Convert to UTC</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="662"/> + <location filename="../DjangoTagsMenuHandler.py" line="656"/> <source>timezone - Convert to a specific time zone</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="727"/> + <location filename="../DjangoTagsMenuHandler.py" line="720"/> <source>Named Block</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="727"/> + <location filename="../DjangoTagsMenuHandler.py" line="720"/> <source>Enter block name:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="743"/> + <location filename="../DjangoTagsMenuHandler.py" line="736"/> <source>Cycle Variables</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="743"/> + <location filename="../DjangoTagsMenuHandler.py" line="736"/> <source>Enter items to cycle, space separated</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="761"/> + <location filename="../DjangoTagsMenuHandler.py" line="754"/> <source>Extends</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="859"/> + <location filename="../DjangoTagsMenuHandler.py" line="852"/> <source>Enter variable name:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="761"/> + <location filename="../DjangoTagsMenuHandler.py" line="754"/> <source>Enter parent file name:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="769"/> + <location filename="../DjangoTagsMenuHandler.py" line="762"/> <source>Tag Filters</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="769"/> + <location filename="../DjangoTagsMenuHandler.py" line="762"/> <source>Multiple filters with arguments, pipes separated:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="780"/> + <location filename="../DjangoTagsMenuHandler.py" line="773"/> <source>First Of</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="780"/> + <location filename="../DjangoTagsMenuHandler.py" line="773"/> <source>Enter multiple variables, space separated:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="780"/> + <location filename="../DjangoTagsMenuHandler.py" line="773"/> <source>Enter fallback value:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="805"/> + <location filename="../DjangoTagsMenuHandler.py" line="798"/> <source>For Loop</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="805"/> + <location filename="../DjangoTagsMenuHandler.py" line="798"/> <source>Enter variable to use for iteration:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="805"/> + <location filename="../DjangoTagsMenuHandler.py" line="798"/> <source>Enter sequence to iterate over:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="805"/> + <location filename="../DjangoTagsMenuHandler.py" line="798"/> <source>Enter output to use if loop is empty:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="824"/> + <location filename="../DjangoTagsMenuHandler.py" line="817"/> <source>Check Variables for Changes</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="824"/> + <location filename="../DjangoTagsMenuHandler.py" line="817"/> <source>Enter variables to check (space separated):</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="835"/> + <location filename="../DjangoTagsMenuHandler.py" line="828"/> <source>Check If Equal</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="847"/> + <location filename="../DjangoTagsMenuHandler.py" line="840"/> <source>Enter first variable or string to check:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="847"/> + <location filename="../DjangoTagsMenuHandler.py" line="840"/> <source>Enter second variable or string to check:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="847"/> + <location filename="../DjangoTagsMenuHandler.py" line="840"/> <source>Check If Not Equal</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="867"/> + <location filename="../DjangoTagsMenuHandler.py" line="860"/> <source>Include</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="867"/> + <location filename="../DjangoTagsMenuHandler.py" line="860"/> <source>Enter file name:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="875"/> + <location filename="../DjangoTagsMenuHandler.py" line="868"/> <source>Load</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="875"/> + <location filename="../DjangoTagsMenuHandler.py" line="868"/> <source>Enter template tag set to load:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="883"/> + <location filename="../DjangoTagsMenuHandler.py" line="876"/> <source>Now</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="883"/> + <location filename="../DjangoTagsMenuHandler.py" line="876"/> <source>Current date time format:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="893"/> + <location filename="../DjangoTagsMenuHandler.py" line="886"/> <source>Regroup List</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="893"/> + <location filename="../DjangoTagsMenuHandler.py" line="886"/> <source>List Variable:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="893"/> + <location filename="../DjangoTagsMenuHandler.py" line="886"/> <source>Common Attribute:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="893"/> + <location filename="../DjangoTagsMenuHandler.py" line="886"/> <source>Name of resulting list:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="915"/> + <location filename="../DjangoTagsMenuHandler.py" line="908"/> <source>SSI</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="907"/> + <location filename="../DjangoTagsMenuHandler.py" line="900"/> <source>Full path to template:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1386"/> + <location filename="../DjangoTagsMenuHandler.py" line="1379"/> <source>All Files (*)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="923"/> + <location filename="../DjangoTagsMenuHandler.py" line="916"/> <source>Template Tag</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="923"/> + <location filename="../DjangoTagsMenuHandler.py" line="916"/> <source>Argument:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="935"/> + <location filename="../DjangoTagsMenuHandler.py" line="928"/> <source>URL</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="947"/> + <location filename="../DjangoTagsMenuHandler.py" line="940"/> <source>View method name:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="947"/> + <location filename="../DjangoTagsMenuHandler.py" line="940"/> <source>Optional arguments (space separated):</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="947"/> + <location filename="../DjangoTagsMenuHandler.py" line="940"/> <source>URL...as</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="947"/> + <location filename="../DjangoTagsMenuHandler.py" line="940"/> <source>URL name:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="964"/> + <location filename="../DjangoTagsMenuHandler.py" line="957"/> <source>Width Ratio</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="964"/> + <location filename="../DjangoTagsMenuHandler.py" line="957"/> <source>Variable:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="964"/> + <location filename="../DjangoTagsMenuHandler.py" line="957"/> <source>Maximum Value:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="964"/> + <location filename="../DjangoTagsMenuHandler.py" line="957"/> <source>Maximum Width:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="975"/> + <location filename="../DjangoTagsMenuHandler.py" line="968"/> <source>Cache Variables</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="975"/> + <location filename="../DjangoTagsMenuHandler.py" line="968"/> <source>Variables to cache as key=value (space separated):</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="990"/> + <location filename="../DjangoTagsMenuHandler.py" line="983"/> <source>Add Variable or String</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="990"/> + <location filename="../DjangoTagsMenuHandler.py" line="983"/> <source>Variables or String to add:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1002"/> + <location filename="../DjangoTagsMenuHandler.py" line="995"/> <source>Center Value</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1164"/> + <location filename="../DjangoTagsMenuHandler.py" line="1157"/> <source>Enter width of the output:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1010"/> + <location filename="../DjangoTagsMenuHandler.py" line="1003"/> <source>Cut Characters</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1010"/> + <location filename="../DjangoTagsMenuHandler.py" line="1003"/> <source>Characters to cut:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1196"/> + <location filename="../DjangoTagsMenuHandler.py" line="1189"/> <source>Format Date</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1196"/> + <location filename="../DjangoTagsMenuHandler.py" line="1189"/> <source>Enter date format:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1031"/> + <location filename="../DjangoTagsMenuHandler.py" line="1024"/> <source>Default Value if False</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1031"/> + <location filename="../DjangoTagsMenuHandler.py" line="1024"/> <source>Enter default value if result is False:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1039"/> + <location filename="../DjangoTagsMenuHandler.py" line="1032"/> <source>Default Value if None</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1039"/> + <location filename="../DjangoTagsMenuHandler.py" line="1032"/> <source>Enter default value if result is None:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1047"/> + <location filename="../DjangoTagsMenuHandler.py" line="1040"/> <source>Sort Dictionaries</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1055"/> + <location filename="../DjangoTagsMenuHandler.py" line="1048"/> <source>Enter key to sort on:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1055"/> + <location filename="../DjangoTagsMenuHandler.py" line="1048"/> <source>Sort Dictionaries reversed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1063"/> + <location filename="../DjangoTagsMenuHandler.py" line="1056"/> <source>Check Divisibility</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1063"/> + <location filename="../DjangoTagsMenuHandler.py" line="1056"/> <source>Enter divisor value:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1081"/> + <location filename="../DjangoTagsMenuHandler.py" line="1074"/> <source>Format Floating Number</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1081"/> + <location filename="../DjangoTagsMenuHandler.py" line="1074"/> <source>Enter number of decimal places:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1091"/> + <location filename="../DjangoTagsMenuHandler.py" line="1084"/> <source>Get Rightmost Digit</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1091"/> + <location filename="../DjangoTagsMenuHandler.py" line="1084"/> <source>Enter index of digit:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1101"/> + <location filename="../DjangoTagsMenuHandler.py" line="1094"/> <source>Join List</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1101"/> + <location filename="../DjangoTagsMenuHandler.py" line="1094"/> <source>Enter string to join by:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1113"/> + <location filename="../DjangoTagsMenuHandler.py" line="1106"/> <source>Check Length</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1113"/> + <location filename="../DjangoTagsMenuHandler.py" line="1106"/> <source>Enter desired length:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1127"/> + <location filename="../DjangoTagsMenuHandler.py" line="1120"/> <source>Left-align Value</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1141"/> + <location filename="../DjangoTagsMenuHandler.py" line="1134"/> <source>Plural Suffix</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1141"/> + <location filename="../DjangoTagsMenuHandler.py" line="1134"/> <source>Enter plural suffix (nothing for default):</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1156"/> + <location filename="../DjangoTagsMenuHandler.py" line="1149"/> <source>Remove HTML Tags</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1156"/> + <location filename="../DjangoTagsMenuHandler.py" line="1149"/> <source>Enter HTML tags to remove (space separated):</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1164"/> + <location filename="../DjangoTagsMenuHandler.py" line="1157"/> <source>Right-align Value</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1176"/> + <location filename="../DjangoTagsMenuHandler.py" line="1169"/> <source>Extract slice of a list</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1176"/> + <location filename="../DjangoTagsMenuHandler.py" line="1169"/> <source>Enter Python like slice expression:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1186"/> + <location filename="../DjangoTagsMenuHandler.py" line="1179"/> <source>Perform String Formatting</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1186"/> + <location filename="../DjangoTagsMenuHandler.py" line="1179"/> <source>Enter Python like string format:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1208"/> + <location filename="../DjangoTagsMenuHandler.py" line="1201"/> <source>Time Since</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1219"/> + <location filename="../DjangoTagsMenuHandler.py" line="1212"/> <source>Enter variable containing time reference:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1219"/> + <location filename="../DjangoTagsMenuHandler.py" line="1212"/> <source>Time Until</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1248"/> + <location filename="../DjangoTagsMenuHandler.py" line="1241"/> <source>Truncate String</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1274"/> + <location filename="../DjangoTagsMenuHandler.py" line="1267"/> <source>Enter number of characters:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1248"/> + <location filename="../DjangoTagsMenuHandler.py" line="1241"/> <source>Enter number of words:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1264"/> + <location filename="../DjangoTagsMenuHandler.py" line="1257"/> <source>Convert URLs as clickable links and truncate</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1274"/> + <location filename="../DjangoTagsMenuHandler.py" line="1267"/> <source>Wrap words</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1282"/> + <location filename="../DjangoTagsMenuHandler.py" line="1275"/> <source>Map True, False and None</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1282"/> + <location filename="../DjangoTagsMenuHandler.py" line="1275"/> <source>Enter mapping (comma separated):</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1339"/> + <location filename="../DjangoTagsMenuHandler.py" line="1332"/> <source>Link to static file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1331"/> + <location filename="../DjangoTagsMenuHandler.py" line="1324"/> <source>Enter relative path of static file:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1339"/> + <location filename="../DjangoTagsMenuHandler.py" line="1332"/> <source>Enter variable containing relative path of static file:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1364"/> + <location filename="../DjangoTagsMenuHandler.py" line="1357"/> <source>Single Line Comment</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1373"/> + <location filename="../DjangoTagsMenuHandler.py" line="1366"/> <source>Enter comment:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1373"/> + <location filename="../DjangoTagsMenuHandler.py" line="1366"/> <source>Multi Line Comment</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1400"/> + <location filename="../DjangoTagsMenuHandler.py" line="1393"/> <source>Comment File</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1400"/> + <location filename="../DjangoTagsMenuHandler.py" line="1393"/> <source><p>The file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1433"/> + <location filename="../DjangoTagsMenuHandler.py" line="1426"/> <source>Translate String into Variable</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1433"/> + <location filename="../DjangoTagsMenuHandler.py" line="1426"/> <source>Enter variable receiving translation:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1447"/> + <location filename="../DjangoTagsMenuHandler.py" line="1440"/> <source>Translate Block with Attributes</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1447"/> + <location filename="../DjangoTagsMenuHandler.py" line="1440"/> <source>Enter attribute binding expressions (space separated):</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1462"/> + <location filename="../DjangoTagsMenuHandler.py" line="1455"/> <source>Switch language</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1462"/> + <location filename="../DjangoTagsMenuHandler.py" line="1455"/> <source>Enter language:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1479"/> + <location filename="../DjangoTagsMenuHandler.py" line="1472"/> <source>Language Information</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1479"/> + <location filename="../DjangoTagsMenuHandler.py" line="1472"/> <source>Enter language string or variable (empty for LANGUAGE_CODE):</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1494"/> + <location filename="../DjangoTagsMenuHandler.py" line="1487"/> <source>Language Information for a list of languages</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1494"/> + <location filename="../DjangoTagsMenuHandler.py" line="1487"/> <source>Enter language list variable (empty for LANGUAGES):</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="219"/> + <location filename="../DjangoTagsMenuHandler.py" line="213"/> <source>default - Use default if False</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="235"/> + <location filename="../DjangoTagsMenuHandler.py" line="229"/> <source>escape - Escape as HTML</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="444"/> + <location filename="../DjangoTagsMenuHandler.py" line="438"/> <source>lorem - Builtin Lorem Ipsum Generator</source> <translation type="unfinished"></translation> </message> @@ -1301,27 +1301,27 @@ <context> <name>FindTemplateTagDialog</name> <message> - <location filename="../../ProjectDjangoTagsMenu/FindTemplateTagDialog.ui" line="14"/> + <location filename="../FindTemplateTagDialog.ui" line="14"/> <source>Find Template Tag</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/FindTemplateTagDialog.ui" line="23"/> + <location filename="../FindTemplateTagDialog.ui" line="23"/> <source><b>Find Tags and Filters while Typing:</b></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/FindTemplateTagDialog.ui" line="33"/> + <location filename="../FindTemplateTagDialog.ui" line="33"/> <source>Type to find tag</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/FindTemplateTagDialog.ui" line="61"/> + <location filename="../FindTemplateTagDialog.ui" line="61"/> <source>Press to create the entered template tag</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/FindTemplateTagDialog.ui" line="64"/> + <location filename="../FindTemplateTagDialog.ui" line="64"/> <source>Create Template Tag</source> <translation type="unfinished"></translation> </message> @@ -1329,27 +1329,27 @@ <context> <name>IeCommentDialog</name> <message> - <location filename="../../ProjectDjangoTagsMenu/IeCommentDialog.ui" line="14"/> + <location filename="../IeCommentDialog.ui" line="14"/> <source>IE Comment</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/IeCommentDialog.ui" line="25"/> + <location filename="../IeCommentDialog.ui" line="25"/> <source>Conditional Format:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/IeCommentDialog.ui" line="34"/> + <location filename="../IeCommentDialog.ui" line="34"/> <source>Select the conditional</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/IeCommentDialog.ui" line="56"/> + <location filename="../IeCommentDialog.ui" line="56"/> <source>MS IE Version:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/IeCommentDialog.ui" line="65"/> + <location filename="../IeCommentDialog.ui" line="65"/> <source>Enter the IE Version</source> <translation type="unfinished"></translation> </message> @@ -1357,37 +1357,37 @@ <context> <name>IfTagInputDialog</name> <message> - <location filename="../../ProjectDjangoTagsMenu/IfTagInputDialog.ui" line="14"/> + <location filename="../IfTagInputDialog.ui" line="14"/> <source>If Tag Template</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/IfTagInputDialog.ui" line="23"/> + <location filename="../IfTagInputDialog.ui" line="23"/> <source>'if' expression:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/IfTagInputDialog.ui" line="30"/> + <location filename="../IfTagInputDialog.ui" line="30"/> <source>Enter the 'if' expression</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/IfTagInputDialog.ui" line="37"/> + <location filename="../IfTagInputDialog.ui" line="37"/> <source>'elif' expressions (one per line):</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/IfTagInputDialog.ui" line="44"/> + <location filename="../IfTagInputDialog.ui" line="44"/> <source>Enter 'elif' expressions one per line</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/IfTagInputDialog.ui" line="51"/> + <location filename="../IfTagInputDialog.ui" line="51"/> <source>Select to include an 'else' part</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/IfTagInputDialog.ui" line="54"/> + <location filename="../IfTagInputDialog.ui" line="54"/> <source>Include 'else'</source> <translation type="unfinished"></translation> </message> @@ -1395,37 +1395,37 @@ <context> <name>LoremTagInputDialog</name> <message> - <location filename="../../ProjectDjangoTagsMenu/LoremTagInputDialog.ui" line="14"/> + <location filename="../LoremTagInputDialog.ui" line="14"/> <source>Lorem Tag Template</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/LoremTagInputDialog.ui" line="23"/> + <location filename="../LoremTagInputDialog.ui" line="23"/> <source>Count:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/LoremTagInputDialog.ui" line="53"/> + <location filename="../LoremTagInputDialog.ui" line="53"/> <source>Method:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/LoremTagInputDialog.ui" line="61"/> + <location filename="../LoremTagInputDialog.ui" line="61"/> <source>Plain text paragraphs</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/LoremTagInputDialog.ui" line="66"/> + <location filename="../LoremTagInputDialog.ui" line="66"/> <source>HTML paragraphs</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/LoremTagInputDialog.ui" line="71"/> + <location filename="../LoremTagInputDialog.ui" line="71"/> <source>Words</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/LoremTagInputDialog.ui" line="79"/> + <location filename="../LoremTagInputDialog.ui" line="79"/> <source>Generate random text</source> <translation type="unfinished"></translation> </message> @@ -1441,27 +1441,27 @@ <context> <name>TimezoneSelectionDialog</name> <message> - <location filename="../../ProjectDjangoTagsMenu/TimezoneSelectionDialog.ui" line="14"/> + <location filename="../TimezoneSelectionDialog.ui" line="14"/> <source>Select Time Zone</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/TimezoneSelectionDialog.ui" line="25"/> + <location filename="../TimezoneSelectionDialog.ui" line="25"/> <source>Region:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/TimezoneSelectionDialog.ui" line="32"/> + <location filename="../TimezoneSelectionDialog.ui" line="32"/> <source>Select the time zone region</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/TimezoneSelectionDialog.ui" line="39"/> + <location filename="../TimezoneSelectionDialog.ui" line="39"/> <source>City:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/TimezoneSelectionDialog.ui" line="49"/> + <location filename="../TimezoneSelectionDialog.ui" line="49"/> <source>Select the time zone city</source> <translation type="unfinished"></translation> </message>
--- a/ProjectDjangoTagsMenu/i18n/djangotagsmenu_es.ts Tue Jun 23 17:52:01 2020 +0200 +++ b/ProjectDjangoTagsMenu/i18n/djangotagsmenu_es.ts Tue Jun 23 17:52:32 2020 +0200 @@ -3,1297 +3,1297 @@ <context> <name>DjangoTagsMenuHandler</name> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="59"/> + <location filename="../DjangoTagsMenuHandler.py" line="53"/> <source>Django Template Tags Locator</source> <translation>Localizador de Etiquetas de Plantillas Django </translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="636"/> + <location filename="../DjangoTagsMenuHandler.py" line="630"/> <source>Tags</source> <translation>Tags</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="79"/> + <location filename="../DjangoTagsMenuHandler.py" line="73"/> <source>autoescape - Auto Escape Characters</source> <translation>autoescape - Auto Escape de Carácteres</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="83"/> + <location filename="../DjangoTagsMenuHandler.py" line="77"/> <source>block - Named Block</source> <translation>block - Bloque con Nombre</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="87"/> + <location filename="../DjangoTagsMenuHandler.py" line="81"/> <source>comment - Multiline Comment</source> <translation>comment - Comentario Multilínea</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="90"/> + <location filename="../DjangoTagsMenuHandler.py" line="84"/> <source>csrf_token - Cross Site Request Forgery Token</source> <translation>csrf_token - Token de Cross Site Request Forgery</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="93"/> + <location filename="../DjangoTagsMenuHandler.py" line="87"/> <source>cycle - Cycle variables each time used</source> <translation>cycle - Ciclar entre variables cada vez que se usan</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="97"/> + <location filename="../DjangoTagsMenuHandler.py" line="91"/> <source>debug - Output Debug Information</source> <translation>debug - Salida de Información de Depuración</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="101"/> + <location filename="../DjangoTagsMenuHandler.py" line="95"/> <source>extends - Extend a template with variable contents</source> <translation>extends - Extender una plantilla con contenidos de variable</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="104"/> + <location filename="../DjangoTagsMenuHandler.py" line="98"/> <source>extends - Extend a template with file</source> <translation>extends - Extender una plantilla con archivo</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="108"/> + <location filename="../DjangoTagsMenuHandler.py" line="102"/> <source>filter - Filtered Block for one or more filters</source> <translation>filter - Bloque Filtrado para uno o más filtros</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="111"/> + <location filename="../DjangoTagsMenuHandler.py" line="105"/> <source>firstof - Outputs first argument variable that is True</source> <translation>firstof - Hace Output de la primera variable argumento que es True</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="114"/> + <location filename="../DjangoTagsMenuHandler.py" line="108"/> <source>for - For Loop</source> <translation>for - Bucle For</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="117"/> + <location filename="../DjangoTagsMenuHandler.py" line="111"/> <source>for...empty - For Loop with fallback for empty loop</source> <translation>for...empty - Bucle For con Alternativa para ciclo vacío</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="121"/> + <location filename="../DjangoTagsMenuHandler.py" line="115"/> <source>if - if...elif...else... clauses</source> <translation>if - Cláusulas if...elif...else</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="124"/> + <location filename="../DjangoTagsMenuHandler.py" line="118"/> <source>ifchanged - Check if a value has changed</source> <translation>ifchanged - Comprobar si un valor ha cambiado</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="127"/> + <location filename="../DjangoTagsMenuHandler.py" line="121"/> <source>ifequal - Output block if variables are equal</source> <translation>ifequal - Bloque de salida si variables son iguales</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="130"/> + <location filename="../DjangoTagsMenuHandler.py" line="124"/> <source>ifnotequal - Output block if variables are not equal</source> <translation>ifnotequal - Bloque de salida si variables no son iguales</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="133"/> + <location filename="../DjangoTagsMenuHandler.py" line="127"/> <source>include - Render template given by variable</source> <translation>include - Dibujar plantilla dada por variable</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="136"/> + <location filename="../DjangoTagsMenuHandler.py" line="130"/> <source>include - Render template given by file name</source> <translation>include - Dibujar plantilla dada por nombre de archivo</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="140"/> + <location filename="../DjangoTagsMenuHandler.py" line="134"/> <source>load - Load a custom template tag set</source> <translation>load - Cargar un tag set de plantilla personalizada</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="144"/> + <location filename="../DjangoTagsMenuHandler.py" line="138"/> <source>now - Display current date and time</source> <translation>now - Mostrar fecha y hora actuales</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="148"/> + <location filename="../DjangoTagsMenuHandler.py" line="142"/> <source>regroup - Regroup list of alike objects by a common attribute</source> <translation>regroup - Reagrupar lista de objetos que se parecen por un atributo en común</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="153"/> + <location filename="../DjangoTagsMenuHandler.py" line="147"/> <source>spaceless - Remove whitespace between HTML tags</source> <translation>spaceless - Eliminar espacios en blanco entre etiquetas HTML</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="156"/> + <location filename="../DjangoTagsMenuHandler.py" line="150"/> <source>ssi - Output contents of a given file into the page</source> <translation>ssi - Hacer output de contenidos de un archivo dado a la página</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="159"/> + <location filename="../DjangoTagsMenuHandler.py" line="153"/> <source>ssi - Output contents of a given file into the page (dialog selection)</source> <translation>ssi - Hacer output de contenidos de un archivo dado a la página (diálogo de selección)</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="164"/> + <location filename="../DjangoTagsMenuHandler.py" line="158"/> <source>templatetag - Output syntax characters used for template</source> <translation>templatetag - Hacer output de carácteres sintácticos utilizados para la plantilla</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="169"/> + <location filename="../DjangoTagsMenuHandler.py" line="163"/> <source>url - Return an absolute path reference</source> <translation>url - Devolver una referencia de path absoluto</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="172"/> + <location filename="../DjangoTagsMenuHandler.py" line="166"/> <source>url...as - Return an absolute path reference</source> <translation>url...as - Devolver una referencia de path absoluto</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="176"/> + <location filename="../DjangoTagsMenuHandler.py" line="170"/> <source>verbatim - Output block contents without rendering</source> <translation>verbatim - Hacer output de contenido de bloque sin dibujado (textualmente)</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="180"/> + <location filename="../DjangoTagsMenuHandler.py" line="174"/> <source>widthratio - Calculate width ratio</source> <translation>widthratio - Calcular radio de anchura</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="183"/> + <location filename="../DjangoTagsMenuHandler.py" line="177"/> <source>with - Cache a complex variable under a simpler name</source> <translation>with - Hacer cache de una variable compleja usando un nombre más simple</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="655"/> + <location filename="../DjangoTagsMenuHandler.py" line="649"/> <source>Filters</source> <translation>Filtros</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="198"/> + <location filename="../DjangoTagsMenuHandler.py" line="192"/> <source>A-I</source> <translation>A-I</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="199"/> + <location filename="../DjangoTagsMenuHandler.py" line="193"/> <source>add - Add variable or string</source> <translation>add - Añadir variable o cadena</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="202"/> + <location filename="../DjangoTagsMenuHandler.py" line="196"/> <source>addslashes - Add slashes before quotes</source> <translation>addslashes - añadir barras de separación (slash) antes de comillas</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="206"/> + <location filename="../DjangoTagsMenuHandler.py" line="200"/> <source>capfirst - Capitalize first character</source> <translation>capfirst - Primer carácter en mayúscula</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="209"/> + <location filename="../DjangoTagsMenuHandler.py" line="203"/> <source>center - Center value</source> <translation>center - Centrar valor</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="212"/> + <location filename="../DjangoTagsMenuHandler.py" line="206"/> <source>cut - Cut characters</source> <translation>cut - Cortar caracteres</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="216"/> + <location filename="../DjangoTagsMenuHandler.py" line="210"/> <source>date - Format date</source> <translation>date - Formatear fecha</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="222"/> + <location filename="../DjangoTagsMenuHandler.py" line="216"/> <source>default_if_none - Use default if None</source> <translation>default_if_none - Usar por defecto si None</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="225"/> + <location filename="../DjangoTagsMenuHandler.py" line="219"/> <source>dictsort - Sort dictionaries</source> <translation>dictsort - Ordenar diccionarios</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="228"/> + <location filename="../DjangoTagsMenuHandler.py" line="222"/> <source>dictsortreversed - Sort dictionaries reversed</source> <translation>dictsortreversed - Ordenar inversamente diccionarios</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="231"/> + <location filename="../DjangoTagsMenuHandler.py" line="225"/> <source>divisibleby - Check divisibility</source> <translation>divisibleby - Comprobar divisibilidad</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="238"/> + <location filename="../DjangoTagsMenuHandler.py" line="232"/> <source>escapejs - Escape as JavaScript</source> <translation>escapejs - Escape como JavaScript</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="242"/> + <location filename="../DjangoTagsMenuHandler.py" line="236"/> <source>filesizeformat - Format file sizes</source> <translation>filesizeformat - Formatear tamaños archivo</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="245"/> + <location filename="../DjangoTagsMenuHandler.py" line="239"/> <source>first - First item of a list</source> <translation>first - Primer elemento de una lista</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="248"/> + <location filename="../DjangoTagsMenuHandler.py" line="242"/> <source>fix_ampersands - Replace ampersands</source> <translation>fix_ampersands - Reeplazar ampersands</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="251"/> + <location filename="../DjangoTagsMenuHandler.py" line="245"/> <source>floatformat - Format floating numbers</source> <translation>floatformat - Formatear números en coma flotante</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="254"/> + <location filename="../DjangoTagsMenuHandler.py" line="248"/> <source>force_escape - Escape as HTML immediately</source> <translation>force_escape - Hacer Escape como HTML inmediatamente</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="258"/> + <location filename="../DjangoTagsMenuHandler.py" line="252"/> <source>get_digit - Extract rightmost digit</source> <translation>get_digit - Extraer dígito de más hacia la derecha</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="262"/> + <location filename="../DjangoTagsMenuHandler.py" line="256"/> <source>iriencode - Convert IRI to string</source> <translation>iriencode - Convertir IRI a cadena</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="267"/> + <location filename="../DjangoTagsMenuHandler.py" line="261"/> <source>J-R</source> <translation>J-R</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="268"/> + <location filename="../DjangoTagsMenuHandler.py" line="262"/> <source>join - Join list</source> <translation>join - Hacer Join de lista</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="272"/> + <location filename="../DjangoTagsMenuHandler.py" line="266"/> <source>last - Return last item in list</source> <translation>last - Retornar último elemento en lista</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="275"/> + <location filename="../DjangoTagsMenuHandler.py" line="269"/> <source>length - Return length of the value</source> <translation>length - Retornar longitud del valor</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="278"/> + <location filename="../DjangoTagsMenuHandler.py" line="272"/> <source>length_is - Check length</source> <translation>length_is - Comprobar longitud</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="281"/> + <location filename="../DjangoTagsMenuHandler.py" line="275"/> <source>linebreaks - Replace line breaks with HTML</source> <translation>linebreaks - Reemplazar finales de línea con HTML</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="284"/> + <location filename="../DjangoTagsMenuHandler.py" line="278"/> <source>linebreaksbr - Replace line breaks with <br/></source> <translation>linebreaksbr - Reemplazar finales de línea con <br/></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="287"/> + <location filename="../DjangoTagsMenuHandler.py" line="281"/> <source>linenumbers - Display text with line numbers</source> <translation>linenumbers - Mostrar texto con números de línea</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="290"/> + <location filename="../DjangoTagsMenuHandler.py" line="284"/> <source>ljust - Left-align value</source> <translation>ljust - Alinear valor a la izquierda</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="293"/> + <location filename="../DjangoTagsMenuHandler.py" line="287"/> <source>lower - Convert to lowercase</source> <translation>lower - Convertir a minúsculas</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="297"/> + <location filename="../DjangoTagsMenuHandler.py" line="291"/> <source>make_list - Turn value into a list</source> <translation>make_list - Convertir vlor en una lista</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="301"/> + <location filename="../DjangoTagsMenuHandler.py" line="295"/> <source>phone2numeric - Convert phone number into numeric</source> <translation>phone2numeric - Convertir número de teléfono a número</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="304"/> + <location filename="../DjangoTagsMenuHandler.py" line="298"/> <source>pluralize - Return plural suffix</source> <translation>pluralize - Retornar sufijo de plural</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="307"/> + <location filename="../DjangoTagsMenuHandler.py" line="301"/> <source>pprint - Pretty Print</source> <translation>pprint - Pretty Print</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="311"/> + <location filename="../DjangoTagsMenuHandler.py" line="305"/> <source>random - Return random item from list</source> <translation>random - Retornar elemento aleatorio de una lista</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="314"/> + <location filename="../DjangoTagsMenuHandler.py" line="308"/> <source>removetags - Remove HTML tags</source> <translation>removetags - Eliminar etiquetas HTML</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="317"/> + <location filename="../DjangoTagsMenuHandler.py" line="311"/> <source>rjust - Right-align value</source> <translation>rjust - Alinear valor a la derecha</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="322"/> + <location filename="../DjangoTagsMenuHandler.py" line="316"/> <source>S-Z</source> <translation>S-Z</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="323"/> + <location filename="../DjangoTagsMenuHandler.py" line="317"/> <source>safe - Mark as not requiring HTML escaping </source> <translation>safe - Marcar como no necesitado de escape HTML </translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="326"/> + <location filename="../DjangoTagsMenuHandler.py" line="320"/> <source>safeseq - Mark as a safe sequence</source> <translation>safeseq - Marcar como secuencia segura</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="329"/> + <location filename="../DjangoTagsMenuHandler.py" line="323"/> <source>slice - Return a slice of a list</source> <translation>slice - Retornar una slice de una lista</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="332"/> + <location filename="../DjangoTagsMenuHandler.py" line="326"/> <source>slugify - Return value slugified</source> <translation>slugify - Retornar valor url amigable (slug)</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="335"/> + <location filename="../DjangoTagsMenuHandler.py" line="329"/> <source>stringformat - Format variable</source> <translation>stringformat - Formatear variable</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="338"/> + <location filename="../DjangoTagsMenuHandler.py" line="332"/> <source>striptags - Strip all HTML tags</source> <translation>striptags - Quitar todas las etiquetas HTML</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="342"/> + <location filename="../DjangoTagsMenuHandler.py" line="336"/> <source>time - Format time</source> <translation>time - Formatear tiempo</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="345"/> + <location filename="../DjangoTagsMenuHandler.py" line="339"/> <source>timesince - Format as time since</source> <translation>timesince - Formatear como tiempo desde</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="348"/> + <location filename="../DjangoTagsMenuHandler.py" line="342"/> <source>timeuntil - Format as time until</source> <translation>timeuntil - Formatear como tiempo hasta</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="351"/> + <location filename="../DjangoTagsMenuHandler.py" line="345"/> <source>title - Convert to titlecase</source> <translation>title - Convertir a mayúsculas/minúsculas formato título</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="354"/> + <location filename="../DjangoTagsMenuHandler.py" line="348"/> <source>truncatechars - Truncate after a number of characters</source> <translation>truncatechars - Truncar despues de un número de carácteres</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="357"/> + <location filename="../DjangoTagsMenuHandler.py" line="351"/> <source>truncatewords - Truncate after a number of words</source> <translation>truncatewords - Truncar despues de un número de palabras</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="360"/> + <location filename="../DjangoTagsMenuHandler.py" line="354"/> <source>truncatewords_html - Truncate after a number of words (HTML aware)</source> <translation>truncatewords_html - Truncate despues de un número de palabras (teniendo en cuenta HTML)</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="365"/> + <location filename="../DjangoTagsMenuHandler.py" line="359"/> <source>unordered_list - Return HTML unordered list</source> <translation>unordered_list - Retornar lista no ordenada HTML</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="368"/> + <location filename="../DjangoTagsMenuHandler.py" line="362"/> <source>upper - Convert to uppercase</source> <translation>upper - Convertir a mayúsculas</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="371"/> + <location filename="../DjangoTagsMenuHandler.py" line="365"/> <source>urlencode - Escape as URL</source> <translation>urlencode - Hacer escape como URL</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="374"/> + <location filename="../DjangoTagsMenuHandler.py" line="368"/> <source>urlize - Convert URLs as clickable links</source> <translation>urlize - Convertir URLs como enlaces clickables</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="377"/> + <location filename="../DjangoTagsMenuHandler.py" line="371"/> <source>urlizetrunc - Convert URLs as clickable links and truncate</source> <translation>urlizetrunc - Convertir URLs como enlaces clickables y truncar</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="382"/> + <location filename="../DjangoTagsMenuHandler.py" line="376"/> <source>wordcount - Return number of word</source> <translation>wordcount - Retornar número de palabras</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="385"/> + <location filename="../DjangoTagsMenuHandler.py" line="379"/> <source>wordwrap - Wrap words</source> <translation>wordwrap - No partir palabras</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="389"/> + <location filename="../DjangoTagsMenuHandler.py" line="383"/> <source>yesno - Map True, False and None</source> <translation>yesno - Mapear True, False y None</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="403"/> + <location filename="../DjangoTagsMenuHandler.py" line="397"/> <source>Humanize</source> <translation>Humanizar</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="631"/> + <location filename="../DjangoTagsMenuHandler.py" line="625"/> <source>Load Package</source> <translation>Cargar Package</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="408"/> + <location filename="../DjangoTagsMenuHandler.py" line="402"/> <source>apnumber - Format integer the Associated Press style</source> <translation>apnumber - Formatear entero al estilo Associated Press</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="412"/> + <location filename="../DjangoTagsMenuHandler.py" line="406"/> <source>intcomma - Format integer with commas</source> <translation>intcomma - Formatear entero con comas</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="415"/> + <location filename="../DjangoTagsMenuHandler.py" line="409"/> <source>intword - Convert integer to word</source> <translation>intword - Convertir entero a palabra</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="419"/> + <location filename="../DjangoTagsMenuHandler.py" line="413"/> <source>naturalday - Format date naturally</source> <translation>naturalday - Formatear fecha con días naturales</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="422"/> + <location filename="../DjangoTagsMenuHandler.py" line="416"/> <source>naturaltime - Format time naturally</source> <translation>naturaltime - Formatear hora a hora natural</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="426"/> + <location filename="../DjangoTagsMenuHandler.py" line="420"/> <source>ordinal - Convert integer to ordinal</source> <translation>ordinal - Convertir entero a ordinal</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="439"/> + <location filename="../DjangoTagsMenuHandler.py" line="433"/> <source>Web Design</source> <translation>Diseño Web</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="457"/> + <location filename="../DjangoTagsMenuHandler.py" line="451"/> <source>Static</source> <translation>Estático</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="462"/> + <location filename="../DjangoTagsMenuHandler.py" line="456"/> <source>static - Link to static file</source> <translation>static - Link a archivo estático</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="465"/> + <location filename="../DjangoTagsMenuHandler.py" line="459"/> <source>static - Link to static file (via variable)</source> <translation>static - Link a archivo estático (vía variable)</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="468"/> + <location filename="../DjangoTagsMenuHandler.py" line="462"/> <source>get_static_prefix - Insert static URL</source> <translation>get_static_prefix - Insertar URL estática</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="471"/> + <location filename="../DjangoTagsMenuHandler.py" line="465"/> <source>get_media_prefix - Insert media URL</source> <translation>get_media_prefix - Insertar URL de archivo media</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="484"/> + <location filename="../DjangoTagsMenuHandler.py" line="478"/> <source>Comment</source> <translation>Comentario</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="485"/> + <location filename="../DjangoTagsMenuHandler.py" line="479"/> <source>Single Line Comment Selected Text</source> <translation>Texto Seleccionado a Comentario de Única Línea</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="488"/> + <location filename="../DjangoTagsMenuHandler.py" line="482"/> <source>Multi Line Comment Selected Text</source> <translation>Texto Seleccionado a Comentario Multilínea</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="492"/> + <location filename="../DjangoTagsMenuHandler.py" line="486"/> <source>Single Line Comment from Input Dialog</source> <translation>Comentario de Única Línea desde Diálogo de Introducción</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="495"/> + <location filename="../DjangoTagsMenuHandler.py" line="489"/> <source>Multi Line Comment from Input Dialog</source> <translation>Comentario Multilínea desde Diálogo de Introducción</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="499"/> + <location filename="../DjangoTagsMenuHandler.py" line="493"/> <source>Single Line Comment from Clipboard</source> <translation>Comentario de Única Línea desde Portapapeles</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="502"/> + <location filename="../DjangoTagsMenuHandler.py" line="496"/> <source>Multi Line Comment from Clipboard</source> <translation>Comentario Multilínea desde Portapapeles</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="506"/> + <location filename="../DjangoTagsMenuHandler.py" line="500"/> <source>Multi Line Comment from File</source> <translation>Comentario Multilínea desde Archivo</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="510"/> + <location filename="../DjangoTagsMenuHandler.py" line="504"/> <source>Single Line Comment from Date Time Now</source> <translation>Comentario de Única Línea desde Fecha Tiempo Ahora</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="514"/> + <location filename="../DjangoTagsMenuHandler.py" line="508"/> <source>HTML Comment Out Selected Text</source> <translation>Comentar (HTML) Texto Seleccionado</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="517"/> + <location filename="../DjangoTagsMenuHandler.py" line="511"/> <source>MS IE Conditional Comment Selected Text</source> <translation>Comentar Condicionalmente MS IE Texto Seleccionado</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="530"/> + <location filename="../DjangoTagsMenuHandler.py" line="524"/> <source>Internationalization (i18n)</source> <translation>Internacionalización (i18n)</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="537"/> + <location filename="../DjangoTagsMenuHandler.py" line="531"/> <source>trans - Translate String or Variable</source> <translation>trans - Traducir Cadena o Variable</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="540"/> + <location filename="../DjangoTagsMenuHandler.py" line="534"/> <source>trans..as - Translate String into Variable</source> <translation>trans..as - Traducir Cadena a una Variable</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="544"/> + <location filename="../DjangoTagsMenuHandler.py" line="538"/> <source>blocktrans - Translate Block</source> <translation>blocktrans - Traducir Bloque</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="547"/> + <location filename="../DjangoTagsMenuHandler.py" line="541"/> <source>blocktrans..with - Translate Block with Attributes</source> <translation>blocktrans..with - Traducir Bloque con Atributos</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="550"/> + <location filename="../DjangoTagsMenuHandler.py" line="544"/> <source>plural - Plural Block</source> <translation>plural - Bloque Plural</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="553"/> + <location filename="../DjangoTagsMenuHandler.py" line="547"/> <source>language - Switch language</source> <translation>language - Cambiar idioma</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="557"/> + <location filename="../DjangoTagsMenuHandler.py" line="551"/> <source>get_current_language - Current language</source> <translation>get_current_language - Idioma actual</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="560"/> + <location filename="../DjangoTagsMenuHandler.py" line="554"/> <source>get_available_languages - Available languages</source> <translation>get_available_languages - Idiomas disponibles</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="563"/> + <location filename="../DjangoTagsMenuHandler.py" line="557"/> <source>get_current_language_bidi - Current language's direction</source> <translation>get_current_language_bidi - Dirección de idioma actual</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="567"/> + <location filename="../DjangoTagsMenuHandler.py" line="561"/> <source>get_language_info - Language Information</source> <translation>get_language_info - Información de Idioma</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="570"/> + <location filename="../DjangoTagsMenuHandler.py" line="564"/> <source>get_language_info_list - Language Information for a list of languages</source> <translation>get_language_info_list - Información de idioma para una lista de idiomas</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="577"/> + <location filename="../DjangoTagsMenuHandler.py" line="571"/> <source>language_name - Language name</source> <translation>language_name - Nombre del idioma</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="580"/> + <location filename="../DjangoTagsMenuHandler.py" line="574"/> <source>language_name_local - Language name translated</source> <translation>language_name_local - Nombre del idioma traducido</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="583"/> + <location filename="../DjangoTagsMenuHandler.py" line="577"/> <source>bidi - Language's direction</source> <translation>bidi - Dirección del idioma</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="597"/> + <location filename="../DjangoTagsMenuHandler.py" line="591"/> <source>Localization (l10n)</source> <translation>Localización (l10n)</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="604"/> + <location filename="../DjangoTagsMenuHandler.py" line="598"/> <source>localize on - Activate Localization</source> <translation>localize on - Activar Localización</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="607"/> + <location filename="../DjangoTagsMenuHandler.py" line="601"/> <source>localize off - Dectivate Localization</source> <translation>localize off - Desactivar Localización</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="613"/> + <location filename="../DjangoTagsMenuHandler.py" line="607"/> <source>localize - Output value localized</source> <translation>localize - Hacer output de valor localizado</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="616"/> + <location filename="../DjangoTagsMenuHandler.py" line="610"/> <source>unlocalize - Output value non-localized</source> <translation>unlocalize - Hacer output de valor no localizado</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="630"/> + <location filename="../DjangoTagsMenuHandler.py" line="624"/> <source>Timezone (tz)</source> <translation>Timezone (tz)</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="637"/> + <location filename="../DjangoTagsMenuHandler.py" line="631"/> <source>localtime on - Activate date and time conversion</source> <translation>localtime on - Activar conversión de fecha y hora</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="640"/> + <location filename="../DjangoTagsMenuHandler.py" line="634"/> <source>localtime off - Deactivate date and time conversion</source> <translation>localtime off - Desactivar conversión de fecha y hora</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="643"/> + <location filename="../DjangoTagsMenuHandler.py" line="637"/> <source>timezone - Set timezone for date and time conversion</source> <translation>timezone - Establecer zona horaria para conversión de fecha y hora</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="646"/> + <location filename="../DjangoTagsMenuHandler.py" line="640"/> <source>timezone None - Unset timezone for date and time conversion</source> <translation>timezone None - Desestablecer zona horaria para conversión de fecha y hora</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="650"/> + <location filename="../DjangoTagsMenuHandler.py" line="644"/> <source>get_current_timezone - Get current time zone</source> <translation>get_current_timezone - Obtener zona horaria actual</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="656"/> + <location filename="../DjangoTagsMenuHandler.py" line="650"/> <source>localtime - Convert to local time zone</source> <translation>localtime - Convertir a zona horaria local</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="659"/> + <location filename="../DjangoTagsMenuHandler.py" line="653"/> <source>utc - Convert to UTC</source> <translation>utc - Convertir a UTC</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="662"/> + <location filename="../DjangoTagsMenuHandler.py" line="656"/> <source>timezone - Convert to a specific time zone</source> <translation>timezone - Convertir a zona horaria específica</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="727"/> + <location filename="../DjangoTagsMenuHandler.py" line="720"/> <source>Named Block</source> <translation>Bloque con Nombre</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="727"/> + <location filename="../DjangoTagsMenuHandler.py" line="720"/> <source>Enter block name:</source> <translation>Introducir nombre de bloque:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="743"/> + <location filename="../DjangoTagsMenuHandler.py" line="736"/> <source>Cycle Variables</source> <translation>Ciclar entre Variables</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="743"/> + <location filename="../DjangoTagsMenuHandler.py" line="736"/> <source>Enter items to cycle, space separated</source> <translation>Introducir elementos a ciclar, separados por espacios</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="761"/> + <location filename="../DjangoTagsMenuHandler.py" line="754"/> <source>Extends</source> <translation>Extiende</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="859"/> + <location filename="../DjangoTagsMenuHandler.py" line="852"/> <source>Enter variable name:</source> <translation>Introducir nombre de variable:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="761"/> + <location filename="../DjangoTagsMenuHandler.py" line="754"/> <source>Enter parent file name:</source> <translation>Introducir nombre de archivo padre:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="769"/> + <location filename="../DjangoTagsMenuHandler.py" line="762"/> <source>Tag Filters</source> <translation>Filtros de Etiquetas</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="769"/> + <location filename="../DjangoTagsMenuHandler.py" line="762"/> <source>Multiple filters with arguments, pipes separated:</source> <translation>Múltiples filtros con argumentos, separados por el carácter de pipe:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="780"/> + <location filename="../DjangoTagsMenuHandler.py" line="773"/> <source>First Of</source> <translation>Primero De</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="780"/> + <location filename="../DjangoTagsMenuHandler.py" line="773"/> <source>Enter multiple variables, space separated:</source> <translation>Introducir múltiples variables, separadas por espacios:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="780"/> + <location filename="../DjangoTagsMenuHandler.py" line="773"/> <source>Enter fallback value:</source> <translation>Introducir valor de fallback:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="805"/> + <location filename="../DjangoTagsMenuHandler.py" line="798"/> <source>For Loop</source> <translation>Bucle For</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="805"/> + <location filename="../DjangoTagsMenuHandler.py" line="798"/> <source>Enter variable to use for iteration:</source> <translation>Introducir variable para usar en la iteración:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="805"/> + <location filename="../DjangoTagsMenuHandler.py" line="798"/> <source>Enter sequence to iterate over:</source> <translation>Introducir secuencia de iteración:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="805"/> + <location filename="../DjangoTagsMenuHandler.py" line="798"/> <source>Enter output to use if loop is empty:</source> <translation>Introducir salida a usar si el bucle está vacío:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="824"/> + <location filename="../DjangoTagsMenuHandler.py" line="817"/> <source>Check Variables for Changes</source> <translation>Comprobar Cambios en Variables</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="824"/> + <location filename="../DjangoTagsMenuHandler.py" line="817"/> <source>Enter variables to check (space separated):</source> <translation>Introducir variables a comprobar (separadas por espacios):</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="835"/> + <location filename="../DjangoTagsMenuHandler.py" line="828"/> <source>Check If Equal</source> <translation>Comprobar Si Igual</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="847"/> + <location filename="../DjangoTagsMenuHandler.py" line="840"/> <source>Enter first variable or string to check:</source> <translation>Introducir primera variable o cadena a comprobar:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="847"/> + <location filename="../DjangoTagsMenuHandler.py" line="840"/> <source>Enter second variable or string to check:</source> <translation>Introducir segunda variable o cadena a comprobar:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="847"/> + <location filename="../DjangoTagsMenuHandler.py" line="840"/> <source>Check If Not Equal</source> <translation>Comprobar Si No Igual</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="867"/> + <location filename="../DjangoTagsMenuHandler.py" line="860"/> <source>Include</source> <translation>Incluir</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="867"/> + <location filename="../DjangoTagsMenuHandler.py" line="860"/> <source>Enter file name:</source> <translation>Introducir nombre de archivo:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="875"/> + <location filename="../DjangoTagsMenuHandler.py" line="868"/> <source>Load</source> <translation>Cargar</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="875"/> + <location filename="../DjangoTagsMenuHandler.py" line="868"/> <source>Enter template tag set to load:</source> <translation>Introducir plantilla de conjunto etiquetas a cargar:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="883"/> + <location filename="../DjangoTagsMenuHandler.py" line="876"/> <source>Now</source> <translation>Ahora</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="883"/> + <location filename="../DjangoTagsMenuHandler.py" line="876"/> <source>Current date time format:</source> <translation>Formato de fecha y hora actual:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="893"/> + <location filename="../DjangoTagsMenuHandler.py" line="886"/> <source>Regroup List</source> <translation>Reagrupar Lista</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="893"/> + <location filename="../DjangoTagsMenuHandler.py" line="886"/> <source>List Variable:</source> <translation>Variable de Lista:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="893"/> + <location filename="../DjangoTagsMenuHandler.py" line="886"/> <source>Common Attribute:</source> <translation>Atributo en Común:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="893"/> + <location filename="../DjangoTagsMenuHandler.py" line="886"/> <source>Name of resulting list:</source> <translation>Nombre de la lista resultante:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="915"/> + <location filename="../DjangoTagsMenuHandler.py" line="908"/> <source>SSI</source> <translation>SSI</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="907"/> + <location filename="../DjangoTagsMenuHandler.py" line="900"/> <source>Full path to template:</source> <translation>Ruta completa a plantilla:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1386"/> + <location filename="../DjangoTagsMenuHandler.py" line="1379"/> <source>All Files (*)</source> <translation>Todos los Archivos (*)</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="923"/> + <location filename="../DjangoTagsMenuHandler.py" line="916"/> <source>Template Tag</source> <translation>Template Tag</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="923"/> + <location filename="../DjangoTagsMenuHandler.py" line="916"/> <source>Argument:</source> <translation>Argumento:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="935"/> + <location filename="../DjangoTagsMenuHandler.py" line="928"/> <source>URL</source> <translation>URL</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="947"/> + <location filename="../DjangoTagsMenuHandler.py" line="940"/> <source>View method name:</source> <translation>Ver nombre del método:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="947"/> + <location filename="../DjangoTagsMenuHandler.py" line="940"/> <source>Optional arguments (space separated):</source> <translation>Argumentos opcionales (separados por espacios):</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="947"/> + <location filename="../DjangoTagsMenuHandler.py" line="940"/> <source>URL...as</source> <translation>URL...como</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="947"/> + <location filename="../DjangoTagsMenuHandler.py" line="940"/> <source>URL name:</source> <translation>Nombre de URL:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="964"/> + <location filename="../DjangoTagsMenuHandler.py" line="957"/> <source>Width Ratio</source> <translation>Radio de Anchura</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="964"/> + <location filename="../DjangoTagsMenuHandler.py" line="957"/> <source>Variable:</source> <translation>Variable:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="964"/> + <location filename="../DjangoTagsMenuHandler.py" line="957"/> <source>Maximum Value:</source> <translation>Valor Máximo:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="964"/> + <location filename="../DjangoTagsMenuHandler.py" line="957"/> <source>Maximum Width:</source> <translation>Anchura Máxima:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="975"/> + <location filename="../DjangoTagsMenuHandler.py" line="968"/> <source>Cache Variables</source> <translation>Caché de Variables</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="975"/> + <location filename="../DjangoTagsMenuHandler.py" line="968"/> <source>Variables to cache as key=value (space separated):</source> <translation>Variables a hacer caché como clave=valor (separadas por espacios):</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="990"/> + <location filename="../DjangoTagsMenuHandler.py" line="983"/> <source>Add Variable or String</source> <translation>Añadir Variable o Cadena</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="990"/> + <location filename="../DjangoTagsMenuHandler.py" line="983"/> <source>Variables or String to add:</source> <translation>Variables o Cadena a añadir:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1002"/> + <location filename="../DjangoTagsMenuHandler.py" line="995"/> <source>Center Value</source> <translation>Centrar Valor</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1164"/> + <location filename="../DjangoTagsMenuHandler.py" line="1157"/> <source>Enter width of the output:</source> <translation>Introducir anchura de la salida:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1010"/> + <location filename="../DjangoTagsMenuHandler.py" line="1003"/> <source>Cut Characters</source> <translation>Cortar Carácteres</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1010"/> + <location filename="../DjangoTagsMenuHandler.py" line="1003"/> <source>Characters to cut:</source> <translation>Carácteres a Cortar:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1196"/> + <location filename="../DjangoTagsMenuHandler.py" line="1189"/> <source>Format Date</source> <translation>Formatear Fecha</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1196"/> + <location filename="../DjangoTagsMenuHandler.py" line="1189"/> <source>Enter date format:</source> <translation>Introducir formato de fecha:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1031"/> + <location filename="../DjangoTagsMenuHandler.py" line="1024"/> <source>Default Value if False</source> <translation>Valor Por Defecto si False</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1031"/> + <location filename="../DjangoTagsMenuHandler.py" line="1024"/> <source>Enter default value if result is False:</source> <translation>Introducir valor por defecto si el resultado es False:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1039"/> + <location filename="../DjangoTagsMenuHandler.py" line="1032"/> <source>Default Value if None</source> <translation>Valor Por Defecto si None</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1039"/> + <location filename="../DjangoTagsMenuHandler.py" line="1032"/> <source>Enter default value if result is None:</source> <translation>Introducir valor por defecto si el resultado es None:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1047"/> + <location filename="../DjangoTagsMenuHandler.py" line="1040"/> <source>Sort Dictionaries</source> <translation>Ordenar Diccionarios</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1055"/> + <location filename="../DjangoTagsMenuHandler.py" line="1048"/> <source>Enter key to sort on:</source> <translation>Introducir clave para ordenado:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1055"/> + <location filename="../DjangoTagsMenuHandler.py" line="1048"/> <source>Sort Dictionaries reversed</source> <translation>Ordenar Inversamente Diccionarios</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1063"/> + <location filename="../DjangoTagsMenuHandler.py" line="1056"/> <source>Check Divisibility</source> <translation>Comprobar Divisibilidad</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1063"/> + <location filename="../DjangoTagsMenuHandler.py" line="1056"/> <source>Enter divisor value:</source> <translation>Introducir valor divisor:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1081"/> + <location filename="../DjangoTagsMenuHandler.py" line="1074"/> <source>Format Floating Number</source> <translation>Formatear Número en coma Flotante</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1081"/> + <location filename="../DjangoTagsMenuHandler.py" line="1074"/> <source>Enter number of decimal places:</source> <translation>Introducir número de lugares decimales:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1091"/> + <location filename="../DjangoTagsMenuHandler.py" line="1084"/> <source>Get Rightmost Digit</source> <translation>Obtener dígito de más hacia la Derecha</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1091"/> + <location filename="../DjangoTagsMenuHandler.py" line="1084"/> <source>Enter index of digit:</source> <translation>Introducir índice de dígito:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1101"/> + <location filename="../DjangoTagsMenuHandler.py" line="1094"/> <source>Join List</source> <translation>Hacer Join de Lista</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1101"/> + <location filename="../DjangoTagsMenuHandler.py" line="1094"/> <source>Enter string to join by:</source> <translation>Introducir cadena para hacer join:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1113"/> + <location filename="../DjangoTagsMenuHandler.py" line="1106"/> <source>Check Length</source> <translation>Comprobar Longitud</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1113"/> + <location filename="../DjangoTagsMenuHandler.py" line="1106"/> <source>Enter desired length:</source> <translation>Introducir longitud deseada:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1127"/> + <location filename="../DjangoTagsMenuHandler.py" line="1120"/> <source>Left-align Value</source> <translation>Alinear Valor a la Izquierda</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1141"/> + <location filename="../DjangoTagsMenuHandler.py" line="1134"/> <source>Plural Suffix</source> <translation>Sufijo de Plural</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1141"/> + <location filename="../DjangoTagsMenuHandler.py" line="1134"/> <source>Enter plural suffix (nothing for default):</source> <translation>Introducir sufijo de plural (nada para por defecto):</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1156"/> + <location filename="../DjangoTagsMenuHandler.py" line="1149"/> <source>Remove HTML Tags</source> <translation>Eliminar Etiquetas HTML</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1156"/> + <location filename="../DjangoTagsMenuHandler.py" line="1149"/> <source>Enter HTML tags to remove (space separated):</source> <translation>Introducir etiquetas HTML a eliminar (separadas por espacios):</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1164"/> + <location filename="../DjangoTagsMenuHandler.py" line="1157"/> <source>Right-align Value</source> <translation>Alinear Valor a la Derecha</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1176"/> + <location filename="../DjangoTagsMenuHandler.py" line="1169"/> <source>Extract slice of a list</source> <translation>Extraer una slice de una lista</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1176"/> + <location filename="../DjangoTagsMenuHandler.py" line="1169"/> <source>Enter Python like slice expression:</source> <translation>Introducir expresión de slice tipo Python:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1186"/> + <location filename="../DjangoTagsMenuHandler.py" line="1179"/> <source>Perform String Formatting</source> <translation>Formatear Cadena</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1186"/> + <location filename="../DjangoTagsMenuHandler.py" line="1179"/> <source>Enter Python like string format:</source> <translation>Introducir formato de cadena tipo Python:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1208"/> + <location filename="../DjangoTagsMenuHandler.py" line="1201"/> <source>Time Since</source> <translation>Tiempo Desde</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1219"/> + <location filename="../DjangoTagsMenuHandler.py" line="1212"/> <source>Enter variable containing time reference:</source> <translation>Introducir variable que contiene una referencia de tiempo:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1219"/> + <location filename="../DjangoTagsMenuHandler.py" line="1212"/> <source>Time Until</source> <translation>Tiempo Hasta</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1248"/> + <location filename="../DjangoTagsMenuHandler.py" line="1241"/> <source>Truncate String</source> <translation>Truncar Cadena</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1274"/> + <location filename="../DjangoTagsMenuHandler.py" line="1267"/> <source>Enter number of characters:</source> <translation>Introducir número de carácteres:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1248"/> + <location filename="../DjangoTagsMenuHandler.py" line="1241"/> <source>Enter number of words:</source> <translation>Introducir número de palabras:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1264"/> + <location filename="../DjangoTagsMenuHandler.py" line="1257"/> <source>Convert URLs as clickable links and truncate</source> <translation>Convertir URLs como enlaces clickables y truncar</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1274"/> + <location filename="../DjangoTagsMenuHandler.py" line="1267"/> <source>Wrap words</source> <translation>No partir palabras</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1282"/> + <location filename="../DjangoTagsMenuHandler.py" line="1275"/> <source>Map True, False and None</source> <translation>Mapear True, False y None</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1282"/> + <location filename="../DjangoTagsMenuHandler.py" line="1275"/> <source>Enter mapping (comma separated):</source> <translation>Introducir mapeo (separado por comas):</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1339"/> + <location filename="../DjangoTagsMenuHandler.py" line="1332"/> <source>Link to static file</source> <translation>Enlace a archivo estático</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1331"/> + <location filename="../DjangoTagsMenuHandler.py" line="1324"/> <source>Enter relative path of static file:</source> <translation>Introducir ruta relativa del archivo estático:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1339"/> + <location filename="../DjangoTagsMenuHandler.py" line="1332"/> <source>Enter variable containing relative path of static file:</source> <translation>Introducir variable que contiene ruta relativa de archivo estático:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1364"/> + <location filename="../DjangoTagsMenuHandler.py" line="1357"/> <source>Single Line Comment</source> <translation>Comentario de Única Línea</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1373"/> + <location filename="../DjangoTagsMenuHandler.py" line="1366"/> <source>Enter comment:</source> <translation>Introducir comentario:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1373"/> + <location filename="../DjangoTagsMenuHandler.py" line="1366"/> <source>Multi Line Comment</source> <translation>Comentario Multilínea</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1400"/> + <location filename="../DjangoTagsMenuHandler.py" line="1393"/> <source>Comment File</source> <translation>Archivo de Comentario</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1400"/> + <location filename="../DjangoTagsMenuHandler.py" line="1393"/> <source><p>The file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation><p>El archivo <b>{0}</b> no se ha podido leer.</p><p>Razón: {1}</p></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1433"/> + <location filename="../DjangoTagsMenuHandler.py" line="1426"/> <source>Translate String into Variable</source> <translation>Traducir Cadena a una Variable</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1433"/> + <location filename="../DjangoTagsMenuHandler.py" line="1426"/> <source>Enter variable receiving translation:</source> <translation>Introducir variable que recibe la traducción:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1447"/> + <location filename="../DjangoTagsMenuHandler.py" line="1440"/> <source>Translate Block with Attributes</source> <translation>Traducir Bloque con Atributos</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1447"/> + <location filename="../DjangoTagsMenuHandler.py" line="1440"/> <source>Enter attribute binding expressions (space separated):</source> <translation>Introducir expresiones que conectan atributos (separados por espacios):</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1462"/> + <location filename="../DjangoTagsMenuHandler.py" line="1455"/> <source>Switch language</source> <translation>Cambiar idioma</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1462"/> + <location filename="../DjangoTagsMenuHandler.py" line="1455"/> <source>Enter language:</source> <translation>Introducir idioma:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1479"/> + <location filename="../DjangoTagsMenuHandler.py" line="1472"/> <source>Language Information</source> <translation>Información de Idioma</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1479"/> + <location filename="../DjangoTagsMenuHandler.py" line="1472"/> <source>Enter language string or variable (empty for LANGUAGE_CODE):</source> <translation>Introducir cadena o variable de idioma (vacío para LANGUAGE_CODE):</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1494"/> + <location filename="../DjangoTagsMenuHandler.py" line="1487"/> <source>Language Information for a list of languages</source> <translation>Información de idioma para una lista de idiomas</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="1494"/> + <location filename="../DjangoTagsMenuHandler.py" line="1487"/> <source>Enter language list variable (empty for LANGUAGES):</source> <translation>Introducir variable de lista de idiomas (vacío para LANGUAGES):</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="219"/> + <location filename="../DjangoTagsMenuHandler.py" line="213"/> <source>default - Use default if False</source> <translation>default - Usar por defecto si False</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="235"/> + <location filename="../DjangoTagsMenuHandler.py" line="229"/> <source>escape - Escape as HTML</source> <translation>escape - Hacer escape como HTML</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/DjangoTagsMenuHandler.py" line="444"/> + <location filename="../DjangoTagsMenuHandler.py" line="438"/> <source>lorem - Builtin Lorem Ipsum Generator</source> <translation>lorem - Generador Integrado de Builtin Lorem Ipsum</translation> </message> @@ -1301,27 +1301,27 @@ <context> <name>FindTemplateTagDialog</name> <message> - <location filename="../../ProjectDjangoTagsMenu/FindTemplateTagDialog.ui" line="14"/> + <location filename="../FindTemplateTagDialog.ui" line="14"/> <source>Find Template Tag</source> <translation>Encontrar Template Tag</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/FindTemplateTagDialog.ui" line="23"/> + <location filename="../FindTemplateTagDialog.ui" line="23"/> <source><b>Find Tags and Filters while Typing:</b></source> <translation><b>Encontrar Etiquetas y Filtros al Teclear:</b></translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/FindTemplateTagDialog.ui" line="33"/> + <location filename="../FindTemplateTagDialog.ui" line="33"/> <source>Type to find tag</source> <translation>Teclear para encontrar etiqueta</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/FindTemplateTagDialog.ui" line="61"/> + <location filename="../FindTemplateTagDialog.ui" line="61"/> <source>Press to create the entered template tag</source> <translation>Pulsar para crear la plantilla deetiquetas introducida</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/FindTemplateTagDialog.ui" line="64"/> + <location filename="../FindTemplateTagDialog.ui" line="64"/> <source>Create Template Tag</source> <translation>Crear Template Tag</translation> </message> @@ -1329,27 +1329,27 @@ <context> <name>IeCommentDialog</name> <message> - <location filename="../../ProjectDjangoTagsMenu/IeCommentDialog.ui" line="14"/> + <location filename="../IeCommentDialog.ui" line="14"/> <source>IE Comment</source> <translation>Comentario IE</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/IeCommentDialog.ui" line="25"/> + <location filename="../IeCommentDialog.ui" line="25"/> <source>Conditional Format:</source> <translation>Formato Condicional:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/IeCommentDialog.ui" line="34"/> + <location filename="../IeCommentDialog.ui" line="34"/> <source>Select the conditional</source> <translation>Seleccionar el condicional</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/IeCommentDialog.ui" line="56"/> + <location filename="../IeCommentDialog.ui" line="56"/> <source>MS IE Version:</source> <translation>Versión de MS IE:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/IeCommentDialog.ui" line="65"/> + <location filename="../IeCommentDialog.ui" line="65"/> <source>Enter the IE Version</source> <translation>Introducir la Versión de IE</translation> </message> @@ -1357,37 +1357,37 @@ <context> <name>IfTagInputDialog</name> <message> - <location filename="../../ProjectDjangoTagsMenu/IfTagInputDialog.ui" line="14"/> + <location filename="../IfTagInputDialog.ui" line="14"/> <source>If Tag Template</source> <translation>If Tag Template</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/IfTagInputDialog.ui" line="23"/> + <location filename="../IfTagInputDialog.ui" line="23"/> <source>'if' expression:</source> <translation>'if' expresión:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/IfTagInputDialog.ui" line="30"/> + <location filename="../IfTagInputDialog.ui" line="30"/> <source>Enter the 'if' expression</source> <translation>Introducir la expresión 'if'</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/IfTagInputDialog.ui" line="37"/> + <location filename="../IfTagInputDialog.ui" line="37"/> <source>'elif' expressions (one per line):</source> <translation>Introducir las expresiones 'elif' (una por línea):</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/IfTagInputDialog.ui" line="44"/> + <location filename="../IfTagInputDialog.ui" line="44"/> <source>Enter 'elif' expressions one per line</source> <translation>Introducir las expresiones 'elif' una por línea</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/IfTagInputDialog.ui" line="51"/> + <location filename="../IfTagInputDialog.ui" line="51"/> <source>Select to include an 'else' part</source> <translation>Seleccionar para incluir una parte 'else'</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/IfTagInputDialog.ui" line="54"/> + <location filename="../IfTagInputDialog.ui" line="54"/> <source>Include 'else'</source> <translation>Incluir 'else'</translation> </message> @@ -1395,37 +1395,37 @@ <context> <name>LoremTagInputDialog</name> <message> - <location filename="../../ProjectDjangoTagsMenu/LoremTagInputDialog.ui" line="14"/> + <location filename="../LoremTagInputDialog.ui" line="14"/> <source>Lorem Tag Template</source> <translation>Lorem Tag Template</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/LoremTagInputDialog.ui" line="23"/> + <location filename="../LoremTagInputDialog.ui" line="23"/> <source>Count:</source> <translation>Conteo:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/LoremTagInputDialog.ui" line="53"/> + <location filename="../LoremTagInputDialog.ui" line="53"/> <source>Method:</source> <translation>Método:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/LoremTagInputDialog.ui" line="61"/> + <location filename="../LoremTagInputDialog.ui" line="61"/> <source>Plain text paragraphs</source> <translation>Párrafos de texto plano</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/LoremTagInputDialog.ui" line="66"/> + <location filename="../LoremTagInputDialog.ui" line="66"/> <source>HTML paragraphs</source> <translation>Párrafos HTML</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/LoremTagInputDialog.ui" line="71"/> + <location filename="../LoremTagInputDialog.ui" line="71"/> <source>Words</source> <translation>Palabras</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/LoremTagInputDialog.ui" line="79"/> + <location filename="../LoremTagInputDialog.ui" line="79"/> <source>Generate random text</source> <translation>Generar texto aleatorio</translation> </message> @@ -1441,27 +1441,27 @@ <context> <name>TimezoneSelectionDialog</name> <message> - <location filename="../../ProjectDjangoTagsMenu/TimezoneSelectionDialog.ui" line="14"/> + <location filename="../TimezoneSelectionDialog.ui" line="14"/> <source>Select Time Zone</source> <translation>Seleccionar Zona Horaria</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/TimezoneSelectionDialog.ui" line="25"/> + <location filename="../TimezoneSelectionDialog.ui" line="25"/> <source>Region:</source> <translation>Región:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/TimezoneSelectionDialog.ui" line="32"/> + <location filename="../TimezoneSelectionDialog.ui" line="32"/> <source>Select the time zone region</source> <translation>Seleccionar la región de zona horaria</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/TimezoneSelectionDialog.ui" line="39"/> + <location filename="../TimezoneSelectionDialog.ui" line="39"/> <source>City:</source> <translation>Ciudad:</translation> </message> <message> - <location filename="../../ProjectDjangoTagsMenu/TimezoneSelectionDialog.ui" line="49"/> + <location filename="../TimezoneSelectionDialog.ui" line="49"/> <source>Select the time zone city</source> <translation>Seleccionar la ciudad de zona horaria</translation> </message>
--- a/ProjectDjangoTagsMenu/i18n/djangotagsmenu_ru.ts Tue Jun 23 17:52:01 2020 +0200 +++ b/ProjectDjangoTagsMenu/i18n/djangotagsmenu_ru.ts Tue Jun 23 17:52:32 2020 +0200 @@ -3,1297 +3,1297 @@ <context> <name>DjangoTagsMenuHandler</name> <message> - <location filename="../DjangoTagsMenuHandler.py" line="59"/> + <location filename="../DjangoTagsMenuHandler.py" line="53"/> <source>Django Template Tags Locator</source> <translation>Определитель шаблонных тегов Django</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="636"/> + <location filename="../DjangoTagsMenuHandler.py" line="630"/> <source>Tags</source> <translation>Теги</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="79"/> + <location filename="../DjangoTagsMenuHandler.py" line="73"/> <source>autoescape - Auto Escape Characters</source> <translation>autoescape - автоэкранирование символов</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="83"/> + <location filename="../DjangoTagsMenuHandler.py" line="77"/> <source>block - Named Block</source> <translation>block - именованный блок</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="87"/> + <location filename="../DjangoTagsMenuHandler.py" line="81"/> <source>comment - Multiline Comment</source> <translation>comment - многострочный комментарий</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="90"/> + <location filename="../DjangoTagsMenuHandler.py" line="84"/> <source>csrf_token - Cross Site Request Forgery Token</source> <translation>csrf_token - токен Cross Site Request Forgery</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="93"/> + <location filename="../DjangoTagsMenuHandler.py" line="87"/> <source>cycle - Cycle variables each time used</source> <translation>cycle - переменные, используемые при организации цикла</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="97"/> + <location filename="../DjangoTagsMenuHandler.py" line="91"/> <source>debug - Output Debug Information</source> <translation>debug - вывод отладочной информации</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="101"/> + <location filename="../DjangoTagsMenuHandler.py" line="95"/> <source>extends - Extend a template with variable contents</source> <translation>extends - наследование шаблона с использованием значения переменной</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="104"/> + <location filename="../DjangoTagsMenuHandler.py" line="98"/> <source>extends - Extend a template with file</source> <translation>extends - наследование шаблона, заданного файлом</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="108"/> + <location filename="../DjangoTagsMenuHandler.py" line="102"/> <source>filter - Filtered Block for one or more filters</source> <translation>filter - фильтрация блока по одному или нескольким фильтрам</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="111"/> + <location filename="../DjangoTagsMenuHandler.py" line="105"/> <source>firstof - Outputs first argument variable that is True</source> <translation>firstof - вывод первой переменной, равной True</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="114"/> + <location filename="../DjangoTagsMenuHandler.py" line="108"/> <source>for - For Loop</source> <translation>for - организация цикла</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="117"/> + <location filename="../DjangoTagsMenuHandler.py" line="111"/> <source>for...empty - For Loop with fallback for empty loop</source> <translation>for...empty - организация цикла с возвратом сообщения если список пуст</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="121"/> + <location filename="../DjangoTagsMenuHandler.py" line="115"/> <source>if - if...elif...else... clauses</source> <translation>if - if...elif...else... clauses - логические условия</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="124"/> + <location filename="../DjangoTagsMenuHandler.py" line="118"/> <source>ifchanged - Check if a value has changed</source> <translation>ifchanged - проверка изменения значения тега/переменной</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="127"/> + <location filename="../DjangoTagsMenuHandler.py" line="121"/> <source>ifequal - Output block if variables are equal</source> <translation>ifequal - вывод блока если переменные равны</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="130"/> + <location filename="../DjangoTagsMenuHandler.py" line="124"/> <source>ifnotequal - Output block if variables are not equal</source> <translation>ifnotequal - вывод блока если переменные не равны</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="133"/> + <location filename="../DjangoTagsMenuHandler.py" line="127"/> <source>include - Render template given by variable</source> <translation>include - рендеринг шаблона, заданного переменной</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="136"/> + <location filename="../DjangoTagsMenuHandler.py" line="130"/> <source>include - Render template given by file name</source> <translation>include - рендеринг шаблона, заданного именем файла</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="140"/> + <location filename="../DjangoTagsMenuHandler.py" line="134"/> <source>load - Load a custom template tag set</source> <translation>load - загрузка пользовательского набора шаблонных тегов</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="144"/> + <location filename="../DjangoTagsMenuHandler.py" line="138"/> <source>now - Display current date and time</source> <translation>now - отображение текущих даты и времени</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="148"/> + <location filename="../DjangoTagsMenuHandler.py" line="142"/> <source>regroup - Regroup list of alike objects by a common attribute</source> <translation>regroup - групировка списка похожих объектов по общему атрибуту</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="153"/> + <location filename="../DjangoTagsMenuHandler.py" line="147"/> <source>spaceless - Remove whitespace between HTML tags</source> <translation>spaceless - удаление символов пропуска между HTML-тегами</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="156"/> + <location filename="../DjangoTagsMenuHandler.py" line="150"/> <source>ssi - Output contents of a given file into the page</source> <translation>ssi - вывод содержимого указанного файла на страницу</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="159"/> + <location filename="../DjangoTagsMenuHandler.py" line="153"/> <source>ssi - Output contents of a given file into the page (dialog selection)</source> <translation>ssi - вывод содержимого указанного файла на страницу (диалог выбора)</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="164"/> + <location filename="../DjangoTagsMenuHandler.py" line="158"/> <source>templatetag - Output syntax characters used for template</source> <translation>templatetag - вывод синтаксических символов, используемых для шаблонов</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="169"/> + <location filename="../DjangoTagsMenuHandler.py" line="163"/> <source>url - Return an absolute path reference</source> <translation>url - возврат абсолютной ссылки (URL без имени домена)</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="172"/> + <location filename="../DjangoTagsMenuHandler.py" line="166"/> <source>url...as - Return an absolute path reference</source> <translation>url...as - возврат абсолютной ссылки (URL без отображения)</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="176"/> + <location filename="../DjangoTagsMenuHandler.py" line="170"/> <source>verbatim - Output block contents without rendering</source> <translation>verbatim - вывод содержимого блока без рендеринга</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="180"/> + <location filename="../DjangoTagsMenuHandler.py" line="174"/> <source>widthratio - Calculate width ratio</source> <translation>widthratio - вычисление коэффициента ширины</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="183"/> + <location filename="../DjangoTagsMenuHandler.py" line="177"/> <source>with - Cache a complex variable under a simpler name</source> <translation>with - кеширование составной переменной под простым именем</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="655"/> + <location filename="../DjangoTagsMenuHandler.py" line="649"/> <source>Filters</source> <translation>Фильтры</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="198"/> + <location filename="../DjangoTagsMenuHandler.py" line="192"/> <source>A-I</source> <translation>A-I</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="199"/> + <location filename="../DjangoTagsMenuHandler.py" line="193"/> <source>add - Add variable or string</source> <translation>add - добавление переменной или строки</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="202"/> + <location filename="../DjangoTagsMenuHandler.py" line="196"/> <source>addslashes - Add slashes before quotes</source> <translation>addslashes - вставка символов слеша перед кавычками</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="206"/> + <location filename="../DjangoTagsMenuHandler.py" line="200"/> <source>capfirst - Capitalize first character</source> <translation>capfirst - капитализация первого символа</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="209"/> + <location filename="../DjangoTagsMenuHandler.py" line="203"/> <source>center - Center value</source> <translation>center - центрировать значение в поле заданной ширины</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="212"/> + <location filename="../DjangoTagsMenuHandler.py" line="206"/> <source>cut - Cut characters</source> <translation>cut - удалить аргумент из строки</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="216"/> + <location filename="../DjangoTagsMenuHandler.py" line="210"/> <source>date - Format date</source> <translation>date - формат даты</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="222"/> + <location filename="../DjangoTagsMenuHandler.py" line="216"/> <source>default_if_none - Use default if None</source> <translation>default_if_none - использовать значение по умолчанию если - None</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="225"/> + <location filename="../DjangoTagsMenuHandler.py" line="219"/> <source>dictsort - Sort dictionaries</source> <translation>dictsort - сортировка словарей</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="228"/> + <location filename="../DjangoTagsMenuHandler.py" line="222"/> <source>dictsortreversed - Sort dictionaries reversed</source> <translation>dictsortreversed - сортировка словарей в обратном порядке</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="231"/> + <location filename="../DjangoTagsMenuHandler.py" line="225"/> <source>divisibleby - Check divisibility</source> <translation>divisibleby - проверка делимости</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="238"/> + <location filename="../DjangoTagsMenuHandler.py" line="232"/> <source>escapejs - Escape as JavaScript</source> <translation>escapejs - экранирование как в JavaScript</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="242"/> + <location filename="../DjangoTagsMenuHandler.py" line="236"/> <source>filesizeformat - Format file sizes</source> <translation>filesizeformat - форматирует как размер файла</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="245"/> + <location filename="../DjangoTagsMenuHandler.py" line="239"/> <source>first - First item of a list</source> <translation>first - возврат первого элемента списка</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="248"/> + <location filename="../DjangoTagsMenuHandler.py" line="242"/> <source>fix_ampersands - Replace ampersands</source> <translation>fix_ampersands - заменить амперсанды</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="251"/> + <location filename="../DjangoTagsMenuHandler.py" line="245"/> <source>floatformat - Format floating numbers</source> <translation>floatformat - формат чисел с плавающей запятой</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="254"/> + <location filename="../DjangoTagsMenuHandler.py" line="248"/> <source>force_escape - Escape as HTML immediately</source> <translation>force_escape - принудительное экранирование HTML</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="258"/> + <location filename="../DjangoTagsMenuHandler.py" line="252"/> <source>get_digit - Extract rightmost digit</source> <translation>get_digit - получение цифры запрошенного разряда</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="262"/> + <location filename="../DjangoTagsMenuHandler.py" line="256"/> <source>iriencode - Convert IRI to string</source> <translation>iriencode -преобразование IRI в строку</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="267"/> + <location filename="../DjangoTagsMenuHandler.py" line="261"/> <source>J-R</source> <translation>J-R</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="268"/> + <location filename="../DjangoTagsMenuHandler.py" line="262"/> <source>join - Join list</source> <translation>join - объединить список</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="272"/> + <location filename="../DjangoTagsMenuHandler.py" line="266"/> <source>last - Return last item in list</source> <translation>last - возврат последнего элемента списка</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="275"/> + <location filename="../DjangoTagsMenuHandler.py" line="269"/> <source>length - Return length of the value</source> <translation>length - возврат длины строки/списка</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="278"/> + <location filename="../DjangoTagsMenuHandler.py" line="272"/> <source>length_is - Check length</source> <translation>length_is - проверка длины</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="281"/> + <location filename="../DjangoTagsMenuHandler.py" line="275"/> <source>linebreaks - Replace line breaks with HTML</source> <translation>linebreaks - замена переноса строки его HTML-аналогами</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="284"/> + <location filename="../DjangoTagsMenuHandler.py" line="278"/> <source>linebreaksbr - Replace line breaks with <br/></source> <translation>linebreaksbr - замена переноса строки на <br/></translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="287"/> + <location filename="../DjangoTagsMenuHandler.py" line="281"/> <source>linenumbers - Display text with line numbers</source> <translation>linenumbers - отображение текста с номерами строк</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="290"/> + <location filename="../DjangoTagsMenuHandler.py" line="284"/> <source>ljust - Left-align value</source> <translation>ljust - выравнивание значения по левому краю</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="293"/> + <location filename="../DjangoTagsMenuHandler.py" line="287"/> <source>lower - Convert to lowercase</source> <translation>lower - преобразование строки в нижний регистр</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="297"/> + <location filename="../DjangoTagsMenuHandler.py" line="291"/> <source>make_list - Turn value into a list</source> <translation>make_list - преобразование значения в список</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="301"/> + <location filename="../DjangoTagsMenuHandler.py" line="295"/> <source>phone2numeric - Convert phone number into numeric</source> <translation>phone2numeric - преобразование телефонного номера в цифровой эквивалент</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="304"/> + <location filename="../DjangoTagsMenuHandler.py" line="298"/> <source>pluralize - Return plural suffix</source> <translation>pluralize - возврат суффикс множественного числа</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="307"/> + <location filename="../DjangoTagsMenuHandler.py" line="301"/> <source>pprint - Pretty Print</source> <translation>pprint - Pretty Print</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="311"/> + <location filename="../DjangoTagsMenuHandler.py" line="305"/> <source>random - Return random item from list</source> <translation>random - возврат случайного элемента списка</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="314"/> + <location filename="../DjangoTagsMenuHandler.py" line="308"/> <source>removetags - Remove HTML tags</source> <translation>removetags - удаление HTML-тегов</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="317"/> + <location filename="../DjangoTagsMenuHandler.py" line="311"/> <source>rjust - Right-align value</source> <translation>rjust - выравнивание значения по правому краю</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="322"/> + <location filename="../DjangoTagsMenuHandler.py" line="316"/> <source>S-Z</source> <translation>S-Z</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="323"/> + <location filename="../DjangoTagsMenuHandler.py" line="317"/> <source>safe - Mark as not requiring HTML escaping </source> <translation>safe - маркировка как не требующего HTML-экранирования </translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="326"/> + <location filename="../DjangoTagsMenuHandler.py" line="320"/> <source>safeseq - Mark as a safe sequence</source> <translation>safeseq - применение safe к каждому элементу последовательности</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="329"/> + <location filename="../DjangoTagsMenuHandler.py" line="323"/> <source>slice - Return a slice of a list</source> <translation>slice - возврат среза списка</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="332"/> + <location filename="../DjangoTagsMenuHandler.py" line="326"/> <source>slugify - Return value slugified</source> <translation>slugify - возврат значения методом slugifу</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="335"/> + <location filename="../DjangoTagsMenuHandler.py" line="329"/> <source>stringformat - Format variable</source> <translation>stringformat - форматирование переменной</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="338"/> + <location filename="../DjangoTagsMenuHandler.py" line="332"/> <source>striptags - Strip all HTML tags</source> <translation>striptags - удаление всех HTML-тегов</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="342"/> + <location filename="../DjangoTagsMenuHandler.py" line="336"/> <source>time - Format time</source> <translation>time - формат времени</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="345"/> + <location filename="../DjangoTagsMenuHandler.py" line="339"/> <source>timesince - Format as time since</source> <translation>timesince - форматирует дату как время, прошедшее с момента другой даты</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="348"/> + <location filename="../DjangoTagsMenuHandler.py" line="342"/> <source>timeuntil - Format as time until</source> <translation>timeuntil - форматирует дату как время от текущей даты до указанной</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="351"/> + <location filename="../DjangoTagsMenuHandler.py" line="345"/> <source>title - Convert to titlecase</source> <translation>title - преобразование в заголовок</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="354"/> + <location filename="../DjangoTagsMenuHandler.py" line="348"/> <source>truncatechars - Truncate after a number of characters</source> <translation>truncatechars - обрезка строки до заданной длины</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="357"/> + <location filename="../DjangoTagsMenuHandler.py" line="351"/> <source>truncatewords - Truncate after a number of words</source> <translation>truncatewords - усечение после указанного количества слов</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="360"/> + <location filename="../DjangoTagsMenuHandler.py" line="354"/> <source>truncatewords_html - Truncate after a number of words (HTML aware)</source> <translation>truncatewords_html - усечение после указанного количества слов (для HTML)</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="365"/> + <location filename="../DjangoTagsMenuHandler.py" line="359"/> <source>unordered_list - Return HTML unordered list</source> <translation>unordered_list - возврат неупорядоченного HTML списка</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="368"/> + <location filename="../DjangoTagsMenuHandler.py" line="362"/> <source>upper - Convert to uppercase</source> <translation>upper - преобразование строки в верхний регистр</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="371"/> + <location filename="../DjangoTagsMenuHandler.py" line="365"/> <source>urlencode - Escape as URL</source> <translation>urlencode - экранирование значения для URL</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="374"/> + <location filename="../DjangoTagsMenuHandler.py" line="368"/> <source>urlize - Convert URLs as clickable links</source> <translation>urlize - преобразование URLs в кликабельные ссылки</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="377"/> + <location filename="../DjangoTagsMenuHandler.py" line="371"/> <source>urlizetrunc - Convert URLs as clickable links and truncate</source> <translation>urlizetrunc - преобразование URLs в кликабельные ссылки и обрезка</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="382"/> + <location filename="../DjangoTagsMenuHandler.py" line="376"/> <source>wordcount - Return number of word</source> <translation>wordcount - возвращение количества слов</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="385"/> + <location filename="../DjangoTagsMenuHandler.py" line="379"/> <source>wordwrap - Wrap words</source> <translation>wordwrap - перенос слов</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="389"/> + <location filename="../DjangoTagsMenuHandler.py" line="383"/> <source>yesno - Map True, False and None</source> <translation>yesno - расклад True, False и None</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="403"/> + <location filename="../DjangoTagsMenuHandler.py" line="397"/> <source>Humanize</source> <translation>Humanize</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="631"/> + <location filename="../DjangoTagsMenuHandler.py" line="625"/> <source>Load Package</source> <translation>Загрузить пакет</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="408"/> + <location filename="../DjangoTagsMenuHandler.py" line="402"/> <source>apnumber - Format integer the Associated Press style</source> <translation>apnumber - формат целого в стиле Associated Press</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="412"/> + <location filename="../DjangoTagsMenuHandler.py" line="406"/> <source>intcomma - Format integer with commas</source> <translation>intcomma - формат целого с запятыми</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="415"/> + <location filename="../DjangoTagsMenuHandler.py" line="409"/> <source>intword - Convert integer to word</source> <translation>intword - преобразование целого числа в слова</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="419"/> + <location filename="../DjangoTagsMenuHandler.py" line="413"/> <source>naturalday - Format date naturally</source> <translation>naturalday - естественный формат даты</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="422"/> + <location filename="../DjangoTagsMenuHandler.py" line="416"/> <source>naturaltime - Format time naturally</source> <translation>naturaltime - естественный формат времени</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="426"/> + <location filename="../DjangoTagsMenuHandler.py" line="420"/> <source>ordinal - Convert integer to ordinal</source> <translation>ordinal - преобразование целого числа к типу ordinal</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="439"/> + <location filename="../DjangoTagsMenuHandler.py" line="433"/> <source>Web Design</source> <translation>Web Design</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="457"/> + <location filename="../DjangoTagsMenuHandler.py" line="451"/> <source>Static</source> <translation>Static</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="462"/> + <location filename="../DjangoTagsMenuHandler.py" line="456"/> <source>static - Link to static file</source> <translation>static - ссылка на static файл</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="465"/> + <location filename="../DjangoTagsMenuHandler.py" line="459"/> <source>static - Link to static file (via variable)</source> <translation>static - ссылка на static файл (посредством переменной)</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="468"/> + <location filename="../DjangoTagsMenuHandler.py" line="462"/> <source>get_static_prefix - Insert static URL</source> <translation>get_static_prefix - вставка static URL</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="471"/> + <location filename="../DjangoTagsMenuHandler.py" line="465"/> <source>get_media_prefix - Insert media URL</source> <translation>get_media_prefix - вставка media URL</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="484"/> + <location filename="../DjangoTagsMenuHandler.py" line="478"/> <source>Comment</source> <translation>Комментарий</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="485"/> + <location filename="../DjangoTagsMenuHandler.py" line="479"/> <source>Single Line Comment Selected Text</source> <translation>Однострочный комментарий выделенного текста</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="488"/> + <location filename="../DjangoTagsMenuHandler.py" line="482"/> <source>Multi Line Comment Selected Text</source> <translation>Многострочный комментарий выделенного текста</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="492"/> + <location filename="../DjangoTagsMenuHandler.py" line="486"/> <source>Single Line Comment from Input Dialog</source> <translation>Однострочный комментарий из диалога ввода</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="495"/> + <location filename="../DjangoTagsMenuHandler.py" line="489"/> <source>Multi Line Comment from Input Dialog</source> <translation>Многострочный комментарий из диалога ввода</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="499"/> + <location filename="../DjangoTagsMenuHandler.py" line="493"/> <source>Single Line Comment from Clipboard</source> <translation>Однострочный комментарий из буфера</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="502"/> + <location filename="../DjangoTagsMenuHandler.py" line="496"/> <source>Multi Line Comment from Clipboard</source> <translation>Многострочный комментарий из буфера</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="506"/> + <location filename="../DjangoTagsMenuHandler.py" line="500"/> <source>Multi Line Comment from File</source> <translation>Многострочный комментарий из файла</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="510"/> + <location filename="../DjangoTagsMenuHandler.py" line="504"/> <source>Single Line Comment from Date Time Now</source> <translation>Однострочный комментарий из актуальной даты времени</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="514"/> + <location filename="../DjangoTagsMenuHandler.py" line="508"/> <source>HTML Comment Out Selected Text</source> <translation>HTML-комментарий для выделенного текста</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="517"/> + <location filename="../DjangoTagsMenuHandler.py" line="511"/> <source>MS IE Conditional Comment Selected Text</source> <translation>MS IE условный комментарий выделенного текста</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="530"/> + <location filename="../DjangoTagsMenuHandler.py" line="524"/> <source>Internationalization (i18n)</source> <translation>Интернационализация (i18n)</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="537"/> + <location filename="../DjangoTagsMenuHandler.py" line="531"/> <source>trans - Translate String or Variable</source> <translation>trans - перевод строки или содержимого переменной</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="540"/> + <location filename="../DjangoTagsMenuHandler.py" line="534"/> <source>trans..as - Translate String into Variable</source> <translation>trans..as - перевод строки в переменную</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="544"/> + <location filename="../DjangoTagsMenuHandler.py" line="538"/> <source>blocktrans - Translate Block</source> <translation>blocktrans - перевод блока</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="547"/> + <location filename="../DjangoTagsMenuHandler.py" line="541"/> <source>blocktrans..with - Translate Block with Attributes</source> <translation>blocktrans..with - перевод блока с атрибутами</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="550"/> + <location filename="../DjangoTagsMenuHandler.py" line="544"/> <source>plural - Plural Block</source> <translation>plural - plural блок</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="553"/> + <location filename="../DjangoTagsMenuHandler.py" line="547"/> <source>language - Switch language</source> <translation>language - переключение языка</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="557"/> + <location filename="../DjangoTagsMenuHandler.py" line="551"/> <source>get_current_language - Current language</source> <translation>get_current_language - возврат текущего языка</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="560"/> + <location filename="../DjangoTagsMenuHandler.py" line="554"/> <source>get_available_languages - Available languages</source> <translation>get_available_languages - возврат списка доступных языков</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="563"/> + <location filename="../DjangoTagsMenuHandler.py" line="557"/> <source>get_current_language_bidi - Current language's direction</source> <translation>get_current_language_bidi - возврат направления чтения текущего языка</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="567"/> + <location filename="../DjangoTagsMenuHandler.py" line="561"/> <source>get_language_info - Language Information</source> <translation>get_language_info - возврат информации о языке</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="570"/> + <location filename="../DjangoTagsMenuHandler.py" line="564"/> <source>get_language_info_list - Language Information for a list of languages</source> <translation>get_language_info_list - возврат информации для списка языков</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="577"/> + <location filename="../DjangoTagsMenuHandler.py" line="571"/> <source>language_name - Language name</source> <translation>language_name - имя языка</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="580"/> + <location filename="../DjangoTagsMenuHandler.py" line="574"/> <source>language_name_local - Language name translated</source> <translation>language_name_local - локализованное имя языка</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="583"/> + <location filename="../DjangoTagsMenuHandler.py" line="577"/> <source>bidi - Language's direction</source> <translation>bidi - направление чтения языков</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="597"/> + <location filename="../DjangoTagsMenuHandler.py" line="591"/> <source>Localization (l10n)</source> <translation>Локализация (l10n)</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="604"/> + <location filename="../DjangoTagsMenuHandler.py" line="598"/> <source>localize on - Activate Localization</source> <translation>localize on - активировать локализацию</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="607"/> + <location filename="../DjangoTagsMenuHandler.py" line="601"/> <source>localize off - Dectivate Localization</source> <translation>localize off - деактивировать локализацию</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="613"/> + <location filename="../DjangoTagsMenuHandler.py" line="607"/> <source>localize - Output value localized</source> <translation>localize - вывод локализованного значения</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="616"/> + <location filename="../DjangoTagsMenuHandler.py" line="610"/> <source>unlocalize - Output value non-localized</source> <translation>unlocalize - вывод нелокализованного значения</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="630"/> + <location filename="../DjangoTagsMenuHandler.py" line="624"/> <source>Timezone (tz)</source> <translation>Timezone (tz)</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="637"/> + <location filename="../DjangoTagsMenuHandler.py" line="631"/> <source>localtime on - Activate date and time conversion</source> <translation>localtime on - активация преобразования даты и времени</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="640"/> + <location filename="../DjangoTagsMenuHandler.py" line="634"/> <source>localtime off - Deactivate date and time conversion</source> <translation>localtime off - деактивация преобразования даты и времени</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="643"/> + <location filename="../DjangoTagsMenuHandler.py" line="637"/> <source>timezone - Set timezone for date and time conversion</source> <translation>timezone - установка даты и времени по текущему часовому поясу</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="646"/> + <location filename="../DjangoTagsMenuHandler.py" line="640"/> <source>timezone None - Unset timezone for date and time conversion</source> <translation>timezone None - установка даты и времени по стандартному часовому поясу</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="650"/> + <location filename="../DjangoTagsMenuHandler.py" line="644"/> <source>get_current_timezone - Get current time zone</source> <translation>get_current_timezone - текущий часовой пояс</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="656"/> + <location filename="../DjangoTagsMenuHandler.py" line="650"/> <source>localtime - Convert to local time zone</source> <translation>localtime - преобразование к локальному часовому поясу</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="659"/> + <location filename="../DjangoTagsMenuHandler.py" line="653"/> <source>utc - Convert to UTC</source> <translation>utc - преобразование к UTC</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="662"/> + <location filename="../DjangoTagsMenuHandler.py" line="656"/> <source>timezone - Convert to a specific time zone</source> <translation>timezone - преобразование к указанному часовому поясу</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="726"/> + <location filename="../DjangoTagsMenuHandler.py" line="720"/> <source>Named Block</source> <translation>Именованный блок (Named Block)</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="726"/> + <location filename="../DjangoTagsMenuHandler.py" line="720"/> <source>Enter block name:</source> <translation>Введите имя блока:</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="742"/> + <location filename="../DjangoTagsMenuHandler.py" line="736"/> <source>Cycle Variables</source> <translation>Переменные цикла (Cycle Variables)</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="742"/> + <location filename="../DjangoTagsMenuHandler.py" line="736"/> <source>Enter items to cycle, space separated</source> <translation>Введите параметры цикла, разделенные пробелами</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="760"/> + <location filename="../DjangoTagsMenuHandler.py" line="754"/> <source>Extends</source> <translation>Наследования шаблона (Extends)</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="858"/> + <location filename="../DjangoTagsMenuHandler.py" line="852"/> <source>Enter variable name:</source> <translation>Введите имя переменной:</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="760"/> + <location filename="../DjangoTagsMenuHandler.py" line="754"/> <source>Enter parent file name:</source> <translation>Введите имя родительского файла:</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="768"/> + <location filename="../DjangoTagsMenuHandler.py" line="762"/> <source>Tag Filters</source> <translation>Фильтры тега</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="768"/> + <location filename="../DjangoTagsMenuHandler.py" line="762"/> <source>Multiple filters with arguments, pipes separated:</source> <translation>Цепочка фильтров с аргументами, разделенные '|' символом:</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="779"/> + <location filename="../DjangoTagsMenuHandler.py" line="773"/> <source>First Of</source> <translation>Первая переменная, не равная False</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="779"/> + <location filename="../DjangoTagsMenuHandler.py" line="773"/> <source>Enter multiple variables, space separated:</source> <translation>Введите несколько переменных, разделенных пробелами:</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="779"/> + <location filename="../DjangoTagsMenuHandler.py" line="773"/> <source>Enter fallback value:</source> <translation>Введите строку, выводимую если значения всех переменных равны False:</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="804"/> + <location filename="../DjangoTagsMenuHandler.py" line="798"/> <source>For Loop</source> <translation>Организация цикла (For Loop)</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="804"/> + <location filename="../DjangoTagsMenuHandler.py" line="798"/> <source>Enter variable to use for iteration:</source> <translation>Задайте переменную используемую для итераций цикла:</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="804"/> + <location filename="../DjangoTagsMenuHandler.py" line="798"/> <source>Enter sequence to iterate over:</source> <translation>Введите последовательность для итераций:</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="804"/> + <location filename="../DjangoTagsMenuHandler.py" line="798"/> <source>Enter output to use if loop is empty:</source> <translation>Задайте сообщение, выводимое если список пуст:</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="823"/> + <location filename="../DjangoTagsMenuHandler.py" line="817"/> <source>Check Variables for Changes</source> <translation>Проверка изменения переменных</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="823"/> + <location filename="../DjangoTagsMenuHandler.py" line="817"/> <source>Enter variables to check (space separated):</source> <translation>Введите переменные для проверки (разделенные пробелами):</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="834"/> + <location filename="../DjangoTagsMenuHandler.py" line="828"/> <source>Check If Equal</source> <translation>Проверка равенства переменных тега</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="846"/> + <location filename="../DjangoTagsMenuHandler.py" line="840"/> <source>Enter first variable or string to check:</source> <translation>Введите первую переменную или строку для проверки:</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="846"/> + <location filename="../DjangoTagsMenuHandler.py" line="840"/> <source>Enter second variable or string to check:</source> <translation>Введите вторую переменную или строку для проверки:</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="846"/> + <location filename="../DjangoTagsMenuHandler.py" line="840"/> <source>Check If Not Equal</source> <translation>Проверка неравенства переменных тега</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="866"/> + <location filename="../DjangoTagsMenuHandler.py" line="860"/> <source>Include</source> <translation>Включение одного шаблона в другой (Include)</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="866"/> + <location filename="../DjangoTagsMenuHandler.py" line="860"/> <source>Enter file name:</source> <translation>Введите имя файла:</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="874"/> + <location filename="../DjangoTagsMenuHandler.py" line="868"/> <source>Load</source> <translation>Загрузка шаблонных тегов (Load)</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="874"/> + <location filename="../DjangoTagsMenuHandler.py" line="868"/> <source>Enter template tag set to load:</source> <translation>Задайте набор шаблонных тегов для загрузки:</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="882"/> + <location filename="../DjangoTagsMenuHandler.py" line="876"/> <source>Now</source> <translation>Сейчас (Now)</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="882"/> + <location filename="../DjangoTagsMenuHandler.py" line="876"/> <source>Current date time format:</source> <translation>Текущий формат даты времени:</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="892"/> + <location filename="../DjangoTagsMenuHandler.py" line="886"/> <source>Regroup List</source> <translation>Перегрупировка списка (Regroup List)</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="892"/> + <location filename="../DjangoTagsMenuHandler.py" line="886"/> <source>List Variable:</source> <translation>Список переменных:</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="892"/> + <location filename="../DjangoTagsMenuHandler.py" line="886"/> <source>Common Attribute:</source> <translation>Общий атрибут:</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="892"/> + <location filename="../DjangoTagsMenuHandler.py" line="886"/> <source>Name of resulting list:</source> <translation>Имя результирующего списка:</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="914"/> + <location filename="../DjangoTagsMenuHandler.py" line="908"/> <source>SSI</source> <translation>Вывод содержимого файла на страницу (SSI)</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="906"/> + <location filename="../DjangoTagsMenuHandler.py" line="900"/> <source>Full path to template:</source> <translation>Полный путь к шаблону:</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="1385"/> + <location filename="../DjangoTagsMenuHandler.py" line="1379"/> <source>All Files (*)</source> <translation>Все файлы (*)</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="922"/> + <location filename="../DjangoTagsMenuHandler.py" line="916"/> <source>Template Tag</source> <translation>Шаблонный тег</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="922"/> + <location filename="../DjangoTagsMenuHandler.py" line="916"/> <source>Argument:</source> <translation>Аргумент:</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="934"/> + <location filename="../DjangoTagsMenuHandler.py" line="928"/> <source>URL</source> <translation>Возврат абсолютной ссылки (URL)</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="946"/> + <location filename="../DjangoTagsMenuHandler.py" line="940"/> <source>View method name:</source> <translation>Просмотр имени метода:</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="946"/> + <location filename="../DjangoTagsMenuHandler.py" line="940"/> <source>Optional arguments (space separated):</source> <translation>Необязательные аргументы (разделенные пробелами):</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="946"/> + <location filename="../DjangoTagsMenuHandler.py" line="940"/> <source>URL...as</source> <translation>Возврат абсолютной ссылки (URL...as)</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="946"/> + <location filename="../DjangoTagsMenuHandler.py" line="940"/> <source>URL name:</source> <translation>Имя URL:</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="963"/> + <location filename="../DjangoTagsMenuHandler.py" line="957"/> <source>Width Ratio</source> <translation>Коэффициент ширины</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="963"/> + <location filename="../DjangoTagsMenuHandler.py" line="957"/> <source>Variable:</source> <translation>Переменная:</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="963"/> + <location filename="../DjangoTagsMenuHandler.py" line="957"/> <source>Maximum Value:</source> <translation>Максимальное значение:</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="963"/> + <location filename="../DjangoTagsMenuHandler.py" line="957"/> <source>Maximum Width:</source> <translation>Максимальная ширина:</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="974"/> + <location filename="../DjangoTagsMenuHandler.py" line="968"/> <source>Cache Variables</source> <translation>Кэш переменных</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="974"/> + <location filename="../DjangoTagsMenuHandler.py" line="968"/> <source>Variables to cache as key=value (space separated):</source> <translation>Переменные для кэша в виде key=value (через пробел):</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="989"/> + <location filename="../DjangoTagsMenuHandler.py" line="983"/> <source>Add Variable or String</source> <translation>Добавление переменной или строки</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="989"/> + <location filename="../DjangoTagsMenuHandler.py" line="983"/> <source>Variables or String to add:</source> <translation>Переменные или строки для добавления:</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="1001"/> + <location filename="../DjangoTagsMenuHandler.py" line="995"/> <source>Center Value</source> <translation>Среднее значение</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="1163"/> + <location filename="../DjangoTagsMenuHandler.py" line="1157"/> <source>Enter width of the output:</source> <translation>Задайте ширину поля вывода:</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="1009"/> + <location filename="../DjangoTagsMenuHandler.py" line="1003"/> <source>Cut Characters</source> <translation>Вырезать символы</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="1009"/> + <location filename="../DjangoTagsMenuHandler.py" line="1003"/> <source>Characters to cut:</source> <translation>Символы для вырезания:</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="1195"/> + <location filename="../DjangoTagsMenuHandler.py" line="1189"/> <source>Format Date</source> <translation>Формат даты</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="1195"/> + <location filename="../DjangoTagsMenuHandler.py" line="1189"/> <source>Enter date format:</source> <translation>Задайте формат даты:</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="1030"/> + <location filename="../DjangoTagsMenuHandler.py" line="1024"/> <source>Default Value if False</source> <translation>Значение по умолчанию если результат равен False</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="1030"/> + <location filename="../DjangoTagsMenuHandler.py" line="1024"/> <source>Enter default value if result is False:</source> <translation>Введите значение по умолчанию если результат равен False:</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="1038"/> + <location filename="../DjangoTagsMenuHandler.py" line="1032"/> <source>Default Value if None</source> <translation>Значение по умолчанию если результат равен None</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="1038"/> + <location filename="../DjangoTagsMenuHandler.py" line="1032"/> <source>Enter default value if result is None:</source> <translation>Введите значение по умолчанию если результат равен None:</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="1046"/> + <location filename="../DjangoTagsMenuHandler.py" line="1040"/> <source>Sort Dictionaries</source> <translation>Сортировка словарей</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="1054"/> + <location filename="../DjangoTagsMenuHandler.py" line="1048"/> <source>Enter key to sort on:</source> <translation>Задайте ключ сортировки:</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="1054"/> + <location filename="../DjangoTagsMenuHandler.py" line="1048"/> <source>Sort Dictionaries reversed</source> <translation>Сортировка словарей в обратном порядке</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="1062"/> + <location filename="../DjangoTagsMenuHandler.py" line="1056"/> <source>Check Divisibility</source> <translation>Проверка делимости без остатка</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="1062"/> + <location filename="../DjangoTagsMenuHandler.py" line="1056"/> <source>Enter divisor value:</source> <translation>Задайте значение делителя:</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="1080"/> + <location filename="../DjangoTagsMenuHandler.py" line="1074"/> <source>Format Floating Number</source> <translation>Формат числа с плавающей запятой</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="1080"/> + <location filename="../DjangoTagsMenuHandler.py" line="1074"/> <source>Enter number of decimal places:</source> <translation>Задайте количество десятичных знаков:</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="1090"/> + <location filename="../DjangoTagsMenuHandler.py" line="1084"/> <source>Get Rightmost Digit</source> <translation>Получить цифру заданного справа разряда</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="1090"/> + <location filename="../DjangoTagsMenuHandler.py" line="1084"/> <source>Enter index of digit:</source> <translation>Задайте номер разряда:</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="1100"/> + <location filename="../DjangoTagsMenuHandler.py" line="1094"/> <source>Join List</source> <translation>Объединение списка</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="1100"/> + <location filename="../DjangoTagsMenuHandler.py" line="1094"/> <source>Enter string to join by:</source> <translation>Введите строку для объединения:</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="1112"/> + <location filename="../DjangoTagsMenuHandler.py" line="1106"/> <source>Check Length</source> <translation>Проверка длины</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="1112"/> + <location filename="../DjangoTagsMenuHandler.py" line="1106"/> <source>Enter desired length:</source> <translation>Задайте желаемую длину:</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="1126"/> + <location filename="../DjangoTagsMenuHandler.py" line="1120"/> <source>Left-align Value</source> <translation>Выравнивание по левому краю</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="1140"/> + <location filename="../DjangoTagsMenuHandler.py" line="1134"/> <source>Plural Suffix</source> <translation>Суффикс множественного числа</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="1140"/> + <location filename="../DjangoTagsMenuHandler.py" line="1134"/> <source>Enter plural suffix (nothing for default):</source> <translation>Введите суффикс множественного числа (пусто по умолчанию):</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="1155"/> + <location filename="../DjangoTagsMenuHandler.py" line="1149"/> <source>Remove HTML Tags</source> <translation>Удаление HTML тегов</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="1155"/> + <location filename="../DjangoTagsMenuHandler.py" line="1149"/> <source>Enter HTML tags to remove (space separated):</source> <translation>Введите HTML теги для удаления (разделенные пробелами):</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="1163"/> + <location filename="../DjangoTagsMenuHandler.py" line="1157"/> <source>Right-align Value</source> <translation>Выравнивание значения по правому краю</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="1175"/> + <location filename="../DjangoTagsMenuHandler.py" line="1169"/> <source>Extract slice of a list</source> <translation>Извлечение среза списка</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="1175"/> + <location filename="../DjangoTagsMenuHandler.py" line="1169"/> <source>Enter Python like slice expression:</source> <translation>Введите выражение среза (подобно Python):</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="1185"/> + <location filename="../DjangoTagsMenuHandler.py" line="1179"/> <source>Perform String Formatting</source> <translation>Форматирование строки</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="1185"/> + <location filename="../DjangoTagsMenuHandler.py" line="1179"/> <source>Enter Python like string format:</source> <translation>Задайте формат строки (подобно Python):</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="1207"/> + <location filename="../DjangoTagsMenuHandler.py" line="1201"/> <source>Time Since</source> <translation>Истекший промежуток времени (Time Since)</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="1218"/> + <location filename="../DjangoTagsMenuHandler.py" line="1212"/> <source>Enter variable containing time reference:</source> <translation>Введите переменную, содержащую ссылку на время:</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="1218"/> + <location filename="../DjangoTagsMenuHandler.py" line="1212"/> <source>Time Until</source> <translation>Планируемый промежуток времени (Time Until)</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="1247"/> + <location filename="../DjangoTagsMenuHandler.py" line="1241"/> <source>Truncate String</source> <translation>Обрезка строки</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="1273"/> + <location filename="../DjangoTagsMenuHandler.py" line="1267"/> <source>Enter number of characters:</source> <translation>Задайте количество символов:</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="1247"/> + <location filename="../DjangoTagsMenuHandler.py" line="1241"/> <source>Enter number of words:</source> <translation>Задайте количество слов:</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="1263"/> + <location filename="../DjangoTagsMenuHandler.py" line="1257"/> <source>Convert URLs as clickable links and truncate</source> <translation>Преобразование URLs в кликабельные ссылки и их обрезка</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="1273"/> + <location filename="../DjangoTagsMenuHandler.py" line="1267"/> <source>Wrap words</source> <translation>Перенос слов</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="1281"/> + <location filename="../DjangoTagsMenuHandler.py" line="1275"/> <source>Map True, False and None</source> <translation>Расположение True, False и None</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="1281"/> + <location filename="../DjangoTagsMenuHandler.py" line="1275"/> <source>Enter mapping (comma separated):</source> <translation>Введите отображение (через запятую):</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="1338"/> + <location filename="../DjangoTagsMenuHandler.py" line="1332"/> <source>Link to static file</source> <translation>Ссылка на static файл</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="1330"/> + <location filename="../DjangoTagsMenuHandler.py" line="1324"/> <source>Enter relative path of static file:</source> <translation>Введите относительный путь до static файла:</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="1338"/> + <location filename="../DjangoTagsMenuHandler.py" line="1332"/> <source>Enter variable containing relative path of static file:</source> <translation>Задайте переменную, содержащую относительный путь до static файла:</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="1363"/> + <location filename="../DjangoTagsMenuHandler.py" line="1357"/> <source>Single Line Comment</source> <translation>Однострочный комментарий</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="1372"/> + <location filename="../DjangoTagsMenuHandler.py" line="1366"/> <source>Enter comment:</source> <translation>Введите комментарий:</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="1372"/> + <location filename="../DjangoTagsMenuHandler.py" line="1366"/> <source>Multi Line Comment</source> <translation>Многострочный комментарий</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="1399"/> + <location filename="../DjangoTagsMenuHandler.py" line="1393"/> <source>Comment File</source> <translation>Файл коментария</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="1399"/> + <location filename="../DjangoTagsMenuHandler.py" line="1393"/> <source><p>The file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation><p>Файл <b>{0}</b> невозможно прочитать.</p><p>Причина: {1}</p></translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="1432"/> + <location filename="../DjangoTagsMenuHandler.py" line="1426"/> <source>Translate String into Variable</source> <translation>Перевод строки в переменную</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="1432"/> + <location filename="../DjangoTagsMenuHandler.py" line="1426"/> <source>Enter variable receiving translation:</source> <translation>Введите переменную получающую перевод:</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="1446"/> + <location filename="../DjangoTagsMenuHandler.py" line="1440"/> <source>Translate Block with Attributes</source> <translation>Перевод блока с атрибутами</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="1446"/> + <location filename="../DjangoTagsMenuHandler.py" line="1440"/> <source>Enter attribute binding expressions (space separated):</source> <translation>Введите выражения привязки атрибута (через пробел):</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="1461"/> + <location filename="../DjangoTagsMenuHandler.py" line="1455"/> <source>Switch language</source> <translation>Переключение языка</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="1461"/> + <location filename="../DjangoTagsMenuHandler.py" line="1455"/> <source>Enter language:</source> <translation>Задайте язык:</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="1478"/> + <location filename="../DjangoTagsMenuHandler.py" line="1472"/> <source>Language Information</source> <translation>Информация о языке</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="1478"/> + <location filename="../DjangoTagsMenuHandler.py" line="1472"/> <source>Enter language string or variable (empty for LANGUAGE_CODE):</source> <translation>Введите код языка или переменную (пусто для LANGUAGE_CODE):</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="1493"/> + <location filename="../DjangoTagsMenuHandler.py" line="1487"/> <source>Language Information for a list of languages</source> <translation>Информация о языке для списка языков</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="1493"/> + <location filename="../DjangoTagsMenuHandler.py" line="1487"/> <source>Enter language list variable (empty for LANGUAGES):</source> <translation>Введите переменную списка языков (пусто для LANGUAGES):</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="219"/> + <location filename="../DjangoTagsMenuHandler.py" line="213"/> <source>default - Use default if False</source> <translation>default - использовать значение по умолчанию если - False</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="235"/> + <location filename="../DjangoTagsMenuHandler.py" line="229"/> <source>escape - Escape as HTML</source> <translation>escape - экранирование как в HTML</translation> </message> <message> - <location filename="../DjangoTagsMenuHandler.py" line="444"/> + <location filename="../DjangoTagsMenuHandler.py" line="438"/> <source>lorem - Builtin Lorem Ipsum Generator</source> <translation>lorem - встроенный генератор Lorem Ipsum</translation> </message> @@ -1433,7 +1433,7 @@ <context> <name>ProjectDjangoTagsMenuPlugin</name> <message> - <location filename="../../PluginProjectDjangoTagsMenu.py" line="69"/> + <location filename="../../PluginProjectDjangoTagsMenu.py" line="67"/> <source>Template Tags</source> <translation>Шаблонные теги</translation> </message>