From 56afb01890396fe0562c3ce6700afbff81487f80 Mon Sep 17 00:00:00 2001 From: Benjamin Wohlwend Date: Wed, 20 Jun 2012 18:15:49 +0200 Subject: [PATCH 01/24] bumped version to 2.3rc2.post0 --- cms/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cms/__init__.py b/cms/__init__.py index bfe57cd7a3b..5ff0c163073 100644 --- a/cms/__init__.py +++ b/cms/__init__.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -__version__ = '2.3rc2' +__version__ = '2.3rc2.post0' # patch settings try: From b17d2357ed478c6413457a906c72450650e8cc01 Mon Sep 17 00:00:00 2001 From: Stephen Muss Date: Wed, 27 Jun 2012 01:13:21 +1000 Subject: [PATCH 02/24] Documentation cleanup: fixed typos, grammar, etc. --- docs/advanced/cli.rst | 8 +-- docs/advanced/i18n.rst | 10 +-- docs/advanced/templatetags.rst | 26 ++++---- docs/concepts/menu_system.rst | 14 ++--- docs/concepts/multiple_languages.rst | 17 +++-- docs/contribution.rst | 12 ++-- docs/extending_cms/api_references.rst | 8 +-- docs/extending_cms/app_integration.rst | 26 ++++---- docs/extending_cms/custom_plugins.rst | 77 +++++++++++------------ docs/extending_cms/extending_examples.rst | 44 ++++++------- docs/extending_cms/placeholders.rst | 16 ++--- docs/extending_cms/searchdocs.rst | 4 +- docs/getting_started/configuration.rst | 32 +++++----- docs/getting_started/installation.rst | 14 ++--- docs/getting_started/navigation.rst | 10 +-- docs/getting_started/plugin_reference.rst | 22 +++---- docs/getting_started/tutorial.rst | 63 ++++++++++--------- docs/getting_started/using_south.rst | 14 ++--- docs/upgrade/2.1.rst | 2 +- docs/upgrade/2.2.rst | 16 ++--- docs/upgrade/2.3.rst | 12 ++-- 21 files changed, 226 insertions(+), 221 deletions(-) diff --git a/docs/advanced/cli.rst b/docs/advanced/cli.rst index caa98845c59..24ad50aeb8f 100644 --- a/docs/advanced/cli.rst +++ b/docs/advanced/cli.rst @@ -33,7 +33,7 @@ Plugin and apphook management commands ``cms uninstall`` ================= -The ``uninstall`` subcommand can be used to make an uninstallation of a CMS +The ``uninstall`` subcommand can be used to make uninstalling a CMS Plugin or an apphook easier. It has two subcommands: @@ -41,13 +41,13 @@ It has two subcommands: * ``cms uninstall plugins [ [...]]`` uninstalls one or several plugins by **removing** them from all pages where they are used. Note that the plugin name should be the name of the class that is - registered to the django CMS. If you are unsure about the plugin name, use + registered in the django CMS. If you are unsure about the plugin name, use the :ref:`cms-list-command` to see a list of installed plugins. * ``cms uninstall apphooks [ [...]]`` uninstalls one or several apphooks by **removing** them from all pages where they are used. Note that the apphook name should be the name of the class that is - registered to the django CMS. If you are unsure about the apphook name, use - the :ref:`cms-list-command` to see a list of installed apphook. + registered in the django CMS. If you are unsure about the apphook name, use + the :ref:`cms-list-command` to see a list of installed apphooks. .. warning:: diff --git a/docs/advanced/i18n.rst b/docs/advanced/i18n.rst index 5bd2b301792..9c89741a7b7 100644 --- a/docs/advanced/i18n.rst +++ b/docs/advanced/i18n.rst @@ -74,7 +74,7 @@ In the view pass the :meth:`get_absolute_url` method to the set_language_changer(request, item.get_absolute_url) # ... -This allows the language chooser to have another URL then the current one. +This allows the language chooser to have another URL than the current one. If the current URL is not handled by the CMS and no ``set_language_changer`` function is provided it will take the exact same URL as the current one and will only change the language prefix. @@ -131,7 +131,7 @@ If you put :setting:`CMS_HIDE_UNTRANSLATED` to ``False`` in your ``settings.py`` all pages will be displayed in all languages even if they are not translated yet. -If :setting:`CMS_HIDE_UNTRANSLATED` is ``True`` is in your ``settings.py`` -and you are on a page that hasn't got a english translation yet and you view the -german version then the language chooser will redirect to ``/``. The same goes -for urls that are not handled by the cms and display a language chooser. \ No newline at end of file +If :setting:`CMS_HIDE_UNTRANSLATED` is ``True`` in your ``settings.py`` +and you are on a page that doesn't yet have an English translatio and you view the +Ferman version then the language chooser will redirect to ``/``. The same goes +for urls that are not handled by the cms and display a language chooser. diff --git a/docs/advanced/templatetags.rst b/docs/advanced/templatetags.rst index cdee5a9964d..367b38a4eb2 100644 --- a/docs/advanced/templatetags.rst +++ b/docs/advanced/templatetags.rst @@ -4,7 +4,7 @@ Template Tags .. highlightlang:: html+django -To use any of the following templatetags you need to load them first at the +To use any of the following templatetags you first need to load them at the top of your template:: {% load cms_tags menu_tags %} @@ -29,7 +29,7 @@ Example:: If you want additional content to be displayed in case the placeholder is empty, use the ``or`` argument and an additional ``{% endplaceholder %}`` closing tag. Everything between ``{% placeholder "..." or %}`` and ``{% -endplaceholder %}`` is rendered instead if the placeholder has no plugins or +endplaceholder %}`` is rendered in the event that the placeholder has no plugins or the plugins do not generate any output. Example:: @@ -48,7 +48,7 @@ same name on parent pages, simply pass the ``inherit`` argument:: {% placeholder "content" inherit %} -This will walk the page tree up till the root page and will show the first +This will walk up the page tree up until the root page and will show the first placeholder it can find with content. It's also possible to combine this with the ``or`` argument to show an @@ -111,7 +111,7 @@ that ``reverse_id`` with the appropriate templatetags:: If you are referring to a page `relative` to the current page, you'll probably have to use a numeric page ID or a page object. For instance, if you want the -content of the parent page display on the current page, you can use:: +content of the parent page to display on the current page, you can use:: {% show_placeholder "content" request.current_page.parent_id %} @@ -208,9 +208,9 @@ four optional parameters: ``start_level``, ``end_level``, ``extra_inactive``, and ``extra_active``. The first two parameters, ``start_level`` (default=0) and ``end_level`` -(default=100) specify from what level to which level should the navigation be -rendered. If you have a home as a root node and don't want to display home you -can render the navigation only after level 1. +(default=100) specify from which level the navigation shoud be rendered +and at which level it should stop. If you have home as a root node and don't +want to display home you can render the navigation only after level 1. The third parameter, ``extra_inactive`` (default=0), specifies how many levels of navigation should be displayed if a node is not a direct ancestor or @@ -278,7 +278,7 @@ show_sub_menu ************* Displays the sub menu of the current page (as a nested list). -Takes one argument that specifies how many levels deep should the submenu be +Takes one argument that specifies how many levels deep the submenu should be displayed. The template can be found at ``cms/sub_menu.html``::
    @@ -345,7 +345,7 @@ Returns the url of the current page in an other language:: {% page_language_url en %} If the current url has no cms-page and is handled by a navigation extender and -the url changes based on the language: You will need to set a language_changer +the url changes based on the language, you will need to set a language_changer function with the set_language_changer function in cms.utils. For more information, see :doc:`i18n`. @@ -370,8 +370,8 @@ or with custom template:: The language_chooser has three different modes in which it will display the languages you can choose from: "raw" (default), "native", "current" and "short". -It can be passed as last argument to the ``language_chooser tag`` as a string. -In "raw" mode, the language will be displayed like it's verbose name in the +It can be passed as the last argument to the ``language_chooser tag`` as a string. +In "raw" mode, the language will be displayed like its verbose name in the settings. In "native" mode the languages are displayed in their actual language (eg. German will be displayed "Deutsch", Japanese as "日本語" etc). In "current" mode the languages are translated into the current language the user is seeing @@ -379,7 +379,7 @@ the site in (eg. if the site is displayed in German, Japanese will be displayed as "Japanisch"). "Short" mode takes the language code (eg. "en") to display. If the current url has no cms-page and is handled by a navigation extender and -the url changes based on the language: You will need to set a language_changer +the url changes based on the language, you will need to set a language_changer function with the set_language_changer function in menus.utils. For more information, see :doc:`i18n`. @@ -390,7 +390,7 @@ For more information, see :doc:`i18n`. cms_toolbar *********** -The ``cms_toolbar`` templatetag will add the needed css and javascript to the +The ``cms_toolbar`` templatetag will add the required css and javascript to the sekizai blocks in the base template. The templatetag has to be placed after the ```` tag and before any ``{% cms_placeholder %}`` occurrences within your HTML. diff --git a/docs/concepts/menu_system.rst b/docs/concepts/menu_system.rst index a9af069a713..b08713d4b3c 100644 --- a/docs/concepts/menu_system.rst +++ b/docs/concepts/menu_system.rst @@ -15,9 +15,9 @@ What they operate on is a list of menu nodes, that gets passed around the menu s The main active parts of the menu system are menu *generators* and *modifiers*. -Some of these parts are supplied with the menus application. Some come from from other applications (from the cms application in django CMS, for example, or some other application entirely). +Some of these parts are supplied with the menus application. Some come from other applications (from the cms application in django CMS, for example, or some other application entirely). -All these active parts need to be registered with the menu system. +All these active parts need to be registered within the menu system. Then, when the time comes to build a menu, the system will ask all the registered menu generators and modifiers to get to work on it. @@ -42,13 +42,13 @@ Modifiers A modifier examines the nodes that have been assembled, and modifies them according to its requirements (adding or removing them, or manipulating their attributes, as it sees fit). -One important one in cms (:py:class:`cms.menu.SoftRootCutter`) removes the nodes that are no longer required when a soft root is encountered. +An important one in cms (:py:class:`cms.menu.SoftRootCutter`) removes the nodes that are no longer required when a soft root is encountered. These classes are subclasses of :py:class:`menus.base.Modifier`. Examples are :py:class:`cms.menu.NavExtender` and :py:class:`cms.menu.SoftRootCutter`. In order to use a modifier, its :py:meth:`modify()` method must be called. - -Note that each Modifer's :py:meth:`modify()` method can be called *twice*, before and after the menu has been trimmed. + +Note that each Modifier's :py:meth:`modify()` method can be called *twice*, before and after the menu has been trimmed. For example when using the {% show_menu %} templatetag, it's called: @@ -101,7 +101,7 @@ Don't forget that show_menu recurses - so it will do *all* of the below for *eac * :py:meth:`menus.menu_pool.MenuPool.apply_modifiers()` * :py:meth:`menus.menu_pool.MenuPool._mark_selected()` * loops over each node, comparing its URL with the request.path, and marks the best match as ``selected`` - * loops over the Modifiers in self.modifiers calling each one's :py:meth:`modify(post_cut = False)`. The default Modifiers are: + * loops over the Modifiers in self.modifiers calling each one's :py:meth:`modify(post_cut=False)`. The default Modifiers are: * :py:class:`cms.menu.NavExtender` * :py:class:`cms.menu.SoftRootCutter` removes all nodes below the appropriate soft root * :py:class:`menus.modifiers.Marker` loops over all nodes; finds selected, marks its ancestors, siblings and children @@ -118,4 +118,4 @@ Don't forget that show_menu recurses - so it will do *all* of the below for *eac * :py:class:`menus.modifiers.AuthVisibility` * :py:class:`menus.modifiers.Level`: * :py:meth:`menus.modifiers.Level.mark_levels()` - * return the nodes to the context in the variable ``children`` \ No newline at end of file + * return the nodes to the context in the variable ``children`` diff --git a/docs/concepts/multiple_languages.rst b/docs/concepts/multiple_languages.rst index 00f489b3c8e..9dbdc4a501d 100644 --- a/docs/concepts/multiple_languages.rst +++ b/docs/concepts/multiple_languages.rst @@ -6,9 +6,9 @@ Serving content in multiple languages Basic concepts ************** -django CMS has a sophisticated multilingual capability; it's able to serve +django CMS has a sophisticated multilingual capability. It is able to serve content in multiple languages, with fallbacks into other languages where -translations have not been provided, the facility for the user to set the +translations have not been provided. It also has the facility for the user to set the preferred language and so on. How django CMS determines the user's preferred language @@ -47,14 +47,17 @@ examples. * the CMS is set up to provide content in English and Italian * :setting:`CMS_HIDE_UNTRANSLATED` is False * the page ``/some/page`` -1. you visit ``/some/page`` + +2. you visit ``/some/page`` * the content is served in Italian * all link URLs (menus etc.) on that page will be prepended with /it * the page is served at ``/some/page`` (i.e. no redirection has taken place) -1. now you select one of those links ``/it/some/other/page`` that is available in Italian + +3. now you select one of those links ``/it/some/other/page`` that is available in Italian * Italian content is served * the page is served at ``/it/some/other/page`` -1. now you select a link to a page **not** available in Italian + +4. now you select a link to a page **not** available in Italian * the link is still ``/it/some/other/page`` * you'll get the English version, because Italian's not available * the path of the new page is ``/en/some/other/page`` (i.e. it has redirected) @@ -96,9 +99,11 @@ Your language cookie should only ever get set or changed if: * your browser has asked for a language (but this can't override your choice above) If your cookie contains a particualar language (say, "it"): + * the content should be served in Italian wherever available * links on a page should be to ``/it`` content where available, and fallback where not When visiting a page only available in English: + * content will have to be in English -* links should be to Italian content where possible \ No newline at end of file +* links should be to Italian content where possible diff --git a/docs/contribution.rst b/docs/contribution.rst index 78fe2835153..5144311113a 100644 --- a/docs/contribution.rst +++ b/docs/contribution.rst @@ -3,7 +3,7 @@ Contributing to django CMS ########################## Like every open-source project, django CMS is always looking for motivated -individuals to contribute to it's source code. +individuals to contribute to its source code. However, to ensure the highest code quality and keep the repository nice and tidy, everybody has to follow a few rules (nothing major, I promise :) ) @@ -126,7 +126,7 @@ Contributing Documentation Perhaps considered "boring" by hard-core coders, documentation is sometimes even more important than code! This is what brings fresh blood to a project, and serves as a reference for old timers. On top of this, documentation is the one -area where less technical people can help most - you just need to write a +area where less technical people can help most - you just need to write semi-decent English. People need to understand you. We don't care about style or correctness. @@ -134,9 +134,9 @@ Documentation should be: - We use `Sphinx`_/`restructuredText`_. So obviously this is the format you should use :) File extensions should be .rst. -- Written in English. We can discuss how it would bring more people to the - project to have a Klingon translation or anything, but that's a problem we - will ask ourselves when we already have a good documentation in English. +- Written in English. We could discuss how it would bring more people to the + project by having a Klingon or some other translation, but that's a problem we + will confront once we already have good documentation in English. - Accessible. You should assume the reader to be moderately familiar with Python and Django, but not anything else. Link to documentation of libraries you use, for example, even if they are "obvious" to you (South is the first @@ -155,7 +155,7 @@ double cookie points. Seriously. You rock. Section style ============= -We use Python documentation conventions fo section marking: +We use Python documentation conventions for section marking: * ``#`` with overline, for parts * ``*`` with overline, for chapters diff --git a/docs/extending_cms/api_references.rst b/docs/extending_cms/api_references.rst index ad625daac01..87518a52040 100644 --- a/docs/extending_cms/api_references.rst +++ b/docs/extending_cms/api_references.rst @@ -11,7 +11,7 @@ on the models and managers, because the direct API via models and managers is slightly counterintuitive for developers. Also the functions defined in this module do sanity checks on arguments. -.. warning:: None of the functions in this modules do any security or permission +.. warning:: None of the functions in this module does any security or permission checks. They verify their input values to be sane wherever possible, however permission checks should be implemented manually before calling any of these functions. @@ -56,7 +56,7 @@ Functions and constants :param string redirect: URL redirect (only applicable if :setting:`CMS_REDIRECTS` is ``True``) :param string meta_description: Description of this page for SEO :param string meta_keywords: Keywords for this page for SEO - :param created_by: User that creates this page + :param created_by: User that is creating this page :type created_by: string of :class:`django.contrib.auth.models.User` instance :param parent: Parent page of this page :type parent: :class:`cms.models.pagemodel.Page` instance @@ -65,7 +65,7 @@ Functions and constants :param boolean in_navigation: Whether this page should be in the navigation or not :param boolean soft_root: Whether this page is a softroot or not :param string reverse_id: Reverse ID of this page (for template tags) - :param string navigation_extenders: Menu to attach to this page, must be a valid menu + :param string navigation_extenders: Menu to attach to this page. Must be a valid menu :param boolean published: Whether this page should be published or not :param site: Site to put this page on :type site: :class:`django.contrib.sites.models.Site` instance @@ -201,7 +201,7 @@ cms.plugin_base .. attribute:: module - Will be group the plugin in the plugin editor. If module is ``None``, + Will group the plugin in the plugin editor. If module is ``None``, plugin is grouped "Generic" group. .. attribute:: name diff --git a/docs/extending_cms/app_integration.rst b/docs/extending_cms/app_integration.rst index a1d8ee10a0c..78706d1281b 100644 --- a/docs/extending_cms/app_integration.rst +++ b/docs/extending_cms/app_integration.rst @@ -7,9 +7,9 @@ You have 5 ways of integrating your app: 1. Menus - Static extend the menu entries + Statically extend the menu entries -2. AttachMenus +2. Attac hMenus Attach your menu to a page. @@ -29,7 +29,7 @@ You have 5 ways of integrating your app: Menus ***** -Create a menu.py in your application and write the following inside:: +Create a ``menu.py`` in your application and write the following inside:: from menus.base import Menu, NavigationNode from menus.menu_pool import menu_pool @@ -58,7 +58,7 @@ The get_nodes function should return a list of - title - What should the menu entry read? + What the menu entry should read as - url, @@ -70,7 +70,7 @@ The get_nodes function should return a list of - parent_id=None - If this is a child of another node give here the id of the parent. + If this is a child of another node supply the the id of the parent here. - parent_namespace=None @@ -87,7 +87,7 @@ The get_nodes function should return a list of Whether or not this menu item should be visible. -Additionally, each :class:`NavigationNode` provides a number of methods, which are +Additionally, each :class:`NavigationNode` provides a number of methods which are detailed in the :class:`NavigationNode ` API references. ************ @@ -95,7 +95,7 @@ Attach Menus ************ Classes that extend from :class:`menus.base.Menu` always get attached to the -root. But if you want the menu be attached to a CMS Page you can do that as +root. But if you want the menu to be attached to a CMS Page you can do that as well. Instead of extending from :class:`~menus.base.Menu` you need to extend from @@ -157,7 +157,7 @@ App-Hooks With App-Hooks you can attach whole Django applications to pages. For example you have a news app and you want it attached to your news page. -To create an apphook create a ``cms_app.py`` in your application. And in there +To create an apphook create a ``cms_app.py`` in your application. And in it write the following:: from cms.app_base import CMSApp @@ -188,7 +188,7 @@ under "Application". Save the page. there is a cms management command called uninstall apphooks that removes the specified apphook(s) from all pages by name. eg. ``manage.py cms uninstall apphooks MyApphook``. - To find all names for uninstallable apphooks there is a command for this aswell + To find all names for uninstallable apphooks there is a command for this as well ``manage.py cms list apphooks``. If you attached the app to a page with the url ``/hello/world/`` and the app has @@ -228,7 +228,7 @@ template: {% url app_main %} -If you want to access the same url but in a different language use a langauge +If you want to access the same url but in a different language use a language namespace: .. code-block:: html+django @@ -293,7 +293,7 @@ We would now create a menu out of these categories:: category.get_absolute_url(), category.pk, category.parent_id - ) + ) nodes.append(node) return nodes @@ -370,7 +370,7 @@ of :class:`~menus.base.NavigationNode` instances. - request - A Django request instance. Maybe you want to modify based on sessions, or + A Django request instance. You want to modify based on sessions, or user or permissions? - nodes @@ -389,7 +389,7 @@ of :class:`~menus.base.NavigationNode` instances. - post_cut Every modifier is called two times. First on the whole tree. After that the - tree gets cut. To only show the nodes that are shown in the current menu. + tree gets cut to only show the nodes that are shown in the current menu. After the cut the modifiers are called again with the final tree. If this is the case ``post_cut`` is ``True``. diff --git a/docs/extending_cms/custom_plugins.rst b/docs/extending_cms/custom_plugins.rst index 1713f8951ba..6f357d42099 100644 --- a/docs/extending_cms/custom_plugins.rst +++ b/docs/extending_cms/custom_plugins.rst @@ -2,20 +2,19 @@ Custom Plugins ############## -CMS Plugins are reusable content publishers, that can be inserted into django -CMS pages (or indeed into any content that uses django CMS placeholders) in -order to publish information automatically, without further intervention. +CMS Plugins are reusable content publishers that can be inserted into django +CMS pages (or indeed into any content that uses django CMS placeholders). They +enable the publishing of information automatically, without further intervention. -This means that your published web content, whatever it is, can be kept -instantly up-to-date at all times. +This means that your published web content, whatever it is, is kept +up-to-date at all times. It's like magic, but quicker. Unless you're lucky enough to discover that your needs can be met by the built-in plugins, or by the many available 3rd-party plugins, you'll have -to write your own custom CMS Plugin. - -Don't worry though, since writing a CMS Plugin is rather simple. +to write your own custom CMS Plugin. Don't worry though - +writing a CMS Plugin is rather simple. ************************************* Why would you need to write a plugin? @@ -25,7 +24,7 @@ A plugin is the most convenient way to integrate content from another Django app into a django CMS page. For example, suppose you're developing a site for a record company in django -CMS. You might like to have on your site's home page a "Latest releases" box. +CMS. You might like to have a "Latest releases" box on your site's home page. Of course, you could every so often edit that page and update the information. However, a sensible record company will manage its catalogue in Django too, @@ -51,13 +50,13 @@ A django CMS plugin is fundamentally composed of three things. * a plugin **publisher**, to do the automated work of deciding what to publish * a plugin **template**, to render the information into a web page -These correspond to the familiar with the Model-View-Template scheme: +These correspond to the familiar Model-View-Template scheme: * the plugin **model** to store its configuration * the plugin **view** that works out what needs to be displayed * the plugin **template** to render the information -And so to build your plugin, you'll make it out of: +And so to build your plugin, you'll make it from: * a subclass of :class:`cms.models.pluginmodel.CMSPlugin` to **store the configuration** for your plugin instances @@ -78,15 +77,15 @@ An aside on models and configuration The plugin **model**, the subclass of :class:`cms.models.pluginmodel.CMSPlugin`, is actually optional. -You could have a plugin that didn't need to be configured, because it only -ever did one thing. +You could have a plugin that doesn't need to be configured, because it only +ever does one thing. -For example, you could have a plugin that always and only publishes information +For example, you could have a plugin that only publishes information about the top-selling record of the past seven days. Obviously, this wouldn't -be very flexible - you wouldn't be able to use the same plugin to for the +be very flexible - you wouldn't be able to use the same plugin for the best-selling release of the last *month* instead. -Usually, you find that it is useful to be able to configure your plugin, and it +Usually, you find that it is useful to be able to configure your plugin, and this will require a model. @@ -95,10 +94,10 @@ The simplest plugin ******************* You may use ``python manage.py startapp`` to set up the basic layout for you -plugin app, alternatively, just add a file called ``cms_plugins.py`` to an +plugin app. Alternatively, just add a file called ``cms_plugins.py`` to an existing Django application. -In there, you place your plugins, in our example the following code:: +In there, you place your plugins. For our example, include the following code:: from cms.plugin_base import CMSPluginBase from cms.plugin_pool import plugin_pool @@ -115,7 +114,7 @@ In there, you place your plugins, in our example the following code:: plugin_pool.register_plugin(HelloPlugin) -Now we're almost done, all that's left is adding the template. Add the +Now we're almost done. All that's left is to add the template. Add the following into the root template directory in a file called ``hello_plugin.html``: @@ -133,11 +132,11 @@ plugins. There are three required attributes on those classes: -* ``model``: The model you wish to use to store information about this plugin, - if you do not require any special information, for example configuration, to - be stored for your plugins, you may just use - :class:`cms.models.pluginmodel.CMSPlugin`. We'll look at that model more - closely in a bit. +* ``model``: The model you wish to use for storing information about this plugin. + If you do not require any special information, for example configuration, to + be stored for your plugins, you can simply use + :class:`cms.models.pluginmodel.CMSPlugin` (We'll look at that model more + closely in a bit). * ``name``: The name of your plugin as displayed in the admin. It is generally good practice to mark this string as translatable using :func:`django.utils.translation.ugettext_lazy`, however this is optional. @@ -147,7 +146,7 @@ In addition to those three attributes, you must also define a :meth:`render` method on your subclasses. It is specifically this `render` method that is the **view** for your plugin. -That `render` method takes three arguments: +The `render` method takes three arguments: * ``context``: The context with which the page is rendered. * ``instance``: The instance of your plugin that is rendered. @@ -162,22 +161,22 @@ plugin template. Storing configuration ********************* -In many cases, you want to store configuration for your plugin instances, for -example if you have a plugin that shows the latest blog posts, you might want +In many cases, you want to store configuration for your plugin instances. For +example, if you have a plugin that shows the latest blog posts, you might want to be able to choose the amount of entries shown. Another example would be a -gallery plugin, where you want to choose the pictures to show for the plugin. +gallery plugin where you want to choose the pictures to show for the plugin. To do so, you create a Django model by subclassing :class:`cms.models.pluginmodel.CMSPlugin` in the ``models.py`` of an installed application. -Let's improve our ``HelloPlugin`` from above by making it configurable what the -fallback name for non-authenticated users should be. +Let's improve our ``HelloPlugin`` from above by making its fallback name for +non-authenticated users configurable. -In our ``models.py`` we add following model:: +In our ``models.py`` we add the following:: from cms.models.pluginmodel import CMSPlugin - + from django.db import models class Hello(CMSPlugin): @@ -250,9 +249,9 @@ responsible for copying those if necessary whenever the CMS copies the plugin. To do this you can implement a method called :meth:`cms.models.pluginmodel.CMSPlugin.copy_relations` on your plugin -model which gets the **old** instance of the plugin as argument. +model which gets the **old** instance of the plugin as an argument. -Lets assume this is your plugin:: +Let's assume this is your plugin:: class ArticlePluginModel(CMSPlugin): title = models.CharField(max_length=50) @@ -314,8 +313,8 @@ Sekizai style ------------- To fully harness the power of django-sekizai, it is helpful to have a consistent -style on how to use it. Here is a set of conventions that should, but don't -necessarily need to, be followed: +style on how to use it. Here is a set of conventions that should be followed +(but don't necessarily need to be): * One bit per ``addtoblock``. Always include one external CSS or JS file per ``addtoblock`` or one snippet per ``addtoblock``. This is needed so @@ -411,8 +410,8 @@ A plugin processor takes 4 arguments: Example ------- -Suppose you want to put wrap each plugin in the main placeholder in a colored -box, but it would be too complicated to edit each individual plugin's template: +Suppose you want to wrap each plugin in the main placeholder in a colored +box but it would be too complicated to edit each individual plugin's template: In your ``settings.py``:: @@ -448,4 +447,4 @@ In your ``yourapp.cms_plugin_processors.py``:: .. _Django admin documentation: http://docs.djangoproject.com/en/1.2/ref/contrib/admin/ .. _django-sekizai: https://github.com/ojii/django-sekizai -.. _django-sekizai documentation: http://django-sekizai.readthedocs.org \ No newline at end of file +.. _django-sekizai documentation: http://django-sekizai.readthedocs.org diff --git a/docs/extending_cms/extending_examples.rst b/docs/extending_cms/extending_examples.rst index 6cfa0bc1ae2..a1ba79d9c1a 100644 --- a/docs/extending_cms/extending_examples.rst +++ b/docs/extending_cms/extending_examples.rst @@ -2,13 +2,13 @@ Extending the CMS: Examples ########################### -From this part onwards, this tutorial assumes you have done the -`Django Tutorial`_ and we will show you how to integrate that poll app into the -django CMS. If a poll app is mentioned here, we mean the one you get when -finishing the `Django Tutorial`_. +From this point onwards, this tutorial assumes you have done the +`Django Tutorial`_ and will show you how to integrate the tutorial's poll app into the +django CMS. Hereafter, if a poll app is mentioned, we are referring to the one you get +after completing the `Django Tutorial`_. Also, make sure the poll app is in your :setting:`django:INSTALLED_APPS`. -We assume your main ``urls.py`` looks somewhat like this:: +We assume your main ``urls.py`` looks something like this:: from django.conf.urls.defaults import * @@ -30,10 +30,10 @@ A Plugin is a small bit of content you can place on your pages. The Model ========= -For our polling app we would like to have a small poll plugin, that shows one +For our polling app we would like to have a small poll plugin which shows a poll and let's the user vote. -In your poll application's ``models.py`` add the following model:: +In your poll application's ``models.py`` add the following:: from cms.models import CMSPlugin @@ -58,8 +58,8 @@ The Plugin Class ================ Now create a file ``cms_plugins.py`` in the same folder your ``models.py`` is -in, so following the `Django Tutorial`_, your polls app folder should look like -this now:: +in. After having followed the `Django Tutorial`_ and adding this file your polls +app folder should look like this:: polls/ __init__.py @@ -69,7 +69,7 @@ this now:: views.py -The plugin class is responsible to provide the django CMS with the necessary +The plugin class is responsible for providing the django CMS with the necessary information to render your Plugin. For our poll plugin, write following plugin class:: @@ -102,11 +102,11 @@ The Template You probably noticed the :attr:`render_template ` -attribute on that plugin class, for our plugin to work, that template must +attribute in the above plugin class. In order for our plugin to work, that template must exist and is responsible for rendering the plugin. -The template could look like this: +The template should look something like this: .. code-block:: html+django @@ -131,14 +131,14 @@ The template could look like this: My First App (apphook) ********************** -Right now, external apps are statically hooked into the main ``urls.py``, that -is not the preferred way in the django CMS. Ideally you attach your apps to CMS +Right now, external apps are statically hooked into the main ``urls.py``. This +is not the preferred approach in the django CMS. Ideally you attach your apps to CMS pages. For that purpose you write a :class:`CMSApp `. That is just a small class telling the CMS how to include that app. -CMS Apps live in a file called ``cms_app.py``, so go ahead and create that to +CMS Apps live in a file called ``cms_app.py``, so go ahead and create it to make your polls app look like this:: polls/ @@ -182,8 +182,8 @@ Settings' tab and choose 'Polls App' for your 'Application'. .. |apphooks| image:: ../images/cmsapphook.png -Now for those changes to take effect, unfortunately you will have to restart -your server. So do that and now if you navigate to that CMS Page, you will see +Unfortunately, for these changes to take effect, you will have to restart +your server. So do that and afterwards if you navigate to that CMS Page, you will see your polls application. ************* @@ -191,10 +191,10 @@ My First Menu ************* Now you might have noticed that the menu tree stops at the CMS Page you created -in the last step, so let's create a menu that shows a node for each poll you +in the last step. So let's create a menu that shows a node for each poll you have active. -For this we need a file called ``menu.py``, create it and check your polls app +For this we need a file called ``menu.py``. Create it and ensure your polls app looks like this:: polls/ @@ -226,8 +226,8 @@ In your ``menu.py`` write:: nodes = [] for poll in Poll.objects.all(): # the menu tree consists of NavigationNode instances - # Each NavigationNode takes a label as first argument, a URL as - # second argument and a (for this tree) unique id as third + # Each NavigationNode takes a label as its first argument, a URL as + # its second argument and a (for this tree) unique id as its third # argument. node = NavigationNode( poll.question, @@ -239,7 +239,7 @@ In your ``menu.py`` write:: menu_pool.register_menu(PollsMenu) # register the menu. -Now this menu alone doesn't do a whole lot yet, we have to attach it to the +At this point this menu alone doesn't do a whole lot. We have to attach it to the Apphook first. So open your ``cms_apps.py`` and write:: diff --git a/docs/extending_cms/placeholders.rst b/docs/extending_cms/placeholders.rst index f678dc76860..937cae46911 100644 --- a/docs/extending_cms/placeholders.rst +++ b/docs/extending_cms/placeholders.rst @@ -30,7 +30,7 @@ use:: my_placeholder = PlaceholderField('placeholder_name') # your methods -The :class:`~cms.models.fields.PlaceholderField` takes a string as first +The :class:`~cms.models.fields.PlaceholderField` takes a string as its first argument which will be used to configure which plugins can be used in this placeholder. The configuration is the same as for placeholders in the CMS. @@ -56,8 +56,8 @@ Now to render the placeholder in a template you use the {% render_placeholder mymodel_instance.my_placeholder "640" %} The :ttag:`render_placeholder` tag takes a -:class:`~cms.models.fields.PlaceholderField` instance as first argument and -optionally accepts a width parameter as second argument for context sensitive +:class:`~cms.models.fields.PlaceholderField` instance as its first argument and +optionally accepts a width parameter as its second argument for context sensitive plugins. @@ -71,7 +71,7 @@ view and the back-end view. Using the front-end editor ========================== -Probably the most simple way to add content to a placeholder, simply visit the +Probably the simplest way to add content to a placeholder, simply visit the page displaying your model (where you put the :ttag:`render_placeholder` tag), then append ``?edit`` to the page's URL. This will make a top banner appear, and after switching the "Edit mode" button to "on", the banner will prompt you @@ -85,15 +85,15 @@ You are now using the so-called *front-end edit mode*: .. |edit-banner| image:: ../images/edit-banner.png Once in Front-end editing mode, your placeholders should display a menu, -allowing you to add plugins to them: the following screen shot shows a +allowing you to add plugins to them. The following screen shot shows a default selection of plugins in an empty placeholder. |frontend-placeholder-add-plugin| .. |frontend-placeholder-add-plugin| image:: ../images/frontend-placeholder-add-plugin.png -Plugins are rendered at once, so you can have an idea what it will look like -`in fine`, but to view the final look of a plugin simply leave edit mode by +Plugins are rendered at once, so you can get an idea how it will look +`in fine`. However, to view the final look of a plugin simply leave edit mode by clicking the "Edit mode" button in the banner again. @@ -104,7 +104,7 @@ Fieldsets There are some hard restrictions if you want to add custom fieldsets to an admin page with at least one :class:`~cms.models.fields.PlaceholderField`: -1. Every :class:`~cms.models.fields.PlaceholderField` **must** be in it's own +1. Every :class:`~cms.models.fields.PlaceholderField` **must** be in its own :attr:`fieldset `, one :class:`~cms.models.fields.PlaceholderField` per fieldset. 2. You **must** include the following two classes: ``'plugin-holder'`` and diff --git a/docs/extending_cms/searchdocs.rst b/docs/extending_cms/searchdocs.rst index c32d46ccd7b..d1e7f625a86 100644 --- a/docs/extending_cms/searchdocs.rst +++ b/docs/extending_cms/searchdocs.rst @@ -2,8 +2,8 @@ Search and the django CMS ######################### -For powerful full-text search in with the django CMS, we suggest using +For powerful full-text search within the django CMS, we suggest using `Haystack`_ together with `django-cms-search`_. .. _Haystack: http://haystacksearch.org/ -.. _django-cms-search: https://github.com/piquadrat/django-cms-search \ No newline at end of file +.. _django-cms-search: https://github.com/piquadrat/django-cms-search diff --git a/docs/getting_started/configuration.rst b/docs/getting_started/configuration.rst index 0187781eca2..d740c53f18c 100644 --- a/docs/getting_started/configuration.rst +++ b/docs/getting_started/configuration.rst @@ -5,7 +5,7 @@ Configuration ############# The django CMS has a lot of settings you can use to customize your installation -of the CMS to be exactly like you want it to be. +so that it is exactly as you'd like it to be. ***************** Required Settings @@ -37,8 +37,8 @@ Example:: .. warning:: - django CMS internally relies on a number of templates to function correctly; - these exist beneath ``cms`` within the templates directory. As such, it + django CMS internally relies on a number of templates to function correctly. + These exist beneath ``cms`` within the templates directory. As such, it is highly recommended you avoid using the same directory name for your own project templates. @@ -121,7 +121,7 @@ internationalized. **limits** Limit the number of plugins that can be placed inside this placeholder. -Dictionary keys are plugin names; values are their respective limits. Special +Dictionary keys are plugin names and the values are their respective limits. Special case: "global" - Limit the absolute number of plugins in this placeholder regardless of type (takes precedence over the type-specific limits). @@ -133,7 +133,7 @@ CMS_PLUGIN_CONTEXT_PROCESSORS Default: ``[]`` A list of plugin context processors. Plugin context processors are callables -that modify all plugin's context before rendering. See +that modify all plugins' context before rendering. See :doc:`../extending_cms/custom_plugins` for more information. .. setting:: CMS_PLUGIN_PROCESSORS @@ -185,10 +185,10 @@ Editor configuration The Wymeditor from :mod:`cms.plugins.text` plugin can take the same configuration as vanilla Wymeditor. Therefore you will need to learn -how to configure that. The best way to understand this is to head -over to `Wymeditor examples page +how to configure that. The best thing to do is to head +over to the `Wymeditor examples page `_ -After understand how Wymeditor works. +in order to understand how Wymeditor works. The :mod:`cms.plugins.text` plugin exposes several variables named WYM_* that correspond to the wym configuration. The simplest @@ -271,8 +271,8 @@ CMS_SITE_LANGUAGES Default: ``{}`` If you have more than one site and :setting:`CMS_LANGUAGES` differs between -the sites, you may want to fill this out so if you switch between the sites -in the admin you only get the languages available on this site. +the sites, you may want to fill this out so that when you switch between sites +in the admin you only get the languages available to that particular site. Example:: @@ -382,9 +382,9 @@ CMS_REDIRECTS Default: ``False`` -This adds a new "redirect" field to the "advanced settings" tab of the page +This adds a new "redirect" field to the "advanced settings" tab of the page. -You can set a url here, which a visitor will be redirected to when the page is +You can set a url here to which visitors will be redirected when the page is accessed. Note: Don't use this too much. :mod:`django.contrib.redirects` is much more @@ -446,7 +446,7 @@ page". But he will only see the users he created. The users he created can also only inherit the rights he has. So if he only has been granted the right to edit a certain page all users he creates can, in turn, only edit this page. Naturally he can limit the rights of the users he creates even further, allowing them to see -only a subset of the pages he's allowed access to, for example. +only a subset of the pages to which he is allowed access. .. setting:: CMS_PUBLIC_FOR @@ -455,7 +455,7 @@ CMS_PUBLIC_FOR Default: ``all`` -Decides if pages without any view restrictions are public by default, or staff +Decides if pages without any view restrictions are public by default or staff only. Possible values are ``all`` and ``staff``. .. setting:: CMS_MODERATOR @@ -465,11 +465,11 @@ CMS_MODERATOR Default: ``False`` -If set to true, gives you a new "moderation" column in the tree view. +If set to ``True``, gives you a new "moderation" column in the tree view. You can select to moderate pages or whole trees. If a page is under moderation you will receive an email if somebody changes a page and you will be asked to -approve the changes. Only after you approved the changes will they be updated +approve the changes. Only after you approve the changes will they be updated on the "live" site. If you make changes to a page you moderate yourself, you will need to approve it anyway. This allows you to change a lot of pages for a new version of the site, for example, and go live with all the changes at the diff --git a/docs/getting_started/installation.rst b/docs/getting_started/installation.rst index 29dbf552c2d..5dad167072c 100644 --- a/docs/getting_started/installation.rst +++ b/docs/getting_started/installation.rst @@ -2,7 +2,7 @@ Installation ############ -This document assumes you are familiar with Python and Django, and should +This document assumes you are familiar with Python and Django. It should outline the steps necessary for you to follow the :doc:`tutorial`. ************ @@ -51,7 +51,7 @@ On Ubuntu The instructions here install certain packages, such as PIL, Django, South and django CMS globally, which is not recommended. We recommend you use - `virtualenv`_ to use instead. If you chose to do so, install Django, + `virtualenv`_ instead. If you choose to do so, install Django, django CMS and South inside a virtualenv. If you're using Ubuntu (tested with 10.10), the following should get you @@ -80,9 +80,9 @@ This will install PIL and your database's driver globally. You have now everything that is needed for you to follow the :doc:`tutorial`. .. note:: This will install Django version 1.3 for use with the CMS. While - later versions of Django (such as 1.4) are know to work for some + later versions of Django (such as 1.4) are known to work for some people, it is NOT recommended and will not be supported until further - notice (and tests) + notice (and tests). On Mac OSX ========== @@ -101,12 +101,12 @@ Databases We recommend using `PostgreSQL`_ or `MySQL`_ with django CMS. Installing and maintaining database systems is outside the scope of this documentation, but is -very well documented on the system's respective websites. +very well documented on the systems' respective websites. To use django CMS efficiently, we recommend: -* Create a separate set of credentials for django CMS. -* Create a separate database for django CMS to use. +* Creating a separate set of credentials for django CMS. +* Creating a separate database for django CMS to use. .. _PostgreSQL: http://www.postgresql.org/ .. _MySQL: http://www.mysql.com diff --git a/docs/getting_started/navigation.rst b/docs/getting_started/navigation.rst index 2cb45ae2956..71a9b03ae26 100644 --- a/docs/getting_started/navigation.rst +++ b/docs/getting_started/navigation.rst @@ -32,9 +32,9 @@ template to your project or edit the one provided with django-cms. ``extra_inactive``, and ``extra_active``. The first two parameters, ``start_level`` (default=0) and ``end_level`` -(default=100) specify from what level to which level should the navigation be -rendered. -If you have a home as a root node and don't want to display home you can render +(default=100) specify from which level the navigation shoud be rendered +and at which level it should stop. +If you have home as a root node and don't want to display home you can render the navigation only after level 1. The third parameter, ``extra_inactive`` (default=0), specifies how many levels @@ -102,7 +102,7 @@ show_sub_menu ************* Display the sub menu of the current page (as a nested list). -Takes one argument that specifies how many levels deep should the submenu be +Takes one argument that specifies how many levels deep the submenu should be displayed. The template can be found at ``menu/sub_menu.html``::
      @@ -157,7 +157,7 @@ The level of the node. Starts at 0. The level of the node from the root node of the menu. Starts at 0. If your menu starts at level 1 or you have a "soft root" (described -in the next section) the first node still would have 0 as its `menu_level`. +in the next section) the first node would still have 0 as its `menu_level`. :: {{ node.get_absolute_url }} diff --git a/docs/getting_started/plugin_reference.rst b/docs/getting_started/plugin_reference.rst index 38672e459d4..0ab97f67c97 100644 --- a/docs/getting_started/plugin_reference.rst +++ b/docs/getting_started/plugin_reference.rst @@ -32,7 +32,7 @@ You might consider using `django-filer`_ with `django CMS plugin`_ and its .. warning:: - The builtin file plugin does only work with local storages. If you need + The builtin file plugin only works with local storages. If you need more advanced solutions, please look at alternative file plugins for the django CMS, such as `django-filer`_. @@ -97,7 +97,7 @@ setting in your project's ``settings.py`` file:: # ... ) -.. note:: As of version 2.2, the link plugin no longer verifies the existance of +.. note:: As of version 2.2, the link plugin no longer verifies the existence of link targets. @@ -125,7 +125,7 @@ resize your pictures, you can find some on `Django Packages`_ and compare them there. In your project template directory create a folder called ``cms/plugins`` and -create a file called ``picture.html`` in there. Here is an example +in it create a file called ``picture.html``. Here is an example ``picture.html`` template using `easy-thumbnails`_: .. code-block:: html+django @@ -170,7 +170,7 @@ running. Snippet ******* -Renders a HTML snippet from a HTML file in your templates directories or a +Renders an HTML snippet from an HTML file in your templates directories or a snippet given via direct input. For installation be sure you have the following in the :setting:`django:INSTALLED_APPS` @@ -274,7 +274,7 @@ Video ***** Plays Video Files or Youtube / Vimeo Videos. Uses the `OSFlashVideoPlayer -`_. If you upload a file use +`_. When uploading videos use either .flv files or h264 encoded video files. For installation be sure you have the following in your project's @@ -326,7 +326,7 @@ running. Twitter ******* -Displays the last number of post of a twitter user. +Display's a number of a twitter user's latest posts. For installation be sure you have the following in your project's :setting:`django:INSTALLED_APPS` setting:: @@ -348,8 +348,8 @@ For installation be sure you have the following in your project's Inherit ******* -Displays all plugins of another page or another language. Great if you need -always the same plugins on a lot of pages. +Displays all plugins of another page or another language. Great if you always +need the same plugins on a lot of pages. For installation be sure you have the following in your project's :setting:`django:INSTALLED_APPS` setting:: @@ -360,8 +360,8 @@ For installation be sure you have the following in your project's # ... ) -.. warning:: The inherit plugin is currently the only core-plugin which can - **not** be used in non-cms placeholders. +.. warning:: The inherit plugin is currently the only core-plugin which + **cannot** be used in non-cms placeholders. .. _Django Packages: http://djangopackages.com/grids/g/thumbnails/ -.. _easy-thumbnails: https://github.com/SmileyChris/easy-thumbnails \ No newline at end of file +.. _easy-thumbnails: https://github.com/SmileyChris/easy-thumbnails diff --git a/docs/getting_started/tutorial.rst b/docs/getting_started/tutorial.rst index d368e1543b3..2aefccc56ad 100644 --- a/docs/getting_started/tutorial.rst +++ b/docs/getting_started/tutorial.rst @@ -62,8 +62,9 @@ To make your life easier, add the following at the top of the file:: PROJECT_PATH = os.path.abspath(os.path.dirname(__file__)) -Add the following apps to your :setting:`django:INSTALLED_APPS` which enable django CMS -and required or highly recommended applications/libraries): +Add the following apps to your :setting:`django:INSTALLED_APPS`. +This includes django CMS itself as well as its dependenices and +other highly recommended applications/libraries: * ``'cms'``, django CMS itself * ``'mptt'``, utilities for implementing a modified pre-order traversal tree @@ -89,17 +90,17 @@ Also add any (or all) of the following plugins, depending on your needs: Adding the ``'cms.plugins.snippet'`` plugin is a potential security hazard. For more information, refer to :ref:`snippets-plugin`. -They are described in more detail in chapter :doc:`Plugins reference `. -There is even more plugins available on django CMS `extensions page`_. +The plugins are described in more detail in chapter :doc:`Plugins reference `. +There are even more plugins available on the django CMS `extensions page`_. .. _extensions page: http://www.django-cms.org/en/extensions/ -Further, make sure you uncomment (enable) ``'django.contrib.admin'`` +In addition, make sure you uncomment (enable) ``'django.contrib.admin'`` -You might consider using `django-filer`_ with `django CMS plugin`_ and its -components instead of :mod:`cms.plugins.file`, :mod:`cms.plugins.picture`, +you may also wish to use `django-filer`_ and its components with the `django CMS plugin`_ +instead of the :mod:`cms.plugins.file`, :mod:`cms.plugins.picture`, :mod:`cms.plugins.teaser` and :mod:`cms.plugins.video` core plugins. In this -case you should not add them to :setting:`django:INSTALLED_APPS` but add those +case you should not add them to :setting:`django:INSTALLED_APPS` but add the following instead: * ``'filer'`` @@ -112,11 +113,11 @@ instead: .. _django-filer: https://github.com/stefanfoulis/django-filer .. _django CMS plugin: https://github.com/stefanfoulis/cmsplugin-filer -If you opt for core plugins you should take care that directory to which -:setting:`CMS_PAGE_MEDIA_PATH` setting points (by default ``cms_page_media/`` +If you opt for the core plugins you should take care that directory to which +the :setting:`CMS_PAGE_MEDIA_PATH` setting points (by default ``cms_page_media/`` relative to :setting:`django:MEDIA_ROOT`) is writable by the user under which Django -will be running. If you have opted for django-filer then similar requirement -exists based on its configuration. +will be running. If you have opted for django-filer there is a similar requirement +for its configuration. If you want versioning of your content you should also install `django-reversion`_ and add it to :setting:`django:INSTALLED_APPS`: @@ -158,7 +159,7 @@ You need at least the following :setting:`django:TEMPLATE_CONTEXT_PROCESSORS`:: files, so you will have to add it. Point your :setting:`django:STATIC_ROOT` to where the static files should live -(that is, your images, CSS files, Javascript files...):: +(that is, your images, CSS files, Javascript files, etc.):: STATIC_ROOT = os.path.join(PROJECT_PATH, "static") STATIC_URL = "/static/" @@ -171,7 +172,7 @@ setting:: .. note:: - Please make sure both the ``static`` and ``media`` subfolder exist in your + Please make sure both the ``static`` and ``media`` subfolders exist in your project and are writable. Now add a little magic to the :setting:`django:TEMPLATE_DIRS` section of the file:: @@ -190,7 +191,7 @@ Add at least one template to :setting:`CMS_TEMPLATES`; for example:: ) We will create the actual template files at a later step, don't worry about it for -now, and simply paste this code in your settings file. +now. Simply paste this code into your settings file. .. note:: @@ -198,14 +199,14 @@ now, and simply paste this code in your settings file. contain at least one ``{% placeholder %}`` template tag to be useful for django CMS. For more details see `Creating templates`_ -The django CMS will allow you to edit all languages which Django has built in -translations for, this is way too many so we'll limit it to English for now:: +The django CMS allows you to edit all languages for which Django has built in +translations. Since these are numerous, we'll limit it to English for now:: LANGUAGES = [ ('en', 'English'), ] -Finally, setup the :setting:`django:DATABASES` part of the file to reflect your +Finally, set up the :setting:`django:DATABASES` part of the file to reflect your database deployment. If you just want to try out things locally, sqlite3 is the easiest database to set up, however it should not be used in production. If you still wish to use it for now, this is what your :setting:`django:DATABASES` @@ -261,7 +262,7 @@ setting:: ('template_2.html', 'Template Two'), ) -If you followed this tutorial from the beginning, we already put this code in your settings file. +If you have followed this tutorial from the beginning, this code should already be in your settings file. Now, on with the actual template files! @@ -303,7 +304,7 @@ template ``template_1.html`` and another is ``base_content`` from the extended ``base.html``. When working with a lot of placeholders, make sure to give descriptive -names for your placeholders, to more easily identify them in the admin panel. +names to your placeholders so you can identify them more easily in the admin panel. Now, feel free to experiment and make a ``template_2.html`` file! If you don't feel creative, just copy template_1 and name the second placeholder something @@ -319,8 +320,8 @@ The django CMS handles media files (css stylesheets and javascript files) required by CMS plugins using `django-sekizai`_. This requires you to define at least two sekizai namespaces in your templates: ``js`` and ``css``. You can do so using the ``render_block`` template tag from the ``sekizai_tags`` template -tag libary. It is highly recommended to put the ``{% render_block "css" %}`` tag -as last thing before the closing ```` HTML tag and the +tag libary. We highly recommended putting the ``{% render_block "css" %}`` tag +as the last thing before the closing ```` HTML tag and the ``{% render_block "js" %}`` tag as the last thing before the closing ```` HTML tag. @@ -343,7 +344,7 @@ Run:: python manage.py syncdb --all python manage.py migrate --fake -The first command will prompt you to create a super user; choose 'yes' and enter +The first command will prompt you to create a super user. Choose 'yes' and enter appropriate values. @@ -378,7 +379,7 @@ To deploy your django CMS project on a production webserver, please refer to the Creating your first CMS Page! ***************************** -That's it, now the best part: you can start using the CMS! +That's it. Now the best part: you can start using the CMS! Run your server with ``python manage.py runserver``, then point a web browser to `127.0.0.1:8000/admin/ `_ , and log in using the super user credentials you defined when you ran ``syncdb`` earlier. @@ -394,13 +395,13 @@ Adding a page ============= Adding a page is as simple as clicking "Pages" in the admin view, then the "add page" button -on the top right-hand corner of the screen. +at the top right-hand corner of the screen. This is where you select which template to use (remember, we created two), as well as pretty obvious things like which language the page is in (used for internationalisation), the page's title, and the url slug it will use. -Hitting the "Save" button, well, saves the page. It will now display in the list of +Hitting the "Save" button, unsurprisingly, saves the page. It will now display in the list of pages. |my-first-page| @@ -413,7 +414,7 @@ Congratulations! You now have a fully functional django CMS installation! Publishing a page ================= -The list of pages available is a handy way to change a few parameters about your pages: +The following is a list of parameters that can be changed for each of your pages: Visibility @@ -437,9 +438,9 @@ Adding content to a page So far, our page doesn't do much. Make sure it's marked as "published", then click on the page's "edit" button. -Ignore most of the interface for now, and click the "view on site" button on the +Ignore most of the interface for now and click the "view on site" button at the top right-hand corner of the screen. As expected, your page is blank for the -time being, since our template is really a minimal one. +time being, since our template is a really minimal one. Let's get to it now then! @@ -457,7 +458,7 @@ then press the "Add" button. The right part of the plugin area displays a rich text editor (`TinyMCE`_). -Type in whatever you please there, then press the "Save" button. +In the editor, type in some text and then press the "Save" button. Go back to your website using the top right-hand "View on site" button. That's it! @@ -470,7 +471,7 @@ Where to go from here ===================== Congratulations, you now have a fully functional CMS! Feel free to play around -with the different plugins provided out of the box, and build great websites! +with the different plugins provided out of the box and to build great websites! .. _South: http://south.aeracode.org/ diff --git a/docs/getting_started/using_south.rst b/docs/getting_started/using_south.rst index f98c5d8e0e8..8b4815b11e3 100644 --- a/docs/getting_started/using_south.rst +++ b/docs/getting_started/using_south.rst @@ -5,15 +5,15 @@ Using South with django CMS South is an incredible piece of software that lets you handle database migrations. This document is by no means meant to replace the excellent `documentation`_ available online, but rather to give a quick primer -on how and why to get started quickly with South. +on why you should use South and how to get started quickly. ************ Installation ************ -Using Django and Python is, as usual, a joy. Installing South should mostly be -as easy as typing:: +As always using Django and Python is a joy. Installing South is +as simple as typing:: pip install South @@ -31,11 +31,11 @@ For a very short crash course: ``manage.py schemamigration --initial ``. This will create a new migrations package, along with a new migration file (in the form of a python script). -#. Run the migration using ``manage.py migrate``. Your tables have now been created - in the database, Django will work as usual. +#. Run the migration using ``manage.py migrate``. Your tables will be created + in the database and Django will work as usual. #. Whenever you make changes to your models.py file, run ``manage.py schemamigration --auto `` to create a new migration - file, then ``manage.py migrate`` to apply the newly created migration. + file. Next run ``manage.py migrate`` to apply the newly created migration. **************************** @@ -46,4 +46,4 @@ Obviously, South is a very powerful tool and this simple crash course is only the very tip of the iceberg. Readers are highly encouraged to have a quick glance at the excellent official South `documentation`_. -.. _documentation: http://south.aeracode.org/docs/index.html \ No newline at end of file +.. _documentation: http://south.aeracode.org/docs/index.html diff --git a/docs/upgrade/2.1.rst b/docs/upgrade/2.1.rst index 249bd8ee503..6c8b7c456db 100644 --- a/docs/upgrade/2.1.rst +++ b/docs/upgrade/2.1.rst @@ -12,7 +12,7 @@ the following commands. pip install --upgrade django-cms==2.2 django==1.3.1 -If you are using django-reversion make sure to have atleast +If you are using django-reversion make sure to have at least version 1.4 installed .. code-block:: bash diff --git a/docs/upgrade/2.2.rst b/docs/upgrade/2.2.rst index 18bde6fce58..30ce06260eb 100644 --- a/docs/upgrade/2.2.rst +++ b/docs/upgrade/2.2.rst @@ -11,7 +11,7 @@ What's new in 2.2 `django-mptt`_ is now used as a proper dependency and is no longer shipped with the django CMS. This solves the -version conflict issues many people had when trying to use the django CMS +version conflict issues many people were experiencing when trying to use the django CMS together with other Django apps that require django-mptt. django CMS 2.2 requires django-mptt 0.5.1. @@ -55,15 +55,15 @@ are affected: * :attr:`cms.plugins_base.CMSPluginBase.pluginmedia` * :meth:`cms.plugins_base.CMSPluginBase.get_plugin_media` -Accessing those attribtues or methods will raise a +Accessing those attributes or methods will raise a :exc:`cms.exceptions.Deprecated` error. The :class:`cms.middleware.media.PlaceholderMediaMiddleware` middleware was also -removed in this process and is therefore no longer required, however you now -require to have the ``'sekizai.context_processors.sekizai'`` context processor +removed in this process and is therefore no longer required. However you are now +required to have the ``'sekizai.context_processors.sekizai'`` context processor in your :setting:`django:TEMPLATE_CONTEXT_PROCESSORS` setting. -All templates in :setting:`CMS_TEMPLATES` must contain at least the ``js`` and +All templates in :setting:`CMS_TEMPLATES` must at least contain the ``js`` and ``css`` sekizai namespaces. Please refer to the documentation on :ref:`custom-plugins-handling-media` in @@ -76,12 +76,12 @@ Toolbar must be enabled explicitly in templates =============================================== The toolbar no longer hacks itself into responses in the middleware, but rather -has to be enabled explictely using the ``{% cms_toolbar %}`` template tag from +has to be enabled explicitly using the ``{% cms_toolbar %}`` template tag from the ``cms_tags`` template tag library in your templates. The template tag should be placed somewhere within the body of the HTML (within ``...``). -This solves issues people where having with the toolbar showing up in places it -shouldn't. +This solves issues people were having with the toolbar showing up in places it +shouldn't have. Static files moved to /static/ diff --git a/docs/upgrade/2.3.rst b/docs/upgrade/2.3.rst index 1fd88b9bf51..9422cd14106 100644 --- a/docs/upgrade/2.3.rst +++ b/docs/upgrade/2.3.rst @@ -22,14 +22,14 @@ Lazy page tree loading in admin =============================== Thanks to the work by Andrew Schoen the page tree in the admin now loads lazily, -improving the performance of that view for large sites significantly. +significantly improving the performance of that view for large sites. Toolbar isolation ================= The toolbar JavaScript dependencies should now be properly isolated and no -longer pollutes the global JavaScript namespace. +longer pollute the global JavaScript namespace. Plugin cancel button fixed @@ -51,19 +51,19 @@ Check ``runtests.py -h`` for options. Moving text plugins to different placeholders no longer loses inline plugins ============================================================================ -A serious bug where moving a text plugin with inline plugins would lose all -the inline plugins when moved to a different placeholder was fixed. +A serious bug where a text plugin with inline plugins would lose all +the inline plugins when moved to a different placeholder has been fixed. Minor improvements ================== -* The ``or`` clause in the ``placeholder`` tag now correctly works on non-cms +* The ``or`` clause in the ``placeholder`` tag now works correctly on non-cms pages. * The icon source URL for inline plugins for text plugins no longer gets double escaped. * ``PageSelectWidget`` correctly orders pages again. -* Fixed the file plugin sometimes causing invalid HTML (unclosed ``span`` tag). +* Fixed the file plugin which was sometimes causing invalid HTML (unclosed ``span`` tag). * Migration ordering for plugins improved. * Internationalized strings in JavaScript now get escaped. From 94926e5c390bf1a2f0d1f7e450bd44b312e1df7f Mon Sep 17 00:00:00 2001 From: Iacopo Spalletti Date: Thu, 14 Jun 2012 14:49:54 +0200 Subject: [PATCH 03/24] Test for #1292. --- cms/tests/admin.py | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/cms/tests/admin.py b/cms/tests/admin.py index 21cfb038094..faf9f66fff4 100644 --- a/cms/tests/admin.py +++ b/cms/tests/admin.py @@ -370,6 +370,23 @@ def test_changelist_items(self): self.assertEqual(root_page.get_children()[1], second_level_page_bottom) self.assertEqual(root_page.get_children()[0].get_children()[0], third_level_page) + def test_changelist_tree(self): + admin = self._get_guys(True) + first_level_page = create_page('level1', 'nav_playground.html', 'en') + second_level_page_top = create_page('level21', "nav_playground.html", "en", + created_by=admin, published=True, parent= first_level_page) + second_level_page_bottom = create_page('level22', "nav_playground.html", "en", + created_by=admin, published=True, parent= self.reload(first_level_page)) + third_level_page = create_page('level3', "nav_playground.html", "en", + created_by=admin, published=True, parent= second_level_page_top) + + url = reverse('admin:cms_%s_changelist' % Page._meta.module_name) + client = Client() + client.login(username='admin', password='admin') + client.cookies['djangocms_nodes_open'] = 'page_1%2Cpage_3%2Cpage_225%2Cpage_182' + response = client.get(url) + self.assertContains(response,"List of pages") + class AdminFieldsetTests(TestCase): From 9fb7c46412b10ccb6c094215c1ddd17dd564fc89 Mon Sep 17 00:00:00 2001 From: Iacopo Spalletti Date: Thu, 14 Jun 2012 14:53:21 +0200 Subject: [PATCH 04/24] Proper cookie set in test --- cms/tests/admin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cms/tests/admin.py b/cms/tests/admin.py index faf9f66fff4..ab92eaea645 100644 --- a/cms/tests/admin.py +++ b/cms/tests/admin.py @@ -383,7 +383,7 @@ def test_changelist_tree(self): url = reverse('admin:cms_%s_changelist' % Page._meta.module_name) client = Client() client.login(username='admin', password='admin') - client.cookies['djangocms_nodes_open'] = 'page_1%2Cpage_3%2Cpage_225%2Cpage_182' + client.cookies['djangocms_nodes_open'] = 'page_1%2Cpage_2' response = client.get(url) self.assertContains(response,"List of pages") From bd6f3e729c76d23ecbc914d69b5c557c60430df9 Mon Sep 17 00:00:00 2001 From: Iacopo Spalletti Date: Thu, 14 Jun 2012 14:55:28 +0200 Subject: [PATCH 05/24] Added comment to the test --- cms/tests/admin.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/cms/tests/admin.py b/cms/tests/admin.py index ab92eaea645..0d9046caaeb 100644 --- a/cms/tests/admin.py +++ b/cms/tests/admin.py @@ -371,6 +371,11 @@ def test_changelist_items(self): self.assertEqual(root_page.get_children()[0].get_children()[0], third_level_page) def test_changelist_tree(self): + """ This test checks for proper jstree cookie unquoting. + + It should be converted to a selenium test to actually test the jstree behaviour. + Cookie set below is just a forged example (from live session) + """ admin = self._get_guys(True) first_level_page = create_page('level1', 'nav_playground.html', 'en') second_level_page_top = create_page('level21', "nav_playground.html", "en", From d0852ed72b5f0f4f10f13a15e74edd7dbeb3ff50 Mon Sep 17 00:00:00 2001 From: Andrew Schoen Date: Wed, 27 Jun 2012 08:34:15 -0500 Subject: [PATCH 06/24] added a test for status code and open_menu_trees to @yakky's original tests --- cms/tests/admin.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cms/tests/admin.py b/cms/tests/admin.py index 0d9046caaeb..2847a417157 100644 --- a/cms/tests/admin.py +++ b/cms/tests/admin.py @@ -390,7 +390,8 @@ def test_changelist_tree(self): client.login(username='admin', password='admin') client.cookies['djangocms_nodes_open'] = 'page_1%2Cpage_2' response = client.get(url) - self.assertContains(response,"List of pages") + self.assertEquals(response.status_code, 200) + self.assertEquals(response.context["open_menu_trees"], [1,2]) From 84f1212d44a147f8bb6f4c985b05a6aa5e30c63a Mon Sep 17 00:00:00 2001 From: Andrew Schoen Date: Wed, 27 Jun 2012 08:43:18 -0500 Subject: [PATCH 07/24] added a test for the descendants method on PageAdmin --- cms/tests/admin.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/cms/tests/admin.py b/cms/tests/admin.py index 2847a417157..8f4282595c9 100644 --- a/cms/tests/admin.py +++ b/cms/tests/admin.py @@ -392,7 +392,15 @@ def test_changelist_tree(self): response = client.get(url) self.assertEquals(response.status_code, 200) self.assertEquals(response.context["open_menu_trees"], [1,2]) - + # tests descendants method for the lazy load ajax call + url = "%s%d/descendants/" % (url, first_level_page.pk) + response = client.get(url) + self.assertEquals(response.status_code, 200) + # should include both direct descendant pages + self.assertTrue('id="page_2"' in response.content) + self.assertTrue('id="page_3"' in response.content) + # but not any further down the tree + self.assertFalse('id="page_4"' in response.content) class AdminFieldsetTests(TestCase): From 86a1eeb36bdc3e47087fca68933db32e46537fed Mon Sep 17 00:00:00 2001 From: Iacopo Spalletti Date: Thu, 28 Jun 2012 14:54:39 +0200 Subject: [PATCH 08/24] Cleaner apphook urlconf include POC --- .../sampleapp/templates/sampleapp/extra.html | 10 +++++ cms/test_utils/project/sampleapp/urls.py | 4 +- .../project/sampleapp/urls_extra.py | 9 ++++ cms/test_utils/project/sampleapp/views.py | 4 ++ cms/tests/apphooks.py | 42 +++++++++++++++++++ 5 files changed, 68 insertions(+), 1 deletion(-) create mode 100644 cms/test_utils/project/sampleapp/templates/sampleapp/extra.html create mode 100644 cms/test_utils/project/sampleapp/urls_extra.py diff --git a/cms/test_utils/project/sampleapp/templates/sampleapp/extra.html b/cms/test_utils/project/sampleapp/templates/sampleapp/extra.html new file mode 100644 index 00000000000..625455542cc --- /dev/null +++ b/cms/test_utils/project/sampleapp/templates/sampleapp/extra.html @@ -0,0 +1,10 @@ +{% extends "base.html" %} +{% load cms_tags %} + +{% block content %} +

      Sample application page - on page {% page_attribute page_title %}

      +

      {{ message }}

      + {{ block.super }} + {% url extra_first %} + {% url extra_second %} +{% endblock content %} \ No newline at end of file diff --git a/cms/test_utils/project/sampleapp/urls.py b/cms/test_utils/project/sampleapp/urls.py index 6c5e7a2f4fe..a387001da64 100644 --- a/cms/test_utils/project/sampleapp/urls.py +++ b/cms/test_utils/project/sampleapp/urls.py @@ -5,10 +5,12 @@ """ urlpatterns = patterns('cms.test_utils.project.sampleapp.views', - url(r'^$', 'sample_view', {'message': 'sample root page',}, name='sample-root'), + url(r'^$', 'sample_view', {'message': 'sample root page',}, name='sample-root'), url(r'^settings/$', 'sample_view', kwargs={'message': 'sample settings page'}, name='sample-settings'), url(r'^account/$', 'sample_view', {'message': 'sample account page'}, name='sample-account'), url(r'^account/my_profile/$', 'sample_view', {'message': 'sample my profile page'}, name='sample-profile'), url(r'(?P[0-9]+)/$', 'category_view', name='category_view'), url(r'notfound/$', 'notfound', name='notfound'), + url(r'extra_1/$', 'extra_view', {'message': 'test urlconf'}, name='extra_first'), + url(r'^', include('cms.test_utils.project.sampleapp.urls_extra')), ) diff --git a/cms/test_utils/project/sampleapp/urls_extra.py b/cms/test_utils/project/sampleapp/urls_extra.py new file mode 100644 index 00000000000..a40c34c2c13 --- /dev/null +++ b/cms/test_utils/project/sampleapp/urls_extra.py @@ -0,0 +1,9 @@ +from django.conf.urls.defaults import * + +""" +Also used in cms.tests.ApphooksTestCase +""" + +urlpatterns = patterns('cms.test_utils.project.sampleapp.views', + url(r'extra_2/$', 'extra_view', {'message': 'test included urlconf'}, name='extra_second'), +) diff --git a/cms/test_utils/project/sampleapp/views.py b/cms/test_utils/project/sampleapp/views.py index fe8596b8455..48a0e2e8919 100644 --- a/cms/test_utils/project/sampleapp/views.py +++ b/cms/test_utils/project/sampleapp/views.py @@ -13,5 +13,9 @@ def sample_view(request, **kw): def category_view(request, id): return render_to_response('sampleapp/category_view.html', RequestContext(request, {'category':Category.objects.get(pk=id)})) +def extra_view(request, **kw): + context = RequestContext(request, kw) + return render_to_response("sampleapp/extra.html", context) + def notfound(request): raise Http404 diff --git a/cms/tests/apphooks.py b/cms/tests/apphooks.py index 9a2794efc95..b3e1596e685 100644 --- a/cms/tests/apphooks.py +++ b/cms/tests/apphooks.py @@ -137,6 +137,48 @@ def test_get_page_for_apphook(self): apphook_pool.clear() + def test_include_urlconf(self): + with SettingsOverride(ROOT_URLCONF='cms.test_utils.project.second_urls_for_apphook_tests'): + + apphook_pool.clear() + superuser = User.objects.create_superuser('admin', 'admin@admin.com', 'admin') + page = create_page("home", "nav_playground.html", "en", + created_by=superuser, published=True) + create_title('de', page.get_title(), page) + child_page = create_page("child_page", "nav_playground.html", "en", + created_by=superuser, published=True, parent=page) + create_title('de', child_page.get_title(), child_page) + child_child_page = create_page("child_child_page", "nav_playground.html", + "en", created_by=superuser, published=True, parent=child_page, apphook='SampleApp') + create_title("de", child_child_page.get_title(), child_child_page, apphook='SampleApp') + + child_child_page.publish() + path = reverse('extra_first') + response = self.client.get(path) + self.assertEquals(response.status_code, 200) + self.assertTemplateUsed(response, 'sampleapp/home.html') + self.assertContains(response, "test urlconf") + + path = reverse('extra_second') + response = self.client.get(path) + self.assertEquals(response.status_code, 200) + self.assertTemplateUsed(response, 'sampleapp/home.html') + self.assertContains(response, "test included urlconf") + + path = reverse('de:extra_first') + response = self.client.get(path) + self.assertEquals(response.status_code, 200) + self.assertTemplateUsed(response, 'sampleapp/home.html') + self.assertContains(response, "test urlconf") + + path = reverse('de:extra_second') + response = self.client.get(path) + self.assertEquals(response.status_code, 200) + self.assertTemplateUsed(response, 'sampleapp/home.html') + self.assertContains(response, "test included urlconf") + + apphook_pool.clear() + def test_apphook_breaking_under_home_with_new_path_caching(self): with SettingsOverride(CMS_MODERATOR=False, CMS_PERMISSION=False): home = create_page("home", "nav_playground.html", "en", published=True) From 96585f14bb7ce1e8165ac3a04871c873446c1f09 Mon Sep 17 00:00:00 2001 From: Iacopo Spalletti Date: Thu, 28 Jun 2012 14:58:52 +0200 Subject: [PATCH 09/24] Fixed test --- cms/tests/apphooks.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/cms/tests/apphooks.py b/cms/tests/apphooks.py index b3e1596e685..0ca642c1d0c 100644 --- a/cms/tests/apphooks.py +++ b/cms/tests/apphooks.py @@ -156,25 +156,25 @@ def test_include_urlconf(self): path = reverse('extra_first') response = self.client.get(path) self.assertEquals(response.status_code, 200) - self.assertTemplateUsed(response, 'sampleapp/home.html') + self.assertTemplateUsed(response, 'sampleapp/extra.html') self.assertContains(response, "test urlconf") path = reverse('extra_second') response = self.client.get(path) self.assertEquals(response.status_code, 200) - self.assertTemplateUsed(response, 'sampleapp/home.html') + self.assertTemplateUsed(response, 'sampleapp/extra.html') self.assertContains(response, "test included urlconf") path = reverse('de:extra_first') response = self.client.get(path) self.assertEquals(response.status_code, 200) - self.assertTemplateUsed(response, 'sampleapp/home.html') + self.assertTemplateUsed(response, 'sampleapp/extra.html') self.assertContains(response, "test urlconf") path = reverse('de:extra_second') response = self.client.get(path) self.assertEquals(response.status_code, 200) - self.assertTemplateUsed(response, 'sampleapp/home.html') + self.assertTemplateUsed(response, 'sampleapp/extra.html') self.assertContains(response, "test included urlconf") apphook_pool.clear() From 913ad268f6dc62226294e2dcc6d18741d39385ec Mon Sep 17 00:00:00 2001 From: Jonas Obrist Date: Thu, 28 Jun 2012 16:06:28 +0200 Subject: [PATCH 10/24] fixed apphooks with includes in their urlpatterns breaking in 1.4 --- cms/appresolver.py | 5 +++-- cms/test_utils/project/sampleapp/urls.py | 2 +- cms/tests/apphooks.py | 11 ++++++----- 3 files changed, 10 insertions(+), 8 deletions(-) diff --git a/cms/appresolver.py b/cms/appresolver.py index f7fe966c3b3..0274450906c 100644 --- a/cms/appresolver.py +++ b/cms/appresolver.py @@ -76,8 +76,9 @@ def recurse_patterns(path, pattern_list, page_id): newpatterns = [] for pattern in pattern_list: app_pat = pattern.regex.pattern - if app_pat.startswith('^'): - app_pat = app_pat[1:] + # make sure we don't get patterns that start with more than one '^'! + app_pat = app_pat.lstrip('^') + path = path.lstrip('^') regex = r'^%s%s' % (path, app_pat) if isinstance(pattern, RegexURLResolver): # this is an 'include', recurse! diff --git a/cms/test_utils/project/sampleapp/urls.py b/cms/test_utils/project/sampleapp/urls.py index a387001da64..3f57e6d21a5 100644 --- a/cms/test_utils/project/sampleapp/urls.py +++ b/cms/test_utils/project/sampleapp/urls.py @@ -12,5 +12,5 @@ url(r'(?P[0-9]+)/$', 'category_view', name='category_view'), url(r'notfound/$', 'notfound', name='notfound'), url(r'extra_1/$', 'extra_view', {'message': 'test urlconf'}, name='extra_first'), - url(r'^', include('cms.test_utils.project.sampleapp.urls_extra')), + url(r'', include('cms.test_utils.project.sampleapp.urls_extra')), ) diff --git a/cms/tests/apphooks.py b/cms/tests/apphooks.py index 0ca642c1d0c..3b781c9b124 100644 --- a/cms/tests/apphooks.py +++ b/cms/tests/apphooks.py @@ -153,17 +153,18 @@ def test_include_urlconf(self): create_title("de", child_child_page.get_title(), child_child_page, apphook='SampleApp') child_child_page.publish() - path = reverse('extra_first') - response = self.client.get(path) - self.assertEquals(response.status_code, 200) - self.assertTemplateUsed(response, 'sampleapp/extra.html') - self.assertContains(response, "test urlconf") path = reverse('extra_second') response = self.client.get(path) self.assertEquals(response.status_code, 200) self.assertTemplateUsed(response, 'sampleapp/extra.html') self.assertContains(response, "test included urlconf") + + path = reverse('extra_first') + response = self.client.get(path) + self.assertEquals(response.status_code, 200) + self.assertTemplateUsed(response, 'sampleapp/extra.html') + self.assertContains(response, "test urlconf") path = reverse('de:extra_first') response = self.client.get(path) From 101369600564115236a9af94bdf3a366fcb1a330 Mon Sep 17 00:00:00 2001 From: Jonas Obrist Date: Thu, 28 Jun 2012 16:08:19 +0200 Subject: [PATCH 11/24] re-added the '^' I removed for testing --- cms/test_utils/project/sampleapp/urls.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/cms/test_utils/project/sampleapp/urls.py b/cms/test_utils/project/sampleapp/urls.py index 3f57e6d21a5..cda8c48eb46 100644 --- a/cms/test_utils/project/sampleapp/urls.py +++ b/cms/test_utils/project/sampleapp/urls.py @@ -9,8 +9,8 @@ url(r'^settings/$', 'sample_view', kwargs={'message': 'sample settings page'}, name='sample-settings'), url(r'^account/$', 'sample_view', {'message': 'sample account page'}, name='sample-account'), url(r'^account/my_profile/$', 'sample_view', {'message': 'sample my profile page'}, name='sample-profile'), - url(r'(?P[0-9]+)/$', 'category_view', name='category_view'), - url(r'notfound/$', 'notfound', name='notfound'), - url(r'extra_1/$', 'extra_view', {'message': 'test urlconf'}, name='extra_first'), - url(r'', include('cms.test_utils.project.sampleapp.urls_extra')), + url(r'^(?P[0-9]+)/$', 'category_view', name='category_view'), + url(r'^notfound/$', 'notfound', name='notfound'), + url(r'^extra_1/$', 'extra_view', {'message': 'test urlconf'}, name='extra_first'), + url(r'^', include('cms.test_utils.project.sampleapp.urls_extra')), ) From 679a380e73d0101624d039bdb68b96e62dd63117 Mon Sep 17 00:00:00 2001 From: Jonas Obrist Date: Thu, 28 Jun 2012 16:27:13 +0200 Subject: [PATCH 12/24] German, not Ferman --- docs/advanced/i18n.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/advanced/i18n.rst b/docs/advanced/i18n.rst index 9c89741a7b7..21254e3db5e 100644 --- a/docs/advanced/i18n.rst +++ b/docs/advanced/i18n.rst @@ -133,5 +133,5 @@ not translated yet. If :setting:`CMS_HIDE_UNTRANSLATED` is ``True`` in your ``settings.py`` and you are on a page that doesn't yet have an English translatio and you view the -Ferman version then the language chooser will redirect to ``/``. The same goes +German version then the language chooser will redirect to ``/``. The same goes for urls that are not handled by the cms and display a language chooser. From 33cbbf1a569041fa9569e3e7e805f6fa97a5f054 Mon Sep 17 00:00:00 2001 From: Jonas Obrist Date: Thu, 28 Jun 2012 16:31:05 +0200 Subject: [PATCH 13/24] use auto-increment numbered lists Attach Menus not Attac hMenus --- docs/concepts/multiple_languages.rst | 40 +++++++++++++------------- docs/extending_cms/app_integration.rst | 2 +- 2 files changed, 21 insertions(+), 21 deletions(-) diff --git a/docs/concepts/multiple_languages.rst b/docs/concepts/multiple_languages.rst index 9dbdc4a501d..4367f37d172 100644 --- a/docs/concepts/multiple_languages.rst +++ b/docs/concepts/multiple_languages.rst @@ -42,26 +42,26 @@ Follow an example It helps to understand how the system behaves by stepping through some actual examples. -1. the situation: -* your browser wants Italian content -* the CMS is set up to provide content in English and Italian -* :setting:`CMS_HIDE_UNTRANSLATED` is False -* the page ``/some/page`` - -2. you visit ``/some/page`` -* the content is served in Italian -* all link URLs (menus etc.) on that page will be prepended with /it -* the page is served at ``/some/page`` (i.e. no redirection has taken place) - -3. now you select one of those links ``/it/some/other/page`` that is available in Italian -* Italian content is served -* the page is served at ``/it/some/other/page`` - -4. now you select a link to a page **not** available in Italian -* the link is still ``/it/some/other/page`` -* you'll get the English version, because Italian's not available -* the path of the new page is ``/en/some/other/page`` (i.e. it has redirected) -* some issues (see :ref:`the_bug` below) +#. the situation: + * your browser wants Italian content + * the CMS is set up to provide content in English and Italian + * :setting:`CMS_HIDE_UNTRANSLATED` is False + * the page ``/some/page`` + +#. you visit ``/some/page`` + * the content is served in Italian + * all link URLs (menus etc.) on that page will be prepended with /it + * the page is served at ``/some/page`` (i.e. no redirection has taken place) + +#. now you select one of those links ``/it/some/other/page`` that is available in Italian + * Italian content is served + * the page is served at ``/it/some/other/page`` + +#. now you select a link to a page **not** available in Italian + * the link is still ``/it/some/other/page`` + * you'll get the English version, because Italian's not available + * the path of the new page is ``/en/some/other/page`` (i.e. it has redirected) + * some issues (see :ref:`the_bug` below) * all links on ``/en/some/other/page`` are prepended with ``/en`` - even if they are available in Italian * if you now visit ``/some/page`` or any other page without using a language prefix, you'll get content in English - even though your browser wants Italian diff --git a/docs/extending_cms/app_integration.rst b/docs/extending_cms/app_integration.rst index 78706d1281b..b09133feefa 100644 --- a/docs/extending_cms/app_integration.rst +++ b/docs/extending_cms/app_integration.rst @@ -9,7 +9,7 @@ You have 5 ways of integrating your app: Statically extend the menu entries -2. Attac hMenus +2. Attach Menus Attach your menu to a page. From 99dfae22d4174bdf20fc966404cfef1321718583 Mon Sep 17 00:00:00 2001 From: Jonas Obrist Date: Thu, 28 Jun 2012 16:31:56 +0200 Subject: [PATCH 14/24] Django is uppercase --- docs/extending_cms/custom_plugins.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/extending_cms/custom_plugins.rst b/docs/extending_cms/custom_plugins.rst index 6f357d42099..79e17cfff54 100644 --- a/docs/extending_cms/custom_plugins.rst +++ b/docs/extending_cms/custom_plugins.rst @@ -2,7 +2,7 @@ Custom Plugins ############## -CMS Plugins are reusable content publishers that can be inserted into django +CMS Plugins are reusable content publishers that can be inserted into Django CMS pages (or indeed into any content that uses django CMS placeholders). They enable the publishing of information automatically, without further intervention. From 8b22b400f15b366749101d0041142e5529d5f2d4 Mon Sep 17 00:00:00 2001 From: Jonas Obrist Date: Thu, 28 Jun 2012 16:32:07 +0200 Subject: [PATCH 15/24] doh, it's django CMS, not just Django --- docs/extending_cms/custom_plugins.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/extending_cms/custom_plugins.rst b/docs/extending_cms/custom_plugins.rst index 79e17cfff54..6f357d42099 100644 --- a/docs/extending_cms/custom_plugins.rst +++ b/docs/extending_cms/custom_plugins.rst @@ -2,7 +2,7 @@ Custom Plugins ############## -CMS Plugins are reusable content publishers that can be inserted into Django +CMS Plugins are reusable content publishers that can be inserted into django CMS pages (or indeed into any content that uses django CMS placeholders). They enable the publishing of information automatically, without further intervention. From c8462b2a3160bcc8b5572c0d15126fb8b32cc1b1 Mon Sep 17 00:00:00 2001 From: Jonas Obrist Date: Thu, 28 Jun 2012 16:35:19 +0200 Subject: [PATCH 16/24] Document moderator deprecation, fixes #1322 --- docs/upgrade/2.3.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/upgrade/2.3.rst b/docs/upgrade/2.3.rst index 9422cd14106..a7fa9aa1b2d 100644 --- a/docs/upgrade/2.3.rst +++ b/docs/upgrade/2.3.rst @@ -85,3 +85,5 @@ Pending deprecations ******************** The ``CMS_FLAT_URLS`` setting is deprecated and will be removed in version 2.4. +The moderation feature (``CMS_MODERATOR = True``) will be deprecated in 2.4 and +replaced with a simpler way of handling unpublished changes. From a3fe35e56d08aa8594da4748e0029d68dab848e9 Mon Sep 17 00:00:00 2001 From: Jonas Obrist Date: Thu, 28 Jun 2012 16:50:52 +0200 Subject: [PATCH 17/24] add deprecation warning for CMS_MODERATOR --- cms/conf/__init__.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cms/conf/__init__.py b/cms/conf/__init__.py index 7b0cc16818d..1ed37bcd148 100644 --- a/cms/conf/__init__.py +++ b/cms/conf/__init__.py @@ -18,6 +18,9 @@ def patch_settings(): if getattr(settings, 'CMS_FLAT_URLS', False): warnings.warn("CMS_FLAT_URLS are deprecated and will be removed in django CMS 2.4!", DeprecationWarning) + if getattr(settings, 'CMS_MODERATOR', False): + warnings.warn("CMS_MODERATOR will be removed and replaced in django CMS 2.4!", DeprecationWarning) + from cms.conf import global_settings # patch settings From d0ef0ace9fba3f10bbe382473db038378ea33ddb Mon Sep 17 00:00:00 2001 From: Jonas Obrist Date: Fri, 29 Jun 2012 14:33:00 +0200 Subject: [PATCH 18/24] made runtests.py work under the ancient Python 2.5 --- runtests.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/runtests.py b/runtests.py index 501945e79d5..2f17cfd5e24 100755 --- a/runtests.py +++ b/runtests.py @@ -1,4 +1,5 @@ #!/usr/bin/env python +from __future__ import with_statement from cms.test_utils.cli import configure from cms.test_utils.tmpdir import temp_dir import argparse @@ -46,4 +47,4 @@ def main(test_runner='cms.test_utils.runners.NormalTestRunner', junit_output_dir test_labels = ['cms.%s' % label for label in args.test_labels] main(test_runner=test_runner, junit_output_dir=junit_output_dir, time_tests=time_tests, verbosity=args.verbosity, failfast=args.failfast, test_labels=test_labels) - \ No newline at end of file + From f4eb33d3894519aec133a51786c2798bf09a5c5d Mon Sep 17 00:00:00 2001 From: Jonas Obrist Date: Fri, 29 Jun 2012 14:33:14 +0200 Subject: [PATCH 19/24] fixed docs installing Django 1.3 --- docs/getting_started/installation.rst | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/docs/getting_started/installation.rst b/docs/getting_started/installation.rst index 5dad167072c..17153854935 100644 --- a/docs/getting_started/installation.rst +++ b/docs/getting_started/installation.rst @@ -61,9 +61,9 @@ started: sudo aptitude install python2.6 python-setuptools python-imaging sudo easy_install pip - sudo pip install Django==1.3 django-cms south + sudo pip install Django==1.4 django-cms south -Additionally, you need the python driver for your selected database: +Additionally, you need the Python driver for your selected database: .. code-block:: bash @@ -79,10 +79,6 @@ This will install PIL and your database's driver globally. You have now everything that is needed for you to follow the :doc:`tutorial`. -.. note:: This will install Django version 1.3 for use with the CMS. While - later versions of Django (such as 1.4) are known to work for some - people, it is NOT recommended and will not be supported until further - notice (and tests). On Mac OSX ========== From 3781a4fba997e4a50b7d1f3e02146b5dd322cb1c Mon Sep 17 00:00:00 2001 From: Jonas Obrist Date: Fri, 29 Jun 2012 14:34:26 +0200 Subject: [PATCH 20/24] 2.3 is NOT in development anymore. hurray! --- docs/upgrade/2.3.rst | 4 ---- 1 file changed, 4 deletions(-) diff --git a/docs/upgrade/2.3.rst b/docs/upgrade/2.3.rst index a7fa9aa1b2d..e058f1785b8 100644 --- a/docs/upgrade/2.3.rst +++ b/docs/upgrade/2.3.rst @@ -2,10 +2,6 @@ 2.3 release notes ################# -.. warning:: - - Django CMS 2.3 is still in development - ***************** What's new in 2.3 ***************** From acca50bbec91a2f6ea6f4a8223247e774b0973a4 Mon Sep 17 00:00:00 2001 From: Jonas Obrist Date: Fri, 29 Jun 2012 14:37:49 +0200 Subject: [PATCH 21/24] pulled translations from transifex --- cms/locale/bg/LC_MESSAGES/django.po | 462 +++-- cms/locale/bg/LC_MESSAGES/djangojs.po | 26 +- cms/locale/ca/LC_MESSAGES/django.po | 250 +-- cms/locale/ca/LC_MESSAGES/djangojs.po | 20 +- cms/locale/da/LC_MESSAGES/django.po | 845 ++++----- cms/locale/da/LC_MESSAGES/djangojs.po | 17 +- cms/locale/de/LC_MESSAGES/django.po | 311 +--- cms/locale/es/LC_MESSAGES/django.po | 370 ++-- cms/locale/es_AR/LC_MESSAGES/django.po | 128 +- cms/locale/es_BO/LC_MESSAGES/django.po | 1838 +++++++++++++++++++ cms/locale/es_BO/LC_MESSAGES/djangojs.po | 40 + cms/locale/fr/LC_MESSAGES/django.po | 300 +-- cms/locale/hr/LC_MESSAGES/django.po | 1836 ++++++++++++++++++ cms/locale/hr/LC_MESSAGES/djangojs.po | 39 + cms/locale/it/LC_MESSAGES/djangojs.po | 25 +- cms/locale/ja/LC_MESSAGES/django.po | 143 +- cms/locale/ja/LC_MESSAGES/djangojs.po | 14 +- cms/locale/ka/LC_MESSAGES/django.po | 1834 ++++++++++++++++++ cms/locale/ku_IQ/LC_MESSAGES/django.po | 1835 ++++++++++++++++++ cms/locale/nl/LC_MESSAGES/django.po | 366 ++-- cms/locale/nl/LC_MESSAGES/djangojs.po | 23 +- cms/locale/pl/LC_MESSAGES/django.po | 298 ++- cms/locale/pl/LC_MESSAGES/djangojs.po | 22 +- cms/locale/pt_BR/LC_MESSAGES/django.po | 266 +-- cms/locale/pt_BR/LC_MESSAGES/djangojs.po | 27 +- cms/locale/sl_SI/LC_MESSAGES/django.po | 243 +-- cms/locale/sl_SI/LC_MESSAGES/djangojs.po | 26 +- cms/locale/sr@latin/LC_MESSAGES/django.po | 1836 ++++++++++++++++++ cms/locale/sr@latin/LC_MESSAGES/djangojs.po | 38 + cms/locale/sv/LC_MESSAGES/django.po | 224 +-- cms/locale/tr/LC_MESSAGES/django.po | 134 +- cms/locale/zh_CN/LC_MESSAGES/django.po | 218 +-- 32 files changed, 11105 insertions(+), 2949 deletions(-) create mode 100644 cms/locale/es_BO/LC_MESSAGES/django.po create mode 100644 cms/locale/es_BO/LC_MESSAGES/djangojs.po create mode 100644 cms/locale/hr/LC_MESSAGES/django.po create mode 100644 cms/locale/hr/LC_MESSAGES/djangojs.po create mode 100644 cms/locale/ka/LC_MESSAGES/django.po create mode 100644 cms/locale/ku_IQ/LC_MESSAGES/django.po create mode 100644 cms/locale/sr@latin/LC_MESSAGES/django.po create mode 100644 cms/locale/sr@latin/LC_MESSAGES/djangojs.po diff --git a/cms/locale/bg/LC_MESSAGES/django.po b/cms/locale/bg/LC_MESSAGES/django.po index d53dda094cc..a1909d6922a 100644 --- a/cms/locale/bg/LC_MESSAGES/django.po +++ b/cms/locale/bg/LC_MESSAGES/django.po @@ -1,19 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# +# Translators: +# Boris Chervenkov , 2012. +# masarliev , 2011. msgid "" msgstr "" "Project-Id-Version: django-cms\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-14 09:48-0500\n" -"PO-Revision-Date: 2011-03-22 15:24+0000\n" -"Last-Translator: ojii \n" +"Report-Msgid-Bugs-To: https://github.com/divio/django-cms/issues\n" +"POT-Creation-Date: 2011-08-14 09:47-0500\n" +"PO-Revision-Date: 2012-01-26 13:34+0000\n" +"Last-Translator: Boris Chervenkov \n" "Language-Team: divio.ch \n" -"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" "X-Poedit-Country: SWITZERLAND\n" "X-Poedit-Language: English\n" @@ -21,11 +24,11 @@ msgstr "" #: cms_toolbar.py:68 msgid "Edit mode" -msgstr "" +msgstr "Редакция" #: cms_toolbar.py:77 msgid "django CMS" -msgstr "" +msgstr "Django CMS" #: cms_toolbar.py:108 templates/admin/cms/page/menu_item.html:73 msgid "Publish" @@ -33,7 +36,7 @@ msgstr "Публикувай" #: cms_toolbar.py:112 msgid "Request Approval" -msgstr "" +msgstr "Одобрение на искане" #: cms_toolbar.py:127 cms_toolbar.py:136 msgid "Logout" @@ -41,23 +44,23 @@ msgstr "Изход" #: cms_toolbar.py:152 msgid "Template" -msgstr "" +msgstr "Шаблон" #: cms_toolbar.py:160 msgid "Move/add Pages" -msgstr "" +msgstr "Премести/добави страници" #: cms_toolbar.py:165 msgid "Add child page" -msgstr "" +msgstr "Добави подстраница" #: cms_toolbar.py:171 msgid "Add sibling page" -msgstr "" +msgstr "Добави страница на същото ниво" #: cms_toolbar.py:177 msgid "Delete Page" -msgstr "Изтрий страницата" +msgstr "искане за изтриване" #: cms_toolbar.py:180 models/moderatormodels.py:45 #: templates/admin/cms/page/permissions.html:5 @@ -78,7 +81,7 @@ msgstr "Преглед на историята" #: cms_toolbar.py:205 msgid "Admin" -msgstr "" +msgstr "Администратор" #: plugin_base.py:65 msgid "Advanced options" @@ -98,7 +101,7 @@ msgstr "Слъг" #: admin/forms.py:62 msgid "The part of the title that is used in the URL" -msgstr "Часта от заглавието, показваща се в адреса" +msgstr "Частта от заглавието, която се използва в URL адреса" #: admin/forms.py:63 msgid "Language" @@ -125,8 +128,9 @@ msgid "Page Title" msgstr "Заглавие на страницата" #: admin/forms.py:138 -msgid "Overwrites what is displayed at the top of your browser or in bookmarks" -msgstr "Напишете показаното отгоре във Вашия браузър или бележки" +msgid "" +"Overwrites what is displayed at the top of your browser or in bookmarks" +msgstr "Изписва показаното отгоре във Вашия браузър или отметки" #: admin/forms.py:139 msgid "Application" @@ -138,12 +142,11 @@ msgstr "Прикачи приложение на тази страница." #: admin/forms.py:142 msgid "Overwrite URL" -msgstr "Напиши адрес" +msgstr "Напиши URL адрес" #: admin/forms.py:143 msgid "Keep this field empty if standard path should be used." -msgstr "" -"Оставете това поле празно, ако трябва да бъде използван стандартен път." +msgstr "Оставете това поле празно, ако трябва да бъде използван стандартен път." #: admin/forms.py:149 msgid "Redirect" @@ -151,28 +154,28 @@ msgstr "Пренасочване" #: admin/forms.py:150 msgid "Redirects to this URL." -msgstr "Пренасочи до тази страница." +msgstr "Пренасочва към този URL адрес" #: admin/forms.py:152 msgid "A description of the page sometimes used by search engines." -msgstr "Описание на страницата, използвано от търсещите машини." +msgstr "Описание на страницата, което понякога използват търсачките." #: admin/forms.py:154 msgid "A list of comma seperated keywords sometimes used by search engines." -msgstr "A list of comma separated keywords sometimes used by search engines." +msgstr "Списък с думи, разделени със запетая, който понякога използват търсачките." #: admin/forms.py:170 msgid "A page with this reverse URL id exists already." -msgstr "Страница със обратен адрес вече съществува." +msgstr "Страница с този обратен URL адрес вече съществува." #: admin/forms.py:178 msgid "Invalid URL, use /my/url format." -msgstr "Невалиден адрес, използвайте формат от типа на /моя/адрес" +msgstr "Невалиден URL адрес, използвайте формат от типа на /моя/адрес" #: admin/forms.py:181 -#, fuzzy, python-format +#, python-format msgid "Page with redirect url %r already exist" -msgstr "Друга страница със този слъг вече съществува" +msgstr "Страница с пренасочен url %r вече съществува" #: admin/forms.py:191 admin/forms.py:192 migrations/0001_initial.py:41 #: models/permissionmodels.py:16 @@ -183,22 +186,19 @@ msgstr "потребител" msgid "" "Add page permission requires also access to children, or descendants, " "otherwise added page can't be changed by its creator." -msgstr "" -"Add page permission requires also access to children, or descendants, " -"otherwise added page can't be changed by its creator." +msgstr "Правата за създаване на страница изискват достъп и до подстраниците. В противен случай добавената страница не може да бъде променяна от своя автор." #: admin/forms.py:221 msgid "Add page permission also requires edit page permission." msgstr "Правата за добавяне изискват и права за редактиране." #: admin/forms.py:248 -#, fuzzy msgid "can_view" -msgstr "виж" +msgstr "може да разглежда" #: admin/forms.py:260 msgid "Please select user or group first." -msgstr "Първо изберете потребител или група." +msgstr "Моля, първо изберете потребител или група." #: admin/forms.py:267 admin/forms.py:274 admin/forms.py:278 #: templates/admin/cms/page/change_form.html:67 @@ -223,14 +223,13 @@ msgstr "Възстанови (които и да е) страници" #: admin/forms.py:297 msgid "Notify user" -msgstr "Предопреди потребителя" +msgstr "Предупреди потребителя" #: admin/forms.py:298 msgid "" "Send email notification to user about username or password change. Requires " "user email." -msgstr "" -"Изпращането на имейл предупреждение на потребителя изисква неговото добавяне." +msgstr "Изпратете имейл предупреждение на потребителя относно промяна на потребителско име или парола. Изисква се имейл на потребителя." #: admin/forms.py:318 msgid "New password" @@ -242,18 +241,17 @@ msgstr "Потвърждение на новата парола" #: admin/forms.py:339 msgid "Email notification requires valid email address." -msgstr "И-мейл потвърждението изисква валиден имейл адрес." +msgstr "Имейл потвърждението изисква валиден имейл адрес." #: admin/forms.py:341 msgid "" "The permission to add new pages requires the permission to change pages!" -msgstr "Правото за добавяне изисква и право за редактиране." +msgstr "Правото за добавяне изисква и право за редактиране!" #: admin/forms.py:343 msgid "" "The permission to add new users requires the permission to change users!" -msgstr "" -"Правото за добавяне на потребители изисква и правото за тяхното редактиране." +msgstr "Правото за добавяне на нови потребители изисква и правото за тяхното редактиране!" #: admin/forms.py:345 msgid "To add permissions you also need to edit them!" @@ -265,9 +263,7 @@ msgstr "Основни настройки" #: admin/pageadmin.py:100 msgid "Note: This page reloads if you change the selection. Save it first." -msgstr "" -"Забележка: страницата презарежда ако промените значението. Запазете " -"промените първо." +msgstr "Забележка: страницата се презарежда ако промените значението. Запазете промените първо." #: admin/pageadmin.py:102 admin/pageadmin.py:154 msgid "Hidden" @@ -279,12 +275,11 @@ msgstr "Разширени настройки" #: admin/pageadmin.py:113 msgid "SEO Settings" -msgstr "SEO Настройки" +msgstr "SEO настройки" #: admin/pageadmin.py:299 -#, fuzzy msgid "You have no permission to change the template" -msgstr "Нямате право да променяте тази страница" +msgstr "Нямате право да променяте шаблон." #: admin/pageadmin.py:485 msgid "higher" @@ -292,11 +287,11 @@ msgstr "по-високо" #: admin/pageadmin.py:655 msgid "Database error" -msgstr "Грешка в БД" +msgstr "Грешка в базата данни" #: admin/pageadmin.py:855 msgid "Page was successfully approved." -msgstr "Страницата беше успешно удобрена." +msgstr "Страницата беше одобрена успешно." #: admin/pageadmin.py:927 #, python-format @@ -305,16 +300,16 @@ msgstr "%(name)s обект с основен ключ %(key)r не същест #: admin/pageadmin.py:933 msgid "There only exists one translation for this page" -msgstr "Съществува само един превод за тази страница." +msgstr "Съществува само един превод на тази страница." #: admin/pageadmin.py:969 #, python-format msgid "Title and plugins with language %(language)s was deleted" -msgstr "Заглавието и плъгините на %(language)s език бяха изтрити" +msgstr "Заглавието и добавките на %(language)s език бяха изтрити" #: admin/pageadmin.py:991 msgid "Are you sure?" -msgstr "Сигурен ли сте?" +msgstr "Сигурни ли сте?" #: admin/pageadmin.py:1052 msgid "You do not have permission to publish this page" @@ -325,18 +320,17 @@ msgid "You do not have permission to change this page's in_navigation status" msgstr "Нямате право да променяте статуса на навигацията на тази страница." #: admin/pageadmin.py:1079 -#, fuzzy msgid "You have no permission to add a plugin" -msgstr "Нямате право да променяте тази страница" +msgstr "Нямате право да слагате добавка." #: admin/pageadmin.py:1126 admin/pageadmin.py:1158 msgid "Language must be set to a supported language!" -msgstr "Езика трябва да бъде поддържан!" +msgstr "Избрания език трябва да бъде един от поддържаните!" #: admin/pageadmin.py:1138 #, python-format msgid "%(plugin_name)s plugin added to %(placeholder)s" -msgstr "%(plugin_name)s плъгин добавен в %(placeholder)s" +msgstr "%(plugin_name)s добавка е сложена в %(placeholder)s" #: admin/pageadmin.py:1156 msgid "You do not have permission to change this page" @@ -347,93 +341,82 @@ msgid "Language must be different than the copied language!" msgstr "Езикът трябва да е различен от копирания език!" #: admin/pageadmin.py:1166 -#, fuzzy msgid "You do not have permission to add plugins" -msgstr "Нямате право да променяте тази страница" +msgstr "Нямате право да слагате добавки." #: admin/pageadmin.py:1173 #, python-format msgid "Copied %(language)s plugins to %(placeholder)s" -msgstr "" +msgstr "Копирани са %(language)s добавки в %(placeholder)s" #: admin/pageadmin.py:1186 admin/pageadmin.py:1294 admin/pageadmin.py:1316 -#, fuzzy msgid "You have no permission to change this page" -msgstr "Нямате право да променяте тази страница" +msgstr "Нямате права да право да променяте тази страница." #: admin/pageadmin.py:1221 -#, fuzzy msgid "You have no permission to edit a plugin" -msgstr "Нямате право да променяте тази страница" +msgstr "Нямате право да редактирате добавка." #: admin/pageadmin.py:1256 #, python-format msgid "" "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -msgstr "" -"%(plugin_name)s плъгин беше редактиран в позиция %(position)s на " -"%(placeholder)s" +msgstr "%(plugin_name)s добавка беше редактирана в позиция %(position)s на %(placeholder)s" #: admin/pageadmin.py:1311 -#, fuzzy msgid "You have no permission to move a plugin" -msgstr "Нямате право да променяте тази страница" +msgstr "Нямате право да местите добавка." #: admin/pageadmin.py:1329 msgid "Plugins where moved" -msgstr "Плъгините бяха преместени" +msgstr "Добавките бяха преместени" #: admin/pageadmin.py:1343 -#, fuzzy msgid "You have no permission to remove a plugin" -msgstr "Нямате право да променяте тази страница" +msgstr "Нямате право да премахвате добавка" #: admin/pageadmin.py:1361 admin/placeholderadmin.py:292 #, python-format msgid "" "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " "deleted." -msgstr "" -"%(plugin_name)s плъгин в позиция %(position)s на %(placeholder)s беше изтрит." +msgstr "%(plugin_name)s добавка в позиция %(position)s на %(placeholder)s беше изтрита." #: admin/permissionadmin.py:72 msgid "View restriction" -msgstr "" +msgstr "Вижте забраната" #: admin/permissionadmin.py:73 msgid "View restrictions" -msgstr "" +msgstr "Вижте забраните" #: admin/permissionadmin.py:133 models/permissionmodels.py:75 msgid "Page permissions" -msgstr "Права на страницата" +msgstr "Права за страницата" #: admin/permissionadmin.py:134 msgid "User & Group permissions" -msgstr "Права на Потребител и Група" +msgstr "Права на потребители и групи" #: admin/permissionadmin.py:135 msgid "Page permissions management" -msgstr "Управление на правата на страницата" +msgstr "Управление на правата за страницата" #: admin/placeholderadmin.py:150 admin/placeholderadmin.py:191 -#, fuzzy msgid "You don't have permission to add content here." -msgstr "Нямате право да променяте тази страница" +msgstr "Нямате право да добавяте съдържание тук." #: admin/placeholderadmin.py:187 -#, fuzzy msgid "You don't have permission to add plugins" -msgstr "Нямате право да променяте тази страница" +msgstr "Нямате право да слагате добавки." #: admin/placeholderadmin.py:288 -#, fuzzy msgid "You don't have permission to delete a plugin" -msgstr "Нямате право да променяте тази страница" +msgstr "Нямате право да триете добавка." #: admin/useradmin.py:25 msgid "User details" -msgstr "Потребителска информация" +msgstr "Подробности за потребител" #: admin/useradmin.py:26 msgid "Groups" @@ -445,23 +428,23 @@ msgstr "Парола" #: admin/dialog/forms.py:9 msgid "Copy permissions" -msgstr "Копирай правата" +msgstr "Копирай права" #: admin/dialog/forms.py:16 msgid "Copy moderation" -msgstr "Копирай модерирането" +msgstr "Копирай модериране" #: conf/patch.py:28 msgid "Inherit the template of the nearest ancestor" -msgstr "Наследи темплейта от най-близкия родител" +msgstr "Наследи шаблона от най-близката главна страница" #: forms/fields.py:19 msgid "Select a valid site" -msgstr "" +msgstr "Изберете валиден сайт" #: forms/fields.py:20 msgid "Select a valid page" -msgstr "" +msgstr "Изберете валидна страница" #: forms/widgets.py:173 msgid "Add Another" @@ -503,7 +486,7 @@ msgstr "слот" #: migrations/0001_initial.py:18 models/pluginmodel.py:80 msgid "plugin_name" -msgstr "plugin name" +msgstr "име на добавка" #: migrations/0001_initial.py:25 migrations/0011_title_overwrites.py:12 #: migrations/0011_title_overwrites.py:15 models/titlemodels.py:11 @@ -574,7 +557,7 @@ msgstr "обръщане на url по id" #: migrations/0001_initial.py:59 models/pagemodel.py:84 msgid "login required" -msgstr "необходима е оторизация" +msgstr "необходимо е вписване" #: migrations/0001_initial.py:60 models/pagemodel.py:69 msgid "soft root" @@ -587,7 +570,7 @@ msgstr "крайна дата на публикацията" #: migrations/0001_initial.py:64 models/pagemodel.py:74 #: plugins/snippet/models.py:14 msgid "template" -msgstr "темплейт" +msgstr "шаблон" #: migrations/0001_initial.py:66 models/pagemodel.py:66 msgid "publication date" @@ -626,11 +609,11 @@ msgstr "Текуща страница" #: models/moderatormodels.py:26 msgid "Page children (immediate)" -msgstr "Деца на страницата (непосредствени)" +msgstr "Подстраници на текущата (непосредствени)" #: models/moderatormodels.py:27 msgid "Page and children (immediate)" -msgstr "Страница и деца (непосредствени)" +msgstr "Страница и подстраници (непосредствени)" #: models/moderatormodels.py:28 msgid "Page descendants" @@ -652,7 +635,7 @@ msgstr "Модерирай страницата" #: models/moderatormodels.py:51 templatetags/cms_admin.py:100 msgid "Moderate children" -msgstr "Модерирай децата" +msgstr "Модерирай подстраниците" #: models/moderatormodels.py:52 templatetags/cms_admin.py:101 msgid "Moderate descendants" @@ -660,7 +643,7 @@ msgstr "Модерирай потомците" #: models/moderatormodels.py:55 models/moderatormodels.py:56 msgid "PageModerator" -msgstr "" +msgstr "Модератор на страница" #: models/moderatormodels.py:99 msgid "created" @@ -672,19 +655,19 @@ msgstr "променена" #: models/moderatormodels.py:101 msgid "delete req." -msgstr "deletion request" +msgstr "искане за изтриване" #: models/moderatormodels.py:102 msgid "move req." -msgstr "move request" +msgstr "искане за преместване" #: models/moderatormodels.py:103 msgid "publish req." -msgstr "publish request" +msgstr "искане за публикуване" #: models/moderatormodels.py:104 msgid "unpublish req." -msgstr "unpublish request" +msgstr "искане за премахване на публикация" #: models/moderatormodels.py:105 models/pagemodel.py:47 msgid "approved" @@ -700,7 +683,7 @@ msgstr "Статуси на модератори" #: models/pagemodel.py:45 msgid "req. app." -msgstr "approval required" +msgstr "изисква се одобрение" #: models/pagemodel.py:46 templates/admin/cms/page/menu_item.html:44 #: templates/cms/toolbar/toolbar.html:57 utils/moderator.py:90 @@ -709,15 +692,15 @@ msgstr "изтрий" #: models/pagemodel.py:48 msgid "app. par." -msgstr "" +msgstr "app. par." #: models/pagemodel.py:52 msgid "for logged in users only" -msgstr "" +msgstr "достъп само за вписани потребители" #: models/pagemodel.py:53 msgid "for anonymous users only" -msgstr "" +msgstr "само за нерегистрирани потребители" #: models/pagemodel.py:61 msgid "created by" @@ -731,11 +714,11 @@ msgstr "променена от" msgid "" "When the page should go live. Status must be \"Published\" for page to go " "live." -msgstr "За да се вижда страницата статуса трябва да е \"Публикувана\"" +msgstr "За да се вижда страницата, статусът трябва да е \"Публикувана\"" #: models/pagemodel.py:67 msgid "When to expire the page. Leave empty to never expire." -msgstr "Кога да изтече страницата? Остави празно за да не изтича." +msgstr "Кога да изтече страницата? Остави празно, за да не изтича." #: models/pagemodel.py:69 msgid "All ancestors will not be displayed in the navigation" @@ -745,13 +728,11 @@ msgstr "Всички прародители няма да бъдат показ msgid "" "An unique identifier that is used with the page_url templatetag for linking " "to this page" -msgstr "" -"Уникален идентификатор, използван с page_url темплейт тага за създаване на " -"връзка до тази страница." +msgstr "Уникален идентификатор, използван с page_url етикета на темплейта за създаване на връзка до тази страница." #: models/pagemodel.py:71 msgid "attached menu" -msgstr "" +msgstr "прикачено меню" #: models/pagemodel.py:72 msgid "is published" @@ -775,11 +756,11 @@ msgstr "статус на модератор" #: models/pagemodel.py:85 msgid "menu visibility" -msgstr "" +msgstr "видимост на менюто" #: models/pagemodel.py:85 msgid "limit when this page is visible in the menu" -msgstr "" +msgstr "ограничи, когато тази страница е видима в менюто" #: models/pagemodel.py:105 msgid "pages" @@ -807,7 +788,7 @@ msgstr "може да променя разширени настройки" #: models/permissionmodels.py:25 msgid "can change permissions" -msgstr "може да променя разрешения" +msgstr "може да променя права" #: models/permissionmodels.py:25 msgid "on page level" @@ -815,7 +796,7 @@ msgstr "на ниво на страницата" #: models/permissionmodels.py:26 msgid "can move" -msgstr "може да се движи" +msgstr "може да премества" #: models/permissionmodels.py:27 msgid "can moderate" @@ -823,11 +804,11 @@ msgstr "може да модерира" #: models/permissionmodels.py:28 msgid "view restricted" -msgstr "" +msgstr "ограничен преглед" #: models/permissionmodels.py:28 msgid "frontend view restriction" -msgstr "" +msgstr "ограничение при разглеждане през публичния интерфейс" #: models/permissionmodels.py:51 msgid "can recover pages" @@ -835,11 +816,11 @@ msgstr "може да възтановява страници" #: models/permissionmodels.py:51 msgid "can recover any deleted page" -msgstr "може да възтановява всякаква изтрита страница" +msgstr "може да възстановява всяка изтрита страница" #: models/permissionmodels.py:52 msgid "If none selected, user haves granted permissions to all sites." -msgstr "" +msgstr "Ако няма избрани, потребителят има достъп до всички сайтове." #: models/permissionmodels.py:52 msgid "sites" @@ -855,7 +836,7 @@ msgstr "Глобални права на страниците" #: models/permissionmodels.py:68 templates/admin/cms/page/permissions.html:15 msgid "Grant on" -msgstr "" +msgstr "Дай права" #: models/permissionmodels.py:74 msgid "Page permission" @@ -884,7 +865,7 @@ msgstr "широчина" #: models/pluginmodel.py:140 msgid "" -msgstr "" +msgstr "<Празно>" #: models/titlemodels.py:12 msgid "overwrite the title in the menu" @@ -909,7 +890,7 @@ msgstr "файл" #: plugins/file/templates/cms/plugins/file.html:6 msgid "file missing!" -msgstr "" +msgstr "файлът липсва!" #: plugins/flash/cms_plugins.py:9 msgid "Flash" @@ -927,12 +908,12 @@ msgstr "височина" #: plugins/flash/templates/cms/plugins/flash.html:40 #: plugins/video/templates/cms/plugins/video.html:60 msgid "Missing flash plugin. Please download the latest Adobe Flash Player: " -msgstr "" +msgstr "Липсваща добавка. Моля, изтеглете последната версия на Adobe Flash Player" #: plugins/flash/templates/cms/plugins/flash.html:42 #: plugins/video/templates/cms/plugins/video.html:62 msgid "Get Adobe Flash Player" -msgstr "" +msgstr "Изтеглете Adobe Flash Player" #: plugins/googlemap/cms_plugins.py:10 msgid "Google Map" @@ -968,8 +949,7 @@ msgstr "ширина" #: plugins/googlemap/models.py:19 msgid "Use latitude & longitude to fine tune the map possiton." -msgstr "" -"Използвайте latitude & longitude за да определите позицията на картата." +msgstr "Използвайте latitude & longitude, за да определите позицията на картата." #: plugins/googlemap/models.py:20 msgid "longitude" @@ -977,7 +957,7 @@ msgstr "дължина" #: plugins/googlemap/models.py:22 msgid "route planer title" -msgstr "" +msgstr "route planer title" #: plugins/googlemap/models.py:22 msgid "Calculate your fastest way to here" @@ -985,7 +965,7 @@ msgstr "Изчисли най-бързия път до тук" #: plugins/googlemap/models.py:23 msgid "route planer" -msgstr "" +msgstr "route planer" #: plugins/googlemap/models.py:30 msgid "Map" @@ -993,7 +973,7 @@ msgstr "Карта" #: plugins/googlemap/templates/cms/plugins/googlemap.html:76 msgid "Your address: " -msgstr "" +msgstr "Вашият адрес:" #: plugins/googlemap/templates/cms/plugins/googlemap.html:78 msgid "Calculate route" @@ -1001,25 +981,25 @@ msgstr "Изчисли маршрута" #: plugins/inherit/cms_plugins.py:17 msgid "Inherit Plugins from Page" -msgstr "Наследяване на плъгини от страница" +msgstr "Наследяване на добавки от страница" #: plugins/inherit/forms.py:23 msgid "Language or Page must be filled out" -msgstr "" +msgstr "Поле \"Език\" или \"Страница\" трябва да бъде попълнено" #: plugins/inherit/models.py:10 msgid "" "Choose a page to include its plugins into this placeholder, empty will " "choose current page" -msgstr "" +msgstr "Изберете страница за включване на добавки на това място; ако оставите празно ще бъде използвана текущата страница." #: plugins/inherit/models.py:11 msgid "Optional: the language of the plugins you want" -msgstr "" +msgstr "По избор: езикът на добавките, които искате." #: plugins/link/cms_plugins.py:12 msgid "Link" -msgstr "Линк" +msgstr "Връзка" #: plugins/link/models.py:10 plugins/link/migrations/0001_initial.py:18 #: plugins/link/migrations/0004_larger_link_names.py:11 @@ -1036,15 +1016,15 @@ msgstr "връзка" #: plugins/link/models.py:12 msgid "A link to a page has priority over a text link." -msgstr "Линк до страницата има приоритет над текстов линк." +msgstr "Връзка до страницата е с приоритет пред текстова връзка." #: plugins/link/models.py:13 msgid "mailto" -msgstr "email address" +msgstr "email адрес" #: plugins/link/models.py:13 msgid "An email adress has priority over a text link." -msgstr "Имейл адрес има приоритет над текстов линк." +msgstr "Email адрес има приоритет над текстова връзка." #: plugins/picture/cms_plugins.py:9 msgid "Picture" @@ -1052,7 +1032,7 @@ msgstr "Картинка" #: plugins/picture/models.py:14 msgid "center" -msgstr "" +msgstr "център" #: plugins/picture/models.py:15 msgid "left" @@ -1069,7 +1049,7 @@ msgstr "картинка" #: plugins/picture/models.py:21 plugins/picture/models.py:22 msgid "if present image will be clickable" -msgstr "ако може да се натиска настоящата снимка" +msgstr "ако може да се натиска върху настоящата снимка" #: plugins/picture/models.py:23 plugins/picture/migrations/0001_initial.py:19 msgid "alternate text" @@ -1094,12 +1074,12 @@ msgstr "страна" #: plugins/snippet/cms_plugins.py:12 plugins/snippet/models.py:24 #: plugins/snippet/models.py:32 msgid "Snippet" -msgstr "Снипет" +msgstr "Изрезка" #: plugins/snippet/cms_plugins.py:30 #, python-format msgid "Template %(template)s does not exist." -msgstr "Шаблона %(template)s не съществува." +msgstr "Шаблонът %(template)s не съществува." #: plugins/snippet/models.py:13 plugins/snippet/migrations/0001_initial.py:18 msgid "HTML" @@ -1108,23 +1088,23 @@ msgstr "HTML" #: plugins/snippet/models.py:15 msgid "" "Enter a template (i.e. \"snippets/plugin_xy.html\") which will be rendered. " -msgstr "" +msgstr "Въведете шаблон (i.e. \"snippets/plugin_xy.html\") , който да бъде зает." #: plugins/snippet/models.py:25 msgid "Snippets" -msgstr "" +msgstr "Изрезки" #: plugins/teaser/cms_plugins.py:8 msgid "Teaser" -msgstr "" +msgstr "Подсказка" #: plugins/teaser/models.py:14 msgid "If present image will be clickable" -msgstr "Ако настоящата снимка се натиска" +msgstr "Ако върху настоящата снимка се натиска" #: plugins/teaser/models.py:19 msgid "If present image will be clickable." -msgstr "Ако снимката ще се натиска" +msgstr "Ако върху снимката ще се натиска" #: plugins/teaser/templates/cms/plugins/teaser.html:11 #: templates/cms/toolbar/toolbar.html:59 @@ -1152,13 +1132,13 @@ msgstr "Моля, изберете тип на добавката." #: plugins/text/templates/cms/plugins/widgets/tinymce.html:54 #: plugins/text/templates/cms/plugins/widgets/wymeditor.html:110 msgid "Edit selected plugin" -msgstr "Промени избраната добавка" +msgstr "Редактирайте избраната добавка" #: plugins/text/templates/cms/plugins/widgets/tinymce.html:58 #: plugins/text/templates/cms/plugins/widgets/tinymce.html:124 #: plugins/text/templates/cms/plugins/widgets/wymeditor.html:85 msgid "Text editor does not support editing objects." -msgstr "Текстовия редактор не поддържа редактиране на обекти." +msgstr "Текстовият редактор не поддържа редактиране на обекти." #: plugins/text/templates/cms/plugins/widgets/tinymce.html:63 #: plugins/text/templates/cms/plugins/widgets/tinymce.html:129 @@ -1169,17 +1149,17 @@ msgstr "Няма избран обект." #: plugins/text/templates/cms/plugins/widgets/tinymce.html:112 #: plugins/text/templates/cms/plugins/widgets/wymeditor.html:73 msgid "Text editor does not support inserting objects." -msgstr "Текстовия редактор не поддържа вкарване на обекти." +msgstr "Текстовият редактор не поддържа поставяне на обекти." #: plugins/text/templates/cms/plugins/widgets/tinymce.html:133 #: plugins/text/templates/cms/plugins/widgets/wymeditor.html:94 msgid "Not a plugin object" -msgstr "Не е плъгин обект" +msgstr "Не е обект на добавка" #: plugins/text/templates/cms/plugins/widgets/wymeditor.html:106 #: templates/admin/cms/page/widgets/installed_plugins_inc.html:4 msgid "Available Plugins" -msgstr "Достъпни плъгини" +msgstr "Достъпни добавки" #: plugins/text/templates/cms/plugins/widgets/wymeditor.html:109 msgid "Insert plugin" @@ -1192,7 +1172,7 @@ msgstr "Twitter" #: plugins/twitter/cms_plugins.py:23 msgid "Twitter Search" -msgstr "" +msgstr "Търсене в Twitter" #: plugins/twitter/models.py:7 msgid "twitter user" @@ -1204,7 +1184,7 @@ msgstr "количество" #: plugins/twitter/models.py:8 plugins/twitter/models.py:17 msgid "Number of entries to display" -msgstr "Количество елементи за показване" +msgstr "Брой елементи за показване" #: plugins/twitter/models.py:9 msgid "link hint" @@ -1212,45 +1192,42 @@ msgstr "подсказка на връзката" #: plugins/twitter/models.py:9 msgid "If given, the hint is displayed as link to your Twitter profile." -msgstr "" -"Ако бъде предоставено, подсказката ще бъде показана като линк до Вашия " -"Twitter профил." +msgstr "Ако бъде предоставено, подсказката ще бъде показана като връзка към Вашия Twitter профил." #: plugins/twitter/models.py:16 msgid "query" -msgstr "" +msgstr "заявка" #: plugins/twitter/models.py:16 msgid "" "Example: \"brains AND zombies AND from:umbrella AND to:nemesis\": tweets " "from the user \"umbrella\" to the user \"nemesis\" that contain the words " "\"brains\" and \"zombies\"" -msgstr "" +msgstr "Пример: \"усмивки AND целувки AND from:снежинка AND to:капка\": изпраща туит от потребител \"снежинка\" до потребител \"капка\", което съдържа думите \"усмивки\" and \"целувки\"" #: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:12 msgid "we said," -msgstr "" +msgstr "написахме," #: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:13 msgid "we" -msgstr "" +msgstr "ние" #: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:14 msgid "we were" -msgstr "" +msgstr "бяхме" #: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:15 msgid "we replied to" -msgstr "" +msgstr "отговорихме на " #: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:16 msgid "we were checking out" -msgstr "" +msgstr "разгледахме" #: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:17 -#, fuzzy msgid "loading tweets..." -msgstr "Зареждане..." +msgstr "зареждане на туитове..." #: plugins/video/cms_plugins.py:10 msgid "Video" @@ -1258,29 +1235,29 @@ msgstr "Видео" #: plugins/video/cms_plugins.py:42 msgid "Color Settings" -msgstr "" +msgstr "Настройки на цвят" #: plugins/video/models.py:9 msgid "movie file" -msgstr "" +msgstr "премести заявка" #: plugins/video/models.py:9 msgid "use .flv file or h264 encoded video file" -msgstr "" +msgstr "използвайте видео файлове във формат .FLV или видео файл кодиран в h264 формат" #: plugins/video/models.py:10 msgid "movie url" -msgstr "" +msgstr "премести заявка" #: plugins/video/models.py:10 msgid "" -"vimeo or youtube video url. Example: http://www.youtube.com/watch?v=-" -"iJ7bs4mTUY" -msgstr "" +"vimeo or youtube video url. Example: " +"http://www.youtube.com/watch?v=-iJ7bs4mTUY" +msgstr "адрес на видео във Vimeo или YouTube, например http://www.youtube.com/watch?v=-iJ7bs4mTUY" #: plugins/video/models.py:11 msgid "preview image file" -msgstr "" +msgstr "преглед на файл с изображение" #: plugins/video/models.py:16 msgid "auto play" @@ -1288,7 +1265,7 @@ msgstr "автоматично започване" #: plugins/video/models.py:17 msgid "auto hide" -msgstr "" +msgstr "скрий автоматично" #: plugins/video/models.py:18 msgid "fullscreen" @@ -1300,42 +1277,42 @@ msgstr "циклично" #: plugins/video/models.py:22 msgid "background color" -msgstr "" +msgstr "цвят на фона" #: plugins/video/models.py:22 plugins/video/models.py:23 #: plugins/video/models.py:24 plugins/video/models.py:25 #: plugins/video/models.py:26 plugins/video/models.py:27 #: plugins/video/models.py:28 plugins/video/models.py:29 msgid "Hexadecimal, eg ff00cc" -msgstr "" +msgstr "Шестнадесетично представяне, например FF00CC" #: plugins/video/models.py:23 msgid "text color" -msgstr "" +msgstr "цвят на текста" #: plugins/video/models.py:24 msgid "seekbar color" -msgstr "" +msgstr "цвят на фона" #: plugins/video/models.py:25 msgid "seekbar bg color" -msgstr "" +msgstr "цвят на фона" #: plugins/video/models.py:26 msgid "loadingbar color" -msgstr "" +msgstr "цвят на индикатора за зареждане" #: plugins/video/models.py:27 msgid "button out color" -msgstr "" +msgstr "цвят на бутона" #: plugins/video/models.py:28 msgid "button over color" -msgstr "" +msgstr "цвят на бутона при преминаване на мишката" #: plugins/video/models.py:29 msgid "button highlight color" -msgstr "" +msgstr "цвят на бутона при активен бутон" #: templates/admin/page_submit_line.html:3 #: templates/admin/cms/page/change_form.html:274 @@ -1354,20 +1331,18 @@ msgstr "Запази като нов" #: templates/admin/page_submit_line.html:12 msgid "Save and add another" -msgstr "Запази и добави нов" +msgstr "Запазете и добавете нов" #: templates/admin/page_submit_line.html:13 #: templates/admin/cms/page/change_form.html:275 msgid "Save and continue editing" -msgstr "Запази и продължи да редактираш" +msgstr "Запазете и продължете да редактирате" #: templates/admin/cms/mail/approvement_required.html:5 #, python-format msgid "" "Page %(page)s may require approvement by you." -msgstr "" -"Страницата %(page)s може да изисква " -"потвърждение от Вас." +msgstr "Страницата %(page)s може да изисква потвърждение от Вас." #: templates/admin/cms/mail/approvement_required.html:8 msgid "Last changes" @@ -1402,7 +1377,7 @@ msgstr "Начало" #: templates/admin/cms/page/change_form.html:73 msgid "Approve page deletion" -msgstr "Потвърди изтриването на страницата" +msgstr "Потвърдете изтриването на страницата" #: templates/admin/cms/page/change_form.html:79 #, python-format @@ -1415,15 +1390,15 @@ msgstr "(можете да извършвате действия директн #: templates/admin/cms/page/change_form.html:93 msgid "Remove delete request" -msgstr "Изтрий заявката за изтриване" +msgstr "Премахнете заявката за изтриване" #: templates/admin/cms/page/change_form.html:95 msgid "Approve delete" -msgstr "Потвърди изтриването" +msgstr "Потвърдете изтриването" #: templates/admin/cms/page/change_form.html:95 msgid "Approve" -msgstr "Потвърди" +msgstr "Потвърдете" #: templates/admin/cms/page/change_form.html:95 #: templates/admin/cms/page/change_form.html:96 @@ -1448,8 +1423,8 @@ msgstr "Виж на сайта" #: templates/admin/cms/page/plugin_change_form.html:84 msgid "Please correct the error below." msgid_plural "Please correct the errors below." -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Моля, поправете грешката отдолу." +msgstr[1] "Моля, поправете грешките отдолу." #: templates/admin/cms/page/change_form.html:150 msgid "All permissions" @@ -1470,11 +1445,11 @@ msgstr "Статуси на страниците" msgid "" "This page must be moderated at level %(moderation_level)s, post a message " "for moderator." -msgstr "" +msgstr "Тази страница може да бъде модерирана от модератор с ниво %(moderation_level)s; Моля, свържете се с модератор с такива права." #: templates/admin/cms/page/change_form.html:187 msgid "Request approvemet" -msgstr "Поискайте одобряване" +msgstr "Одобрение на искане" #: templates/admin/cms/page/change_list.html:3 msgid "List of pages" @@ -1486,7 +1461,7 @@ msgstr "Успешно преместено" #: templates/admin/cms/page/change_list.html:63 msgid "An error occured. Please reload the page" -msgstr "Станала е грешка, презаредете страницата." +msgstr "Грешка. Моля, презаредете страницата." #: templates/admin/cms/page/change_list.html:84 #, python-format @@ -1540,7 +1515,7 @@ msgstr "край" #: templates/admin/cms/page/change_list_tree.html:17 msgid "restricted" -msgstr "" +msgstr "ограничение" #: templates/admin/cms/page/change_list_tree.html:19 msgid "last changes" @@ -1583,7 +1558,7 @@ msgstr "начало" #: templates/admin/cms/page/menu_item.html:26 #, python-format msgid "Edit this page in %(language)s " -msgstr "Редактирай тази страница на %(language)s" +msgstr "Редактирайте тази страница на %(language)s език" #: templates/admin/cms/page/menu_item.html:33 msgid "Cut" @@ -1604,7 +1579,7 @@ msgstr "копирай" #: templates/admin/cms/page/menu_item.html:37 #: templates/admin/cms/page/menu_item.html:41 msgid "Add Child" -msgstr "Добави дете" +msgstr "Добави подстраница" #: templates/admin/cms/page/menu_item.html:37 #: templates/admin/cms/page/menu_item.html:41 @@ -1627,7 +1602,7 @@ msgstr "Не публикувай" #: templates/admin/cms/page/menu_item.html:79 msgid "View on page" -msgstr "Виж на страницата" +msgstr "Вижте на страницата" #: templates/admin/cms/page/moderation_messages.html:4 msgid "Action" @@ -1663,16 +1638,15 @@ msgstr "Може да публикува" #: templates/admin/cms/page/permissions.html:12 msgid "Can change permissions" -msgstr "Може да сменя правата" +msgstr "Може да променя правата" #: templates/admin/cms/page/permissions.html:13 msgid "Can move" msgstr "Може да мести" #: templates/admin/cms/page/permissions.html:14 -#, fuzzy msgid "Can view" -msgstr "Може да мести" +msgstr "Може да разглежда" #: templates/admin/cms/page/permissions.html:21 #: templates/admin/cms/page/permissions.html:22 @@ -1694,15 +1668,15 @@ msgstr "Страницата не наследява права." #: templates/admin/cms/page/plugin_change_form.html:114 #: templates/cms/toolbar/toolbar.html:24 msgid "Cancel" -msgstr "" +msgstr "Отказ" #: templates/admin/cms/page/plugin_forms_history.html:9 msgid "An old revision of a plugin can not be saved!" -msgstr "Стара версия на плъгина не може да бъде запазена!" +msgstr "Стара версия на добавка не може да бъде запазена!" #: templates/admin/cms/page/plugin_forms_ok.html:21 msgid "Plugin saved successfully." -msgstr "Плъгина е преместен успешно." +msgstr "Добавката е преместена успешно." #: templates/admin/cms/page/recover_form.html:17 #, python-format @@ -1711,7 +1685,7 @@ msgstr "Възстанови изтритата %(verbose_name)s" #: templates/admin/cms/page/recover_form.html:24 msgid "Press the save button below to recover this version of the object." -msgstr "Натиснете бутона за запазване за да възстановите версията на обекта." +msgstr "Натиснете бутона за запазване, за да възстановите версията на обекта." #: templates/admin/cms/page/revision_form.html:11 #, python-format @@ -1720,7 +1694,7 @@ msgstr "Възстанови %(verbose_name)s" #: templates/admin/cms/page/revision_form.html:24 msgid "Press the save button below to revert to this version of the object." -msgstr "Натиснете бутона за запазване за да върнете до тази версия на обекта." +msgstr "Натиснете бутона за запазване, за да върнете до тази версия на обекта." #: templates/admin/cms/page/dialog/copy.html:4 msgid "Copy options" @@ -1732,11 +1706,11 @@ msgstr "Изберете опции за копиране" #: templates/admin/cms/page/widgets/installed_plugins_inc.html:7 msgid "Generic" -msgstr "" +msgstr "Общ" #: templates/admin/cms/page/widgets/installed_plugins_inc.html:15 msgid "Add Plugin" -msgstr "Добави плъгин" +msgstr "Сложи добавка" #: templates/admin/cms/page/widgets/installed_plugins_inc.html:18 msgid "From Language" @@ -1744,43 +1718,43 @@ msgstr "От език" #: templates/admin/cms/page/widgets/installed_plugins_inc.html:25 msgid "Copy Plugins" -msgstr "Копирай Плъгини" +msgstr "Копирай добавки" #: templates/admin/cms/page/widgets/plugin_editor.html:12 msgid "You must save the page first to add plugins." -msgstr "Първо трябва да запазите страницата за да добавяте плъгини." +msgstr "Първо трябва да запазите страницата, за да можете да слагате добавки." #: templates/admin/cms/page/widgets/plugin_editor.html:15 msgid "No Plugin selected. Selected one on the left side" -msgstr "Няма избрани плъгини. Изберете един отляво." +msgstr "Няма избрани добавки. Изберете една отляво." #: templates/admin/cms/page/widgets/plugin_editor.html:17 msgid "No Plugins present. Add a plugin to this placeholder-slot." -msgstr "В момента няма плъгини. Добавете за съответния placeholder." +msgstr "В момента няма добавки. Сложете за съответното място." #: templates/cms/toolbar/placeholder.html:32 msgid "Available plugins" -msgstr "" +msgstr "Достъпни добавки" #: templates/cms/toolbar/toolbar.html:22 msgid "The selected element can not be moved to the desired location." -msgstr "" +msgstr "Избраният елемент не може да бъде преместен на желаното място" #: templates/cms/toolbar/toolbar.html:23 msgid "Are you sure you want to delete this plugin?" -msgstr "Наистина ли искате да изтриете този плъгин?" +msgstr "Наистина ли искате да изтриете тази добавка?" #: templates/cms/toolbar/toolbar.html:55 msgid "up" -msgstr "" +msgstr "нагоре" #: templates/cms/toolbar/toolbar.html:56 msgid "down" -msgstr "" +msgstr "надолу" #: templates/cms/toolbar/toolbar.html:61 msgid "Move to placeholder" -msgstr "" +msgstr "Премести на друго място" #: templates/cms/toolbar/items/login.html:5 msgid "Username" @@ -1788,9 +1762,8 @@ msgstr "Потребителско име" #: templates/cms/toolbar/items/login.html:10 #: templates/cms/toolbar/items/login.html:12 -#, fuzzy msgid "Login" -msgstr "влез" +msgstr "Вписване" #: templates/cms/toolbar/items/status.html:2 msgid "Status" @@ -1798,73 +1771,66 @@ msgstr "Статус" #: templates/cms/toolbar/items/switcher.html:4 msgid "Switch on/off" -msgstr "" +msgstr "Включване/изключване" #: templatetags/cms_admin.py:86 #, python-format msgid "%(icon)s" -msgstr "" +msgstr "%(icon)s" #: templatetags/cms_admin.py:99 msgid "Unbind page moderation" -msgstr "Развържи страницата за модериране" +msgstr "Позволи модериране на страница" #: templatetags/cms_admin.py:100 msgid "Unbind children moderation" -msgstr "Развържи модерирането на децата" +msgstr "Позволи модериране на подстраници" #: templatetags/cms_admin.py:101 msgid "Unbind descendants moderation" -msgstr "Развържи модерирането на потомците" +msgstr "Позволи модериране на потомците" #: templatetags/cms_tags.py:78 #, python-format msgid "Page not found on %(domain)s" -msgstr "" +msgstr "Страницата не е открита на %(domain)s" #: templatetags/cms_tags.py:79 #, python-format msgid "" -"A template tag couldn't find the page with lookup arguments `" -"%(page_lookup)s\n" +"A template tag couldn't find the page with lookup arguments `%(page_lookup)s\n" "`. The URL of the request was: http://%(host)s%(path)s" -msgstr "" +msgstr "Не може да бъде намерена страница при търсене с `%(page_lookup)s` . URL адресът на заявката е бил: http://%(host)s%(path)s" #: utils/mail.py:38 msgid "CMS - your user account was created." -msgstr "CMS — Вашия потребителски профил беше създаден." +msgstr "CMS — Вашият потребителски профил беше създаден." #: utils/mail.py:40 msgid "CMS - your user account was changed." -msgstr "CMS — Вашия потребителски профил беше променен." +msgstr "CMS — Вашият потребителски профил беше променен." #: utils/moderator.py:83 msgid "parent first" -msgstr "първо родителите" +msgstr "първо главните страници" #: utils/moderator.py:90 msgid "approve" -msgstr "потвърди" +msgstr "одобри" #: utils/moderator.py:251 #, python-format msgid "CMS - Page %s requires approvement." -msgstr "CMS - Страницата %s изисква одобряване." - -#~ msgid "Missing flash plugin." -#~ msgstr "Липсващ flash Плъгин" - -#~ msgid "history" -#~ msgstr "история" +msgstr "CMS - Страницата %s изисква одобрение." -#~ msgid "Close" -#~ msgstr "Затвори" +#~ msgid "move" +#~ msgstr "move request" -#~ msgid "Settings" -#~ msgstr "Настройки" +#~ msgid "sidebar column" +#~ msgstr "background color" #~ msgid "fgcolor" #~ msgstr "foreground color" #~ msgid "Wanted language has not been translated yet." -#~ msgstr "Желания език все още не е преведен.." +#~ msgstr "Requested language has not been translated yet." diff --git a/cms/locale/bg/LC_MESSAGES/djangojs.po b/cms/locale/bg/LC_MESSAGES/djangojs.po index a65a75e306e..4a426fe21b1 100644 --- a/cms/locale/bg/LC_MESSAGES/djangojs.po +++ b/cms/locale/bg/LC_MESSAGES/djangojs.po @@ -1,40 +1,40 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# +# Translators: +# Boris Chervenkov , 2012. +# suleyman , 2011. msgid "" msgstr "" "Project-Id-Version: django-cms\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-14 09:45-0500\n" -"PO-Revision-Date: 2011-03-22 15:38+0000\n" -"Last-Translator: ojii \n" +"Report-Msgid-Bugs-To: https://github.com/divio/django-cms/issues\n" +"POT-Creation-Date: 2011-08-14 09:44-0500\n" +"PO-Revision-Date: 2012-01-26 13:39+0000\n" +"Last-Translator: Boris Chervenkov \n" "Language-Team: LANGUAGE \n" -"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" #: static/cms/js/change_form.js:31 msgid "" "Are you sure you want to change the %(field_name)s without saving the page " "first?" -msgstr "" -"Наистина ли искате да промените %(field_name)s и без запазване на страница " -"първа?" +msgstr "Наистина ли искате да промените %(field_name)s без да запазите страницата първо?" #: static/cms/js/change_form.js:69 msgid "" "Not all plugins are saved. Are you sure you want to save the page?\n" "All unsaved plugin content will tried to save." -msgstr "" +msgstr "Не всички добавки са запазени. Сигурни ли сте, че искате да запазите страницата? Всяко незапазено съдържание на добавка ще бъде изгубено." #: static/cms/js/change_form.js:127 msgid "Are you sure you want to change tabs without saving the page first?" -msgstr "" -"Наистина ли искате да промените раздели, без да записвате страница първа?" +msgstr "Наистина ли искате да промените раздели без да запазите страницата първо?" #: static/cms/js/plugin_editor.js:132 msgid "Are you sure you want to delete this plugin?" -msgstr "Наистина ли искате да изтриете този плъгин?" +msgstr "Наистина ли искате да изтриете тази добавка?" diff --git a/cms/locale/ca/LC_MESSAGES/django.po b/cms/locale/ca/LC_MESSAGES/django.po index b4c058df3b7..6912f490f11 100644 --- a/cms/locale/ca/LC_MESSAGES/django.po +++ b/cms/locale/ca/LC_MESSAGES/django.po @@ -1,19 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# +# Translators: +# Roger Pons , 2012. msgid "" msgstr "" "Project-Id-Version: django-cms\n" -"Report-Msgid-Bugs-To: \n" +"Report-Msgid-Bugs-To: https://github.com/divio/django-cms/issues\n" "POT-Creation-Date: 2011-08-14 09:47-0500\n" -"PO-Revision-Date: 2011-03-22 15:24+0000\n" -"Last-Translator: ojii \n" +"PO-Revision-Date: 2012-06-05 18:51+0000\n" +"Last-Translator: Roger Pons \n" "Language-Team: divio.ch \n" -"Language: ca\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" "X-Poedit-Country: SWITZERLAND\n" "X-Poedit-Language: English\n" @@ -25,7 +27,7 @@ msgstr "Mode d'edició" #: cms_toolbar.py:77 msgid "django CMS" -msgstr "" +msgstr "django CMS" #: cms_toolbar.py:108 templates/admin/cms/page/menu_item.html:73 msgid "Publish" @@ -33,7 +35,7 @@ msgstr "Publicar" #: cms_toolbar.py:112 msgid "Request Approval" -msgstr "" +msgstr "Sol·licitud d'aprovació" #: cms_toolbar.py:127 cms_toolbar.py:136 msgid "Logout" @@ -78,7 +80,7 @@ msgstr "Veure l'historial" #: cms_toolbar.py:205 msgid "Admin" -msgstr "" +msgstr "Admin" #: plugin_base.py:65 msgid "Advanced options" @@ -125,10 +127,9 @@ msgid "Page Title" msgstr "Títol de la pàgina" #: admin/forms.py:138 -msgid "Overwrites what is displayed at the top of your browser or in bookmarks" -msgstr "" -"Sobreescriu el que es mostra a la part superior del navegador o en els seus " -"favorits" +msgid "" +"Overwrites what is displayed at the top of your browser or in bookmarks" +msgstr "Sobreescriu el que es mostra a la part superior del navegador o en els seus favorits" #: admin/forms.py:139 msgid "Application" @@ -160,9 +161,7 @@ msgstr "Una descripció de la pàgina a vegades utilitzada pels motors de cerca. #: admin/forms.py:154 msgid "A list of comma seperated keywords sometimes used by search engines." -msgstr "" -"Una llista de paraules clau separades per comes a vegades utilitzada pels " -"motors de cerca." +msgstr "Una llista de paraules clau separades per comes a vegades utilitzada pels motors de cerca." #: admin/forms.py:170 msgid "A page with this reverse URL id exists already." @@ -173,9 +172,9 @@ msgid "Invalid URL, use /my/url format." msgstr "URL no vàlida, utilitzeu el format /meu/url. " #: admin/forms.py:181 -#, fuzzy, python-format +#, python-format msgid "Page with redirect url %r already exist" -msgstr "Una altra pàgina amb aquest slug ja existeix" +msgstr "La pàgina amb redirecció a la url %r ja existeix" #: admin/forms.py:191 admin/forms.py:192 migrations/0001_initial.py:41 #: models/permissionmodels.py:16 @@ -186,18 +185,15 @@ msgstr "usuari" msgid "" "Add page permission requires also access to children, or descendants, " "otherwise added page can't be changed by its creator." -msgstr "" -"Afegir el permís pàgina requereix també l'accés als fills, o descendents, en " -"cas contrari la pàgina afegida no podria ser modificada pel seu creador." +msgstr "Afegir el permís pàgina requereix també l'accés als fills, o descendents, en cas contrari la pàgina afegida no podria ser modificada pel seu creador." #: admin/forms.py:221 msgid "Add page permission also requires edit page permission." msgstr "El permís Afegir pàgina també requereix permisos d'edició de pàgina." #: admin/forms.py:248 -#, fuzzy msgid "can_view" -msgstr "veure" +msgstr "pot_veure" #: admin/forms.py:260 msgid "Please select user or group first." @@ -232,9 +228,7 @@ msgstr "Notificar a l'usuari" msgid "" "Send email notification to user about username or password change. Requires " "user email." -msgstr "" -"Enviar notificació per correu electrònic a l'usuari sobre el canvi nom " -"d'usuari o contrasenya. Requereix del correu electrònic de l'usuari." +msgstr "Enviar notificació per correu electrònic a l'usuari sobre el canvi nom d'usuari o contrasenya. Requereix del correu electrònic de l'usuari." #: admin/forms.py:318 msgid "New password" @@ -246,21 +240,17 @@ msgstr "Nova confirmació de la contrasenya" #: admin/forms.py:339 msgid "Email notification requires valid email address." -msgstr "" -"Notificació per correu electrònic requereix d'una adreça de correu " -"electrònic vàlida." +msgstr "Notificació per correu electrònic requereix d'una adreça de correu electrònic vàlida." #: admin/forms.py:341 msgid "" "The permission to add new pages requires the permission to change pages!" -msgstr "" -"El permís per afegir noves pàgines requereix el permís per modificar pàgines!" +msgstr "El permís per afegir noves pàgines requereix el permís per modificar pàgines!" #: admin/forms.py:343 msgid "" "The permission to add new users requires the permission to change users!" -msgstr "" -"El permís per afegir nous usuaris requereix el permís per modificar usuaris!" +msgstr "El permís per afegir nous usuaris requereix el permís per modificar usuaris!" #: admin/forms.py:345 msgid "To add permissions you also need to edit them!" @@ -272,9 +262,7 @@ msgstr "Configuració bàsica" #: admin/pageadmin.py:100 msgid "Note: This page reloads if you change the selection. Save it first." -msgstr "" -"Nota: Aquesta plana es torna a carregar si canvia la selecció. Desa-la " -"primer." +msgstr "Nota: Aquesta plana es torna a carregar si canvia la selecció. Desa-la primer." #: admin/pageadmin.py:102 admin/pageadmin.py:154 msgid "Hidden" @@ -289,9 +277,8 @@ msgid "SEO Settings" msgstr "Ajustaments de SEO" #: admin/pageadmin.py:299 -#, fuzzy msgid "You have no permission to change the template" -msgstr "No tens permisos per modificar aquesta pàgina" +msgstr "Sense permisos per modificar la plantilla" #: admin/pageadmin.py:485 msgid "higher" @@ -332,9 +319,8 @@ msgid "You do not have permission to change this page's in_navigation status" msgstr "No tens permisos per canviar l'estat d'aquesta pàgina a la navegació" #: admin/pageadmin.py:1079 -#, fuzzy msgid "You have no permission to add a plugin" -msgstr "No tens permisos per modificar aquesta pàgina" +msgstr "Sense permisos per afegir un plugin" #: admin/pageadmin.py:1126 admin/pageadmin.py:1158 msgid "Language must be set to a supported language!" @@ -354,9 +340,8 @@ msgid "Language must be different than the copied language!" msgstr "El llenguatge ha de ser diferent del copiat!" #: admin/pageadmin.py:1166 -#, fuzzy msgid "You do not have permission to add plugins" -msgstr "No tens permisos per modificar aquesta pàgina" +msgstr "Sense permisos per afegir plugins" #: admin/pageadmin.py:1173 #, python-format @@ -364,53 +349,45 @@ msgid "Copied %(language)s plugins to %(placeholder)s" msgstr "El connector %(language)s s'ha copiat a %(placeholder)s" #: admin/pageadmin.py:1186 admin/pageadmin.py:1294 admin/pageadmin.py:1316 -#, fuzzy msgid "You have no permission to change this page" -msgstr "No tens permisos per modificar aquesta pàgina" +msgstr "Sense permisos per modificar aquesta pàgina" #: admin/pageadmin.py:1221 -#, fuzzy msgid "You have no permission to edit a plugin" -msgstr "No tens permisos per modificar aquesta pàgina" +msgstr "Sense permisos per editar un plugin" #: admin/pageadmin.py:1256 #, python-format msgid "" "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -msgstr "" -"El connector %(plugin_name)s s'ha editat a la posició %(position)s de " -"%(placeholder)s" +msgstr "El connector %(plugin_name)s s'ha editat a la posició %(position)s de %(placeholder)s" #: admin/pageadmin.py:1311 -#, fuzzy msgid "You have no permission to move a plugin" -msgstr "No tens permisos per modificar aquesta pàgina" +msgstr "Sense permisos per moure un plugin" #: admin/pageadmin.py:1329 msgid "Plugins where moved" msgstr "Els connectors s'han mogut" #: admin/pageadmin.py:1343 -#, fuzzy msgid "You have no permission to remove a plugin" -msgstr "No tens permisos per modificar aquesta pàgina" +msgstr "Sense permisos per treure un plugin" #: admin/pageadmin.py:1361 admin/placeholderadmin.py:292 #, python-format msgid "" "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " "deleted." -msgstr "" -"El connector %(plugin_name)s a la posició %(position)s de %(placeholder)s " -"s'ha esborrat" +msgstr "El connector %(plugin_name)s a la posició %(position)s de %(placeholder)s s'ha esborrat" #: admin/permissionadmin.py:72 msgid "View restriction" -msgstr "" +msgstr "Restricció de vista" #: admin/permissionadmin.py:73 msgid "View restrictions" -msgstr "" +msgstr "Restriccions de vista" #: admin/permissionadmin.py:133 models/permissionmodels.py:75 msgid "Page permissions" @@ -425,19 +402,16 @@ msgid "Page permissions management" msgstr "Gestió de permisos de la Pàgina" #: admin/placeholderadmin.py:150 admin/placeholderadmin.py:191 -#, fuzzy msgid "You don't have permission to add content here." -msgstr "No tens permisos per modificar aquesta pàgina" +msgstr "Sense permisos per afegir contingut aquí." #: admin/placeholderadmin.py:187 -#, fuzzy msgid "You don't have permission to add plugins" -msgstr "No tens permisos per modificar aquesta pàgina" +msgstr "Sense permisos per afegir plugins" #: admin/placeholderadmin.py:288 -#, fuzzy msgid "You don't have permission to delete a plugin" -msgstr "No tens permisos per modificar aquesta pàgina" +msgstr "Sense permisos per esborrar un plugin" #: admin/useradmin.py:25 msgid "User details" @@ -465,11 +439,11 @@ msgstr "Hereta la plantilla del l'ancestre més pròxim" #: forms/fields.py:19 msgid "Select a valid site" -msgstr "" +msgstr "Seleccionar un lloc vàlid" #: forms/fields.py:20 msgid "Select a valid page" -msgstr "" +msgstr "Seleccionar una pàgina vàlida" #: forms/widgets.py:173 msgid "Add Another" @@ -721,11 +695,11 @@ msgstr "app. par." #: models/pagemodel.py:52 msgid "for logged in users only" -msgstr "" +msgstr "momés per usuaris identificats" #: models/pagemodel.py:53 msgid "for anonymous users only" -msgstr "" +msgstr "només per usuaris anònims" #: models/pagemodel.py:61 msgid "created by" @@ -753,13 +727,11 @@ msgstr "Tots els avantpassats no es mostraran al menú de navegació" msgid "" "An unique identifier that is used with the page_url templatetag for linking " "to this page" -msgstr "" -"Un identificador únic que s'utilitza amb el page_url_templatetag per " -"enllaçar-se a aquesta pàgina" +msgstr "Un identificador únic que s'utilitza amb el page_url_templatetag per enllaçar-se a aquesta pàgina" #: models/pagemodel.py:71 msgid "attached menu" -msgstr "" +msgstr "menú adjunt" #: models/pagemodel.py:72 msgid "is published" @@ -783,11 +755,11 @@ msgstr "estat de moderació" #: models/pagemodel.py:85 msgid "menu visibility" -msgstr "" +msgstr "visibilitat del menú" #: models/pagemodel.py:85 msgid "limit when this page is visible in the menu" -msgstr "" +msgstr "limitar quan aquesta pàgina és visible al menú" #: models/pagemodel.py:105 msgid "pages" @@ -831,11 +803,11 @@ msgstr "pot moderar" #: models/permissionmodels.py:28 msgid "view restricted" -msgstr "" +msgstr "vista restringida" #: models/permissionmodels.py:28 msgid "frontend view restriction" -msgstr "" +msgstr "restricció a la interfície d'usuari" #: models/permissionmodels.py:51 msgid "can recover pages" @@ -847,8 +819,7 @@ msgstr "pot recuperar qualsevol pàgina eliminada" #: models/permissionmodels.py:52 msgid "If none selected, user haves granted permissions to all sites." -msgstr "" -"Si no hi ha res seleccionat, l'usuari tindrà permisos concedits a tot arreu." +msgstr "Si no hi ha res seleccionat, l'usuari tindrà permisos concedits a tot arreu." #: models/permissionmodels.py:52 msgid "sites" @@ -893,7 +864,7 @@ msgstr "ample" #: models/pluginmodel.py:140 msgid "" -msgstr "" +msgstr "" #: models/titlemodels.py:12 msgid "overwrite the title in the menu" @@ -918,7 +889,7 @@ msgstr "arxiu" #: plugins/file/templates/cms/plugins/file.html:6 msgid "file missing!" -msgstr "" +msgstr "fitxer inexistent!" #: plugins/flash/cms_plugins.py:9 msgid "Flash" @@ -935,16 +906,13 @@ msgstr "alçada" #: plugins/flash/templates/cms/plugins/flash.html:40 #: plugins/video/templates/cms/plugins/video.html:60 -#, fuzzy msgid "Missing flash plugin. Please download the latest Adobe Flash Player: " -msgstr "" -"Falta plugin de flash. Descarregar aquí" +msgstr "No s'ha trobat el plugin de flash. Descarregar l'última versió d'Adobe Flash Player:" #: plugins/flash/templates/cms/plugins/flash.html:42 #: plugins/video/templates/cms/plugins/video.html:62 msgid "Get Adobe Flash Player" -msgstr "" +msgstr "Obtenir Adobe Flash Player" #: plugins/googlemap/cms_plugins.py:10 msgid "Google Map" @@ -1004,7 +972,7 @@ msgstr "Mapa" #: plugins/googlemap/templates/cms/plugins/googlemap.html:76 msgid "Your address: " -msgstr "" +msgstr "La seva adreça: " #: plugins/googlemap/templates/cms/plugins/googlemap.html:78 msgid "Calculate route" @@ -1022,9 +990,7 @@ msgstr "Es necessari emplenar la llengua o la pàgina" msgid "" "Choose a page to include its plugins into this placeholder, empty will " "choose current page" -msgstr "" -"Trieu una pàgina per incloure-hi els connectors en aquest marcador de " -"posició, deixant-ho buit triarà la pàgina actual" +msgstr "Trieu una pàgina per incloure-hi els connectors en aquest marcador de posició, deixant-ho buit triarà la pàgina actual" #: plugins/inherit/models.py:11 msgid "Optional: the language of the plugins you want" @@ -1065,7 +1031,7 @@ msgstr "Imatge" #: plugins/picture/models.py:14 msgid "center" -msgstr "" +msgstr "centre" #: plugins/picture/models.py:15 msgid "left" @@ -1121,9 +1087,7 @@ msgstr "HTML" #: plugins/snippet/models.py:15 msgid "" "Enter a template (i.e. \"snippets/plugin_xy.html\") which will be rendered. " -msgstr "" -"Introduex la plantilla (i.e. \"snippets/plugin_xy.html\") que serà " -"renderitzada. " +msgstr "Introduex la plantilla (i.e. \"snippets/plugin_xy.html\") que serà renderitzada. " #: plugins/snippet/models.py:25 msgid "Snippets" @@ -1207,7 +1171,7 @@ msgstr "Twitter" #: plugins/twitter/cms_plugins.py:23 msgid "Twitter Search" -msgstr "" +msgstr "Cerca del Twitter" #: plugins/twitter/models.py:7 msgid "twitter user" @@ -1227,44 +1191,42 @@ msgstr "ajuda de l'enllaç" #: plugins/twitter/models.py:9 msgid "If given, the hint is displayed as link to your Twitter profile." -msgstr "" -"Si s'indica, l'ajuda es mostrarà com a enllaç al seu perfil de Twitter." +msgstr "Si s'indica, l'ajuda es mostrarà com a enllaç al seu perfil de Twitter." #: plugins/twitter/models.py:16 msgid "query" -msgstr "" +msgstr "consulta" #: plugins/twitter/models.py:16 msgid "" "Example: \"brains AND zombies AND from:umbrella AND to:nemesis\": tweets " "from the user \"umbrella\" to the user \"nemesis\" that contain the words " "\"brains\" and \"zombies\"" -msgstr "" +msgstr "Exemple: \"cervells AND zombis AND from:paraigues AND to:nemesis\": tweets de l'usuari \"paraigues\" a l'usuari \"nemesis\" que conté les paraules \"cervells\" i \"zombis\"" #: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:12 msgid "we said," -msgstr "" +msgstr "vàrem dir," #: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:13 msgid "we" -msgstr "" +msgstr "nosaltres" #: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:14 msgid "we were" -msgstr "" +msgstr "vàrem ser" #: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:15 msgid "we replied to" -msgstr "" +msgstr "vàrem respondre a" #: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:16 msgid "we were checking out" -msgstr "" +msgstr "vàrem revisar" #: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:17 -#, fuzzy msgid "loading tweets..." -msgstr "Carregant ..." +msgstr "carregant tweets..." #: plugins/video/cms_plugins.py:10 msgid "Video" @@ -1287,13 +1249,10 @@ msgid "movie url" msgstr "url de la película" #: plugins/video/models.py:10 -#, fuzzy msgid "" -"vimeo or youtube video url. Example: http://www.youtube.com/watch?v=-" -"iJ7bs4mTUY" -msgstr "" -"vimeo o URL del vídeo youtube. Exemple: http://www.youtube.com/watch?" -"v=YFa59lK-kpo" +"vimeo or youtube video url. Example: " +"http://www.youtube.com/watch?v=-iJ7bs4mTUY" +msgstr "url de video de vimeo o youtubel. Exemple: http://www.youtube.com/watch?v=-iJ7bs4mTUY" #: plugins/video/models.py:11 msgid "preview image file" @@ -1382,8 +1341,7 @@ msgstr "Guardar i continuar editant" #, python-format msgid "" "Page %(page)s may require approvement by you." -msgstr "" -"La pàgina %(page)s pot requerir que l'aprovis." +msgstr "La pàgina %(page)s pot requerir que l'aprovis." #: templates/admin/cms/mail/approvement_required.html:8 msgid "Last changes" @@ -1486,9 +1444,7 @@ msgstr "Estat de la pàgina" msgid "" "This page must be moderated at level %(moderation_level)s, post a message " "for moderator." -msgstr "" -"Aquesta pàgina ha de ser moderat en el nivell %(moderation_level)s , envia " -"un missatge per al moderador." +msgstr "Aquesta pàgina ha de ser moderat en el nivell %(moderation_level)s , envia un missatge per al moderador." #: templates/admin/cms/page/change_form.html:187 msgid "Request approvemet" @@ -1558,7 +1514,7 @@ msgstr "final" #: templates/admin/cms/page/change_list_tree.html:17 msgid "restricted" -msgstr "" +msgstr "restringit" #: templates/admin/cms/page/change_list_tree.html:19 msgid "last changes" @@ -1688,9 +1644,8 @@ msgid "Can move" msgstr "Pot moure" #: templates/admin/cms/page/permissions.html:14 -#, fuzzy msgid "Can view" -msgstr "Pot moure" +msgstr "Pot veure" #: templates/admin/cms/page/permissions.html:21 #: templates/admin/cms/page/permissions.html:22 @@ -1712,7 +1667,7 @@ msgstr "La pàgina no hereta cap permís." #: templates/admin/cms/page/plugin_change_form.html:114 #: templates/cms/toolbar/toolbar.html:24 msgid "Cancel" -msgstr "" +msgstr "Cancel·lar" #: templates/admin/cms/page/plugin_forms_history.html:9 msgid "An old revision of a plugin can not be saved!" @@ -1750,7 +1705,7 @@ msgstr "Tria les opcions de còpia" #: templates/admin/cms/page/widgets/installed_plugins_inc.html:7 msgid "Generic" -msgstr "" +msgstr "Genèric" #: templates/admin/cms/page/widgets/installed_plugins_inc.html:15 msgid "Add Plugin" @@ -1774,16 +1729,15 @@ msgstr "Ho has seleccionat cap connector. Tria'n un de l'esquerra" #: templates/admin/cms/page/widgets/plugin_editor.html:17 msgid "No Plugins present. Add a plugin to this placeholder-slot." -msgstr "" -"No hi ha connectors. Afegir un connector per aquest marcador de posició." +msgstr "No hi ha connectors. Afegir un connector per aquest marcador de posició." #: templates/cms/toolbar/placeholder.html:32 msgid "Available plugins" -msgstr "" +msgstr "Plugins disponibles" #: templates/cms/toolbar/toolbar.html:22 msgid "The selected element can not be moved to the desired location." -msgstr "" +msgstr "L'element seleccionat no pot ser mogut a la ubicació demanada." #: templates/cms/toolbar/toolbar.html:23 msgid "Are you sure you want to delete this plugin?" @@ -1799,7 +1753,7 @@ msgstr "avall" #: templates/cms/toolbar/toolbar.html:61 msgid "Move to placeholder" -msgstr "" +msgstr "Moure al marcador de posició" #: templates/cms/toolbar/items/login.html:5 msgid "Username" @@ -1807,9 +1761,8 @@ msgstr "Nom d'usuari" #: templates/cms/toolbar/items/login.html:10 #: templates/cms/toolbar/items/login.html:12 -#, fuzzy msgid "Login" -msgstr "login" +msgstr "Iniciar sessió" #: templates/cms/toolbar/items/status.html:2 msgid "Status" @@ -1817,12 +1770,12 @@ msgstr "Estat" #: templates/cms/toolbar/items/switcher.html:4 msgid "Switch on/off" -msgstr "" +msgstr "Activar/desactivar" #: templatetags/cms_admin.py:86 #, python-format msgid "%(icon)s" -msgstr "" +msgstr "%(icon)s" #: templatetags/cms_admin.py:99 msgid "Unbind page moderation" @@ -1839,15 +1792,14 @@ msgstr "Deslligar la moderació de descendents" #: templatetags/cms_tags.py:78 #, python-format msgid "Page not found on %(domain)s" -msgstr "" +msgstr "Pàgina no trobada a %(domain)s" #: templatetags/cms_tags.py:79 #, python-format msgid "" -"A template tag couldn't find the page with lookup arguments `" -"%(page_lookup)s\n" +"A template tag couldn't find the page with lookup arguments `%(page_lookup)s\n" "`. The URL of the request was: http://%(host)s%(path)s" -msgstr "" +msgstr "Una etiqueta de la plantilla no ha pogut trobat la pàgina amb els arguments de lookup `%(page_lookup)s\n`. La URL de la petició ha estat: http://%(host)s%(path)s" #: utils/mail.py:38 msgid "CMS - your user account was created." @@ -1870,32 +1822,14 @@ msgstr "aprovar" msgid "CMS - Page %s requires approvement." msgstr "CMS - La pàgina %s requereix aprovació." -#~ msgid "Missing flash plugin." -#~ msgstr "Falta el plugin de flash." - -#~ msgid "Move to %(name)s" -#~ msgstr "Mou a %(name)s " - #~ msgid "move" -#~ msgstr "moure" - -#~ msgid "add child" -#~ msgstr "afegir fill" - -#~ msgid "add sibling" -#~ msgstr "afegir un germà" - -#~ msgid "history" -#~ msgstr "història" - -#~ msgid "Lock" -#~ msgstr "Bloquejar" +#~ msgstr "move request" -#~ msgid "Close" -#~ msgstr "Tancar" +#~ msgid "sidebar column" +#~ msgstr "background color" -#~ msgid "Settings" -#~ msgstr "Configuració" +#~ msgid "fgcolor" +#~ msgstr "foreground color" -#~ msgid "Delete Plugin" -#~ msgstr "Borrar plugin" +#~ msgid "Wanted language has not been translated yet." +#~ msgstr "Requested language has not been translated yet." diff --git a/cms/locale/ca/LC_MESSAGES/djangojs.po b/cms/locale/ca/LC_MESSAGES/djangojs.po index 37efb69ec45..97e059c70fe 100644 --- a/cms/locale/ca/LC_MESSAGES/djangojs.po +++ b/cms/locale/ca/LC_MESSAGES/djangojs.po @@ -1,38 +1,38 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# +# Translators: +# Roger Pons , 2012. msgid "" msgstr "" "Project-Id-Version: django-cms\n" -"Report-Msgid-Bugs-To: \n" +"Report-Msgid-Bugs-To: https://github.com/divio/django-cms/issues\n" "POT-Creation-Date: 2011-08-14 09:44-0500\n" -"PO-Revision-Date: 2011-03-22 15:38+0000\n" -"Last-Translator: ojii \n" +"PO-Revision-Date: 2012-06-05 18:54+0000\n" +"Last-Translator: Roger Pons \n" "Language-Team: LANGUAGE \n" -"Language: ca\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" #: static/cms/js/change_form.js:31 msgid "" "Are you sure you want to change the %(field_name)s without saving the page " "first?" -msgstr "" -"Estàs segur que vols canviar el %(field_name) sense guardar primer la plana?" +msgstr "Estàs segur que vols canviar el %(field_name) sense guardar primer la plana?" #: static/cms/js/change_form.js:69 msgid "" "Not all plugins are saved. Are you sure you want to save the page?\n" "All unsaved plugin content will tried to save." -msgstr "" +msgstr "Hi ha plugins sense guardar. Segur que vol guardar la pàgina?\nEs tractarà de guardar el contingut de plugins no guardat." #: static/cms/js/change_form.js:127 msgid "Are you sure you want to change tabs without saving the page first?" -msgstr "" -"Estàs segur que voleu canviar de secció sense guardar la primera pàgina?" +msgstr "Estàs segur que voleu canviar de secció sense guardar la primera pàgina?" #: static/cms/js/plugin_editor.js:132 msgid "Are you sure you want to delete this plugin?" diff --git a/cms/locale/da/LC_MESSAGES/django.po b/cms/locale/da/LC_MESSAGES/django.po index 39dab373ea1..96164caf496 100644 --- a/cms/locale/da/LC_MESSAGES/django.po +++ b/cms/locale/da/LC_MESSAGES/django.po @@ -1,19 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# +# Translators: +# , 2011. +# KristianOellegaard , 2011. +# valberg , 2011. +# , 2011. msgid "" msgstr "" "Project-Id-Version: django-cms\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-14 09:48-0500\n" -"PO-Revision-Date: 2011-04-06 07:11+0000\n" -"Last-Translator: KristianOellegaard \n" +"Report-Msgid-Bugs-To: https://github.com/divio/django-cms/issues\n" +"POT-Creation-Date: 2011-08-14 09:47-0500\n" +"PO-Revision-Date: 2011-12-16 17:02+0000\n" +"Last-Translator: Kristian Øllegaard \n" "Language-Team: divio.ch \n" -"Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" "X-Poedit-Country: SWITZERLAND\n" "X-Poedit-Language: English\n" @@ -21,64 +26,64 @@ msgstr "" #: cms_toolbar.py:68 msgid "Edit mode" -msgstr "" +msgstr "Redigeringsmode" #: cms_toolbar.py:77 msgid "django CMS" -msgstr "" +msgstr "django CMS" #: cms_toolbar.py:108 templates/admin/cms/page/menu_item.html:73 msgid "Publish" -msgstr "" +msgstr "Offentliggør" #: cms_toolbar.py:112 msgid "Request Approval" -msgstr "" +msgstr "Anmod om godkendelse" #: cms_toolbar.py:127 cms_toolbar.py:136 msgid "Logout" -msgstr "" +msgstr "Log ud" #: cms_toolbar.py:152 msgid "Template" -msgstr "" +msgstr "Template" #: cms_toolbar.py:160 msgid "Move/add Pages" -msgstr "" +msgstr "Flyt/tilføj sider" #: cms_toolbar.py:165 msgid "Add child page" -msgstr "" +msgstr "Tilføj underside" #: cms_toolbar.py:171 msgid "Add sibling page" -msgstr "" +msgstr "Tilføj side på samme niveau" #: cms_toolbar.py:177 msgid "Delete Page" -msgstr "" +msgstr "slette forespørgsel" #: cms_toolbar.py:180 models/moderatormodels.py:45 #: templates/admin/cms/page/permissions.html:5 msgid "Page" -msgstr "" +msgstr "Side" #: cms_toolbar.py:189 msgid "Site Administration" -msgstr "" +msgstr "Side administration" #: cms_toolbar.py:195 msgid "Page Settings" -msgstr "" +msgstr "Sideindstillinger" #: cms_toolbar.py:201 msgid "View History" -msgstr "" +msgstr "Se historik" #: cms_toolbar.py:205 msgid "Admin" -msgstr "" +msgstr "Admin" #: plugin_base.py:65 msgid "Advanced options" @@ -98,7 +103,7 @@ msgstr "Slug" #: admin/forms.py:62 msgid "The part of the title that is used in the URL" -msgstr "" +msgstr "Del af titlen der bliver brugt i URL'en" #: admin/forms.py:63 msgid "Language" @@ -110,11 +115,11 @@ msgstr "Nuværende sprog for indholdsfeltet." #: admin/forms.py:117 msgid "Another page with this slug already exists" -msgstr "Der eksisterer allerede en side med dette slug." +msgstr "Der eksisterer allerede en side med denne slug." #: admin/forms.py:135 msgid "Menu Title" -msgstr "Menu titel" +msgstr "Menutitel" #: admin/forms.py:136 msgid "Overwrite what is displayed in the menu" @@ -125,7 +130,8 @@ msgid "Page Title" msgstr "Sidetitel" #: admin/forms.py:138 -msgid "Overwrites what is displayed at the top of your browser or in bookmarks" +msgid "" +"Overwrites what is displayed at the top of your browser or in bookmarks" msgstr "Overskriv hvad der er vist i toppen af din browser eller bogmærker" #: admin/forms.py:139 @@ -146,11 +152,11 @@ msgstr "Lad feltet stå tomt, hvis standardstien skal bruges" #: admin/forms.py:149 msgid "Redirect" -msgstr "Redirect" +msgstr "Videresend" #: admin/forms.py:150 msgid "Redirects to this URL." -msgstr "Redirect this denne URL" +msgstr "Videresend til denne URL" #: admin/forms.py:152 msgid "A description of the page sometimes used by search engines." @@ -158,9 +164,7 @@ msgstr "Beskrivelse af siden der i visse tilfælde bruges af søgemaskiner" #: admin/forms.py:154 msgid "A list of comma seperated keywords sometimes used by search engines." -msgstr "" -"En liste med kommaseparerede nøgleord, der i visse tilfælde bruges af " -"søgemaskiner" +msgstr "En liste med kommaseparerede nøgleord, der i visse tilfælde bruges af søgemaskiner" #: admin/forms.py:170 msgid "A page with this reverse URL id exists already." @@ -171,9 +175,9 @@ msgid "Invalid URL, use /my/url format." msgstr "Ugyldig URL, brug /min/url format" #: admin/forms.py:181 -#, fuzzy, python-format +#, python-format msgid "Page with redirect url %r already exist" -msgstr "Der eksisterer allerede en side med dette slug." +msgstr "En side med redirect adresse %r eksisterer allerede." #: admin/forms.py:191 admin/forms.py:192 migrations/0001_initial.py:41 #: models/permissionmodels.py:16 @@ -184,271 +188,269 @@ msgstr "bruger" msgid "" "Add page permission requires also access to children, or descendants, " "otherwise added page can't be changed by its creator." -msgstr "" -"Tilladelse til at tilføje sider kræver at der også er adgang til undersider, " -"ellers kan siden ikke blive ændret af brugeren der har oprettet den." +msgstr "Tilladelse til at tilføje sider kræver at der også er adgang til undersider, ellers kan siden ikke blive ændret af brugeren der har oprettet den." #: admin/forms.py:221 msgid "Add page permission also requires edit page permission." -msgstr "" +msgstr "Tilladelse til at tilføje sider kræver også tilladelse til at redigere sider." #: admin/forms.py:248 msgid "can_view" -msgstr "" +msgstr "kan læse" #: admin/forms.py:260 msgid "Please select user or group first." -msgstr "" +msgstr "Venligst vælg bruger eller gruppe først." #: admin/forms.py:267 admin/forms.py:274 admin/forms.py:278 #: templates/admin/cms/page/change_form.html:67 #: templates/admin/cms/page/plugin_change_form.html:70 #: templates/cms/toolbar/placeholder.html:25 msgid "Add" -msgstr "" +msgstr "Tilføj" #: admin/forms.py:268 admin/forms.py:275 admin/forms.py:279 msgid "Change" -msgstr "" +msgstr "Ændre" #: admin/forms.py:269 admin/forms.py:276 admin/forms.py:280 #: templates/admin/page_submit_line.html:5 #: templates/admin/cms/page/menu_item.html:44 msgid "Delete" -msgstr "" +msgstr "Slet" #: admin/forms.py:270 msgid "Recover (any) pages" -msgstr "" +msgstr "Genskab (enhver) side" #: admin/forms.py:297 msgid "Notify user" -msgstr "" +msgstr "Underret bruger" #: admin/forms.py:298 msgid "" "Send email notification to user about username or password change. Requires " "user email." -msgstr "" +msgstr "Send email notifikation om ændring af brugernavn eller kodeord til brugeren. Kræver brugerens email." #: admin/forms.py:318 msgid "New password" -msgstr "" +msgstr "Nyt kodeord" #: admin/forms.py:320 msgid "New password confirmation" -msgstr "" +msgstr "Nyt kodeord bekræftels" #: admin/forms.py:339 msgid "Email notification requires valid email address." -msgstr "" +msgstr "Email notifikation kræver en gyldig email adresse." #: admin/forms.py:341 msgid "" "The permission to add new pages requires the permission to change pages!" -msgstr "" +msgstr "Tilladelse til at tilføje nye sider kræver tilladelse til at ændre sider!" #: admin/forms.py:343 msgid "" "The permission to add new users requires the permission to change users!" -msgstr "" +msgstr "Tilladelse til at tilføje nye brugere kræver tilladelse til at ændre brugere!" #: admin/forms.py:345 msgid "To add permissions you also need to edit them!" -msgstr "" +msgstr "For at tilføje tilladelser bliver du nød til at redigere i dem!" #: admin/pageadmin.py:97 msgid "Basic Settings" -msgstr "" +msgstr "Basis indstillinger" #: admin/pageadmin.py:100 msgid "Note: This page reloads if you change the selection. Save it first." -msgstr "" +msgstr "Note: Denne side genindlæses hvis du ændrer denne indstilling. Gem først!" #: admin/pageadmin.py:102 admin/pageadmin.py:154 msgid "Hidden" -msgstr "" +msgstr "Skjult" #: admin/pageadmin.py:106 msgid "Advanced Settings" -msgstr "" +msgstr "Avancerede indstillinger" #: admin/pageadmin.py:113 msgid "SEO Settings" -msgstr "" +msgstr "SEO indstillinger" #: admin/pageadmin.py:299 msgid "You have no permission to change the template" -msgstr "" +msgstr "Du har ikke tilladelse til at ændre templaten" #: admin/pageadmin.py:485 msgid "higher" -msgstr "" +msgstr "højere" #: admin/pageadmin.py:655 msgid "Database error" -msgstr "" +msgstr "Database fejl" #: admin/pageadmin.py:855 msgid "Page was successfully approved." -msgstr "" +msgstr "Siden lykkedes godkendt." #: admin/pageadmin.py:927 #, python-format msgid "%(name)s object with primary key %(key)r does not exist." -msgstr "" +msgstr "%(name)s objekt med primære nøgle %(key)r findes ikke." #: admin/pageadmin.py:933 msgid "There only exists one translation for this page" -msgstr "" +msgstr "Der findes kun en oversættelser af denne side" #: admin/pageadmin.py:969 #, python-format msgid "Title and plugins with language %(language)s was deleted" -msgstr "" +msgstr "Titel og plugins med sproget %(language)s blev slettet" #: admin/pageadmin.py:991 msgid "Are you sure?" -msgstr "" +msgstr "Er du sikker?" #: admin/pageadmin.py:1052 msgid "You do not have permission to publish this page" -msgstr "" +msgstr "Du har ikke tilladelse til at publisere denne side" #: admin/pageadmin.py:1066 msgid "You do not have permission to change this page's in_navigation status" -msgstr "" +msgstr "Du har ikke tilladelse til at ændre i denne sides i_navigation status" #: admin/pageadmin.py:1079 msgid "You have no permission to add a plugin" -msgstr "" +msgstr "Du har ikke tilladelse til at tilføje et plugin" #: admin/pageadmin.py:1126 admin/pageadmin.py:1158 msgid "Language must be set to a supported language!" -msgstr "" +msgstr "Sprog skal sættes til et understøttet sprog!" #: admin/pageadmin.py:1138 #, python-format msgid "%(plugin_name)s plugin added to %(placeholder)s" -msgstr "" +msgstr "%(plugin_name)s plugin tilføjet til %(placeholder)s" #: admin/pageadmin.py:1156 msgid "You do not have permission to change this page" -msgstr "" +msgstr "Du har ikke tilladelse til at ændre i denne side" #: admin/pageadmin.py:1160 msgid "Language must be different than the copied language!" -msgstr "" +msgstr "Sprog skal være forskelligt fra det kopierede sprog!" #: admin/pageadmin.py:1166 msgid "You do not have permission to add plugins" -msgstr "" +msgstr "Du har ikke tilladelse til at tilføje plugins" #: admin/pageadmin.py:1173 #, python-format msgid "Copied %(language)s plugins to %(placeholder)s" -msgstr "" +msgstr "Kopieret %(language)s plugins til %(placeholder)s" #: admin/pageadmin.py:1186 admin/pageadmin.py:1294 admin/pageadmin.py:1316 msgid "You have no permission to change this page" -msgstr "" +msgstr "Du har ikke tilladelse til at redigere denne side." #: admin/pageadmin.py:1221 msgid "You have no permission to edit a plugin" -msgstr "" +msgstr "Du har ikke tilladelse til at redigere et plugin." #: admin/pageadmin.py:1256 #, python-format msgid "" "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -msgstr "" +msgstr " %(plugin_name)s plugin redigeret på position %(position)s i %(placeholder)s " #: admin/pageadmin.py:1311 msgid "You have no permission to move a plugin" -msgstr "" +msgstr "Du har ikke tilladelse til at flytte et plugin." #: admin/pageadmin.py:1329 msgid "Plugins where moved" -msgstr "" +msgstr "Plugins blev flyttet" #: admin/pageadmin.py:1343 msgid "You have no permission to remove a plugin" -msgstr "" +msgstr "Du har ikke tilladelse slette et plugin." #: admin/pageadmin.py:1361 admin/placeholderadmin.py:292 #, python-format msgid "" "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " "deleted." -msgstr "" +msgstr " %(plugin_name)s plugin på position %(position)s i %(placeholder)s blev slettet." #: admin/permissionadmin.py:72 msgid "View restriction" -msgstr "" +msgstr "Se begrænsning for hvem der kan se siden" #: admin/permissionadmin.py:73 msgid "View restrictions" -msgstr "" +msgstr "Se begrænsninger for hvem der kan se siden" #: admin/permissionadmin.py:133 models/permissionmodels.py:75 msgid "Page permissions" -msgstr "" +msgstr "Side tilladelser" #: admin/permissionadmin.py:134 msgid "User & Group permissions" -msgstr "" +msgstr "Bruger og gruppe tilladelser" #: admin/permissionadmin.py:135 msgid "Page permissions management" -msgstr "" +msgstr "Side tilladelser håndtering" #: admin/placeholderadmin.py:150 admin/placeholderadmin.py:191 msgid "You don't have permission to add content here." -msgstr "" +msgstr "Du har ikke tilladelse til at tilføje indhold her." #: admin/placeholderadmin.py:187 msgid "You don't have permission to add plugins" -msgstr "" +msgstr "Du har ikke tilladelse til at tilføje plugins." #: admin/placeholderadmin.py:288 msgid "You don't have permission to delete a plugin" -msgstr "" +msgstr "Du har ikke tilladelse til at slette et plugin." #: admin/useradmin.py:25 msgid "User details" -msgstr "" +msgstr "Brugeroplysninger" #: admin/useradmin.py:26 msgid "Groups" -msgstr "" +msgstr "Grupper" #: admin/useradmin.py:36 templates/cms/toolbar/items/login.html:7 msgid "Password" -msgstr "" +msgstr "Adgangskode" #: admin/dialog/forms.py:9 msgid "Copy permissions" -msgstr "" +msgstr "Kopier tilladelser" #: admin/dialog/forms.py:16 msgid "Copy moderation" -msgstr "" +msgstr "Kopier moderation" #: conf/patch.py:28 msgid "Inherit the template of the nearest ancestor" -msgstr "" +msgstr "Nedarv skabelon den nærmeste forældre" #: forms/fields.py:19 msgid "Select a valid site" -msgstr "" +msgstr "Vælg et korrekt website" #: forms/fields.py:20 msgid "Select a valid page" -msgstr "" +msgstr "Vælg en korrekt side" #: forms/widgets.py:173 msgid "Add Another" -msgstr "" +msgstr "Tilføj en anden" #: migrations/0001_initial.py:12 migrations/0001_initial.py:24 #: migrations/0001_initial.py:75 migrations/0003_remove_placeholder.py:18 @@ -457,7 +459,7 @@ msgstr "" #: models/pluginmodel.py:79 models/titlemodels.py:10 #: plugins/inherit/models.py:11 msgid "language" -msgstr "" +msgstr "sprog" #: migrations/0001_initial.py:13 migrations/0001_initial.py:26 #: migrations/0001_initial.py:40 migrations/0001_initial.py:78 @@ -467,26 +469,26 @@ msgstr "" #: plugins/link/models.py:12 plugins/link/migrations/0001_initial.py:19 #: plugins/picture/models.py:22 plugins/teaser/models.py:13 msgid "page" -msgstr "" +msgstr "side" #: migrations/0001_initial.py:14 migrations/0004_textobjects.py:12 #: migrations/0004_textobjects.py:22 models/pluginmodel.py:78 msgid "position" -msgstr "" +msgstr "position" #: migrations/0001_initial.py:15 migrations/0001_initial.py:29 #: models/pluginmodel.py:81 models/titlemodels.py:22 msgid "creation date" -msgstr "" +msgstr "oprettelsesdato" #: migrations/0001_initial.py:16 migrations/0001_initial.py:77 #: migrations/0003_remove_placeholder.py:20 models/placeholdermodel.py:13 msgid "slot" -msgstr "" +msgstr "slot" #: migrations/0001_initial.py:18 models/pluginmodel.py:80 msgid "plugin_name" -msgstr "" +msgstr "plugin navn" #: migrations/0001_initial.py:25 migrations/0011_title_overwrites.py:12 #: migrations/0011_title_overwrites.py:15 models/titlemodels.py:11 @@ -495,877 +497,877 @@ msgstr "" #: plugins/twitter/models.py:6 plugins/twitter/models.py:15 #: templates/admin/cms/page/change_list_tree.html:6 msgid "title" -msgstr "" +msgstr "titel" #: migrations/0001_initial.py:28 msgid "path" -msgstr "" +msgstr "sti" #: migrations/0001_initial.py:30 models/titlemodels.py:13 msgid "slug" -msgstr "" +msgstr "slug" #: migrations/0001_initial.py:36 msgid "everybody" -msgstr "" +msgstr "alle" #: migrations/0001_initial.py:37 models/permissionmodels.py:20 msgid "can edit" -msgstr "" +msgstr "kan redigere" #: migrations/0001_initial.py:38 models/permissionmodels.py:17 msgid "group" -msgstr "" +msgstr "gruppe" #: migrations/0001_initial.py:39 models/permissionmodels.py:24 msgid "can publish" -msgstr "" +msgstr "kan offentliggøre" #: migrations/0001_initial.py:42 msgid "type" -msgstr "" +msgstr "type" #: migrations/0001_initial.py:44 msgid "can change soft-root" -msgstr "" +msgstr "kan ændre soft-root" #: migrations/0001_initial.py:50 migrations/0006_apphook.py:34 #: migrations/0006_apphook.py:62 msgid "status" -msgstr "" +msgstr "status" #: migrations/0001_initial.py:53 msgid "navigation extenders" -msgstr "" +msgstr "navigationsudvidelser" #: migrations/0001_initial.py:54 migrations/0006_apphook.py:12 #: migrations/0006_apphook.py:46 models/titlemodels.py:15 msgid "has url overwrite" -msgstr "" +msgstr "har URL overskriver" #: migrations/0001_initial.py:55 migrations/0006_apphook.py:49 msgid "url overwrite" -msgstr "" +msgstr "URL overskriver" #: migrations/0001_initial.py:57 msgid "author" -msgstr "" +msgstr "forfatter" #: migrations/0001_initial.py:58 migrations/0006_apphook.py:37 msgid "reverse url id" -msgstr "" +msgstr "reverse url id" #: migrations/0001_initial.py:59 models/pagemodel.py:84 msgid "login required" -msgstr "" +msgstr "login krævet" #: migrations/0001_initial.py:60 models/pagemodel.py:69 msgid "soft root" -msgstr "" +msgstr "soft root" #: migrations/0001_initial.py:63 models/pagemodel.py:67 msgid "publication end date" -msgstr "" +msgstr "offentliggørelse ophørsdato" #: migrations/0001_initial.py:64 models/pagemodel.py:74 #: plugins/snippet/models.py:14 msgid "template" -msgstr "" +msgstr "template" #: migrations/0001_initial.py:66 models/pagemodel.py:66 msgid "publication date" -msgstr "" +msgstr "offentliggørelsesdato" #: migrations/0001_initial.py:67 models/pagemodel.py:68 #: templates/admin/cms/page/change_list_tree.html:9 msgid "in navigation" -msgstr "" +msgstr "i navigationen" #: migrations/0006_apphook.py:15 migrations/0007_apphook_longer.py:11 #: migrations/0007_apphook_longer.py:17 models/titlemodels.py:16 msgid "application" -msgstr "" +msgstr "application" #: migrations/0006_apphook.py:65 models/pagemodel.py:70 msgid "id" -msgstr "" +msgstr "id" #: migrations/0008_redirects.py:11 models/titlemodels.py:17 msgid "redirect" -msgstr "" +msgstr "redirect" #: migrations/0009_added_meta_fields.py:12 models/titlemodels.py:19 msgid "keywords" -msgstr "" +msgstr "søgeord" #: migrations/0009_added_meta_fields.py:15 models/titlemodels.py:18 #: plugins/teaser/models.py:20 msgid "description" -msgstr "" +msgstr "beskrivelse" #: models/moderatormodels.py:25 msgid "Current page" -msgstr "" +msgstr "Aktuel side" #: models/moderatormodels.py:26 msgid "Page children (immediate)" -msgstr "" +msgstr "Side børn (umiddelbart)" #: models/moderatormodels.py:27 msgid "Page and children (immediate)" -msgstr "" +msgstr "Side og børn (umiddelbart)" #: models/moderatormodels.py:28 msgid "Page descendants" -msgstr "" +msgstr "Side efterkommere" #: models/moderatormodels.py:29 msgid "Page and descendants" -msgstr "" +msgstr "Side og efterkommere" #: models/moderatormodels.py:46 #: templates/admin/cms/page/moderation_messages.html:6 #: templates/admin/cms/page/permissions.html:6 msgid "User" -msgstr "" +msgstr "Bruger" #: models/moderatormodels.py:50 templatetags/cms_admin.py:99 msgid "Moderate page" -msgstr "" +msgstr "Moderér side" #: models/moderatormodels.py:51 templatetags/cms_admin.py:100 msgid "Moderate children" -msgstr "" +msgstr "Moderér børn" #: models/moderatormodels.py:52 templatetags/cms_admin.py:101 msgid "Moderate descendants" -msgstr "" +msgstr "Moderér efterkommere" #: models/moderatormodels.py:55 models/moderatormodels.py:56 msgid "PageModerator" -msgstr "" +msgstr "SideModerator" #: models/moderatormodels.py:99 msgid "created" -msgstr "" +msgstr "oprettet" #: models/moderatormodels.py:100 models/pagemodel.py:44 msgid "changed" -msgstr "" +msgstr "ændret" #: models/moderatormodels.py:101 msgid "delete req." -msgstr "" +msgstr "sletnings anmodning" #: models/moderatormodels.py:102 msgid "move req." -msgstr "" +msgstr "flytte anmodning" #: models/moderatormodels.py:103 msgid "publish req." -msgstr "" +msgstr "publiserings anmodning" #: models/moderatormodels.py:104 msgid "unpublish req." -msgstr "" +msgstr "tilbagetræknings anmodning" #: models/moderatormodels.py:105 models/pagemodel.py:47 msgid "approved" -msgstr "" +msgstr "godkendt" #: models/moderatormodels.py:117 msgid "Page moderator state" -msgstr "" +msgstr "Side moderator tilstand" #: models/moderatormodels.py:118 msgid "Page moderator states" -msgstr "" +msgstr "Side moderator tilstande" #: models/pagemodel.py:45 msgid "req. app." -msgstr "" +msgstr "godkendelse kræves" #: models/pagemodel.py:46 templates/admin/cms/page/menu_item.html:44 #: templates/cms/toolbar/toolbar.html:57 utils/moderator.py:90 msgid "delete" -msgstr "" +msgstr "slet" #: models/pagemodel.py:48 msgid "app. par." -msgstr "" +msgstr "app. par." #: models/pagemodel.py:52 msgid "for logged in users only" -msgstr "" +msgstr "kun for brugere der er logget ind" #: models/pagemodel.py:53 msgid "for anonymous users only" -msgstr "" +msgstr "kun for anonyme brugere" #: models/pagemodel.py:61 msgid "created by" -msgstr "" +msgstr "oprettet af" #: models/pagemodel.py:62 templates/admin/cms/page/change_list_tree.html:20 msgid "changed by" -msgstr "" +msgstr "ændret af" #: models/pagemodel.py:66 msgid "" "When the page should go live. Status must be \"Published\" for page to go " "live." -msgstr "" +msgstr "Når siden skal gå live, skal status være \"Offentliggjort\"" #: models/pagemodel.py:67 msgid "When to expire the page. Leave empty to never expire." -msgstr "" +msgstr "Når siden udløber. Lad feltet være tomt, hvis den ikke skal udløbe." #: models/pagemodel.py:69 msgid "All ancestors will not be displayed in the navigation" -msgstr "" +msgstr "Alle sider placeret over denne i navigationen bliver ikke vist i navigationen." #: models/pagemodel.py:70 msgid "" "An unique identifier that is used with the page_url templatetag for linking " "to this page" -msgstr "" +msgstr "En unikt navn der bliver brugt til at linke til siden ved brug af page_url templatetagget." #: models/pagemodel.py:71 msgid "attached menu" -msgstr "" +msgstr "vedhæftet menu" #: models/pagemodel.py:72 msgid "is published" -msgstr "" +msgstr "er offentliggjort" #: models/pagemodel.py:74 msgid "The template used to render the content." -msgstr "" +msgstr "Templaten der bliver brugt til at render indholdet." #: models/pagemodel.py:75 msgid "The site the page is accessible at." -msgstr "" +msgstr "Websitet cms-siden er tilgængelig på." #: models/pagemodel.py:75 msgid "site" -msgstr "" +msgstr "website" #: models/pagemodel.py:77 msgid "moderator state" -msgstr "" +msgstr "moderator status" #: models/pagemodel.py:85 msgid "menu visibility" -msgstr "" +msgstr "menu synlighed" #: models/pagemodel.py:85 msgid "limit when this page is visible in the menu" -msgstr "" +msgstr "begræns når siden er synlig i menuen" #: models/pagemodel.py:105 msgid "pages" -msgstr "" +msgstr "sider" #: models/pagemodel.py:267 msgid "Page was copied." -msgstr "" +msgstr "Sider var kopieret" #: models/pagemodel.py:698 msgid "default" -msgstr "" +msgstr "default" #: models/permissionmodels.py:21 msgid "can add" -msgstr "" +msgstr "kan tilføje" #: models/permissionmodels.py:22 msgid "can delete" -msgstr "" +msgstr "kan slette" #: models/permissionmodels.py:23 msgid "can change advanced settings" -msgstr "" +msgstr "kan ændre avanceret indstillinger" #: models/permissionmodels.py:25 msgid "can change permissions" -msgstr "" +msgstr "can ændre tilladelser" #: models/permissionmodels.py:25 msgid "on page level" -msgstr "" +msgstr "på side niveau" #: models/permissionmodels.py:26 msgid "can move" -msgstr "" +msgstr "kan flytte" #: models/permissionmodels.py:27 msgid "can moderate" -msgstr "" +msgstr "kan moderere" #: models/permissionmodels.py:28 msgid "view restricted" -msgstr "" +msgstr "se begrænsninger" #: models/permissionmodels.py:28 msgid "frontend view restriction" -msgstr "" +msgstr "frontend adgangsbegrænsning" #: models/permissionmodels.py:51 msgid "can recover pages" -msgstr "" +msgstr "kan genskabe sider" #: models/permissionmodels.py:51 msgid "can recover any deleted page" -msgstr "" +msgstr "kan genskabe alle slettede sider" #: models/permissionmodels.py:52 msgid "If none selected, user haves granted permissions to all sites." -msgstr "" +msgstr "Hvis intet er valgt har brugeren adgang til alle websites." #: models/permissionmodels.py:52 msgid "sites" -msgstr "" +msgstr "websites" #: models/permissionmodels.py:57 msgid "Page global permission" -msgstr "" +msgstr "Global sideindstilling" #: models/permissionmodels.py:58 msgid "Pages global permissions" -msgstr "" +msgstr "Globale sideindstillinger" #: models/permissionmodels.py:68 templates/admin/cms/page/permissions.html:15 msgid "Grant on" -msgstr "" +msgstr "Giv til" #: models/permissionmodels.py:74 msgid "Page permission" -msgstr "" +msgstr "Siderettigheder" #: models/permissionmodels.py:89 msgid "User (page)" -msgstr "" +msgstr "Bruger (side)" #: models/permissionmodels.py:90 msgid "Users (page)" -msgstr "" +msgstr "Brugere (side)" #: models/permissionmodels.py:100 msgid "User group (page)" -msgstr "" +msgstr "Brugergruppe (side)" #: models/permissionmodels.py:101 msgid "User groups (page)" -msgstr "" +msgstr "Bruger grupper (side)" #: models/placeholdermodel.py:14 plugins/flash/models.py:9 #: plugins/flash/migrations/0001_initial.py:16 plugins/video/models.py:13 msgid "width" -msgstr "" +msgstr "bredde" #: models/pluginmodel.py:140 msgid "" -msgstr "" +msgstr "" #: models/titlemodels.py:12 msgid "overwrite the title in the menu" -msgstr "" +msgstr "overskriv titlen i menuen" #: models/titlemodels.py:14 msgid "Path" -msgstr "" +msgstr "sti" #: models/titlemodels.py:20 msgid "overwrite the title (html title tag)" -msgstr "" +msgstr "voerskriv titlen (html title tag)" #: plugins/file/cms_plugins.py:9 msgid "File" -msgstr "" +msgstr "Fil" #: plugins/file/models.py:24 plugins/file/migrations/0001_initial.py:17 #: plugins/flash/models.py:8 plugins/flash/migrations/0001_initial.py:18 msgid "file" -msgstr "" +msgstr "fil" #: plugins/file/templates/cms/plugins/file.html:6 msgid "file missing!" -msgstr "" +msgstr "filen mangler!" #: plugins/flash/cms_plugins.py:9 msgid "Flash" -msgstr "" +msgstr "Flash" #: plugins/flash/models.py:8 msgid "use swf file" -msgstr "" +msgstr "brug swf fil" #: plugins/flash/models.py:10 plugins/flash/migrations/0001_initial.py:19 #: plugins/video/models.py:14 msgid "height" -msgstr "" +msgstr "højde" #: plugins/flash/templates/cms/plugins/flash.html:40 #: plugins/video/templates/cms/plugins/video.html:60 msgid "Missing flash plugin. Please download the latest Adobe Flash Player: " -msgstr "" +msgstr "Mangler flash plugin. Download venligst den seneste Adobe Flash Player." #: plugins/flash/templates/cms/plugins/flash.html:42 #: plugins/video/templates/cms/plugins/video.html:62 msgid "Get Adobe Flash Player" -msgstr "" +msgstr "Download Adobe Flash Player." #: plugins/googlemap/cms_plugins.py:10 msgid "Google Map" -msgstr "" +msgstr "Google Map" #: plugins/googlemap/models.py:9 msgid "map title" -msgstr "" +msgstr "kort titel" #: plugins/googlemap/models.py:11 msgid "address" -msgstr "" +msgstr "adresse" #: plugins/googlemap/models.py:12 msgid "zip code" -msgstr "" +msgstr "postnummer" #: plugins/googlemap/models.py:13 msgid "city" -msgstr "" +msgstr "by" #: plugins/googlemap/models.py:15 msgid "additional content" -msgstr "" +msgstr "ekstra indhold" #: plugins/googlemap/models.py:16 msgid "zoom level" -msgstr "" +msgstr "zoom level" #: plugins/googlemap/models.py:18 msgid "latitude" -msgstr "" +msgstr "breddegrad" #: plugins/googlemap/models.py:19 msgid "Use latitude & longitude to fine tune the map possiton." -msgstr "" +msgstr "Brug længde- og breddegrad til at finjustere kortpositionen." #: plugins/googlemap/models.py:20 msgid "longitude" -msgstr "" +msgstr "længdegrad" #: plugins/googlemap/models.py:22 msgid "route planer title" -msgstr "" +msgstr "route planer titel" #: plugins/googlemap/models.py:22 msgid "Calculate your fastest way to here" -msgstr "" +msgstr "Find den hurtigste vej her" #: plugins/googlemap/models.py:23 msgid "route planer" -msgstr "" +msgstr "route planer" #: plugins/googlemap/models.py:30 msgid "Map" -msgstr "" +msgstr "Kort" #: plugins/googlemap/templates/cms/plugins/googlemap.html:76 msgid "Your address: " -msgstr "" +msgstr "Din adresse:" #: plugins/googlemap/templates/cms/plugins/googlemap.html:78 msgid "Calculate route" -msgstr "" +msgstr "Find rute" #: plugins/inherit/cms_plugins.py:17 msgid "Inherit Plugins from Page" -msgstr "" +msgstr "Nedarv plugins fra side" #: plugins/inherit/forms.py:23 msgid "Language or Page must be filled out" -msgstr "" +msgstr "Sprog eller Side skal udfyldes" #: plugins/inherit/models.py:10 msgid "" "Choose a page to include its plugins into this placeholder, empty will " "choose current page" -msgstr "" +msgstr "Vælg en side hvis' plugins skal inkluderes i denne placeholder. Hvis den undlades vil nærværende side vælges." #: plugins/inherit/models.py:11 msgid "Optional: the language of the plugins you want" -msgstr "" +msgstr "Valgfrit: pluginsprog" #: plugins/link/cms_plugins.py:12 msgid "Link" -msgstr "" +msgstr "Link" #: plugins/link/models.py:10 plugins/link/migrations/0001_initial.py:18 #: plugins/link/migrations/0004_larger_link_names.py:11 #: plugins/link/migrations/0004_larger_link_names.py:17 #: plugins/snippet/models.py:12 plugins/snippet/migrations/0001_initial.py:17 msgid "name" -msgstr "" +msgstr "navn" #: plugins/link/models.py:11 plugins/link/migrations/0001_initial.py:16 #: plugins/picture/models.py:21 plugins/picture/migrations/0001_initial.py:16 #: plugins/teaser/models.py:19 msgid "link" -msgstr "" +msgstr "link" #: plugins/link/models.py:12 msgid "A link to a page has priority over a text link." -msgstr "" +msgstr "Et link til en side par prioritet over et tekstlink" #: plugins/link/models.py:13 msgid "mailto" -msgstr "" +msgstr "email adresse" #: plugins/link/models.py:13 msgid "An email adress has priority over a text link." -msgstr "" +msgstr "En emailadresse har prioritet over et tekstlink." #: plugins/picture/cms_plugins.py:9 msgid "Picture" -msgstr "" +msgstr "Billede" #: plugins/picture/models.py:14 msgid "center" -msgstr "" +msgstr "centrér" #: plugins/picture/models.py:15 msgid "left" -msgstr "" +msgstr "venstre" #: plugins/picture/models.py:16 msgid "right" -msgstr "" +msgstr "højre" #: plugins/picture/models.py:20 plugins/picture/migrations/0001_initial.py:17 #: plugins/teaser/models.py:10 plugins/video/models.py:11 msgid "image" -msgstr "" +msgstr "billede" #: plugins/picture/models.py:21 plugins/picture/models.py:22 msgid "if present image will be clickable" -msgstr "" +msgstr "hvis nuværende billede er klikbart" #: plugins/picture/models.py:23 plugins/picture/migrations/0001_initial.py:19 msgid "alternate text" -msgstr "" +msgstr "alternativ tekst" #: plugins/picture/models.py:23 msgid "textual description of the image" -msgstr "" +msgstr "testbeskrivelse af billedet" #: plugins/picture/models.py:24 msgid "long description" -msgstr "" +msgstr "lang beskrivelse" #: plugins/picture/models.py:24 msgid "additional description of the image" -msgstr "" +msgstr "ekstra beskrivelse af billedet" #: plugins/picture/models.py:25 msgid "side" -msgstr "" +msgstr "side" #: plugins/snippet/cms_plugins.py:12 plugins/snippet/models.py:24 #: plugins/snippet/models.py:32 msgid "Snippet" -msgstr "" +msgstr "Snippet" #: plugins/snippet/cms_plugins.py:30 #, python-format msgid "Template %(template)s does not exist." -msgstr "" +msgstr "Templaten %(template)s eksisterer ikke." #: plugins/snippet/models.py:13 plugins/snippet/migrations/0001_initial.py:18 msgid "HTML" -msgstr "" +msgstr "HTML" #: plugins/snippet/models.py:15 msgid "" "Enter a template (i.e. \"snippets/plugin_xy.html\") which will be rendered. " -msgstr "" +msgstr "Indsæt templaten (f.eks. \"snippets/plugin_xy.html\") der vil blive indsat." #: plugins/snippet/models.py:25 msgid "Snippets" -msgstr "" +msgstr "Snippets" #: plugins/teaser/cms_plugins.py:8 msgid "Teaser" -msgstr "" +msgstr "Teaser" #: plugins/teaser/models.py:14 msgid "If present image will be clickable" -msgstr "" +msgstr "Hvis det tilhørende billeder er klikbart" #: plugins/teaser/models.py:19 msgid "If present image will be clickable." -msgstr "" +msgstr "Hvis det tilhørende billeder er klikbart." #: plugins/teaser/templates/cms/plugins/teaser.html:11 #: templates/cms/toolbar/toolbar.html:59 msgid "more" -msgstr "" +msgstr "mere" #: plugins/text/cms_plugins.py:15 msgid "Text" -msgstr "" +msgstr "Tekst" #: plugins/text/models.py:14 plugins/text/migrations/0001_initial.py:16 msgid "body" -msgstr "" +msgstr "body" #: plugins/text/templates/cms/plugins/widgets/tinymce.html:30 msgid "Plugins" -msgstr "" +msgstr "Plugins" #: plugins/text/templates/cms/plugins/widgets/tinymce.html:38 #: plugins/text/templates/cms/plugins/widgets/tinymce.html:106 #: plugins/text/templates/cms/plugins/widgets/wymeditor.html:67 msgid "Please select a plugin type." -msgstr "" +msgstr "Vælg venligst en plugintype" #: plugins/text/templates/cms/plugins/widgets/tinymce.html:54 #: plugins/text/templates/cms/plugins/widgets/wymeditor.html:110 msgid "Edit selected plugin" -msgstr "" +msgstr "Rediger det valgte plugin" #: plugins/text/templates/cms/plugins/widgets/tinymce.html:58 #: plugins/text/templates/cms/plugins/widgets/tinymce.html:124 #: plugins/text/templates/cms/plugins/widgets/wymeditor.html:85 msgid "Text editor does not support editing objects." -msgstr "" +msgstr "Teksteditoren understøtter ikke at redigere objekter." #: plugins/text/templates/cms/plugins/widgets/tinymce.html:63 #: plugins/text/templates/cms/plugins/widgets/tinymce.html:129 #: plugins/text/templates/cms/plugins/widgets/wymeditor.html:90 msgid "No object selected." -msgstr "" +msgstr "Intet objekt valgt." #: plugins/text/templates/cms/plugins/widgets/tinymce.html:112 #: plugins/text/templates/cms/plugins/widgets/wymeditor.html:73 msgid "Text editor does not support inserting objects." -msgstr "" +msgstr "Teksteditoren understøtter ikke indsætning af objekter." #: plugins/text/templates/cms/plugins/widgets/tinymce.html:133 #: plugins/text/templates/cms/plugins/widgets/wymeditor.html:94 msgid "Not a plugin object" -msgstr "" +msgstr "Ikke et plugin objekt." #: plugins/text/templates/cms/plugins/widgets/wymeditor.html:106 #: templates/admin/cms/page/widgets/installed_plugins_inc.html:4 msgid "Available Plugins" -msgstr "" +msgstr "Tilgængelig plugins" #: plugins/text/templates/cms/plugins/widgets/wymeditor.html:109 msgid "Insert plugin" -msgstr "" +msgstr "Indsæt plugin" #: plugins/twitter/cms_plugins.py:10 #: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:27 msgid "Twitter" -msgstr "" +msgstr "Twitter" #: plugins/twitter/cms_plugins.py:23 msgid "Twitter Search" -msgstr "" +msgstr "Twitter søgning" #: plugins/twitter/models.py:7 msgid "twitter user" -msgstr "" +msgstr "twitter bruger" #: plugins/twitter/models.py:8 plugins/twitter/models.py:17 msgid "count" -msgstr "" +msgstr "antal forekomster" #: plugins/twitter/models.py:8 plugins/twitter/models.py:17 msgid "Number of entries to display" -msgstr "" +msgstr "Antal af indlæg der bliver vist" #: plugins/twitter/models.py:9 msgid "link hint" -msgstr "" +msgstr "link hint" #: plugins/twitter/models.py:9 msgid "If given, the hint is displayed as link to your Twitter profile." -msgstr "" +msgstr "Hvis angivet bliver hintet vist som et link til din twitter profil" #: plugins/twitter/models.py:16 msgid "query" -msgstr "" +msgstr "forespørgsel" #: plugins/twitter/models.py:16 msgid "" "Example: \"brains AND zombies AND from:umbrella AND to:nemesis\": tweets " "from the user \"umbrella\" to the user \"nemesis\" that contain the words " "\"brains\" and \"zombies\"" -msgstr "" +msgstr "Eksempel: \"brains AND zombies AND from:umbrella AND to:nemesis\": tweets fra brugeren \"umbrella\" til brugeren \"nemesis\" som indeholder ordene \"brains\" og \"zombies\"" #: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:12 msgid "we said," -msgstr "" +msgstr "vi sagde," #: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:13 msgid "we" -msgstr "" +msgstr "vi" #: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:14 msgid "we were" -msgstr "" +msgstr "vi var" #: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:15 msgid "we replied to" -msgstr "" +msgstr "vi svarede på" #: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:16 msgid "we were checking out" -msgstr "" +msgstr "vi checkede ud" #: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:17 msgid "loading tweets..." -msgstr "" +msgstr "loader tweets..." #: plugins/video/cms_plugins.py:10 msgid "Video" -msgstr "" +msgstr "Video" #: plugins/video/cms_plugins.py:42 msgid "Color Settings" -msgstr "" +msgstr "Farveindstillinger" #: plugins/video/models.py:9 msgid "movie file" -msgstr "" +msgstr "flytte anmodning" #: plugins/video/models.py:9 msgid "use .flv file or h264 encoded video file" -msgstr "" +msgstr "brug .flv eller h264 encoded video filer" #: plugins/video/models.py:10 msgid "movie url" -msgstr "" +msgstr "flytte anmodning" #: plugins/video/models.py:10 msgid "" -"vimeo or youtube video url. Example: http://www.youtube.com/watch?v=-" -"iJ7bs4mTUY" -msgstr "" +"vimeo or youtube video url. Example: " +"http://www.youtube.com/watch?v=-iJ7bs4mTUY" +msgstr "vimeo eller youtube video url. Eks. http://www.youtube.com/watch?v=-iJ7bs4mTUY" #: plugins/video/models.py:11 msgid "preview image file" -msgstr "" +msgstr "forhåndsvisning af billedefil" #: plugins/video/models.py:16 msgid "auto play" -msgstr "" +msgstr "autoplay" #: plugins/video/models.py:17 msgid "auto hide" -msgstr "" +msgstr "skjul automatisk" #: plugins/video/models.py:18 msgid "fullscreen" -msgstr "" +msgstr "fuld skærm" #: plugins/video/models.py:19 msgid "loop" -msgstr "" +msgstr "loop" #: plugins/video/models.py:22 msgid "background color" -msgstr "" +msgstr "baggrundsfarve" #: plugins/video/models.py:22 plugins/video/models.py:23 #: plugins/video/models.py:24 plugins/video/models.py:25 #: plugins/video/models.py:26 plugins/video/models.py:27 #: plugins/video/models.py:28 plugins/video/models.py:29 msgid "Hexadecimal, eg ff00cc" -msgstr "" +msgstr "Hexidecimal, f.eks. ff00cc" #: plugins/video/models.py:23 msgid "text color" -msgstr "" +msgstr "tekstfarve" #: plugins/video/models.py:24 msgid "seekbar color" -msgstr "" +msgstr "baggrundsfarve" #: plugins/video/models.py:25 msgid "seekbar bg color" -msgstr "" +msgstr "baggrundsfarve" #: plugins/video/models.py:26 msgid "loadingbar color" -msgstr "" +msgstr "loadingbar farve" #: plugins/video/models.py:27 msgid "button out color" -msgstr "" +msgstr "button out farve" #: plugins/video/models.py:28 msgid "button over color" -msgstr "" +msgstr "button over farve" #: plugins/video/models.py:29 msgid "button highlight color" -msgstr "" +msgstr "button highlight farve" #: templates/admin/page_submit_line.html:3 #: templates/admin/cms/page/change_form.html:274 #: templates/admin/cms/page/plugin_change_form.html:113 msgid "Save" -msgstr "" +msgstr "Gem" #: templates/admin/page_submit_line.html:7 #, python-format msgid "Delete %(language)s translation" -msgstr "" +msgstr "Slet %(language)s oversættelse" #: templates/admin/page_submit_line.html:11 msgid "Save as new" -msgstr "" +msgstr "Gem som ny" #: templates/admin/page_submit_line.html:12 msgid "Save and add another" -msgstr "" +msgstr "Gem og tilføj en ny" #: templates/admin/page_submit_line.html:13 #: templates/admin/cms/page/change_form.html:275 msgid "Save and continue editing" -msgstr "" +msgstr "Gem og tilføj redigering" #: templates/admin/cms/mail/approvement_required.html:5 #, python-format msgid "" "Page %(page)s may require approvement by you." -msgstr "" +msgstr "Siden %(page)s kan kræve godkendelse af dig." #: templates/admin/cms/mail/approvement_required.html:8 msgid "Last changes" -msgstr "" +msgstr "Seneste ændringer" #: templates/admin/cms/mail/base.html:55 #, python-format msgid "Log in to administration here." -msgstr "" +msgstr "Login for at administrere her." #: templates/admin/cms/mail/page_user_change.html:7 msgid "Username:" -msgstr "" +msgstr "Brugernavn:" #: templates/admin/cms/mail/page_user_change.html:11 msgid "Password:" -msgstr "" +msgstr "Password:" #: templates/admin/cms/page/change_form.html:3 #: templates/admin/cms/page/plugin_forms_history.html:3 #: templates/admin/cms/page/plugin_forms_ok.html:4 msgid "Change a page" -msgstr "" +msgstr "Rediger en side" #: templates/admin/cms/page/change_form.html:64 #: templates/admin/cms/page/change_list.html:8 @@ -1373,453 +1375,464 @@ msgstr "" #: templates/admin/cms/page/recover_form.html:14 #: templates/admin/cms/page/revision_form.html:6 msgid "Home" -msgstr "" +msgstr "Forside" #: templates/admin/cms/page/change_form.html:73 msgid "Approve page deletion" -msgstr "" +msgstr "Godkendt sletning af side" #: templates/admin/cms/page/change_form.html:79 #, python-format msgid "(requires approvement at %(moderation_level)s level)" -msgstr "" +msgstr "(kræver godkendelse af %(moderation_level)s)" #: templates/admin/cms/page/change_form.html:80 msgid "(you can perform actions on this page directly)" -msgstr "" +msgstr "(du kan udføre handlinger på siden direkte)" #: templates/admin/cms/page/change_form.html:93 msgid "Remove delete request" -msgstr "" +msgstr "Slet denne sletningsanmodning" #: templates/admin/cms/page/change_form.html:95 msgid "Approve delete" -msgstr "" +msgstr "Godkend sletning" #: templates/admin/cms/page/change_form.html:95 msgid "Approve" -msgstr "" +msgstr "Godkend" #: templates/admin/cms/page/change_form.html:95 #: templates/admin/cms/page/change_form.html:96 #: templates/admin/cms/page/change_list_tree.html:12 msgid "draft" -msgstr "" +msgstr "udkast" #: templates/admin/cms/page/change_form.html:96 msgid "Preview" -msgstr "" +msgstr "Preview" #: templates/admin/cms/page/change_form.html:99 #: templates/admin/cms/page/revision_form.html:10 msgid "History" -msgstr "" +msgstr "Historie" #: templates/admin/cms/page/change_form.html:100 msgid "View on site" -msgstr "" +msgstr "Se på siden" #: templates/admin/cms/page/change_form.html:130 #: templates/admin/cms/page/plugin_change_form.html:84 msgid "Please correct the error below." msgid_plural "Please correct the errors below." -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Ret venligst fejlen herunder" +msgstr[1] "Ret venligst fejlene herunder" #: templates/admin/cms/page/change_form.html:150 msgid "All permissions" -msgstr "" +msgstr "Alle rettigheder" #: templates/admin/cms/page/change_form.html:151 #: templates/admin/cms/page/change_form.html:163 #: templates/admin/cms/page/loading.html:2 msgid "Loading..." -msgstr "" +msgstr "Henter..." #: templates/admin/cms/page/change_form.html:162 msgid "Page states" -msgstr "" +msgstr "Sidestatus" #: templates/admin/cms/page/change_form.html:185 #, python-format msgid "" "This page must be moderated at level %(moderation_level)s, post a message " "for moderator." -msgstr "" +msgstr "Siden skal modereres på %(moderation_level)s niveau, skriv en besked til moderator." #: templates/admin/cms/page/change_form.html:187 msgid "Request approvemet" -msgstr "" +msgstr "Anmod om godkendelse" #: templates/admin/cms/page/change_list.html:3 msgid "List of pages" -msgstr "" +msgstr "Liste med sider" #: templates/admin/cms/page/change_list.html:58 msgid "Successfully moved" -msgstr "" +msgstr "Siderne blev flyttet" #: templates/admin/cms/page/change_list.html:63 msgid "An error occured. Please reload the page" -msgstr "" +msgstr "Der er sket en fejl. Genindlæs venligst siden." #: templates/admin/cms/page/change_list.html:84 #, python-format msgid "Recover deleted %(name)s" -msgstr "" +msgstr "Genskab slettede %(name)s" #: templates/admin/cms/page/change_list.html:87 #, python-format msgid "Add %(name)s" -msgstr "" +msgstr "Tilføj %(name)s" #: templates/admin/cms/page/change_list.html:99 msgid "Pages on:" -msgstr "" +msgstr "Sider på:" #: templates/admin/cms/page/change_list.html:116 msgid "Filter:" -msgstr "" +msgstr "Filter:" #: templates/admin/cms/page/change_list.html:116 msgid "on" -msgstr "" +msgstr "til" #: templates/admin/cms/page/change_list.html:116 msgid "off" -msgstr "" +msgstr "fra" #: templates/admin/cms/page/change_list.html:118 msgid "Filter" -msgstr "" +msgstr "Filter" #: templates/admin/cms/page/change_list_tree.html:8 msgid "actions" -msgstr "" +msgstr "actions" #: templates/admin/cms/page/change_list_tree.html:10 msgid "moderate" -msgstr "" +msgstr "moderér" #: templates/admin/cms/page/change_list_tree.html:13 msgid "published" -msgstr "" +msgstr "offentliggjort" #: templates/admin/cms/page/change_list_tree.html:15 msgid "start" -msgstr "" +msgstr "start" #: templates/admin/cms/page/change_list_tree.html:16 msgid "end" -msgstr "" +msgstr "slut" #: templates/admin/cms/page/change_list_tree.html:17 msgid "restricted" -msgstr "" +msgstr "begrænset" #: templates/admin/cms/page/change_list_tree.html:19 msgid "last changes" -msgstr "" +msgstr "sidste ændring" #: templates/admin/cms/page/menu_item.html:5 msgid "select this page" -msgstr "" +msgstr "vælg denne side" #: templates/admin/cms/page/menu_item.html:5 #: templates/admin/cms/page/menu_item.html:6 msgid "edit this page" -msgstr "" +msgstr "rediger denne side" #: templates/admin/cms/page/menu_item.html:6 #: templates/cms/toolbar/toolbar.html:54 msgid "edit" -msgstr "" +msgstr "rediger" #: templates/admin/cms/page/menu_item.html:16 msgid "insert above" -msgstr "" +msgstr "indsæt herover" #: templates/admin/cms/page/menu_item.html:17 msgid "insert below" -msgstr "" +msgstr "indsæt herunder" #: templates/admin/cms/page/menu_item.html:19 msgid "insert inside" -msgstr "" +msgstr "indsæt indeni" #: templates/admin/cms/page/menu_item.html:23 msgid "softroot" -msgstr "" +msgstr "softroot" #: templates/admin/cms/page/menu_item.html:23 msgid "home" -msgstr "" +msgstr "forside" #: templates/admin/cms/page/menu_item.html:26 #, python-format msgid "Edit this page in %(language)s " -msgstr "" +msgstr "Rediger denne side på %(language)s" #: templates/admin/cms/page/menu_item.html:33 msgid "Cut" -msgstr "" +msgstr "Klip" #: templates/admin/cms/page/menu_item.html:33 msgid "cut" -msgstr "" +msgstr "klip" #: templates/admin/cms/page/menu_item.html:34 msgid "Copy" -msgstr "" +msgstr "Kopier" #: templates/admin/cms/page/menu_item.html:34 msgid "copy" -msgstr "" +msgstr "Kopier" #: templates/admin/cms/page/menu_item.html:37 #: templates/admin/cms/page/menu_item.html:41 msgid "Add Child" -msgstr "" +msgstr "Tilføj underside" #: templates/admin/cms/page/menu_item.html:37 #: templates/admin/cms/page/menu_item.html:41 msgid "add" -msgstr "" +msgstr "tilføj" #: templates/admin/cms/page/menu_item.html:65 msgid "Approve directly" -msgstr "" +msgstr "Godkend direkte" #: templates/admin/cms/page/menu_item.html:67 #: templates/admin/cms/page/menu_item.html:79 #: templates/admin/cms/page/menu_item.html:81 msgid "view" -msgstr "" +msgstr "se på siden" #: templates/admin/cms/page/menu_item.html:72 msgid "Unpublish" -msgstr "" +msgstr "Gør privat" #: templates/admin/cms/page/menu_item.html:79 msgid "View on page" -msgstr "" +msgstr "Se på siden" #: templates/admin/cms/page/moderation_messages.html:4 msgid "Action" -msgstr "" +msgstr "Action" #: templates/admin/cms/page/moderation_messages.html:5 msgid "Created" -msgstr "" +msgstr "Oprettet" #: templates/admin/cms/page/moderation_messages.html:7 msgid "Message" -msgstr "" +msgstr "Besled" #: templates/admin/cms/page/permissions.html:7 msgid "Group" -msgstr "" +msgstr "Gruppe" #: templates/admin/cms/page/permissions.html:8 msgid "Can edit" -msgstr "" +msgstr "Kan rediger" #: templates/admin/cms/page/permissions.html:9 msgid "Can add" -msgstr "" +msgstr "Kan tilføje" #: templates/admin/cms/page/permissions.html:10 msgid "Can delete" -msgstr "" +msgstr "Kan slette" #: templates/admin/cms/page/permissions.html:11 msgid "Can publish" -msgstr "" +msgstr "Kan offentliggøre" #: templates/admin/cms/page/permissions.html:12 msgid "Can change permissions" -msgstr "" +msgstr "Kan ændre rettigheder" #: templates/admin/cms/page/permissions.html:13 msgid "Can move" -msgstr "" +msgstr "Kan flytte" #: templates/admin/cms/page/permissions.html:14 msgid "Can view" -msgstr "" +msgstr "Kan se" #: templates/admin/cms/page/permissions.html:21 #: templates/admin/cms/page/permissions.html:22 msgid "(global)" -msgstr "" +msgstr "(global)" #: templates/admin/cms/page/permissions.html:26 msgid "(current)" -msgstr "" +msgstr "(nuværende)" #: templates/admin/cms/page/permissions.html:43 msgid "All" -msgstr "" +msgstr "Alle" #: templates/admin/cms/page/permissions.html:51 msgid "Page doesn't inherit any permissions." -msgstr "" +msgstr "Siden kan ikke nedarve rettigheder." #: templates/admin/cms/page/plugin_change_form.html:114 #: templates/cms/toolbar/toolbar.html:24 msgid "Cancel" -msgstr "" +msgstr "Annuller" #: templates/admin/cms/page/plugin_forms_history.html:9 msgid "An old revision of a plugin can not be saved!" -msgstr "" +msgstr "En gammel udgave af et plugin kan ikke blive gemt!" #: templates/admin/cms/page/plugin_forms_ok.html:21 msgid "Plugin saved successfully." -msgstr "" +msgstr "Plugin gemt!" #: templates/admin/cms/page/recover_form.html:17 #, python-format msgid "Recover deleted %(verbose_name)s" -msgstr "" +msgstr "Genskab slettet %(verbose_name)s" #: templates/admin/cms/page/recover_form.html:24 msgid "Press the save button below to recover this version of the object." -msgstr "" +msgstr "Tryk på gem herunder for at genskabe denne version af objektet." #: templates/admin/cms/page/revision_form.html:11 #, python-format msgid "Revert %(verbose_name)s" -msgstr "" +msgstr "Genskab %(verbose_name)s" #: templates/admin/cms/page/revision_form.html:24 msgid "Press the save button below to revert to this version of the object." -msgstr "" +msgstr "Tryk på gem knappen herunder for at genskabe denne version af objektet." #: templates/admin/cms/page/dialog/copy.html:4 msgid "Copy options" -msgstr "" +msgstr "Kopier indstillinger" #: templates/admin/cms/page/dialog/copy.html:6 msgid "Choose copy options" -msgstr "" +msgstr "Vælg koperingsindstillinger" #: templates/admin/cms/page/widgets/installed_plugins_inc.html:7 msgid "Generic" -msgstr "" +msgstr "Generisk" #: templates/admin/cms/page/widgets/installed_plugins_inc.html:15 msgid "Add Plugin" -msgstr "" +msgstr "Tilføj plugin" #: templates/admin/cms/page/widgets/installed_plugins_inc.html:18 msgid "From Language" -msgstr "" +msgstr "Fra sprog" #: templates/admin/cms/page/widgets/installed_plugins_inc.html:25 msgid "Copy Plugins" -msgstr "" +msgstr "Kopier plugins" #: templates/admin/cms/page/widgets/plugin_editor.html:12 msgid "You must save the page first to add plugins." -msgstr "" +msgstr "Do skal gemme siden, før du kan tilføje plugins." #: templates/admin/cms/page/widgets/plugin_editor.html:15 msgid "No Plugin selected. Selected one on the left side" -msgstr "" +msgstr "Intet plugin valgt. Vælg venligst en i venstre side." #: templates/admin/cms/page/widgets/plugin_editor.html:17 msgid "No Plugins present. Add a plugin to this placeholder-slot." -msgstr "" +msgstr "Ingen plugins i denne placeholder. Tilføj venligst et plugin til placeholderen. " #: templates/cms/toolbar/placeholder.html:32 msgid "Available plugins" -msgstr "" +msgstr "Tilgængelige plugin" #: templates/cms/toolbar/toolbar.html:22 msgid "The selected element can not be moved to the desired location." -msgstr "" +msgstr "Det valgte element kan ikke blive flyttet til den valgte destination." #: templates/cms/toolbar/toolbar.html:23 msgid "Are you sure you want to delete this plugin?" -msgstr "" +msgstr "Er du sikker på du vil slette dette plugin?" #: templates/cms/toolbar/toolbar.html:55 msgid "up" -msgstr "" +msgstr "op" #: templates/cms/toolbar/toolbar.html:56 msgid "down" -msgstr "" +msgstr "ned" #: templates/cms/toolbar/toolbar.html:61 msgid "Move to placeholder" -msgstr "" +msgstr "Flyt til placeholder" #: templates/cms/toolbar/items/login.html:5 msgid "Username" -msgstr "" +msgstr "Brugernavn" #: templates/cms/toolbar/items/login.html:10 #: templates/cms/toolbar/items/login.html:12 msgid "Login" -msgstr "" +msgstr "Login" #: templates/cms/toolbar/items/status.html:2 msgid "Status" -msgstr "" +msgstr "Status" #: templates/cms/toolbar/items/switcher.html:4 msgid "Switch on/off" -msgstr "" +msgstr "Slå fra/til" #: templatetags/cms_admin.py:86 #, python-format msgid "%(icon)s" -msgstr "" +msgstr "%(icon)s" #: templatetags/cms_admin.py:99 msgid "Unbind page moderation" -msgstr "" +msgstr "Slå moderation fra på siden" #: templatetags/cms_admin.py:100 msgid "Unbind children moderation" -msgstr "" +msgstr "Slå moderation fra på direkte undersider" #: templatetags/cms_admin.py:101 msgid "Unbind descendants moderation" -msgstr "" +msgstr "Slå moderation fra på alle undersider" #: templatetags/cms_tags.py:78 #, python-format msgid "Page not found on %(domain)s" -msgstr "" +msgstr "Siden blev ikke fundet på %(domain)s" #: templatetags/cms_tags.py:79 #, python-format msgid "" -"A template tag couldn't find the page with lookup arguments `" -"%(page_lookup)s\n" +"A template tag couldn't find the page with lookup arguments `%(page_lookup)s\n" "`. The URL of the request was: http://%(host)s%(path)s" -msgstr "" +msgstr "Et templatetag med parametrene `%(page_lookup)s\n` kunne ikke blive fundet. URLen var: http://%(host)s%(path)s" #: utils/mail.py:38 msgid "CMS - your user account was created." -msgstr "" +msgstr "CMS - din bruger blev oprettet." #: utils/mail.py:40 msgid "CMS - your user account was changed." -msgstr "" +msgstr "CMS - din brugerkonto blev ændret." #: utils/moderator.py:83 msgid "parent first" -msgstr "" +msgstr "overside først" #: utils/moderator.py:90 msgid "approve" -msgstr "" +msgstr "godkend" #: utils/moderator.py:251 #, python-format msgid "CMS - Page %s requires approvement." -msgstr "" +msgstr "CMS - Side %s kræver godkendelse." + +#~ msgid "move" +#~ msgstr "move request" + +#~ msgid "sidebar column" +#~ msgstr "background color" + +#~ msgid "fgcolor" +#~ msgstr "foreground color" + +#~ msgid "Wanted language has not been translated yet." +#~ msgstr "Requested language has not been translated yet." diff --git a/cms/locale/da/LC_MESSAGES/djangojs.po b/cms/locale/da/LC_MESSAGES/djangojs.po index 3038a8630b3..4edd879c7c3 100644 --- a/cms/locale/da/LC_MESSAGES/djangojs.po +++ b/cms/locale/da/LC_MESSAGES/djangojs.po @@ -1,19 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# +# Translators: +# , 2011. +# KristianOellegaard , 2011. msgid "" msgstr "" "Project-Id-Version: django-cms\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-14 09:45-0500\n" -"PO-Revision-Date: 2011-04-05 07:23+0000\n" -"Last-Translator: KristianOellegaard \n" +"Report-Msgid-Bugs-To: https://github.com/divio/django-cms/issues\n" +"POT-Creation-Date: 2011-08-14 09:44-0500\n" +"PO-Revision-Date: 2011-12-16 17:04+0000\n" +"Last-Translator: Kristian Øllegaard \n" "Language-Team: LANGUAGE \n" -"Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" #: static/cms/js/change_form.js:31 @@ -26,7 +29,7 @@ msgstr "Er du sikker på du vil ændre %(field_name)s uden at gemme siden først msgid "" "Not all plugins are saved. Are you sure you want to save the page?\n" "All unsaved plugin content will tried to save." -msgstr "" +msgstr "Ikke alle plugins er gemte. Er du sikker på du vil gemme siden?\nAlle ikke-gemte plugins vil blive forsøgt gemt." #: static/cms/js/change_form.js:127 msgid "Are you sure you want to change tabs without saving the page first?" diff --git a/cms/locale/de/LC_MESSAGES/django.po b/cms/locale/de/LC_MESSAGES/django.po index 0ddeb2dcc6b..20826cb981d 100644 --- a/cms/locale/de/LC_MESSAGES/django.po +++ b/cms/locale/de/LC_MESSAGES/django.po @@ -1,19 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# +# Translators: +# Jonas Obrist , 2011. msgid "" msgstr "" "Project-Id-Version: django-cms\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-14 09:48-0500\n" -"PO-Revision-Date: 2011-05-09 13:13+0000\n" -"Last-Translator: ojii \n" +"Report-Msgid-Bugs-To: https://github.com/divio/django-cms/issues\n" +"POT-Creation-Date: 2011-08-14 09:47-0500\n" +"PO-Revision-Date: 2011-12-16 16:20+0000\n" +"Last-Translator: Jonas Obrist \n" "Language-Team: divio.ch \n" -"Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" "X-Poedit-Country: SWITZERLAND\n" "X-Poedit-Language: English\n" @@ -25,7 +27,7 @@ msgstr "Editiermodus" #: cms_toolbar.py:77 msgid "django CMS" -msgstr "" +msgstr "django CMS" #: cms_toolbar.py:108 templates/admin/cms/page/menu_item.html:73 msgid "Publish" @@ -78,7 +80,7 @@ msgstr "Verlauf anzeigen" #: cms_toolbar.py:205 msgid "Admin" -msgstr "" +msgstr "Administration" #: plugin_base.py:65 msgid "Advanced options" @@ -125,9 +127,9 @@ msgid "Page Title" msgstr "Seitentitel" #: admin/forms.py:138 -msgid "Overwrites what is displayed at the top of your browser or in bookmarks" -msgstr "" -"Überschreiben, was im Titel des Browsers oder in den Lesezeichen erscheint" +msgid "" +"Overwrites what is displayed at the top of your browser or in bookmarks" +msgstr "Überschreiben, was im Titel des Browsers oder in den Lesezeichen erscheint" #: admin/forms.py:139 msgid "Application" @@ -143,8 +145,7 @@ msgstr "URL-Überschreibung" #: admin/forms.py:143 msgid "Keep this field empty if standard path should be used." -msgstr "" -"Lassen Sie dieses Feld leer, wenn der Standardpfad verwendet werden soll." +msgstr "Lassen Sie dieses Feld leer, wenn der Standardpfad verwendet werden soll." #: admin/forms.py:149 msgid "Redirect" @@ -160,9 +161,7 @@ msgstr "Eine Beschreibung der Seite (wird teilweise von Suchmaschinen genutzt)" #: admin/forms.py:154 msgid "A list of comma seperated keywords sometimes used by search engines." -msgstr "" -"Eine Liste von mit Kommas getrennten Schlüsselwörtern (wird teilweise von " -"Suchmaschinen genutzt)" +msgstr "Eine Liste von mit Kommas getrennten Schlüsselwörtern (wird teilweise von Suchmaschinen genutzt)" #: admin/forms.py:170 msgid "A page with this reverse URL id exists already." @@ -173,9 +172,9 @@ msgid "Invalid URL, use /my/url format." msgstr "Keine korrekte URL. Bitte verwenden sie das Format: /meine/url/" #: admin/forms.py:181 -#, fuzzy, python-format +#, python-format msgid "Page with redirect url %r already exist" -msgstr "Eine andere Seite mit diesem Slug existiert bereits" +msgstr "Eine Seite mit der der Weiterleitung nach %r existiert bereits." #: admin/forms.py:191 admin/forms.py:192 migrations/0001_initial.py:41 #: models/permissionmodels.py:16 @@ -186,21 +185,15 @@ msgstr "Benutzer" msgid "" "Add page permission requires also access to children, or descendants, " "otherwise added page can't be changed by its creator." -msgstr "" -"Zum Hinzufügen von Seiten muss der Zugriff auf Unterseiten ebenfalls " -"ermöglicht werden, sonst können neu erstellte Seiten nach dem ersten " -"Speichervorgang nicht mehr bearbeitet werden." +msgstr "Zum Hinzufügen von Seiten muss der Zugriff auf Unterseiten ebenfalls ermöglicht werden, sonst können neu erstellte Seiten nach dem ersten Speichervorgang nicht mehr bearbeitet werden." #: admin/forms.py:221 msgid "Add page permission also requires edit page permission." -msgstr "" -"Die \"Seiten hinzufügen\"-Berechtigung benötigt auch die \"Bearbeiten\"-" -"Berechtigung" +msgstr "Die \"Seiten hinzufügen\"-Berechtigung benötigt auch die \"Bearbeiten\"-Berechtigung" #: admin/forms.py:248 -#, fuzzy msgid "can_view" -msgstr "Anzeigen" +msgstr "Kann sehen" #: admin/forms.py:260 msgid "Please select user or group first." @@ -235,9 +228,7 @@ msgstr "Benutzer benachrichtigen" msgid "" "Send email notification to user about username or password change. Requires " "user email." -msgstr "" -"Benachrichtigung über Änderungen von Benutzername oder Passwort per E-Mail " -"an den Benutzer senden. Benötigt die E-Mail-Adresse des Benutzers." +msgstr "Benachrichtigung über Änderungen von Benutzername oder Passwort per E-Mail an den Benutzer senden. Benötigt die E-Mail-Adresse des Benutzers." #: admin/forms.py:318 msgid "New password" @@ -254,16 +245,12 @@ msgstr "E-Mail-Benachrichtigung benötigt eine gültige E-Mail-Adresse." #: admin/forms.py:341 msgid "" "The permission to add new pages requires the permission to change pages!" -msgstr "" -"Die Berechtigung neue Seiten hinzuzufügen benötigt die Berechtigung Seiten " -"zu ändern." +msgstr "Die Berechtigung neue Seiten hinzuzufügen benötigt die Berechtigung Seiten zu ändern." #: admin/forms.py:343 msgid "" "The permission to add new users requires the permission to change users!" -msgstr "" -"Die Berechtigung neue Benutzer hinzufügen benötigt die Berechtigung Benutzer " -"zu ändern." +msgstr "Die Berechtigung neue Benutzer hinzufügen benötigt die Berechtigung Benutzer zu ändern." #: admin/forms.py:345 msgid "To add permissions you also need to edit them!" @@ -275,9 +262,7 @@ msgstr "Grundeinstellungen" #: admin/pageadmin.py:100 msgid "Note: This page reloads if you change the selection. Save it first." -msgstr "" -"Hinweis: Diese Seite wird neu geladen, wenn Sie die Auswahl ändern. " -"Speichern Sie sie zuerst." +msgstr "Hinweis: Diese Seite wird neu geladen, wenn Sie die Auswahl ändern. Speichern Sie sie zuerst." #: admin/pageadmin.py:102 admin/pageadmin.py:154 msgid "Hidden" @@ -292,9 +277,8 @@ msgid "SEO Settings" msgstr "Einstellungen zur Suchmaschinenoptimierung (SEO)" #: admin/pageadmin.py:299 -#, fuzzy msgid "You have no permission to change the template" -msgstr "Sie haben nicht die Berechtigung, um diese Seite zu ändern." +msgstr "Du hast keine Berechtigung die Templates zu ändern." #: admin/pageadmin.py:485 msgid "higher" @@ -332,14 +316,11 @@ msgstr "Sie haben nicht die Berechtigung, um diese Seite zu veröffentlichen." #: admin/pageadmin.py:1066 msgid "You do not have permission to change this page's in_navigation status" -msgstr "" -"Sie haben nicht Berechtigung, um den \"im Menü\"-Status dieser Seite zu " -"ändern." +msgstr "Sie haben nicht Berechtigung, um den \"im Menü\"-Status dieser Seite zu ändern." #: admin/pageadmin.py:1079 -#, fuzzy msgid "You have no permission to add a plugin" -msgstr "Sie haben nicht die Berechtigung, um diese Seite zu ändern." +msgstr "Du hast keine Berechtigung Plugins hinzuzufügen." #: admin/pageadmin.py:1126 admin/pageadmin.py:1158 msgid "Language must be set to a supported language!" @@ -359,9 +340,8 @@ msgid "Language must be different than the copied language!" msgstr "Die Sprache muss sich von der kopierten unterscheiden!" #: admin/pageadmin.py:1166 -#, fuzzy msgid "You do not have permission to add plugins" -msgstr "Sie haben nicht die Berechtigung, um diese Seite zu ändern." +msgstr "Du hast keine Berechtigung Plugins hinzuzufügen." #: admin/pageadmin.py:1173 #, python-format @@ -369,53 +349,45 @@ msgid "Copied %(language)s plugins to %(placeholder)s" msgstr "Plugins von %(language)s wurden nach %(placeholder)s kopiert." #: admin/pageadmin.py:1186 admin/pageadmin.py:1294 admin/pageadmin.py:1316 -#, fuzzy msgid "You have no permission to change this page" -msgstr "Sie haben nicht die Berechtigung, um diese Seite zu ändern." +msgstr "Du hast keine Berechtigung, diese Seite zu ändern." #: admin/pageadmin.py:1221 -#, fuzzy msgid "You have no permission to edit a plugin" -msgstr "Sie haben nicht die Berechtigung, um diese Seite zu ändern." +msgstr "Du hast keine Berechtigung, Plugins zu verarbeiten." #: admin/pageadmin.py:1256 #, python-format msgid "" "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -msgstr "" -"%(plugin_name)s-Plugin auf der %(position)s Position in %(placeholder)s " -"wurde geändert." +msgstr "%(plugin_name)s-Plugin auf der %(position)s Position in %(placeholder)s wurde geändert." #: admin/pageadmin.py:1311 -#, fuzzy msgid "You have no permission to move a plugin" -msgstr "Sie haben nicht die Berechtigung, um diese Seite zu ändern." +msgstr "Du hast keine Berechtigung, Plugins zu verschieben." #: admin/pageadmin.py:1329 msgid "Plugins where moved" msgstr "Plugins wurden verschoben." #: admin/pageadmin.py:1343 -#, fuzzy msgid "You have no permission to remove a plugin" -msgstr "Sie haben nicht die Berechtigung, um diese Seite zu ändern." +msgstr "Du hast keine Berechtigung, Plugins zu entfernen." #: admin/pageadmin.py:1361 admin/placeholderadmin.py:292 #, python-format msgid "" "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " "deleted." -msgstr "" -"Das %(plugin_name)s-Plugin auf Position %(position)s in %(placeholder)s " -"wurde gelöscht." +msgstr "Das %(plugin_name)s-Plugin auf Position %(position)s in %(placeholder)s wurde gelöscht." #: admin/permissionadmin.py:72 msgid "View restriction" -msgstr "" +msgstr "Ansichtsbeschränkungen" #: admin/permissionadmin.py:73 msgid "View restrictions" -msgstr "" +msgstr "Ansichtsbeschränkungen" #: admin/permissionadmin.py:133 models/permissionmodels.py:75 msgid "Page permissions" @@ -430,19 +402,16 @@ msgid "Page permissions management" msgstr "Verwaltung der Benutzer-Berechtigungen" #: admin/placeholderadmin.py:150 admin/placeholderadmin.py:191 -#, fuzzy msgid "You don't have permission to add content here." -msgstr "Sie haben nicht die Berechtigung, um diese Seite zu ändern." +msgstr "Du hast keine Berechtigung, hier Inhalte hinzuzufügen." #: admin/placeholderadmin.py:187 -#, fuzzy msgid "You don't have permission to add plugins" -msgstr "Sie haben nicht die Berechtigung, um diese Seite zu ändern." +msgstr "Du hast keine Berechtigung Plugins hinzuzufügen." #: admin/placeholderadmin.py:288 -#, fuzzy msgid "You don't have permission to delete a plugin" -msgstr "Sie haben nicht die Berechtigung, um diese Seite zu ändern." +msgstr "Du hast keine Berechtigung, Plugins zu entfernen." #: admin/useradmin.py:25 msgid "User details" @@ -744,9 +713,7 @@ msgstr "geändert von" msgid "" "When the page should go live. Status must be \"Published\" for page to go " "live." -msgstr "" -"Ab wann soll die Seite veröffentlicht werden? Der Status der Seite muss dazu " -"auf \"veröffentlicht\" sein. " +msgstr "Ab wann soll die Seite veröffentlicht werden? Der Status der Seite muss dazu auf \"veröffentlicht\" sein. " #: models/pagemodel.py:67 msgid "When to expire the page. Leave empty to never expire." @@ -760,9 +727,7 @@ msgstr "Alle übergeordneten Seiten werden nicht im Menü dargestellt." msgid "" "An unique identifier that is used with the page_url templatetag for linking " "to this page" -msgstr "" -"Ein einzigartiger Identifikator, der benutzt wird, um mit dem page_url " -"templatetag auf diese Seite zu verlinken." +msgstr "Ein einzigartiger Identifikator, der benutzt wird, um mit dem page_url templatetag auf diese Seite zu verlinken." #: models/pagemodel.py:71 msgid "attached menu" @@ -838,11 +803,11 @@ msgstr "Kann moderieren" #: models/permissionmodels.py:28 msgid "view restricted" -msgstr "" +msgstr "Ansicht eingeschränkt" #: models/permissionmodels.py:28 msgid "frontend view restriction" -msgstr "" +msgstr "Frontendansicht eingeschränkt" #: models/permissionmodels.py:51 msgid "can recover pages" @@ -854,8 +819,7 @@ msgstr "Kann alle gelöschten Seiten wiederherstellen" #: models/permissionmodels.py:52 msgid "If none selected, user haves granted permissions to all sites." -msgstr "" -"Falls keine Auswahl erfolgt, hat der Benutzer Berechtigungen auf alle Seiten." +msgstr "Falls keine Auswahl erfolgt, hat der Benutzer Berechtigungen auf alle Seiten." #: models/permissionmodels.py:52 msgid "sites" @@ -925,7 +889,7 @@ msgstr "Datei" #: plugins/file/templates/cms/plugins/file.html:6 msgid "file missing!" -msgstr "" +msgstr "Datei nicht gefunden!" #: plugins/flash/cms_plugins.py:9 msgid "Flash" @@ -942,16 +906,13 @@ msgstr "Höhe" #: plugins/flash/templates/cms/plugins/flash.html:40 #: plugins/video/templates/cms/plugins/video.html:60 -#, fuzzy msgid "Missing flash plugin. Please download the latest Adobe Flash Player: " -msgstr "" -"Das Flash Plugin fehlt. Sie können es hier downloaden." +msgstr "Flash Plugin nicht gefunden. Bitte laden Sie sich den neusten Adobe Flash Player herunter." #: plugins/flash/templates/cms/plugins/flash.html:42 #: plugins/video/templates/cms/plugins/video.html:62 msgid "Get Adobe Flash Player" -msgstr "" +msgstr "Adobe Flash Player herunterladen" #: plugins/googlemap/cms_plugins.py:10 msgid "Google Map" @@ -1029,9 +990,7 @@ msgstr "Sprache oder Seite müssen ausgefüllt sein." msgid "" "Choose a page to include its plugins into this placeholder, empty will " "choose current page" -msgstr "" -"Wählen Sie eine Seite von der Sie die Plugins erben wollen. Leer wählt die " -"momentane Seite." +msgstr "Wählen Sie eine Seite von der Sie die Plugins erben wollen. Leer wählt die momentane Seite." #: plugins/inherit/models.py:11 msgid "Optional: the language of the plugins you want" @@ -1072,7 +1031,7 @@ msgstr "Bild" #: plugins/picture/models.py:14 msgid "center" -msgstr "" +msgstr "mittig" #: plugins/picture/models.py:15 msgid "left" @@ -1128,9 +1087,7 @@ msgstr "HTML" #: plugins/snippet/models.py:15 msgid "" "Enter a template (i.e. \"snippets/plugin_xy.html\") which will be rendered. " -msgstr "" -"Fügen sie eine Vorlage ein, welche dargestellt werden soll (z.B. \"snippets/" -"plugin_xy.html\")." +msgstr "Fügen sie eine Vorlage ein, welche dargestellt werden soll (z.B. \"snippets/plugin_xy.html\")." #: plugins/snippet/models.py:25 msgid "Snippets" @@ -1234,8 +1191,7 @@ msgstr "Link Tipp" #: plugins/twitter/models.py:9 msgid "If given, the hint is displayed as link to your Twitter profile." -msgstr "" -"Wenn ausgefüllt, wird der Tipp als Link zu Ihrem Twitter-Profil dargestellt." +msgstr "Wenn ausgefüllt, wird der Tipp als Link zu Ihrem Twitter-Profil dargestellt." #: plugins/twitter/models.py:16 msgid "query" @@ -1246,35 +1202,31 @@ msgid "" "Example: \"brains AND zombies AND from:umbrella AND to:nemesis\": tweets " "from the user \"umbrella\" to the user \"nemesis\" that contain the words " "\"brains\" and \"zombies\"" -msgstr "" -"Beispiel: \"Gehirne AND Zombies AND from:umbrella AND to:nemesis\": Tweets " -"vom Benutzer \"umbrella\" an den Benutzer \"nemesis\" mit den Worten " -"\"Gehirne\" und \"Zombies\"." +msgstr "Beispiel: \"Gehirne AND Zombies AND from:umbrella AND to:nemesis\": Tweets vom Benutzer \"umbrella\" an den Benutzer \"nemesis\" mit den Worten \"Gehirne\" und \"Zombies\"." #: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:12 msgid "we said," -msgstr "" +msgstr "wir sagten," #: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:13 msgid "we" -msgstr "" +msgstr "wir" #: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:14 msgid "we were" -msgstr "" +msgstr "wir waren" #: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:15 msgid "we replied to" -msgstr "" +msgstr "wir haben geantwortet" #: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:16 msgid "we were checking out" -msgstr "" +msgstr "wir sahen" #: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:17 -#, fuzzy msgid "loading tweets..." -msgstr "Wird geladen…" +msgstr "Lade Tweets..." #: plugins/video/cms_plugins.py:10 msgid "Video" @@ -1286,7 +1238,7 @@ msgstr "Farb-Einstellungen" #: plugins/video/models.py:9 msgid "movie file" -msgstr "Film Datei" +msgstr "Verschiebung beantragen" #: plugins/video/models.py:9 msgid "use .flv file or h264 encoded video file" @@ -1294,16 +1246,13 @@ msgstr "Benutzen sie .flv oder H264 enkodierte Video Dateien." #: plugins/video/models.py:10 msgid "movie url" -msgstr "Film URL" +msgstr "Verschiebung beantragen" #: plugins/video/models.py:10 -#, fuzzy msgid "" -"vimeo or youtube video url. Example: http://www.youtube.com/watch?v=-" -"iJ7bs4mTUY" -msgstr "" -"Vimeo oder Youtube Video URL. Beispiel: http://www.youtube.com/watch?" -"v=YFa59lK-kpo" +"vimeo or youtube video url. Example: " +"http://www.youtube.com/watch?v=-iJ7bs4mTUY" +msgstr "Vimeo oder Youtube video URL. Beispiel: http://www.youtube.com/watch?v=-iJ7bs4mTUY" #: plugins/video/models.py:11 msgid "preview image file" @@ -1392,8 +1341,7 @@ msgstr "Speichern und weiter bearbeiten" #, python-format msgid "" "Page %(page)s may require approvement by you." -msgstr "" -"Die Seite %(page)s benötigt Ihre Freigabe." +msgstr "Die Seite %(page)s benötigt Ihre Freigabe." #: templates/admin/cms/mail/approvement_required.html:8 msgid "Last changes" @@ -1402,9 +1350,7 @@ msgstr "Letzte Änderungen" #: templates/admin/cms/mail/base.html:55 #, python-format msgid "Log in to administration here." -msgstr "" -"Sie können sich hier in die Administration " -"einloggen." +msgstr "Sie können sich hier in die Administration einloggen." #: templates/admin/cms/mail/page_user_change.html:7 msgid "Username:" @@ -1498,9 +1444,7 @@ msgstr "Seitenstatus" msgid "" "This page must be moderated at level %(moderation_level)s, post a message " "for moderator." -msgstr "" -"Diese Seite muss auf der Ebene %(moderation_level)s moderiert werden. Senden " -"Sie eine Nachricht an den Moderator." +msgstr "Diese Seite muss auf der Ebene %(moderation_level)s moderiert werden. Senden Sie eine Nachricht an den Moderator." #: templates/admin/cms/page/change_form.html:187 msgid "Request approvemet" @@ -1570,7 +1514,7 @@ msgstr "Ende" #: templates/admin/cms/page/change_list_tree.html:17 msgid "restricted" -msgstr "" +msgstr "eingeschränkt" #: templates/admin/cms/page/change_list_tree.html:19 msgid "last changes" @@ -1700,9 +1644,8 @@ msgid "Can move" msgstr "Kann verschieben" #: templates/admin/cms/page/permissions.html:14 -#, fuzzy msgid "Can view" -msgstr "Kann verschieben" +msgstr "Kann sehen" #: templates/admin/cms/page/permissions.html:21 #: templates/admin/cms/page/permissions.html:22 @@ -1724,7 +1667,7 @@ msgstr "Seite erbt keine Berechtigungen." #: templates/admin/cms/page/plugin_change_form.html:114 #: templates/cms/toolbar/toolbar.html:24 msgid "Cancel" -msgstr "" +msgstr "Abbrechen" #: templates/admin/cms/page/plugin_forms_history.html:9 msgid "An old revision of a plugin can not be saved!" @@ -1778,8 +1721,7 @@ msgstr "Plugins kopieren" #: templates/admin/cms/page/widgets/plugin_editor.html:12 msgid "You must save the page first to add plugins." -msgstr "" -"Sie müssen die Seite zuerst speichern, um Plugins hinzufügen zu können." +msgstr "Sie müssen die Seite zuerst speichern, um Plugins hinzufügen zu können." #: templates/admin/cms/page/widgets/plugin_editor.html:15 msgid "No Plugin selected. Selected one on the left side" @@ -1787,8 +1729,7 @@ msgstr "Kein Plugin ausgewählt. Wählen Sie eins auf der linken Seite aus." #: templates/admin/cms/page/widgets/plugin_editor.html:17 msgid "No Plugins present. Add a plugin to this placeholder-slot." -msgstr "" -"Keine Plugins vorhanden. Fügen Sie ein Plugin in diesen Platzhalter ein." +msgstr "Keine Plugins vorhanden. Fügen Sie ein Plugin in diesen Platzhalter ein." #: templates/cms/toolbar/placeholder.html:32 msgid "Available plugins" @@ -1796,7 +1737,7 @@ msgstr "Verfügbare Plugins" #: templates/cms/toolbar/toolbar.html:22 msgid "The selected element can not be moved to the desired location." -msgstr "" +msgstr "Das ausgewählte Element kann nicht an die gewünschte Position verschoben werden." #: templates/cms/toolbar/toolbar.html:23 msgid "Are you sure you want to delete this plugin?" @@ -1812,7 +1753,7 @@ msgstr "runter" #: templates/cms/toolbar/toolbar.html:61 msgid "Move to placeholder" -msgstr "" +msgstr "In einen Platzhalter verschieben." #: templates/cms/toolbar/items/login.html:5 msgid "Username" @@ -1820,9 +1761,8 @@ msgstr "Benutzername" #: templates/cms/toolbar/items/login.html:10 #: templates/cms/toolbar/items/login.html:12 -#, fuzzy msgid "Login" -msgstr "einloggen" +msgstr "Anmelden" #: templates/cms/toolbar/items/status.html:2 msgid "Status" @@ -1830,12 +1770,12 @@ msgstr "Status" #: templates/cms/toolbar/items/switcher.html:4 msgid "Switch on/off" -msgstr "" +msgstr "Ein-/Ausschalten" #: templatetags/cms_admin.py:86 #, python-format msgid "%(icon)s" -msgstr "" +msgstr "%(icon)s" #: templatetags/cms_admin.py:99 msgid "Unbind page moderation" @@ -1857,12 +1797,9 @@ msgstr "Seite nicht gefunden auf %(domain)s" #: templatetags/cms_tags.py:79 #, python-format msgid "" -"A template tag couldn't find the page with lookup arguments `" -"%(page_lookup)s\n" +"A template tag couldn't find the page with lookup arguments `%(page_lookup)s\n" "`. The URL of the request was: http://%(host)s%(path)s" -msgstr "" -"Ein Templatetag konnte die Seite `%(page_lookup)s\n" -"` nicht finden. Die Addresse war: http://%(host)s%(path)s" +msgstr "Ein Templatetag konnte die Seite `%(page_lookup)s\n` nicht finden. Die Addresse war: http://%(host)s%(path)s" #: utils/mail.py:38 msgid "CMS - your user account was created." @@ -1885,98 +1822,14 @@ msgstr "freigeben" msgid "CMS - Page %s requires approvement." msgstr "CMS - Seite %s benötigt Freigabe." -#~ msgid "Missing flash plugin." -#~ msgstr "Flash-Plugin wurde nicht gefunden." - -#~ msgid "Login url: %(login_url)s" -#~ msgstr "Login URL: %(login_url)s" - -#~ msgid "Move to %(name)s" -#~ msgstr "Nach %(name)s verschieben" - #~ msgid "move" -#~ msgstr "verschieben" - -#~ msgid "add child" -#~ msgstr "Unterseite hinzufügen" - -#~ msgid "add sibling" -#~ msgstr "Auf gleicher Ebene erstellen" - -#~ msgid "history" -#~ msgstr "Verlauf" - -#~ msgid "Lock" -#~ msgstr "Sperren" - -#~ msgid "Close" -#~ msgstr "Schliessen" - -#~ msgid "Settings" -#~ msgstr "Einstellungen" - -#~ msgid "Delete Plugin" -#~ msgstr "Plugin löschen" - -#~ msgid "English" -#~ msgstr "Englisch" - -#~ msgid "French" -#~ msgstr "Französisch" - -#~ msgid "German" -#~ msgstr "Deutsch" - -#~ msgid "Brazil" -#~ msgstr "Portugisiesch \\(Brasilien\\)" - -#~ msgid "Dutch" -#~ msgstr "Holländisch" - -#~ msgid "two columns" -#~ msgstr "Zwei Spalten" - -#~ msgid "three columns" -#~ msgstr "Drei Spalten" - -#~ msgid "navigation examples" -#~ msgstr "Navigations Beispiel" +#~ msgstr "move request" #~ msgid "sidebar column" -#~ msgstr "Seitenspalte" - -#~ msgid "left column" -#~ msgstr "Linke Spalte" - -#~ msgid "right column" -#~ msgstr "Rechte Spalte" - -#~ msgid "Articles" -#~ msgstr "Artikel" - -#~ msgid "Sample App" -#~ msgstr "Beispiel Applikation" - -#~ msgid "sample root page" -#~ msgstr "Beispiel Hauptseite" - -#~ msgid "sample settings page" -#~ msgstr "Beispiel Einstellungen" - -#~ msgid "sample account page" -#~ msgstr "Beispiel Konto" - -#~ msgid "sample my profile page" -#~ msgstr "Beispiel Profil" - -#~ msgid "Static Menu" -#~ msgstr "Statisches Menu" - -#~ msgid "Static Menu2" -#~ msgstr "Statisches Menu 2" +#~ msgstr "background color" #~ msgid "fgcolor" -#~ msgstr "Vordergrundfarbe" +#~ msgstr "foreground color" #~ msgid "Wanted language has not been translated yet." -#~ msgstr "Die gesuchte Sprache wurde noch nicht übersetzt." +#~ msgstr "Requested language has not been translated yet." diff --git a/cms/locale/es/LC_MESSAGES/django.po b/cms/locale/es/LC_MESSAGES/django.po index 641e26d53ea..ae987afe22f 100644 --- a/cms/locale/es/LC_MESSAGES/django.po +++ b/cms/locale/es/LC_MESSAGES/django.po @@ -1,19 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# +# Translators: +# , 2011. +# , 2011. +# Pedro Gracia , 2011. +# , 2011. +# , 2011. msgid "" msgstr "" "Project-Id-Version: django-cms\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-14 09:48-0500\n" -"PO-Revision-Date: 2011-04-27 10:08+0000\n" -"Last-Translator: lasarux \n" +"Report-Msgid-Bugs-To: https://github.com/divio/django-cms/issues\n" +"POT-Creation-Date: 2011-08-14 09:47-0500\n" +"PO-Revision-Date: 2011-11-09 16:08+0000\n" +"Last-Translator: xyos \n" "Language-Team: divio.ch \n" -"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" "X-Poedit-Country: SWITZERLAND\n" "X-Poedit-Language: English\n" @@ -25,7 +31,7 @@ msgstr "Modo edición" #: cms_toolbar.py:77 msgid "django CMS" -msgstr "" +msgstr "django CMS" #: cms_toolbar.py:108 templates/admin/cms/page/menu_item.html:73 msgid "Publish" @@ -78,7 +84,7 @@ msgstr "Ver Historia" #: cms_toolbar.py:205 msgid "Admin" -msgstr "" +msgstr "Admin" #: plugin_base.py:65 msgid "Advanced options" @@ -110,7 +116,7 @@ msgstr "Idioma actual de los campos de contenido." #: admin/forms.py:117 msgid "Another page with this slug already exists" -msgstr "Hay otra página con ese slug" +msgstr "Hay otra página con ese 'slug'" #: admin/forms.py:135 msgid "Menu Title" @@ -125,10 +131,9 @@ msgid "Page Title" msgstr "Título de la Página" #: admin/forms.py:138 -msgid "Overwrites what is displayed at the top of your browser or in bookmarks" -msgstr "" -"Sobreescribe lo que es mostrado en lo alto de su navegador o en sus " -"marcadores" +msgid "" +"Overwrites what is displayed at the top of your browser or in bookmarks" +msgstr "Sobreescribe lo que es mostrado en lo alto de su navegador o en sus marcadores" #: admin/forms.py:139 msgid "Application" @@ -136,7 +141,7 @@ msgstr "Aplicación" #: admin/forms.py:141 msgid "Hook application to this page." -msgstr "Enganchar la aplicación a esta página." +msgstr "Integrar la aplicación a esta página." #: admin/forms.py:142 msgid "Overwrite URL" @@ -156,13 +161,11 @@ msgstr "Redirige a esta URL." #: admin/forms.py:152 msgid "A description of the page sometimes used by search engines." -msgstr "" -"Descripción de la página que a veces será usado por los motores de búsqueda." +msgstr "Descripción de la página que a veces será usado por los motores de búsqueda." #: admin/forms.py:154 msgid "A list of comma seperated keywords sometimes used by search engines." -msgstr "" -"Lista de palabras clave que a veces será usada por los motores de búsqueda." +msgstr "Lista de palabras clave que a veces será usada por los motores de búsqueda." #: admin/forms.py:170 msgid "A page with this reverse URL id exists already." @@ -173,9 +176,9 @@ msgid "Invalid URL, use /my/url format." msgstr "URL inválida, use el formato /mi/url." #: admin/forms.py:181 -#, fuzzy, python-format +#, python-format msgid "Page with redirect url %r already exist" -msgstr "Hay otra página con ese slug" +msgstr "Página con redirección al url %r, ya existe" #: admin/forms.py:191 admin/forms.py:192 migrations/0001_initial.py:41 #: models/permissionmodels.py:16 @@ -186,20 +189,15 @@ msgstr "usuario" msgid "" "Add page permission requires also access to children, or descendants, " "otherwise added page can't be changed by its creator." -msgstr "" -"Añadir permisos a la página requiere también acceder a sus hijos o " -"descendientes, de otra forma la página añadida no puede ser modificada por " -"su creador." +msgstr "Añadir permisos a la página requiere también acceder a sus hijos o descendientes, de otra forma la página añadida no puede ser modificada por su creador." #: admin/forms.py:221 msgid "Add page permission also requires edit page permission." -msgstr "" -"Añadir permiso de página también requiere del permiso de edición de página." +msgstr "Añadir permiso de página también requiere del permiso de edición de página." #: admin/forms.py:248 -#, fuzzy msgid "can_view" -msgstr "ver" +msgstr "puede ver" #: admin/forms.py:260 msgid "Please select user or group first." @@ -234,9 +232,7 @@ msgstr "Notificar al usuario" msgid "" "Send email notification to user about username or password change. Requires " "user email." -msgstr "" -"Enviar una notificación por correo al usuario sobre un cambio de nombre de " -"usuario o contraseña. Requiere un correo del usuario." +msgstr "Enviar una notificación por correo al usuario sobre un cambio de nombre de usuario o contraseña. Requiere un correo del usuario." #: admin/forms.py:318 msgid "New password" @@ -253,16 +249,12 @@ msgstr "La notificación de email requiere de una dirección de email válida." #: admin/forms.py:341 msgid "" "The permission to add new pages requires the permission to change pages!" -msgstr "" -"¡El permiso para añadir nuevas páginas depende del permiso para cambiar " -"páginas!" +msgstr "¡El permiso para añadir nuevas páginas depende del permiso para cambiar páginas!" #: admin/forms.py:343 msgid "" "The permission to add new users requires the permission to change users!" -msgstr "" -"¡El permiso para añadir nuevos usuarios depende del permiso para cambiar " -"usuarios!" +msgstr "¡El permiso para añadir nuevos usuarios depende del permiso para cambiar usuarios!" #: admin/forms.py:345 msgid "To add permissions you also need to edit them!" @@ -274,12 +266,11 @@ msgstr "Configuración básica" #: admin/pageadmin.py:100 msgid "Note: This page reloads if you change the selection. Save it first." -msgstr "" -"Observación: Esta página recarga si cambia la selección. Guárdela primero." +msgstr "Observación: Esta página recarga si cambia la selección. Guárdela primero." #: admin/pageadmin.py:102 admin/pageadmin.py:154 msgid "Hidden" -msgstr "Escondido" +msgstr "Oculto" #: admin/pageadmin.py:106 msgid "Advanced Settings" @@ -290,9 +281,8 @@ msgid "SEO Settings" msgstr "Configuración de SEO" #: admin/pageadmin.py:299 -#, fuzzy msgid "You have no permission to change the template" -msgstr "No tiene permisos para cambiar esta página" +msgstr "No tienes permisos para modificar la plantilla" #: admin/pageadmin.py:485 msgid "higher" @@ -318,8 +308,7 @@ msgstr "Sólo existe una traducción para esta página." #: admin/pageadmin.py:969 #, python-format msgid "Title and plugins with language %(language)s was deleted" -msgstr "" -"El título y los 'plugins' con el lenguaje %(language)s fueron eliminados." +msgstr "El título y los plugins con el lenguaje %(language)s fueron eliminados." #: admin/pageadmin.py:991 msgid "Are you sure?" @@ -331,17 +320,15 @@ msgstr "No tiene permisos para publicar esta página" #: admin/pageadmin.py:1066 msgid "You do not have permission to change this page's in_navigation status" -msgstr "" -"No tiene permisos para cambiar esta página en el estado 'in_navigation'" +msgstr "No tiene permisos para cambiar esta página en el estado 'in_navigation'" #: admin/pageadmin.py:1079 -#, fuzzy msgid "You have no permission to add a plugin" -msgstr "No tiene permisos para cambiar esta página" +msgstr "No tienes permiso para añadir el plugin" #: admin/pageadmin.py:1126 admin/pageadmin.py:1158 msgid "Language must be set to a supported language!" -msgstr "¡Idioma debe estar configurado a uno soportado!" +msgstr "¡El idioma debe estar soportado para ser configurado!" #: admin/pageadmin.py:1138 #, python-format @@ -357,62 +344,54 @@ msgid "Language must be different than the copied language!" msgstr "¡El idioma debe ser diferente del de la copia!" #: admin/pageadmin.py:1166 -#, fuzzy msgid "You do not have permission to add plugins" -msgstr "No tiene permisos para cambiar esta página" +msgstr "No tienes permisos para añadir plugins" #: admin/pageadmin.py:1173 #, python-format msgid "Copied %(language)s plugins to %(placeholder)s" -msgstr "'plugins' en %(language)s copiados a %(placeholder)s" +msgstr "plugins en %(language)s copiados a %(placeholder)s" #: admin/pageadmin.py:1186 admin/pageadmin.py:1294 admin/pageadmin.py:1316 -#, fuzzy msgid "You have no permission to change this page" -msgstr "No tiene permisos para cambiar esta página" +msgstr "No tienes permisos para modificar esta página" #: admin/pageadmin.py:1221 -#, fuzzy msgid "You have no permission to edit a plugin" -msgstr "No tiene permisos para cambiar esta página" +msgstr "No tienes permiso para editar el plugin" #: admin/pageadmin.py:1256 #, python-format msgid "" "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -msgstr "" -"%(plugin_name)s plugin editado en la posición %(position)s en %(placeholder)s" +msgstr "%(plugin_name)s plugin editado en la posición %(position)s en %(placeholder)s" #: admin/pageadmin.py:1311 -#, fuzzy msgid "You have no permission to move a plugin" -msgstr "No tiene permisos para cambiar esta página" +msgstr "No tienes permiso para mover el plugin" #: admin/pageadmin.py:1329 msgid "Plugins where moved" -msgstr "Los 'plugins' fueron movidos" +msgstr "Los plugins fueron movidos" #: admin/pageadmin.py:1343 -#, fuzzy msgid "You have no permission to remove a plugin" -msgstr "No tiene permisos para cambiar esta página" +msgstr "No tienes permiso para eliminar el plugin" #: admin/pageadmin.py:1361 admin/placeholderadmin.py:292 #, python-format msgid "" "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " "deleted." -msgstr "" -"%(plugin_name)s plugin en la posición %(position)s en %(placeholder)s fue " -"eliminado." +msgstr "%(plugin_name)s plugin en la posición %(position)s en %(placeholder)s fue eliminado." #: admin/permissionadmin.py:72 msgid "View restriction" -msgstr "" +msgstr "Mostrar restricción" #: admin/permissionadmin.py:73 msgid "View restrictions" -msgstr "" +msgstr "Mostrar restricciones" #: admin/permissionadmin.py:133 models/permissionmodels.py:75 msgid "Page permissions" @@ -427,19 +406,16 @@ msgid "Page permissions management" msgstr "Administración de permisos de la página" #: admin/placeholderadmin.py:150 admin/placeholderadmin.py:191 -#, fuzzy msgid "You don't have permission to add content here." -msgstr "No tiene permisos para cambiar esta página" +msgstr "No tienes permiso para añadir contenido aquí." #: admin/placeholderadmin.py:187 -#, fuzzy msgid "You don't have permission to add plugins" -msgstr "No tiene permisos para cambiar esta página" +msgstr "No tienes permiso para añadir plugins" #: admin/placeholderadmin.py:288 -#, fuzzy msgid "You don't have permission to delete a plugin" -msgstr "No tiene permisos para cambiar esta página" +msgstr "No tienes permiso para borrar el plugin" #: admin/useradmin.py:25 msgid "User details" @@ -463,7 +439,7 @@ msgstr "Moderación de la copia" #: conf/patch.py:28 msgid "Inherit the template of the nearest ancestor" -msgstr "Heredar el template de su ancestro más cercano" +msgstr "Heredar la plantilla ('template') de su ancestro más cercano" #: forms/fields.py:19 msgid "Select a valid site" @@ -563,7 +539,7 @@ msgstr "estado" #: migrations/0001_initial.py:53 msgid "navigation extenders" -msgstr "extensores de navegación" +msgstr "extensiones para la navegación" #: migrations/0001_initial.py:54 migrations/0006_apphook.py:12 #: migrations/0006_apphook.py:46 models/titlemodels.py:15 @@ -584,7 +560,7 @@ msgstr "id de la url inversa" #: migrations/0001_initial.py:59 models/pagemodel.py:84 msgid "login required" -msgstr "se necesita identificación" +msgstr "se necesita autentificar" #: migrations/0001_initial.py:60 models/pagemodel.py:69 msgid "soft root" @@ -694,7 +670,7 @@ msgstr "petición de publicación" #: models/moderatormodels.py:104 msgid "unpublish req." -msgstr "petición de despublicación" +msgstr "petición para despublicar" #: models/moderatormodels.py:105 models/pagemodel.py:47 msgid "approved" @@ -741,9 +717,7 @@ msgstr "cambiado por" msgid "" "When the page should go live. Status must be \"Published\" for page to go " "live." -msgstr "" -"Cuando una página debería estar en línea. El estado debe estar en \"Publicado" -"\" para que la página vaya a estar en línea." +msgstr "Cuando una página debería estar en línea. El estado debe estar en \"Publicado\" para que la página vaya a estar en línea." #: models/pagemodel.py:67 msgid "When to expire the page. Leave empty to never expire." @@ -757,9 +731,7 @@ msgstr "Todos los ancestros no serán mostrados en la navegación" msgid "" "An unique identifier that is used with the page_url templatetag for linking " "to this page" -msgstr "" -"Un identificador único que es usado con el templatetag page_url para enlazar " -"a esta página" +msgstr "Un identificador único que es usado con el 'templatetag' 'page_url' para enlazar a esta página" #: models/pagemodel.py:71 msgid "attached menu" @@ -835,11 +807,11 @@ msgstr "puede moderar" #: models/permissionmodels.py:28 msgid "view restricted" -msgstr "" +msgstr "vista restringida" #: models/permissionmodels.py:28 msgid "frontend view restriction" -msgstr "" +msgstr "restricción para el usuario final" #: models/permissionmodels.py:51 msgid "can recover pages" @@ -851,9 +823,7 @@ msgstr "puede recuperar cualquier página eliminada" #: models/permissionmodels.py:52 msgid "If none selected, user haves granted permissions to all sites." -msgstr "" -"Si no selecciona nada, el suaurio tiene garantizado el permiso a todos los " -"sitios." +msgstr "Si no selecciona nada, el usuario tiene garantizado el permiso a todos los sitios." #: models/permissionmodels.py:52 msgid "sites" @@ -910,7 +880,7 @@ msgstr "Path" #: models/titlemodels.py:20 msgid "overwrite the title (html title tag)" -msgstr "sobreescribir el título (etiqueta de html title)" +msgstr "sobreescribir el título (etiqueta HTML 'title')" #: plugins/file/cms_plugins.py:9 msgid "File" @@ -923,7 +893,7 @@ msgstr "fichero" #: plugins/file/templates/cms/plugins/file.html:6 msgid "file missing!" -msgstr "" +msgstr "¡falta fichero!" #: plugins/flash/cms_plugins.py:9 msgid "Flash" @@ -940,16 +910,13 @@ msgstr "alto" #: plugins/flash/templates/cms/plugins/flash.html:40 #: plugins/video/templates/cms/plugins/video.html:60 -#, fuzzy msgid "Missing flash plugin. Please download the latest Adobe Flash Player: " -msgstr "" -"No está el 'plugin' de flash. Descargelo de here" +msgstr "Plugin de Flash no encontrado. Por favor, descarga la última versión de Adobe Flash Player:" #: plugins/flash/templates/cms/plugins/flash.html:42 #: plugins/video/templates/cms/plugins/video.html:62 msgid "Get Adobe Flash Player" -msgstr "" +msgstr "Consigue Adobe Flash Player" #: plugins/googlemap/cms_plugins.py:10 msgid "Google Map" @@ -1017,7 +984,7 @@ msgstr "Calcular la ruta" #: plugins/inherit/cms_plugins.py:17 msgid "Inherit Plugins from Page" -msgstr "Hereda 'Plugins' de la Página" +msgstr "Hereda Plugins de la Página" #: plugins/inherit/forms.py:23 msgid "Language or Page must be filled out" @@ -1027,13 +994,11 @@ msgstr "El Idioma o la Página debe ser rellenado" msgid "" "Choose a page to include its plugins into this placeholder, empty will " "choose current page" -msgstr "" -"Elija una página para incluir sus 'plugins' en este 'placeholder'. Si la " -"deja vacía elegirá la página actual" +msgstr "Elija una página para incluir sus plugins en este placeholder. Si la deja vacía elegirá la página actual" #: plugins/inherit/models.py:11 msgid "Optional: the language of the plugins you want" -msgstr "Opcional: el idioma de los 'plugins' que desee" +msgstr "Opcional: el idioma de los plugins que desee" #: plugins/link/cms_plugins.py:12 msgid "Link" @@ -1070,7 +1035,7 @@ msgstr "Foto" #: plugins/picture/models.py:14 msgid "center" -msgstr "" +msgstr "centro" #: plugins/picture/models.py:15 msgid "left" @@ -1083,11 +1048,11 @@ msgstr "derecha" #: plugins/picture/models.py:20 plugins/picture/migrations/0001_initial.py:17 #: plugins/teaser/models.py:10 plugins/video/models.py:11 msgid "image" -msgstr "imágen" +msgstr "imagen" #: plugins/picture/models.py:21 plugins/picture/models.py:22 msgid "if present image will be clickable" -msgstr "si la imágen será 'clickable'" +msgstr "si la imagen será 'clickable'" #: plugins/picture/models.py:23 plugins/picture/migrations/0001_initial.py:19 msgid "alternate text" @@ -1095,11 +1060,11 @@ msgstr "texto alternativo" #: plugins/picture/models.py:23 msgid "textual description of the image" -msgstr "descripción textual de la imágen" +msgstr "descripción textual de la imagen" #: plugins/picture/models.py:24 msgid "long description" -msgstr "descripcción larga" +msgstr "descripción larga" #: plugins/picture/models.py:24 msgid "additional description of the image" @@ -1126,9 +1091,7 @@ msgstr "HTML" #: plugins/snippet/models.py:15 msgid "" "Enter a template (i.e. \"snippets/plugin_xy.html\") which will be rendered. " -msgstr "" -"Introduzca una plantilla (p.ej. 'snippets/plugin_xy.html') que será " -"utilizada." +msgstr "Introduzca una plantilla (por ej. \"snippets/plugin_xy.html\") que será utilizada." #: plugins/snippet/models.py:25 msgid "Snippets" @@ -1212,7 +1175,7 @@ msgstr "Twitter" #: plugins/twitter/cms_plugins.py:23 msgid "Twitter Search" -msgstr "Búscar en Twitter" +msgstr "Buscar en Twitter" #: plugins/twitter/models.py:7 msgid "twitter user" @@ -1232,47 +1195,42 @@ msgstr "Enlace pista" #: plugins/twitter/models.py:9 msgid "If given, the hint is displayed as link to your Twitter profile." -msgstr "" -"Si está seleccionado, la pista es mostrada con enlace a su perfil de Twitter." +msgstr "Si está seleccionado, la pista es mostrada con enlace a su perfil de Twitter." #: plugins/twitter/models.py:16 msgid "query" -msgstr "questión" +msgstr "consulta" #: plugins/twitter/models.py:16 msgid "" "Example: \"brains AND zombies AND from:umbrella AND to:nemesis\": tweets " "from the user \"umbrella\" to the user \"nemesis\" that contain the words " "\"brains\" and \"zombies\"" -msgstr "" -"Ejemplo: \"cerebros AND zombis AND from:paraguas AND to:nemesis\": tweets " -"desde el usuario \"paraguas\" hasta el usuario \"nemesis\" que contiene las " -"palabras \"cerebos\" and \"zombis\"" +msgstr "Ejemplo: \"cerebros AND zombis AND from:paraguas AND to:nemesis\": tweets desde el usuario \"paraguas\" hasta el usuario \"nemesis\" que contiene las palabras \"cerebos\" and \"zombis\"" #: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:12 msgid "we said," -msgstr "" +msgstr "dijimos," #: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:13 msgid "we" -msgstr "" +msgstr "nosotros" #: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:14 msgid "we were" -msgstr "" +msgstr "nosotros somos" #: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:15 msgid "we replied to" -msgstr "" +msgstr "respondimos a" #: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:16 msgid "we were checking out" -msgstr "" +msgstr "nosotros estubimos revisando" #: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:17 -#, fuzzy msgid "loading tweets..." -msgstr "Cargando..." +msgstr "cargando tweets..." #: plugins/video/cms_plugins.py:10 msgid "Video" @@ -1295,13 +1253,10 @@ msgid "movie url" msgstr "URL de la película" #: plugins/video/models.py:10 -#, fuzzy msgid "" -"vimeo or youtube video url. Example: http://www.youtube.com/watch?v=-" -"iJ7bs4mTUY" -msgstr "" -"URL del video en vimeo o youtube. Ejemplo: http://www.youtube.com/watch?" -"v=YFa59lK-kpo" +"vimeo or youtube video url. Example: " +"http://www.youtube.com/watch?v=-iJ7bs4mTUY" +msgstr "url de un video en vimeo o youtube. Por ejemplo: http://www.youtube.com/watch?v=-iJ7bs4mTUY" #: plugins/video/models.py:11 msgid "preview image file" @@ -1332,7 +1287,7 @@ msgstr "color de fondo" #: plugins/video/models.py:26 plugins/video/models.py:27 #: plugins/video/models.py:28 plugins/video/models.py:29 msgid "Hexadecimal, eg ff00cc" -msgstr "Hexagesimal, p. ej. ff00cc" +msgstr "Hexadecimal, por ej. ff00cc" #: plugins/video/models.py:23 msgid "text color" @@ -1390,9 +1345,7 @@ msgstr "Guardar y continuar editando" #, python-format msgid "" "Page %(page)s may require approvement by you." -msgstr "" -"La página %(page)s puede que necesite su " -"aprobación." +msgstr "La página %(page)s puede que necesite su aprobación." #: templates/admin/cms/mail/approvement_required.html:8 msgid "Last changes" @@ -1401,8 +1354,7 @@ msgstr "Últimos cambios" #: templates/admin/cms/mail/base.html:55 #, python-format msgid "Log in to administration here." -msgstr "" -"Entrar por aquía la parte de administración." +msgstr "Entrar por aquía la parte de administración." #: templates/admin/cms/mail/page_user_change.html:7 msgid "Username:" @@ -1496,9 +1448,7 @@ msgstr "Estados de la página" msgid "" "This page must be moderated at level %(moderation_level)s, post a message " "for moderator." -msgstr "" -"La página debe ser moderada en el nivel %(moderation_level)s, envíe un " -"mensaje al moderador." +msgstr "La página debe ser moderada en el nivel %(moderation_level)s, envíe un mensaje al moderador." #: templates/admin/cms/page/change_form.html:187 msgid "Request approvemet" @@ -1568,7 +1518,7 @@ msgstr "termina" #: templates/admin/cms/page/change_list_tree.html:17 msgid "restricted" -msgstr "" +msgstr "restringido" #: templates/admin/cms/page/change_list_tree.html:19 msgid "last changes" @@ -1698,9 +1648,8 @@ msgid "Can move" msgstr "Puede mover" #: templates/admin/cms/page/permissions.html:14 -#, fuzzy msgid "Can view" -msgstr "Puede mover" +msgstr "Puede ver" #: templates/admin/cms/page/permissions.html:21 #: templates/admin/cms/page/permissions.html:22 @@ -1722,15 +1671,15 @@ msgstr "La página no hereda ningún permiso." #: templates/admin/cms/page/plugin_change_form.html:114 #: templates/cms/toolbar/toolbar.html:24 msgid "Cancel" -msgstr "" +msgstr "Cancelar" #: templates/admin/cms/page/plugin_forms_history.html:9 msgid "An old revision of a plugin can not be saved!" -msgstr "¡Una versión antigüa de un 'plugin' no puede ser guardada!" +msgstr "¡Una versión antigua de un plugin no puede ser guardada!" #: templates/admin/cms/page/plugin_forms_ok.html:21 msgid "Plugin saved successfully." -msgstr "'Plugin' guardado con éxito." +msgstr "Plugin guardado con éxito." #: templates/admin/cms/page/recover_form.html:17 #, python-format @@ -1739,8 +1688,7 @@ msgstr "Recuperar %(verbose_name)s eliminado" #: templates/admin/cms/page/recover_form.html:24 msgid "Press the save button below to recover this version of the object." -msgstr "" -"Presione el botón de guardar de abajo para recuperar esta versión del objeto." +msgstr "Presione el botón de guardar de abajo para recuperar esta versión del objeto." #: templates/admin/cms/page/revision_form.html:11 #, python-format @@ -1749,8 +1697,7 @@ msgstr "Revertir %(verbose_name)s" #: templates/admin/cms/page/revision_form.html:24 msgid "Press the save button below to revert to this version of the object." -msgstr "" -"Presione el botón de guardar de abajo para revertir esta versión del objeto." +msgstr "Presione el botón de guardar de abajo para revertir esta versión del objeto." #: templates/admin/cms/page/dialog/copy.html:4 msgid "Copy options" @@ -1766,7 +1713,7 @@ msgstr "Genérico" #: templates/admin/cms/page/widgets/installed_plugins_inc.html:15 msgid "Add Plugin" -msgstr "Añadir un 'Plugin'" +msgstr "Añadir un Plugin" #: templates/admin/cms/page/widgets/installed_plugins_inc.html:18 msgid "From Language" @@ -1774,7 +1721,7 @@ msgstr "Desde el idioma" #: templates/admin/cms/page/widgets/installed_plugins_inc.html:25 msgid "Copy Plugins" -msgstr "Copiar 'Plugins'" +msgstr "Copiar plugins" #: templates/admin/cms/page/widgets/plugin_editor.html:12 msgid "You must save the page first to add plugins." @@ -1782,24 +1729,23 @@ msgstr "Debe guardar la página antes de añadir plugins." #: templates/admin/cms/page/widgets/plugin_editor.html:15 msgid "No Plugin selected. Selected one on the left side" -msgstr "No ha seleccionado ningún 'Plugin'. Seleccione uno de la izquierda" +msgstr "No ha seleccionado ningún plugin. Seleccione uno de la izquierda" #: templates/admin/cms/page/widgets/plugin_editor.html:17 msgid "No Plugins present. Add a plugin to this placeholder-slot." -msgstr "" -"No hay 'Plugins' presentes. Añada un 'plugin' en el slot del placeholder." +msgstr "No hay plugins presentes. Añada un plugin en el slot del placeholder." #: templates/cms/toolbar/placeholder.html:32 msgid "Available plugins" -msgstr "Pluigns dispobibles" +msgstr "Plugins disponibles" #: templates/cms/toolbar/toolbar.html:22 msgid "The selected element can not be moved to the desired location." -msgstr "" +msgstr "El elemento seleccionado no se puede mover al lugar deseado." #: templates/cms/toolbar/toolbar.html:23 msgid "Are you sure you want to delete this plugin?" -msgstr "¿Seguro que desea eliminar este 'plugin'?" +msgstr "¿Seguro que desea eliminar este plugin?" #: templates/cms/toolbar/toolbar.html:55 msgid "up" @@ -1811,7 +1757,7 @@ msgstr "Bajar" #: templates/cms/toolbar/toolbar.html:61 msgid "Move to placeholder" -msgstr "" +msgstr "Mover al marcador de posición" #: templates/cms/toolbar/items/login.html:5 msgid "Username" @@ -1819,9 +1765,8 @@ msgstr "Nombre de usuario" #: templates/cms/toolbar/items/login.html:10 #: templates/cms/toolbar/items/login.html:12 -#, fuzzy msgid "Login" -msgstr "Entrar" +msgstr "Iniciar Sesión" #: templates/cms/toolbar/items/status.html:2 msgid "Status" @@ -1829,12 +1774,12 @@ msgstr "Estado" #: templates/cms/toolbar/items/switcher.html:4 msgid "Switch on/off" -msgstr "" +msgstr "activar/desactivar" #: templatetags/cms_admin.py:86 #, python-format msgid "%(icon)s" -msgstr "" +msgstr "%(icon)s" #: templatetags/cms_admin.py:99 msgid "Unbind page moderation" @@ -1856,13 +1801,9 @@ msgstr "Página no encontrada en %(domain)s" #: templatetags/cms_tags.py:79 #, python-format msgid "" -"A template tag couldn't find the page with lookup arguments `" -"%(page_lookup)s\n" +"A template tag couldn't find the page with lookup arguments `%(page_lookup)s\n" "`. The URL of the request was: http://%(host)s%(path)s" -msgstr "" -"Una etiqueta en la plantilla no puedo encontrar la página con estos " -"argumentos de lookup `%(page_lookup)s\n" -"`. La URL de la petición era: http://%(host)s%(path)s" +msgstr "Una etiqueta en la plantilla no puedo encontrar la página con estos argumentos de lookup `%(page_lookup)s\n`. La URL de la petición era: http://%(host)s%(path)s" #: utils/mail.py:38 msgid "CMS - your user account was created." @@ -1883,97 +1824,16 @@ msgstr "aprobar" #: utils/moderator.py:251 #, python-format msgid "CMS - Page %s requires approvement." -msgstr "CMS - La página %s necesita aprovación." - -#~ msgid "Missing flash plugin." -#~ msgstr "Plugin de flash no encontrado." - -#~ msgid "Login url: %(login_url)s" -#~ msgstr "URL de entrada: %(login_url)s" - -#~ msgid "Move to %(name)s" -#~ msgstr "Mover a %(name)s" +msgstr "CMS - La página %s necesita aprobación." #~ msgid "move" -#~ msgstr "mover" - -#~ msgid "add child" -#~ msgstr "Añadir hijo" - -#~ msgid "add sibling" -#~ msgstr "añadir hermano" - -#~ msgid "history" -#~ msgstr "Historia" - -#~ msgid "Lock" -#~ msgstr "Bloquear" - -#~ msgid "Close" -#~ msgstr "Cerrar" - -#~ msgid "Settings" -#~ msgstr "Configuración" - -#~ msgid "Delete Plugin" -#~ msgstr "Eliminar 'Plugin'" - -#~ msgid "English" -#~ msgstr "Inglés" - -#~ msgid "French" -#~ msgstr "Francés" - -#~ msgid "German" -#~ msgstr "Alemán" - -#~ msgid "Brazil" -#~ msgstr "Brasileño" - -#~ msgid "Dutch" -#~ msgstr "Holandés" - -#~ msgid "two columns" -#~ msgstr "dos columnas" - -#~ msgid "three columns" -#~ msgstr "tres columnas" - -#~ msgid "navigation examples" -#~ msgstr "ejemplos de navegación" +#~ msgstr "move request" #~ msgid "sidebar column" -#~ msgstr "columna lateral" - -#~ msgid "left column" -#~ msgstr "columna izquierda" - -#~ msgid "right column" -#~ msgstr "columna derecha" - -#~ msgid "Articles" -#~ msgstr "Artículos" - -#~ msgid "Sample App" -#~ msgstr "Aplicación de ejemplo" - -#~ msgid "sample root page" -#~ msgstr "página raiz de ejemplo" - -#~ msgid "sample settings page" -#~ msgstr "página de configuración de ejemplo" - -#~ msgid "sample account page" -#~ msgstr "página de cuenta de ejemplo" - -#~ msgid "sample my profile page" -#~ msgstr "página de perfil de ejemplo" - -#~ msgid "Static Menu" -#~ msgstr "Menú Estático" +#~ msgstr "background color" -#~ msgid "Static Menu2" -#~ msgstr "Menú Estático2" +#~ msgid "fgcolor" +#~ msgstr "foreground color" #~ msgid "Wanted language has not been translated yet." -#~ msgstr "No ha sido traducido aun al idioma deseado." +#~ msgstr "Requested language has not been translated yet." diff --git a/cms/locale/es_AR/LC_MESSAGES/django.po b/cms/locale/es_AR/LC_MESSAGES/django.po index fbbafbca613..62116c929f1 100644 --- a/cms/locale/es_AR/LC_MESSAGES/django.po +++ b/cms/locale/es_AR/LC_MESSAGES/django.po @@ -1,19 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# +# Translators: +# Juan Carizza , 2011. msgid "" msgstr "" "Project-Id-Version: django-cms\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-14 09:48-0500\n" -"PO-Revision-Date: 2011-03-22 15:24+0000\n" -"Last-Translator: ojii \n" +"Report-Msgid-Bugs-To: https://github.com/divio/django-cms/issues\n" +"POT-Creation-Date: 2011-08-14 09:47-0500\n" +"PO-Revision-Date: 2011-12-17 04:47+0000\n" +"Last-Translator: Juan Carizza \n" "Language-Team: divio.ch \n" -"Language: es_AR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es_AR\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" "X-Poedit-Country: SWITZERLAND\n" "X-Poedit-Language: English\n" @@ -125,10 +127,9 @@ msgid "Page Title" msgstr "Título de la página" #: admin/forms.py:138 -msgid "Overwrites what is displayed at the top of your browser or in bookmarks" -msgstr "" -"Sobreescribe lo que se muestra en la barra de título del navegador o en los " -"marcadores" +msgid "" +"Overwrites what is displayed at the top of your browser or in bookmarks" +msgstr "Sobreescribe lo que se muestra en la barra de título del navegador o en los marcadores" #: admin/forms.py:139 msgid "Application" @@ -160,9 +161,7 @@ msgstr "La descripción de la página se utiliza habitualmente en los buscadores #: admin/forms.py:154 msgid "A list of comma seperated keywords sometimes used by search engines." -msgstr "" -"Una lista de palabras clave separadas por coma se utiliza habitualmente en " -"los buscadores" +msgstr "Una lista de palabras clave separadas por coma se utiliza habitualmente en los buscadores" #: admin/forms.py:170 msgid "A page with this reverse URL id exists already." @@ -173,9 +172,9 @@ msgid "Invalid URL, use /my/url format." msgstr "URL inválida, utiliza el formato /mi/url" #: admin/forms.py:181 -#, fuzzy, python-format +#, python-format msgid "Page with redirect url %r already exist" -msgstr "Una página con el mismo slug ya existe" +msgstr "" #: admin/forms.py:191 admin/forms.py:192 migrations/0001_initial.py:41 #: models/permissionmodels.py:16 @@ -186,10 +185,7 @@ msgstr "usuario" msgid "" "Add page permission requires also access to children, or descendants, " "otherwise added page can't be changed by its creator." -msgstr "" -"El permiso para añadir una página implica también el acceso a los hijos y " -"descendientes, en caso contrario la página añadida no podría ser cambiada " -"por su creador." +msgstr "El permiso para añadir una página implica también el acceso a los hijos y descendientes, en caso contrario la página añadida no podría ser cambiada por su creador." #: admin/forms.py:221 msgid "Add page permission also requires edit page permission." @@ -232,9 +228,7 @@ msgstr "Avisiar al usuario" msgid "" "Send email notification to user about username or password change. Requires " "user email." -msgstr "" -"Envia un aviso al usuario ante cambios del nombre de usuario o la clave. " -"Requiere el e-mail del usuario." +msgstr "Envia un aviso al usuario ante cambios del nombre de usuario o la clave. Requiere el e-mail del usuario." #: admin/forms.py:318 msgid "New password" @@ -251,15 +245,12 @@ msgstr "La notificación por e-mail requiere una dirección de correo válida" #: admin/forms.py:341 msgid "" "The permission to add new pages requires the permission to change pages!" -msgstr "" -"¡El permiso para añadir páginas necesita del permiso para modificar páginas!" +msgstr "¡El permiso para añadir páginas necesita del permiso para modificar páginas!" #: admin/forms.py:343 msgid "" "The permission to add new users requires the permission to change users!" -msgstr "" -"¡El permiso para añadir nuevos usuarios necesita del permiso para modificar " -"usuario!" +msgstr "¡El permiso para añadir nuevos usuarios necesita del permiso para modificar usuario!" #: admin/forms.py:345 msgid "To add permissions you also need to edit them!" @@ -271,8 +262,7 @@ msgstr "Configuración básica." #: admin/pageadmin.py:100 msgid "Note: This page reloads if you change the selection. Save it first." -msgstr "" -"Nota: Esta página se recargará si cambias la selección. Guárdala primero." +msgstr "Nota: Esta página se recargará si cambias la selección. Guárdala primero." #: admin/pageadmin.py:102 admin/pageadmin.py:154 msgid "Hidden" @@ -287,9 +277,8 @@ msgid "SEO Settings" msgstr "Configuración para SEO" #: admin/pageadmin.py:299 -#, fuzzy msgid "You have no permission to change the template" -msgstr "No tienes permisos para cambiar esta página" +msgstr "" #: admin/pageadmin.py:485 msgid "higher" @@ -327,13 +316,11 @@ msgstr "No tienes permisos para publicar esta página" #: admin/pageadmin.py:1066 msgid "You do not have permission to change this page's in_navigation status" -msgstr "" -"No tienes permisos para cambiar el estado de navegación de esta página." +msgstr "No tienes permisos para cambiar el estado de navegación de esta página." #: admin/pageadmin.py:1079 -#, fuzzy msgid "You have no permission to add a plugin" -msgstr "No tienes permisos para cambiar esta página" +msgstr "" #: admin/pageadmin.py:1126 admin/pageadmin.py:1158 msgid "Language must be set to a supported language!" @@ -353,9 +340,8 @@ msgid "Language must be different than the copied language!" msgstr "El idioma debe ser distinto de idioma copiado!" #: admin/pageadmin.py:1166 -#, fuzzy msgid "You do not have permission to add plugins" -msgstr "No tienes permisos para cambiar esta página" +msgstr "" #: admin/pageadmin.py:1173 #, python-format @@ -363,36 +349,30 @@ msgid "Copied %(language)s plugins to %(placeholder)s" msgstr "Se copiaron los plugins %(language)s a %(placeholder)s" #: admin/pageadmin.py:1186 admin/pageadmin.py:1294 admin/pageadmin.py:1316 -#, fuzzy msgid "You have no permission to change this page" -msgstr "No tienes permisos para cambiar esta página" +msgstr "" #: admin/pageadmin.py:1221 -#, fuzzy msgid "You have no permission to edit a plugin" -msgstr "No tienes permisos para cambiar esta página" +msgstr "" #: admin/pageadmin.py:1256 #, python-format msgid "" "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -msgstr "" -"Plugin %(plugin_name)s modificado en la posición %(position)s de " -"%(placeholder)s" +msgstr "Plugin %(plugin_name)s modificado en la posición %(position)s de %(placeholder)s" #: admin/pageadmin.py:1311 -#, fuzzy msgid "You have no permission to move a plugin" -msgstr "No tienes permisos para cambiar esta página" +msgstr "" #: admin/pageadmin.py:1329 msgid "Plugins where moved" msgstr "Plugins movidos" #: admin/pageadmin.py:1343 -#, fuzzy msgid "You have no permission to remove a plugin" -msgstr "No tienes permisos para cambiar esta página" +msgstr "" #: admin/pageadmin.py:1361 admin/placeholderadmin.py:292 #, python-format @@ -422,19 +402,16 @@ msgid "Page permissions management" msgstr "" #: admin/placeholderadmin.py:150 admin/placeholderadmin.py:191 -#, fuzzy msgid "You don't have permission to add content here." -msgstr "No tienes permisos para cambiar esta página" +msgstr "" #: admin/placeholderadmin.py:187 -#, fuzzy msgid "You don't have permission to add plugins" -msgstr "No tienes permisos para cambiar esta página" +msgstr "" #: admin/placeholderadmin.py:288 -#, fuzzy msgid "You don't have permission to delete a plugin" -msgstr "No tienes permisos para cambiar esta página" +msgstr "" #: admin/useradmin.py:25 msgid "User details" @@ -442,15 +419,15 @@ msgstr "" #: admin/useradmin.py:26 msgid "Groups" -msgstr "" +msgstr "Grupos" #: admin/useradmin.py:36 templates/cms/toolbar/items/login.html:7 msgid "Password" -msgstr "" +msgstr "Contraseña" #: admin/dialog/forms.py:9 msgid "Copy permissions" -msgstr "" +msgstr "Copiar permisos" #: admin/dialog/forms.py:16 msgid "Copy moderation" @@ -470,7 +447,7 @@ msgstr "" #: forms/widgets.py:173 msgid "Add Another" -msgstr "" +msgstr "Seguir agregando" #: migrations/0001_initial.py:12 migrations/0001_initial.py:24 #: migrations/0001_initial.py:75 migrations/0003_remove_placeholder.py:18 @@ -479,7 +456,7 @@ msgstr "" #: models/pluginmodel.py:79 models/titlemodels.py:10 #: plugins/inherit/models.py:11 msgid "language" -msgstr "" +msgstr "lenguaje" #: migrations/0001_initial.py:13 migrations/0001_initial.py:26 #: migrations/0001_initial.py:40 migrations/0001_initial.py:78 @@ -494,12 +471,12 @@ msgstr "página" #: migrations/0001_initial.py:14 migrations/0004_textobjects.py:12 #: migrations/0004_textobjects.py:22 models/pluginmodel.py:78 msgid "position" -msgstr "" +msgstr "posición" #: migrations/0001_initial.py:15 migrations/0001_initial.py:29 #: models/pluginmodel.py:81 models/titlemodels.py:22 msgid "creation date" -msgstr "" +msgstr "fecha de creación" #: migrations/0001_initial.py:16 migrations/0001_initial.py:77 #: migrations/0003_remove_placeholder.py:20 models/placeholdermodel.py:13 @@ -508,7 +485,7 @@ msgstr "" #: migrations/0001_initial.py:18 models/pluginmodel.py:80 msgid "plugin_name" -msgstr "" +msgstr "nombre del plugin" #: migrations/0001_initial.py:25 migrations/0011_title_overwrites.py:12 #: migrations/0011_title_overwrites.py:15 models/titlemodels.py:11 @@ -517,11 +494,11 @@ msgstr "" #: plugins/twitter/models.py:6 plugins/twitter/models.py:15 #: templates/admin/cms/page/change_list_tree.html:6 msgid "title" -msgstr "" +msgstr "título" #: migrations/0001_initial.py:28 msgid "path" -msgstr "" +msgstr "ruta" #: migrations/0001_initial.py:30 models/titlemodels.py:13 msgid "slug" @@ -529,7 +506,7 @@ msgstr "" #: migrations/0001_initial.py:36 msgid "everybody" -msgstr "" +msgstr "todos" #: migrations/0001_initial.py:37 models/permissionmodels.py:20 msgid "can edit" @@ -537,7 +514,7 @@ msgstr "" #: migrations/0001_initial.py:38 models/permissionmodels.py:17 msgid "group" -msgstr "" +msgstr "grupo" #: migrations/0001_initial.py:39 models/permissionmodels.py:24 msgid "can publish" @@ -1273,8 +1250,8 @@ msgstr "" #: plugins/video/models.py:10 msgid "" -"vimeo or youtube video url. Example: http://www.youtube.com/watch?v=-" -"iJ7bs4mTUY" +"vimeo or youtube video url. Example: " +"http://www.youtube.com/watch?v=-iJ7bs4mTUY" msgstr "" #: plugins/video/models.py:11 @@ -1820,8 +1797,7 @@ msgstr "" #: templatetags/cms_tags.py:79 #, python-format msgid "" -"A template tag couldn't find the page with lookup arguments `" -"%(page_lookup)s\n" +"A template tag couldn't find the page with lookup arguments `%(page_lookup)s\n" "`. The URL of the request was: http://%(host)s%(path)s" msgstr "" @@ -1845,3 +1821,15 @@ msgstr "" #, python-format msgid "CMS - Page %s requires approvement." msgstr "" + +#~ msgid "move" +#~ msgstr "move request" + +#~ msgid "sidebar column" +#~ msgstr "background color" + +#~ msgid "fgcolor" +#~ msgstr "foreground color" + +#~ msgid "Wanted language has not been translated yet." +#~ msgstr "Requested language has not been translated yet." diff --git a/cms/locale/es_BO/LC_MESSAGES/django.po b/cms/locale/es_BO/LC_MESSAGES/django.po new file mode 100644 index 00000000000..4e74782ea7d --- /dev/null +++ b/cms/locale/es_BO/LC_MESSAGES/django.po @@ -0,0 +1,1838 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# , 2011. +# , 2011. +# Pedro Gracia , 2011. +# , 2011. +msgid "" +msgstr "" +"Project-Id-Version: django-cms\n" +"Report-Msgid-Bugs-To: https://github.com/divio/django-cms/issues\n" +"POT-Creation-Date: 2011-08-14 09:47-0500\n" +"PO-Revision-Date: 2011-10-15 15:06+0000\n" +"Last-Translator: mariocesar \n" +"Language-Team: divio.ch \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_BO\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"X-Poedit-Country: SWITZERLAND\n" +"X-Poedit-Language: English\n" +"X-Poedit-SourceCharset: utf-8\n" + +#: cms_toolbar.py:68 +msgid "Edit mode" +msgstr "Modo edición" + +#: cms_toolbar.py:77 +msgid "django CMS" +msgstr "django CMS" + +#: cms_toolbar.py:108 templates/admin/cms/page/menu_item.html:73 +msgid "Publish" +msgstr "Publicar" + +#: cms_toolbar.py:112 +msgid "Request Approval" +msgstr "Petición de Aprobación" + +#: cms_toolbar.py:127 cms_toolbar.py:136 +msgid "Logout" +msgstr "Salir" + +#: cms_toolbar.py:152 +msgid "Template" +msgstr "Plantilla" + +#: cms_toolbar.py:160 +msgid "Move/add Pages" +msgstr "Mover/añadir páginas" + +#: cms_toolbar.py:165 +msgid "Add child page" +msgstr "Añadir página hijo" + +#: cms_toolbar.py:171 +msgid "Add sibling page" +msgstr "Añadir página hermana" + +#: cms_toolbar.py:177 +msgid "Delete Page" +msgstr "Eliminar página" + +#: cms_toolbar.py:180 models/moderatormodels.py:45 +#: templates/admin/cms/page/permissions.html:5 +msgid "Page" +msgstr "Página" + +#: cms_toolbar.py:189 +msgid "Site Administration" +msgstr "Administración del sitio" + +#: cms_toolbar.py:195 +msgid "Page Settings" +msgstr "Configuración de la página" + +#: cms_toolbar.py:201 +msgid "View History" +msgstr "Ver Historia" + +#: cms_toolbar.py:205 +msgid "Admin" +msgstr "Admin" + +#: plugin_base.py:65 +msgid "Advanced options" +msgstr "Opciones avanzadas" + +#: admin/forms.py:59 +msgid "Title" +msgstr "Título" + +#: admin/forms.py:60 +msgid "The default title" +msgstr "Título por defecto" + +#: admin/forms.py:61 +msgid "Slug" +msgstr "Nombre único (slug)" + +#: admin/forms.py:62 +msgid "The part of the title that is used in the URL" +msgstr "Parte del título que es usado en la URL" + +#: admin/forms.py:63 +msgid "Language" +msgstr "Idioma" + +#: admin/forms.py:64 +msgid "The current language of the content fields." +msgstr "Idioma actual de los campos de contenido." + +#: admin/forms.py:117 +msgid "Another page with this slug already exists" +msgstr "Hay otra página con ese 'slug'" + +#: admin/forms.py:135 +msgid "Menu Title" +msgstr "Título del Menú" + +#: admin/forms.py:136 +msgid "Overwrite what is displayed in the menu" +msgstr "Reemplazar lo que es mostrado en el menú" + +#: admin/forms.py:137 +msgid "Page Title" +msgstr "Título de la Página" + +#: admin/forms.py:138 +msgid "" +"Overwrites what is displayed at the top of your browser or in bookmarks" +msgstr "Reemplaza lo que se muestra en el título de su explorador o en sus marcadores" + +#: admin/forms.py:139 +msgid "Application" +msgstr "Aplicación" + +#: admin/forms.py:141 +msgid "Hook application to this page." +msgstr "Integrar la aplicación a esta página." + +#: admin/forms.py:142 +msgid "Overwrite URL" +msgstr "Reemplazar la URL" + +#: admin/forms.py:143 +msgid "Keep this field empty if standard path should be used." +msgstr "Guardar el campo vacío si es usado el 'path' estándar." + +#: admin/forms.py:149 +msgid "Redirect" +msgstr "Redirección" + +#: admin/forms.py:150 +msgid "Redirects to this URL." +msgstr "Redirección a esta URL." + +#: admin/forms.py:152 +msgid "A description of the page sometimes used by search engines." +msgstr "Descripción de la página que a veces será usado por los motores de búsqueda." + +#: admin/forms.py:154 +msgid "A list of comma seperated keywords sometimes used by search engines." +msgstr "Lista de palabras clave que a veces será usada por los motores de búsqueda." + +#: admin/forms.py:170 +msgid "A page with this reverse URL id exists already." +msgstr "Página con este 'id' de URL inversa si ya existe." + +#: admin/forms.py:178 +msgid "Invalid URL, use /my/url format." +msgstr "URL inválida, use el formato /mi/url." + +#: admin/forms.py:181 +#, python-format +msgid "Page with redirect url %r already exist" +msgstr "Página con redirección al url %r, ya existe" + +#: admin/forms.py:191 admin/forms.py:192 migrations/0001_initial.py:41 +#: models/permissionmodels.py:16 +msgid "user" +msgstr "usuario" + +#: admin/forms.py:216 +msgid "" +"Add page permission requires also access to children, or descendants, " +"otherwise added page can't be changed by its creator." +msgstr "Añadir permisos a la página requiere también acceder a sus hijos o descendientes, de otra forma la página añadida no puede ser modificada por su creador." + +#: admin/forms.py:221 +msgid "Add page permission also requires edit page permission." +msgstr "Añadir permiso de página también requiere del permiso de edición de página." + +#: admin/forms.py:248 +msgid "can_view" +msgstr "puede ver" + +#: admin/forms.py:260 +msgid "Please select user or group first." +msgstr "Por favor, seleccione un usuario o grupo primero." + +#: admin/forms.py:267 admin/forms.py:274 admin/forms.py:278 +#: templates/admin/cms/page/change_form.html:67 +#: templates/admin/cms/page/plugin_change_form.html:70 +#: templates/cms/toolbar/placeholder.html:25 +msgid "Add" +msgstr "Añadir" + +#: admin/forms.py:268 admin/forms.py:275 admin/forms.py:279 +msgid "Change" +msgstr "Cambiar" + +#: admin/forms.py:269 admin/forms.py:276 admin/forms.py:280 +#: templates/admin/page_submit_line.html:5 +#: templates/admin/cms/page/menu_item.html:44 +msgid "Delete" +msgstr "Eliminar" + +#: admin/forms.py:270 +msgid "Recover (any) pages" +msgstr "Recuperar (cualquier) página" + +#: admin/forms.py:297 +msgid "Notify user" +msgstr "Notificar al usuario" + +#: admin/forms.py:298 +msgid "" +"Send email notification to user about username or password change. Requires " +"user email." +msgstr "Enviar una notificación por correo al usuario sobre un cambio de nombre de usuario o contraseña. Requiere un correo del usuario." + +#: admin/forms.py:318 +msgid "New password" +msgstr "Nueva contraseña" + +#: admin/forms.py:320 +msgid "New password confirmation" +msgstr "Confirmación de nueva contraseña" + +#: admin/forms.py:339 +msgid "Email notification requires valid email address." +msgstr "La notificación de correo electrónico requiere de una dirección válida." + +#: admin/forms.py:341 +msgid "" +"The permission to add new pages requires the permission to change pages!" +msgstr "¡El permiso para añadir nuevas páginas depende del permiso para cambiar páginas!" + +#: admin/forms.py:343 +msgid "" +"The permission to add new users requires the permission to change users!" +msgstr "¡El permiso para añadir nuevos usuarios depende del permiso para cambiar usuarios!" + +#: admin/forms.py:345 +msgid "To add permissions you also need to edit them!" +msgstr "Para añadir permisos necesita editarlos." + +#: admin/pageadmin.py:97 +msgid "Basic Settings" +msgstr "Configuración básica" + +#: admin/pageadmin.py:100 +msgid "Note: This page reloads if you change the selection. Save it first." +msgstr "Observación: Esta página recarga si cambia la selección. Guárdela primero." + +#: admin/pageadmin.py:102 admin/pageadmin.py:154 +msgid "Hidden" +msgstr "Oculto" + +#: admin/pageadmin.py:106 +msgid "Advanced Settings" +msgstr "Configuración avanzada" + +#: admin/pageadmin.py:113 +msgid "SEO Settings" +msgstr "Configuración de SEO" + +#: admin/pageadmin.py:299 +msgid "You have no permission to change the template" +msgstr "No tienes permisos para modificar la plantilla" + +#: admin/pageadmin.py:485 +msgid "higher" +msgstr "mayor" + +#: admin/pageadmin.py:655 +msgid "Database error" +msgstr "Error de Base de Datos" + +#: admin/pageadmin.py:855 +msgid "Page was successfully approved." +msgstr "La página ha sido aprobada." + +#: admin/pageadmin.py:927 +#, python-format +msgid "%(name)s object with primary key %(key)r does not exist." +msgstr "El objeto %(name)s con la clave primaria %(key)r no existe." + +#: admin/pageadmin.py:933 +msgid "There only exists one translation for this page" +msgstr "Sólo existe una traducción para esta página." + +#: admin/pageadmin.py:969 +#, python-format +msgid "Title and plugins with language %(language)s was deleted" +msgstr "El título y los 'plugins' con el lenguaje %(language)s fueron eliminados." + +#: admin/pageadmin.py:991 +msgid "Are you sure?" +msgstr "¿Está seguro?" + +#: admin/pageadmin.py:1052 +msgid "You do not have permission to publish this page" +msgstr "No tiene permisos para publicar esta página" + +#: admin/pageadmin.py:1066 +msgid "You do not have permission to change this page's in_navigation status" +msgstr "No tiene permisos para cambiar esta página en el estado 'in_navigation'" + +#: admin/pageadmin.py:1079 +msgid "You have no permission to add a plugin" +msgstr "No tienes permiso para añadir el 'plugin'" + +#: admin/pageadmin.py:1126 admin/pageadmin.py:1158 +msgid "Language must be set to a supported language!" +msgstr "¡El idioma debe estar soportado para ser configurado!" + +#: admin/pageadmin.py:1138 +#, python-format +msgid "%(plugin_name)s plugin added to %(placeholder)s" +msgstr "%(plugin_name)s plugin añadido a %(placeholder)s" + +#: admin/pageadmin.py:1156 +msgid "You do not have permission to change this page" +msgstr "No tiene permisos para cambiar esta página" + +#: admin/pageadmin.py:1160 +msgid "Language must be different than the copied language!" +msgstr "¡El idioma debe ser diferente del de la copia!" + +#: admin/pageadmin.py:1166 +msgid "You do not have permission to add plugins" +msgstr "No tienes permisos para añadir 'plugins'" + +#: admin/pageadmin.py:1173 +#, python-format +msgid "Copied %(language)s plugins to %(placeholder)s" +msgstr "'plugins' en %(language)s copiados a %(placeholder)s" + +#: admin/pageadmin.py:1186 admin/pageadmin.py:1294 admin/pageadmin.py:1316 +msgid "You have no permission to change this page" +msgstr "No tienes permisos para modificar esta página" + +#: admin/pageadmin.py:1221 +msgid "You have no permission to edit a plugin" +msgstr "No tienes permiso para editar el 'plugin'" + +#: admin/pageadmin.py:1256 +#, python-format +msgid "" +"%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" +msgstr "%(plugin_name)s plugin editado en la posición %(position)s en %(placeholder)s" + +#: admin/pageadmin.py:1311 +msgid "You have no permission to move a plugin" +msgstr "No tienes permiso para mover el 'plugin'" + +#: admin/pageadmin.py:1329 +msgid "Plugins where moved" +msgstr "Los 'plugins' fueron movidos" + +#: admin/pageadmin.py:1343 +msgid "You have no permission to remove a plugin" +msgstr "No tienes permiso para eliminar el 'plugin'" + +#: admin/pageadmin.py:1361 admin/placeholderadmin.py:292 +#, python-format +msgid "" +"%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " +"deleted." +msgstr "%(plugin_name)s plugin en la posición %(position)s en %(placeholder)s fue eliminado." + +#: admin/permissionadmin.py:72 +msgid "View restriction" +msgstr "Mostrar restricción" + +#: admin/permissionadmin.py:73 +msgid "View restrictions" +msgstr "Mostrar restricciones" + +#: admin/permissionadmin.py:133 models/permissionmodels.py:75 +msgid "Page permissions" +msgstr "Permisos de página" + +#: admin/permissionadmin.py:134 +msgid "User & Group permissions" +msgstr "Permisos de usuario y grupo" + +#: admin/permissionadmin.py:135 +msgid "Page permissions management" +msgstr "Administración de permisos de la página" + +#: admin/placeholderadmin.py:150 admin/placeholderadmin.py:191 +msgid "You don't have permission to add content here." +msgstr "No tienes permiso para añadir contenido aquí." + +#: admin/placeholderadmin.py:187 +msgid "You don't have permission to add plugins" +msgstr "No tienes permiso para añadir 'plugins'" + +#: admin/placeholderadmin.py:288 +msgid "You don't have permission to delete a plugin" +msgstr "No tienes permiso para borrar el 'plugin'" + +#: admin/useradmin.py:25 +msgid "User details" +msgstr "Detalles del usuario" + +#: admin/useradmin.py:26 +msgid "Groups" +msgstr "Grupos" + +#: admin/useradmin.py:36 templates/cms/toolbar/items/login.html:7 +msgid "Password" +msgstr "Contraseña" + +#: admin/dialog/forms.py:9 +msgid "Copy permissions" +msgstr "Permisos de copia" + +#: admin/dialog/forms.py:16 +msgid "Copy moderation" +msgstr "Moderación de la copia" + +#: conf/patch.py:28 +msgid "Inherit the template of the nearest ancestor" +msgstr "Heredar la plantilla ('template') de su ancestro más cercano" + +#: forms/fields.py:19 +msgid "Select a valid site" +msgstr "Elija un sitio válido" + +#: forms/fields.py:20 +msgid "Select a valid page" +msgstr "Elija una página válida" + +#: forms/widgets.py:173 +msgid "Add Another" +msgstr "Añadir otro" + +#: migrations/0001_initial.py:12 migrations/0001_initial.py:24 +#: migrations/0001_initial.py:75 migrations/0003_remove_placeholder.py:18 +#: migrations/0010_5char_language.py:12 migrations/0010_5char_language.py:15 +#: migrations/0010_5char_language.py:22 migrations/0010_5char_language.py:25 +#: models/pluginmodel.py:79 models/titlemodels.py:10 +#: plugins/inherit/models.py:11 +msgid "language" +msgstr "idioma" + +#: migrations/0001_initial.py:13 migrations/0001_initial.py:26 +#: migrations/0001_initial.py:40 migrations/0001_initial.py:78 +#: migrations/0003_remove_placeholder.py:21 models/pagemodel.py:104 +#: models/permissionmodels.py:69 models/titlemodels.py:21 +#: plugins/inherit/forms.py:9 plugins/link/forms.py:9 +#: plugins/link/models.py:12 plugins/link/migrations/0001_initial.py:19 +#: plugins/picture/models.py:22 plugins/teaser/models.py:13 +msgid "page" +msgstr "página" + +#: migrations/0001_initial.py:14 migrations/0004_textobjects.py:12 +#: migrations/0004_textobjects.py:22 models/pluginmodel.py:78 +msgid "position" +msgstr "posición" + +#: migrations/0001_initial.py:15 migrations/0001_initial.py:29 +#: models/pluginmodel.py:81 models/titlemodels.py:22 +msgid "creation date" +msgstr "fecha de creación" + +#: migrations/0001_initial.py:16 migrations/0001_initial.py:77 +#: migrations/0003_remove_placeholder.py:20 models/placeholdermodel.py:13 +msgid "slot" +msgstr "slot" + +#: migrations/0001_initial.py:18 models/pluginmodel.py:80 +msgid "plugin_name" +msgstr "nombre del 'plugin'" + +#: migrations/0001_initial.py:25 migrations/0011_title_overwrites.py:12 +#: migrations/0011_title_overwrites.py:15 models/titlemodels.py:11 +#: models/titlemodels.py:12 models/titlemodels.py:20 plugins/file/models.py:25 +#: plugins/file/migrations/0001_initial.py:18 plugins/teaser/models.py:9 +#: plugins/twitter/models.py:6 plugins/twitter/models.py:15 +#: templates/admin/cms/page/change_list_tree.html:6 +msgid "title" +msgstr "título" + +#: migrations/0001_initial.py:28 +msgid "path" +msgstr "path" + +#: migrations/0001_initial.py:30 models/titlemodels.py:13 +msgid "slug" +msgstr "slug" + +#: migrations/0001_initial.py:36 +msgid "everybody" +msgstr "todo el mundo" + +#: migrations/0001_initial.py:37 models/permissionmodels.py:20 +msgid "can edit" +msgstr "puede editar" + +#: migrations/0001_initial.py:38 models/permissionmodels.py:17 +msgid "group" +msgstr "grupo" + +#: migrations/0001_initial.py:39 models/permissionmodels.py:24 +msgid "can publish" +msgstr "puede publicar" + +#: migrations/0001_initial.py:42 +msgid "type" +msgstr "tipo" + +#: migrations/0001_initial.py:44 +msgid "can change soft-root" +msgstr "puede cambiar el 'soft-root'" + +#: migrations/0001_initial.py:50 migrations/0006_apphook.py:34 +#: migrations/0006_apphook.py:62 +msgid "status" +msgstr "estado" + +#: migrations/0001_initial.py:53 +msgid "navigation extenders" +msgstr "extensiones para la navegación" + +#: migrations/0001_initial.py:54 migrations/0006_apphook.py:12 +#: migrations/0006_apphook.py:46 models/titlemodels.py:15 +msgid "has url overwrite" +msgstr "tiene sobreescritura de url" + +#: migrations/0001_initial.py:55 migrations/0006_apphook.py:49 +msgid "url overwrite" +msgstr "sobreescritura de url" + +#: migrations/0001_initial.py:57 +msgid "author" +msgstr "autor" + +#: migrations/0001_initial.py:58 migrations/0006_apphook.py:37 +msgid "reverse url id" +msgstr "id de la url inversa" + +#: migrations/0001_initial.py:59 models/pagemodel.py:84 +msgid "login required" +msgstr "se necesita autentificar" + +#: migrations/0001_initial.py:60 models/pagemodel.py:69 +msgid "soft root" +msgstr "soft root" + +#: migrations/0001_initial.py:63 models/pagemodel.py:67 +msgid "publication end date" +msgstr "fecha final de la publicación" + +#: migrations/0001_initial.py:64 models/pagemodel.py:74 +#: plugins/snippet/models.py:14 +msgid "template" +msgstr "plantilla" + +#: migrations/0001_initial.py:66 models/pagemodel.py:66 +msgid "publication date" +msgstr "fecha de publicación" + +#: migrations/0001_initial.py:67 models/pagemodel.py:68 +#: templates/admin/cms/page/change_list_tree.html:9 +msgid "in navigation" +msgstr "en navegación" + +#: migrations/0006_apphook.py:15 migrations/0007_apphook_longer.py:11 +#: migrations/0007_apphook_longer.py:17 models/titlemodels.py:16 +msgid "application" +msgstr "aplicación" + +#: migrations/0006_apphook.py:65 models/pagemodel.py:70 +msgid "id" +msgstr "id" + +#: migrations/0008_redirects.py:11 models/titlemodels.py:17 +msgid "redirect" +msgstr "redirección" + +#: migrations/0009_added_meta_fields.py:12 models/titlemodels.py:19 +msgid "keywords" +msgstr "palabras clave" + +#: migrations/0009_added_meta_fields.py:15 models/titlemodels.py:18 +#: plugins/teaser/models.py:20 +msgid "description" +msgstr "descripción" + +#: models/moderatormodels.py:25 +msgid "Current page" +msgstr "Página actual" + +#: models/moderatormodels.py:26 +msgid "Page children (immediate)" +msgstr "Página hija (inmediata)" + +#: models/moderatormodels.py:27 +msgid "Page and children (immediate)" +msgstr "Página y página hija (inmediata)" + +#: models/moderatormodels.py:28 +msgid "Page descendants" +msgstr "Descendientes de la página" + +#: models/moderatormodels.py:29 +msgid "Page and descendants" +msgstr "Página y descendientes" + +#: models/moderatormodels.py:46 +#: templates/admin/cms/page/moderation_messages.html:6 +#: templates/admin/cms/page/permissions.html:6 +msgid "User" +msgstr "Usuario" + +#: models/moderatormodels.py:50 templatetags/cms_admin.py:99 +msgid "Moderate page" +msgstr "Moderar página" + +#: models/moderatormodels.py:51 templatetags/cms_admin.py:100 +msgid "Moderate children" +msgstr "Moderar hijos" + +#: models/moderatormodels.py:52 templatetags/cms_admin.py:101 +msgid "Moderate descendants" +msgstr "moderar descendientes" + +#: models/moderatormodels.py:55 models/moderatormodels.py:56 +msgid "PageModerator" +msgstr "PageModerator" + +#: models/moderatormodels.py:99 +msgid "created" +msgstr "creado" + +#: models/moderatormodels.py:100 models/pagemodel.py:44 +msgid "changed" +msgstr "cambiado" + +#: models/moderatormodels.py:101 +msgid "delete req." +msgstr "solicitud para eliminar" + +#: models/moderatormodels.py:102 +msgid "move req." +msgstr "solicitud de cambio de lugar" + +#: models/moderatormodels.py:103 +msgid "publish req." +msgstr "solicitud de publicación" + +#: models/moderatormodels.py:104 +msgid "unpublish req." +msgstr "solicitud para no publicar" + +#: models/moderatormodels.py:105 models/pagemodel.py:47 +msgid "approved" +msgstr "aprovado" + +#: models/moderatormodels.py:117 +msgid "Page moderator state" +msgstr "Página del estado del moderador" + +#: models/moderatormodels.py:118 +msgid "Page moderator states" +msgstr "Página de los estados del moderador" + +#: models/pagemodel.py:45 +msgid "req. app." +msgstr "solicitud requerida" + +#: models/pagemodel.py:46 templates/admin/cms/page/menu_item.html:44 +#: templates/cms/toolbar/toolbar.html:57 utils/moderator.py:90 +msgid "delete" +msgstr "eliminar" + +#: models/pagemodel.py:48 +msgid "app. par." +msgstr "app. par." + +#: models/pagemodel.py:52 +msgid "for logged in users only" +msgstr "solo para usuarios identificados" + +#: models/pagemodel.py:53 +msgid "for anonymous users only" +msgstr "solo para usuarios anónimos" + +#: models/pagemodel.py:61 +msgid "created by" +msgstr "creado por" + +#: models/pagemodel.py:62 templates/admin/cms/page/change_list_tree.html:20 +msgid "changed by" +msgstr "modificado por" + +#: models/pagemodel.py:66 +msgid "" +"When the page should go live. Status must be \"Published\" for page to go " +"live." +msgstr "Cuando una página debería estar en línea. El estado debe estar en \"Publicado\" para que la página vaya a estar en línea." + +#: models/pagemodel.py:67 +msgid "When to expire the page. Leave empty to never expire." +msgstr "Cuando caduca la página. Si se deja vacío, nunca caducará." + +#: models/pagemodel.py:69 +msgid "All ancestors will not be displayed in the navigation" +msgstr "Todos los ancestros no serán mostrados en la navegación" + +#: models/pagemodel.py:70 +msgid "" +"An unique identifier that is used with the page_url templatetag for linking " +"to this page" +msgstr "Un identificador único que es usado con el 'templatetag' 'page_url' para enlazar a esta página" + +#: models/pagemodel.py:71 +msgid "attached menu" +msgstr "menú anclado" + +#: models/pagemodel.py:72 +msgid "is published" +msgstr "está publicado" + +#: models/pagemodel.py:74 +msgid "The template used to render the content." +msgstr "La plantilla usada para mostrar el contenido." + +#: models/pagemodel.py:75 +msgid "The site the page is accessible at." +msgstr "El sitio de la página es accesible en." + +#: models/pagemodel.py:75 +msgid "site" +msgstr "sitio" + +#: models/pagemodel.py:77 +msgid "moderator state" +msgstr "estado del moderador" + +#: models/pagemodel.py:85 +msgid "menu visibility" +msgstr "visibilidad del menú" + +#: models/pagemodel.py:85 +msgid "limit when this page is visible in the menu" +msgstr "límite cuando la página es visible en el menú" + +#: models/pagemodel.py:105 +msgid "pages" +msgstr "páginas" + +#: models/pagemodel.py:267 +msgid "Page was copied." +msgstr "La página fue copiada." + +#: models/pagemodel.py:698 +msgid "default" +msgstr "por defecto" + +#: models/permissionmodels.py:21 +msgid "can add" +msgstr "puede añadir" + +#: models/permissionmodels.py:22 +msgid "can delete" +msgstr "puede eliminar" + +#: models/permissionmodels.py:23 +msgid "can change advanced settings" +msgstr "puede cambiar la configuración avanzada" + +#: models/permissionmodels.py:25 +msgid "can change permissions" +msgstr "puede cambiar permisos" + +#: models/permissionmodels.py:25 +msgid "on page level" +msgstr "en el nivel de la página" + +#: models/permissionmodels.py:26 +msgid "can move" +msgstr "puede mover" + +#: models/permissionmodels.py:27 +msgid "can moderate" +msgstr "puede moderar" + +#: models/permissionmodels.py:28 +msgid "view restricted" +msgstr "vista restringida" + +#: models/permissionmodels.py:28 +msgid "frontend view restriction" +msgstr "restricción para el usuario final" + +#: models/permissionmodels.py:51 +msgid "can recover pages" +msgstr "puede recuperar páginas" + +#: models/permissionmodels.py:51 +msgid "can recover any deleted page" +msgstr "puede recuperar cualquier página eliminada" + +#: models/permissionmodels.py:52 +msgid "If none selected, user haves granted permissions to all sites." +msgstr "Si no selecciona nada, el usuario tiene garantizado el permiso a todos los sitios." + +#: models/permissionmodels.py:52 +msgid "sites" +msgstr "sitios" + +#: models/permissionmodels.py:57 +msgid "Page global permission" +msgstr "Permiso global de la página" + +#: models/permissionmodels.py:58 +msgid "Pages global permissions" +msgstr "Permisos globales de las páginas" + +#: models/permissionmodels.py:68 templates/admin/cms/page/permissions.html:15 +msgid "Grant on" +msgstr "Autorizado" + +#: models/permissionmodels.py:74 +msgid "Page permission" +msgstr "Permiso de la página" + +#: models/permissionmodels.py:89 +msgid "User (page)" +msgstr "Usuario (página) " + +#: models/permissionmodels.py:90 +msgid "Users (page)" +msgstr "Usuarios (página)" + +#: models/permissionmodels.py:100 +msgid "User group (page)" +msgstr "Grupo del usuario (página)" + +#: models/permissionmodels.py:101 +msgid "User groups (page)" +msgstr "Grupos de usuarios (página)" + +#: models/placeholdermodel.py:14 plugins/flash/models.py:9 +#: plugins/flash/migrations/0001_initial.py:16 plugins/video/models.py:13 +msgid "width" +msgstr "ancho" + +#: models/pluginmodel.py:140 +msgid "" +msgstr "" + +#: models/titlemodels.py:12 +msgid "overwrite the title in the menu" +msgstr "Sobreescribir el título en el menú" + +#: models/titlemodels.py:14 +msgid "Path" +msgstr "Path" + +#: models/titlemodels.py:20 +msgid "overwrite the title (html title tag)" +msgstr "sobreescribir el título (etiqueta HTML 'title')" + +#: plugins/file/cms_plugins.py:9 +msgid "File" +msgstr "Fichero" + +#: plugins/file/models.py:24 plugins/file/migrations/0001_initial.py:17 +#: plugins/flash/models.py:8 plugins/flash/migrations/0001_initial.py:18 +msgid "file" +msgstr "fichero" + +#: plugins/file/templates/cms/plugins/file.html:6 +msgid "file missing!" +msgstr "¡falta fichero!" + +#: plugins/flash/cms_plugins.py:9 +msgid "Flash" +msgstr "Flash" + +#: plugins/flash/models.py:8 +msgid "use swf file" +msgstr "usar fichero swf" + +#: plugins/flash/models.py:10 plugins/flash/migrations/0001_initial.py:19 +#: plugins/video/models.py:14 +msgid "height" +msgstr "alto" + +#: plugins/flash/templates/cms/plugins/flash.html:40 +#: plugins/video/templates/cms/plugins/video.html:60 +msgid "Missing flash plugin. Please download the latest Adobe Flash Player: " +msgstr "Plugin de Flash no encontrado. Por favor, descarga la última versión de Adobe Flash Player:" + +#: plugins/flash/templates/cms/plugins/flash.html:42 +#: plugins/video/templates/cms/plugins/video.html:62 +msgid "Get Adobe Flash Player" +msgstr "Consigue Adobe Flash Player" + +#: plugins/googlemap/cms_plugins.py:10 +msgid "Google Map" +msgstr "Mapa de Google" + +#: plugins/googlemap/models.py:9 +msgid "map title" +msgstr "título del mapa" + +#: plugins/googlemap/models.py:11 +msgid "address" +msgstr "dirección" + +#: plugins/googlemap/models.py:12 +msgid "zip code" +msgstr "código postal" + +#: plugins/googlemap/models.py:13 +msgid "city" +msgstr "ciudad" + +#: plugins/googlemap/models.py:15 +msgid "additional content" +msgstr "Contenido adicional" + +#: plugins/googlemap/models.py:16 +msgid "zoom level" +msgstr "nivel de zoom" + +#: plugins/googlemap/models.py:18 +msgid "latitude" +msgstr "latitud" + +#: plugins/googlemap/models.py:19 +msgid "Use latitude & longitude to fine tune the map possiton." +msgstr "Use latitud y longitud para afinar la posición del mapa." + +#: plugins/googlemap/models.py:20 +msgid "longitude" +msgstr "longitud" + +#: plugins/googlemap/models.py:22 +msgid "route planer title" +msgstr "título del planificador de ruta" + +#: plugins/googlemap/models.py:22 +msgid "Calculate your fastest way to here" +msgstr "Calcular la manera más rápida de ir" + +#: plugins/googlemap/models.py:23 +msgid "route planer" +msgstr "Planificador de ruta" + +#: plugins/googlemap/models.py:30 +msgid "Map" +msgstr "Mapa" + +#: plugins/googlemap/templates/cms/plugins/googlemap.html:76 +msgid "Your address: " +msgstr "Su dirección:" + +#: plugins/googlemap/templates/cms/plugins/googlemap.html:78 +msgid "Calculate route" +msgstr "Calcular la ruta" + +#: plugins/inherit/cms_plugins.py:17 +msgid "Inherit Plugins from Page" +msgstr "Hereda 'Plugins' de la Página" + +#: plugins/inherit/forms.py:23 +msgid "Language or Page must be filled out" +msgstr "El Idioma o la Página debe ser rellenado" + +#: plugins/inherit/models.py:10 +msgid "" +"Choose a page to include its plugins into this placeholder, empty will " +"choose current page" +msgstr "Elija una página para incluir sus 'plugins' en este 'placeholder'. Si la deja vacía elegirá la página actual" + +#: plugins/inherit/models.py:11 +msgid "Optional: the language of the plugins you want" +msgstr "Opcional: el idioma de los 'plugins' que desee" + +#: plugins/link/cms_plugins.py:12 +msgid "Link" +msgstr "Enlace" + +#: plugins/link/models.py:10 plugins/link/migrations/0001_initial.py:18 +#: plugins/link/migrations/0004_larger_link_names.py:11 +#: plugins/link/migrations/0004_larger_link_names.py:17 +#: plugins/snippet/models.py:12 plugins/snippet/migrations/0001_initial.py:17 +msgid "name" +msgstr "nombre" + +#: plugins/link/models.py:11 plugins/link/migrations/0001_initial.py:16 +#: plugins/picture/models.py:21 plugins/picture/migrations/0001_initial.py:16 +#: plugins/teaser/models.py:19 +msgid "link" +msgstr "enlace" + +#: plugins/link/models.py:12 +msgid "A link to a page has priority over a text link." +msgstr "Un enlace a una página tiene prioridad sobre un enlace del texto." + +#: plugins/link/models.py:13 +msgid "mailto" +msgstr "enviar a" + +#: plugins/link/models.py:13 +msgid "An email adress has priority over a text link." +msgstr "Una dirección de correo tiene prioridad sobre un enlace de texto." + +#: plugins/picture/cms_plugins.py:9 +msgid "Picture" +msgstr "Foto" + +#: plugins/picture/models.py:14 +msgid "center" +msgstr "centro" + +#: plugins/picture/models.py:15 +msgid "left" +msgstr "izquierda" + +#: plugins/picture/models.py:16 +msgid "right" +msgstr "derecha" + +#: plugins/picture/models.py:20 plugins/picture/migrations/0001_initial.py:17 +#: plugins/teaser/models.py:10 plugins/video/models.py:11 +msgid "image" +msgstr "imagen" + +#: plugins/picture/models.py:21 plugins/picture/models.py:22 +msgid "if present image will be clickable" +msgstr "si la imagen será 'clickable'" + +#: plugins/picture/models.py:23 plugins/picture/migrations/0001_initial.py:19 +msgid "alternate text" +msgstr "texto alternativo" + +#: plugins/picture/models.py:23 +msgid "textual description of the image" +msgstr "descripción textual de la imagen" + +#: plugins/picture/models.py:24 +msgid "long description" +msgstr "descripción larga" + +#: plugins/picture/models.py:24 +msgid "additional description of the image" +msgstr "descripcción adicional de la imágen" + +#: plugins/picture/models.py:25 +msgid "side" +msgstr "posición" + +#: plugins/snippet/cms_plugins.py:12 plugins/snippet/models.py:24 +#: plugins/snippet/models.py:32 +msgid "Snippet" +msgstr "Snippet" + +#: plugins/snippet/cms_plugins.py:30 +#, python-format +msgid "Template %(template)s does not exist." +msgstr "La plantilla %(template)s no existe." + +#: plugins/snippet/models.py:13 plugins/snippet/migrations/0001_initial.py:18 +msgid "HTML" +msgstr "HTML" + +#: plugins/snippet/models.py:15 +msgid "" +"Enter a template (i.e. \"snippets/plugin_xy.html\") which will be rendered. " +msgstr "Introduzca una plantilla (por ej. 'snippets/plugin_xy.html') que será utilizada." + +#: plugins/snippet/models.py:25 +msgid "Snippets" +msgstr "Snippets" + +#: plugins/teaser/cms_plugins.py:8 +msgid "Teaser" +msgstr "Muestra" + +#: plugins/teaser/models.py:14 +msgid "If present image will be clickable" +msgstr "Si la imágen será 'clickable'" + +#: plugins/teaser/models.py:19 +msgid "If present image will be clickable." +msgstr "Si la imágen será 'clickable'." + +#: plugins/teaser/templates/cms/plugins/teaser.html:11 +#: templates/cms/toolbar/toolbar.html:59 +msgid "more" +msgstr "más" + +#: plugins/text/cms_plugins.py:15 +msgid "Text" +msgstr "Texto" + +#: plugins/text/models.py:14 plugins/text/migrations/0001_initial.py:16 +msgid "body" +msgstr "cuerpo" + +#: plugins/text/templates/cms/plugins/widgets/tinymce.html:30 +msgid "Plugins" +msgstr "Plugins" + +#: plugins/text/templates/cms/plugins/widgets/tinymce.html:38 +#: plugins/text/templates/cms/plugins/widgets/tinymce.html:106 +#: plugins/text/templates/cms/plugins/widgets/wymeditor.html:67 +msgid "Please select a plugin type." +msgstr "Por favor, seleccione el tipo de 'plugin'." + +#: plugins/text/templates/cms/plugins/widgets/tinymce.html:54 +#: plugins/text/templates/cms/plugins/widgets/wymeditor.html:110 +msgid "Edit selected plugin" +msgstr "Editar el 'plugin' seleccionado" + +#: plugins/text/templates/cms/plugins/widgets/tinymce.html:58 +#: plugins/text/templates/cms/plugins/widgets/tinymce.html:124 +#: plugins/text/templates/cms/plugins/widgets/wymeditor.html:85 +msgid "Text editor does not support editing objects." +msgstr "El editor de texto no soporta la edición de objetos." + +#: plugins/text/templates/cms/plugins/widgets/tinymce.html:63 +#: plugins/text/templates/cms/plugins/widgets/tinymce.html:129 +#: plugins/text/templates/cms/plugins/widgets/wymeditor.html:90 +msgid "No object selected." +msgstr "Ningún objeto seleccionado." + +#: plugins/text/templates/cms/plugins/widgets/tinymce.html:112 +#: plugins/text/templates/cms/plugins/widgets/wymeditor.html:73 +msgid "Text editor does not support inserting objects." +msgstr "El editor de texto no soporta la inserción de objetos." + +#: plugins/text/templates/cms/plugins/widgets/tinymce.html:133 +#: plugins/text/templates/cms/plugins/widgets/wymeditor.html:94 +msgid "Not a plugin object" +msgstr "No es un objeto 'plugin'" + +#: plugins/text/templates/cms/plugins/widgets/wymeditor.html:106 +#: templates/admin/cms/page/widgets/installed_plugins_inc.html:4 +msgid "Available Plugins" +msgstr "Plugins disponibles" + +#: plugins/text/templates/cms/plugins/widgets/wymeditor.html:109 +msgid "Insert plugin" +msgstr "Insertar un 'plugin'" + +#: plugins/twitter/cms_plugins.py:10 +#: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:27 +msgid "Twitter" +msgstr "Twitter" + +#: plugins/twitter/cms_plugins.py:23 +msgid "Twitter Search" +msgstr "Buscar en Twitter" + +#: plugins/twitter/models.py:7 +msgid "twitter user" +msgstr "usuario de twitter" + +#: plugins/twitter/models.py:8 plugins/twitter/models.py:17 +msgid "count" +msgstr "cuenta" + +#: plugins/twitter/models.py:8 plugins/twitter/models.py:17 +msgid "Number of entries to display" +msgstr "Número de entradas a mostrar" + +#: plugins/twitter/models.py:9 +msgid "link hint" +msgstr "Enlace pista" + +#: plugins/twitter/models.py:9 +msgid "If given, the hint is displayed as link to your Twitter profile." +msgstr "Si está seleccionado, la pista es mostrada con enlace a su perfil de Twitter." + +#: plugins/twitter/models.py:16 +msgid "query" +msgstr "consulta" + +#: plugins/twitter/models.py:16 +msgid "" +"Example: \"brains AND zombies AND from:umbrella AND to:nemesis\": tweets " +"from the user \"umbrella\" to the user \"nemesis\" that contain the words " +"\"brains\" and \"zombies\"" +msgstr "Ejemplo: \"cerebros AND zombis AND from:paraguas AND to:nemesis\": tweets desde el usuario \"paraguas\" hasta el usuario \"nemesis\" que contiene las palabras \"cerebos\" and \"zombis\"" + +#: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:12 +msgid "we said," +msgstr "dijimos," + +#: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:13 +msgid "we" +msgstr "nosotros" + +#: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:14 +msgid "we were" +msgstr "nosotros somos" + +#: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:15 +msgid "we replied to" +msgstr "respondimos a" + +#: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:16 +msgid "we were checking out" +msgstr "nosotros estubimos revisando" + +#: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:17 +msgid "loading tweets..." +msgstr "cargando tweets..." + +#: plugins/video/cms_plugins.py:10 +msgid "Video" +msgstr "Vídeo" + +#: plugins/video/cms_plugins.py:42 +msgid "Color Settings" +msgstr "Preferencias del color" + +#: plugins/video/models.py:9 +msgid "movie file" +msgstr "fichero de película" + +#: plugins/video/models.py:9 +msgid "use .flv file or h264 encoded video file" +msgstr "Use un fichero .flv o uno codificado como h265 como fichero de vídeo" + +#: plugins/video/models.py:10 +msgid "movie url" +msgstr "URL de la película" + +#: plugins/video/models.py:10 +msgid "" +"vimeo or youtube video url. Example: " +"http://www.youtube.com/watch?v=-iJ7bs4mTUY" +msgstr "url de un video en vimeo o youtube. Por ejemplo: http://www.youtube.com/watch?v=-iJ7bs4mTUY" + +#: plugins/video/models.py:11 +msgid "preview image file" +msgstr "Fichero de imágen para previsualizar" + +#: plugins/video/models.py:16 +msgid "auto play" +msgstr "auto reproducción" + +#: plugins/video/models.py:17 +msgid "auto hide" +msgstr "auto esconder" + +#: plugins/video/models.py:18 +msgid "fullscreen" +msgstr "pantalla completa" + +#: plugins/video/models.py:19 +msgid "loop" +msgstr "bucle" + +#: plugins/video/models.py:22 +msgid "background color" +msgstr "color de fondo" + +#: plugins/video/models.py:22 plugins/video/models.py:23 +#: plugins/video/models.py:24 plugins/video/models.py:25 +#: plugins/video/models.py:26 plugins/video/models.py:27 +#: plugins/video/models.py:28 plugins/video/models.py:29 +msgid "Hexadecimal, eg ff00cc" +msgstr "Hexadecimal, por ej. ff00cc" + +#: plugins/video/models.py:23 +msgid "text color" +msgstr "Color del texto" + +#: plugins/video/models.py:24 +msgid "seekbar color" +msgstr "color de la barra de posicionamiento" + +#: plugins/video/models.py:25 +msgid "seekbar bg color" +msgstr "Color del fondo de la barra de posicionamiento" + +#: plugins/video/models.py:26 +msgid "loadingbar color" +msgstr "Color barra de actividad" + +#: plugins/video/models.py:27 +msgid "button out color" +msgstr "Color de salida del botón" + +#: plugins/video/models.py:28 +msgid "button over color" +msgstr "Color de estar sobre el botón" + +#: plugins/video/models.py:29 +msgid "button highlight color" +msgstr "Color para iluminar el botón" + +#: templates/admin/page_submit_line.html:3 +#: templates/admin/cms/page/change_form.html:274 +#: templates/admin/cms/page/plugin_change_form.html:113 +msgid "Save" +msgstr "Guardar" + +#: templates/admin/page_submit_line.html:7 +#, python-format +msgid "Delete %(language)s translation" +msgstr "Eliminar la traducción de %(language)s" + +#: templates/admin/page_submit_line.html:11 +msgid "Save as new" +msgstr "Guardar como nuevo" + +#: templates/admin/page_submit_line.html:12 +msgid "Save and add another" +msgstr "Guardar y añadir otro" + +#: templates/admin/page_submit_line.html:13 +#: templates/admin/cms/page/change_form.html:275 +msgid "Save and continue editing" +msgstr "Guardar y continuar editando" + +#: templates/admin/cms/mail/approvement_required.html:5 +#, python-format +msgid "" +"Page %(page)s may require approvement by you." +msgstr "La página %(page)s puede que necesite su aprobación." + +#: templates/admin/cms/mail/approvement_required.html:8 +msgid "Last changes" +msgstr "Últimos cambios" + +#: templates/admin/cms/mail/base.html:55 +#, python-format +msgid "Log in to administration here." +msgstr "Entrar por aquía la parte de administración." + +#: templates/admin/cms/mail/page_user_change.html:7 +msgid "Username:" +msgstr "Nombre de usuario:" + +#: templates/admin/cms/mail/page_user_change.html:11 +msgid "Password:" +msgstr "Contraseña:" + +#: templates/admin/cms/page/change_form.html:3 +#: templates/admin/cms/page/plugin_forms_history.html:3 +#: templates/admin/cms/page/plugin_forms_ok.html:4 +msgid "Change a page" +msgstr "Cambiar la página" + +#: templates/admin/cms/page/change_form.html:64 +#: templates/admin/cms/page/change_list.html:8 +#: templates/admin/cms/page/plugin_change_form.html:67 +#: templates/admin/cms/page/recover_form.html:14 +#: templates/admin/cms/page/revision_form.html:6 +msgid "Home" +msgstr "Inicio" + +#: templates/admin/cms/page/change_form.html:73 +msgid "Approve page deletion" +msgstr "Aprobar la eliminación de la página" + +#: templates/admin/cms/page/change_form.html:79 +#, python-format +msgid "(requires approvement at %(moderation_level)s level)" +msgstr "(necesita una aprobación en el nivel %(moderation_level)s)" + +#: templates/admin/cms/page/change_form.html:80 +msgid "(you can perform actions on this page directly)" +msgstr "(puede ejecutar las acciones en esta página diréctamente)" + +#: templates/admin/cms/page/change_form.html:93 +msgid "Remove delete request" +msgstr "Quitar las peticiones de eliminación." + +#: templates/admin/cms/page/change_form.html:95 +msgid "Approve delete" +msgstr "Aprobar la eliminación" + +#: templates/admin/cms/page/change_form.html:95 +msgid "Approve" +msgstr "Aprobar" + +#: templates/admin/cms/page/change_form.html:95 +#: templates/admin/cms/page/change_form.html:96 +#: templates/admin/cms/page/change_list_tree.html:12 +msgid "draft" +msgstr "borrador" + +#: templates/admin/cms/page/change_form.html:96 +msgid "Preview" +msgstr "Previo" + +#: templates/admin/cms/page/change_form.html:99 +#: templates/admin/cms/page/revision_form.html:10 +msgid "History" +msgstr "Historia" + +#: templates/admin/cms/page/change_form.html:100 +msgid "View on site" +msgstr "Ver en el sitio" + +#: templates/admin/cms/page/change_form.html:130 +#: templates/admin/cms/page/plugin_change_form.html:84 +msgid "Please correct the error below." +msgid_plural "Please correct the errors below." +msgstr[0] "Por favor, corrija el error de abajo." +msgstr[1] "Por favor, corrija los errores de abajo." + +#: templates/admin/cms/page/change_form.html:150 +msgid "All permissions" +msgstr "Todos los permisos" + +#: templates/admin/cms/page/change_form.html:151 +#: templates/admin/cms/page/change_form.html:163 +#: templates/admin/cms/page/loading.html:2 +msgid "Loading..." +msgstr "Cargando..." + +#: templates/admin/cms/page/change_form.html:162 +msgid "Page states" +msgstr "Estados de la página" + +#: templates/admin/cms/page/change_form.html:185 +#, python-format +msgid "" +"This page must be moderated at level %(moderation_level)s, post a message " +"for moderator." +msgstr "La página debe ser moderada en el nivel %(moderation_level)s, envíe un mensaje al moderador." + +#: templates/admin/cms/page/change_form.html:187 +msgid "Request approvemet" +msgstr "Petición de aprobación" + +#: templates/admin/cms/page/change_list.html:3 +msgid "List of pages" +msgstr "Listado de páginas" + +#: templates/admin/cms/page/change_list.html:58 +msgid "Successfully moved" +msgstr "Se ha movido con éxito" + +#: templates/admin/cms/page/change_list.html:63 +msgid "An error occured. Please reload the page" +msgstr "Ha ocurrido un error, por favor recarge la página" + +#: templates/admin/cms/page/change_list.html:84 +#, python-format +msgid "Recover deleted %(name)s" +msgstr "Recuperación de la página %(name)s eliminada" + +#: templates/admin/cms/page/change_list.html:87 +#, python-format +msgid "Add %(name)s" +msgstr "Añadir %(name)s" + +#: templates/admin/cms/page/change_list.html:99 +msgid "Pages on:" +msgstr "Páginas en:" + +#: templates/admin/cms/page/change_list.html:116 +msgid "Filter:" +msgstr "Filtro:" + +#: templates/admin/cms/page/change_list.html:116 +msgid "on" +msgstr "activado" + +#: templates/admin/cms/page/change_list.html:116 +msgid "off" +msgstr "desactivado" + +#: templates/admin/cms/page/change_list.html:118 +msgid "Filter" +msgstr "Filtro" + +#: templates/admin/cms/page/change_list_tree.html:8 +msgid "actions" +msgstr "acciones" + +#: templates/admin/cms/page/change_list_tree.html:10 +msgid "moderate" +msgstr "moderar" + +#: templates/admin/cms/page/change_list_tree.html:13 +msgid "published" +msgstr "publicar" + +#: templates/admin/cms/page/change_list_tree.html:15 +msgid "start" +msgstr "comienza" + +#: templates/admin/cms/page/change_list_tree.html:16 +msgid "end" +msgstr "termina" + +#: templates/admin/cms/page/change_list_tree.html:17 +msgid "restricted" +msgstr "restringido" + +#: templates/admin/cms/page/change_list_tree.html:19 +msgid "last changes" +msgstr "últimos cambios" + +#: templates/admin/cms/page/menu_item.html:5 +msgid "select this page" +msgstr "seleccionar esta página" + +#: templates/admin/cms/page/menu_item.html:5 +#: templates/admin/cms/page/menu_item.html:6 +msgid "edit this page" +msgstr "editar esta página" + +#: templates/admin/cms/page/menu_item.html:6 +#: templates/cms/toolbar/toolbar.html:54 +msgid "edit" +msgstr "editar" + +#: templates/admin/cms/page/menu_item.html:16 +msgid "insert above" +msgstr "insertar arriba" + +#: templates/admin/cms/page/menu_item.html:17 +msgid "insert below" +msgstr "insertar abajo" + +#: templates/admin/cms/page/menu_item.html:19 +msgid "insert inside" +msgstr "insertar dentro" + +#: templates/admin/cms/page/menu_item.html:23 +msgid "softroot" +msgstr "softroot" + +#: templates/admin/cms/page/menu_item.html:23 +msgid "home" +msgstr "Inicio" + +#: templates/admin/cms/page/menu_item.html:26 +#, python-format +msgid "Edit this page in %(language)s " +msgstr "Editar esta página en %(language)s " + +#: templates/admin/cms/page/menu_item.html:33 +msgid "Cut" +msgstr "Cortar" + +#: templates/admin/cms/page/menu_item.html:33 +msgid "cut" +msgstr "cortar" + +#: templates/admin/cms/page/menu_item.html:34 +msgid "Copy" +msgstr "Copiar" + +#: templates/admin/cms/page/menu_item.html:34 +msgid "copy" +msgstr "copiar" + +#: templates/admin/cms/page/menu_item.html:37 +#: templates/admin/cms/page/menu_item.html:41 +msgid "Add Child" +msgstr "Añadir hijo" + +#: templates/admin/cms/page/menu_item.html:37 +#: templates/admin/cms/page/menu_item.html:41 +msgid "add" +msgstr "añadir" + +#: templates/admin/cms/page/menu_item.html:65 +msgid "Approve directly" +msgstr "Aprobar directamente" + +#: templates/admin/cms/page/menu_item.html:67 +#: templates/admin/cms/page/menu_item.html:79 +#: templates/admin/cms/page/menu_item.html:81 +msgid "view" +msgstr "ver" + +#: templates/admin/cms/page/menu_item.html:72 +msgid "Unpublish" +msgstr "Despublicar" + +#: templates/admin/cms/page/menu_item.html:79 +msgid "View on page" +msgstr "Ver en la página" + +#: templates/admin/cms/page/moderation_messages.html:4 +msgid "Action" +msgstr "Acción" + +#: templates/admin/cms/page/moderation_messages.html:5 +msgid "Created" +msgstr "Creado" + +#: templates/admin/cms/page/moderation_messages.html:7 +msgid "Message" +msgstr "Mensaje" + +#: templates/admin/cms/page/permissions.html:7 +msgid "Group" +msgstr "Grupo" + +#: templates/admin/cms/page/permissions.html:8 +msgid "Can edit" +msgstr "Puede editar" + +#: templates/admin/cms/page/permissions.html:9 +msgid "Can add" +msgstr "Puede añadir" + +#: templates/admin/cms/page/permissions.html:10 +msgid "Can delete" +msgstr "Puede borrar" + +#: templates/admin/cms/page/permissions.html:11 +msgid "Can publish" +msgstr "Puede publicar" + +#: templates/admin/cms/page/permissions.html:12 +msgid "Can change permissions" +msgstr "Puede cambiar los permisos" + +#: templates/admin/cms/page/permissions.html:13 +msgid "Can move" +msgstr "Puede mover" + +#: templates/admin/cms/page/permissions.html:14 +msgid "Can view" +msgstr "Puede ver" + +#: templates/admin/cms/page/permissions.html:21 +#: templates/admin/cms/page/permissions.html:22 +msgid "(global)" +msgstr "(global)" + +#: templates/admin/cms/page/permissions.html:26 +msgid "(current)" +msgstr "(actual)" + +#: templates/admin/cms/page/permissions.html:43 +msgid "All" +msgstr "Todo" + +#: templates/admin/cms/page/permissions.html:51 +msgid "Page doesn't inherit any permissions." +msgstr "La página no hereda ningún permiso." + +#: templates/admin/cms/page/plugin_change_form.html:114 +#: templates/cms/toolbar/toolbar.html:24 +msgid "Cancel" +msgstr "Cancelar" + +#: templates/admin/cms/page/plugin_forms_history.html:9 +msgid "An old revision of a plugin can not be saved!" +msgstr "¡Una versión antigua de un 'plugin' no puede ser guardada!" + +#: templates/admin/cms/page/plugin_forms_ok.html:21 +msgid "Plugin saved successfully." +msgstr "'Plugin' guardado con éxito." + +#: templates/admin/cms/page/recover_form.html:17 +#, python-format +msgid "Recover deleted %(verbose_name)s" +msgstr "Recuperar %(verbose_name)s eliminado" + +#: templates/admin/cms/page/recover_form.html:24 +msgid "Press the save button below to recover this version of the object." +msgstr "Presione el botón de guardar de abajo para recuperar esta versión del objeto." + +#: templates/admin/cms/page/revision_form.html:11 +#, python-format +msgid "Revert %(verbose_name)s" +msgstr "Revertir %(verbose_name)s" + +#: templates/admin/cms/page/revision_form.html:24 +msgid "Press the save button below to revert to this version of the object." +msgstr "Presione el botón de guardar de abajo para revertir esta versión del objeto." + +#: templates/admin/cms/page/dialog/copy.html:4 +msgid "Copy options" +msgstr "Opciones de copia" + +#: templates/admin/cms/page/dialog/copy.html:6 +msgid "Choose copy options" +msgstr "Elija las opciones de copia" + +#: templates/admin/cms/page/widgets/installed_plugins_inc.html:7 +msgid "Generic" +msgstr "Genérico" + +#: templates/admin/cms/page/widgets/installed_plugins_inc.html:15 +msgid "Add Plugin" +msgstr "Añadir un 'Plugin'" + +#: templates/admin/cms/page/widgets/installed_plugins_inc.html:18 +msgid "From Language" +msgstr "Desde el idioma" + +#: templates/admin/cms/page/widgets/installed_plugins_inc.html:25 +msgid "Copy Plugins" +msgstr "Copiar 'plugins'" + +#: templates/admin/cms/page/widgets/plugin_editor.html:12 +msgid "You must save the page first to add plugins." +msgstr "Debe guardar la página antes de añadir 'plugins'." + +#: templates/admin/cms/page/widgets/plugin_editor.html:15 +msgid "No Plugin selected. Selected one on the left side" +msgstr "No ha seleccionado ningún 'plugin'. Seleccione uno de la izquierda" + +#: templates/admin/cms/page/widgets/plugin_editor.html:17 +msgid "No Plugins present. Add a plugin to this placeholder-slot." +msgstr "No hay 'plugins' presentes. Añada un 'plugin' en el slot del 'placeholder'." + +#: templates/cms/toolbar/placeholder.html:32 +msgid "Available plugins" +msgstr "'Plugins' disponibles" + +#: templates/cms/toolbar/toolbar.html:22 +msgid "The selected element can not be moved to the desired location." +msgstr "El elemento seleccionado no se puede mover al lugar deseado." + +#: templates/cms/toolbar/toolbar.html:23 +msgid "Are you sure you want to delete this plugin?" +msgstr "¿Seguro que desea eliminar este 'plugin'?" + +#: templates/cms/toolbar/toolbar.html:55 +msgid "up" +msgstr "Subir" + +#: templates/cms/toolbar/toolbar.html:56 +msgid "down" +msgstr "Bajar" + +#: templates/cms/toolbar/toolbar.html:61 +msgid "Move to placeholder" +msgstr "Mover al marcador de posición" + +#: templates/cms/toolbar/items/login.html:5 +msgid "Username" +msgstr "Nombre de usuario" + +#: templates/cms/toolbar/items/login.html:10 +#: templates/cms/toolbar/items/login.html:12 +msgid "Login" +msgstr "Iniciar Sesión" + +#: templates/cms/toolbar/items/status.html:2 +msgid "Status" +msgstr "Estado" + +#: templates/cms/toolbar/items/switcher.html:4 +msgid "Switch on/off" +msgstr "activar/desactivar" + +#: templatetags/cms_admin.py:86 +#, python-format +msgid "%(icon)s" +msgstr "%(icon)s" + +#: templatetags/cms_admin.py:99 +msgid "Unbind page moderation" +msgstr "Desligar moderación de la página" + +#: templatetags/cms_admin.py:100 +msgid "Unbind children moderation" +msgstr "Desligar moderación del hijo" + +#: templatetags/cms_admin.py:101 +msgid "Unbind descendants moderation" +msgstr "Desligar moderación de los descendientes" + +#: templatetags/cms_tags.py:78 +#, python-format +msgid "Page not found on %(domain)s" +msgstr "Página no encontrada en %(domain)s" + +#: templatetags/cms_tags.py:79 +#, python-format +msgid "" +"A template tag couldn't find the page with lookup arguments `%(page_lookup)s\n" +"`. The URL of the request was: http://%(host)s%(path)s" +msgstr "Una etiqueta en la plantilla no puedo encontrar la página con estos argumentos de lookup `%(page_lookup)s\n`. La URL de la petición era: http://%(host)s%(path)s" + +#: utils/mail.py:38 +msgid "CMS - your user account was created." +msgstr "CMS - su cuenta de usuario ha sido creada." + +#: utils/mail.py:40 +msgid "CMS - your user account was changed." +msgstr "CMS - su cuenta de usuario ha cambiado." + +#: utils/moderator.py:83 +msgid "parent first" +msgstr "Padre primero" + +#: utils/moderator.py:90 +msgid "approve" +msgstr "aprobar" + +#: utils/moderator.py:251 +#, python-format +msgid "CMS - Page %s requires approvement." +msgstr "CMS - La página %s necesita aprobación." + +#~ msgid "move" +#~ msgstr "move request" + +#~ msgid "sidebar column" +#~ msgstr "background color" + +#~ msgid "fgcolor" +#~ msgstr "foreground color" + +#~ msgid "Wanted language has not been translated yet." +#~ msgstr "Requested language has not been translated yet." diff --git a/cms/locale/es_BO/LC_MESSAGES/djangojs.po b/cms/locale/es_BO/LC_MESSAGES/djangojs.po new file mode 100644 index 00000000000..8ffa64537f6 --- /dev/null +++ b/cms/locale/es_BO/LC_MESSAGES/djangojs.po @@ -0,0 +1,40 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Edwin Caldon , 2011. +# , 2011. +msgid "" +msgstr "" +"Project-Id-Version: django-cms\n" +"Report-Msgid-Bugs-To: https://github.com/divio/django-cms/issues\n" +"POT-Creation-Date: 2011-08-14 09:44-0500\n" +"PO-Revision-Date: 2011-10-15 15:04+0000\n" +"Last-Translator: mariocesar \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_BO\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: static/cms/js/change_form.js:31 +msgid "" +"Are you sure you want to change the %(field_name)s without saving the page " +"first?" +msgstr "¿Está seguro de que desea cambiar %(field_name)s sin guardar antes la página?" + +#: static/cms/js/change_form.js:69 +msgid "" +"Not all plugins are saved. Are you sure you want to save the page?\n" +"All unsaved plugin content will tried to save." +msgstr "No todos los plugins se guardaron. ¿Está seguro que desea guardar la página? Todo el contenido del plugin no guardado, trató de salvarse." + +#: static/cms/js/change_form.js:127 +msgid "Are you sure you want to change tabs without saving the page first?" +msgstr "¿Estás seguro de que desea cambiar de pestañas sin guardar antes la página?" + +#: static/cms/js/plugin_editor.js:132 +msgid "Are you sure you want to delete this plugin?" +msgstr "¿Está seguro de que quiere borrar este plugin?" diff --git a/cms/locale/fr/LC_MESSAGES/django.po b/cms/locale/fr/LC_MESSAGES/django.po index 4cb09132deb..3ccc5b0e414 100644 --- a/cms/locale/fr/LC_MESSAGES/django.po +++ b/cms/locale/fr/LC_MESSAGES/django.po @@ -1,19 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# +# Translators: +# Antoine Nguyen , 2011. +# , 2011. +# Chary titouan <>, 2011. +# chrisglass , 2011. msgid "" msgstr "" "Project-Id-Version: django-cms\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-14 09:48-0500\n" -"PO-Revision-Date: 2011-03-22 15:24+0000\n" -"Last-Translator: ojii \n" +"Report-Msgid-Bugs-To: https://github.com/divio/django-cms/issues\n" +"POT-Creation-Date: 2011-08-14 09:47-0500\n" +"PO-Revision-Date: 2011-12-23 23:33+0000\n" +"Last-Translator: Chary titouan <>\n" "Language-Team: divio.ch \n" -"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1)\n" "X-Poedit-Country: SWITZERLAND\n" "X-Poedit-Language: English\n" @@ -25,7 +30,7 @@ msgstr "Mode édition" #: cms_toolbar.py:77 msgid "django CMS" -msgstr "" +msgstr "django CMS" #: cms_toolbar.py:108 templates/admin/cms/page/menu_item.html:73 msgid "Publish" @@ -78,7 +83,7 @@ msgstr "Voir l'historique" #: cms_toolbar.py:205 msgid "Admin" -msgstr "" +msgstr "Administrateur" #: plugin_base.py:65 msgid "Advanced options" @@ -125,7 +130,8 @@ msgid "Page Title" msgstr "Titre de la page" #: admin/forms.py:138 -msgid "Overwrites what is displayed at the top of your browser or in bookmarks" +msgid "" +"Overwrites what is displayed at the top of your browser or in bookmarks" msgstr "Titre de la page (dans votre navigateur, vos favoris...)" #: admin/forms.py:139 @@ -158,9 +164,7 @@ msgstr "Brève description de la page utilisée par les moteurs de recherche." #: admin/forms.py:154 msgid "A list of comma seperated keywords sometimes used by search engines." -msgstr "" -"Entrez une liste de mots clés séparés par des virgules, cela sera utilisé " -"par les moteurs de recherche." +msgstr "Entrez une liste de mots clés séparés par des virgules, cela sera utilisé par les moteurs de recherche." #: admin/forms.py:170 msgid "A page with this reverse URL id exists already." @@ -171,9 +175,9 @@ msgid "Invalid URL, use /my/url format." msgstr "L'URL est invalide, utilisez le format /mot-cle/mot-cle" #: admin/forms.py:181 -#, fuzzy, python-format +#, python-format msgid "Page with redirect url %r already exist" -msgstr "Une page avec les mêmes mots-clés pour l'URL existe déjà" +msgstr "La page avec pour redirection url %r existe déjà" #: admin/forms.py:191 admin/forms.py:192 migrations/0001_initial.py:41 #: models/permissionmodels.py:16 @@ -184,20 +188,15 @@ msgstr "utilisateur" msgid "" "Add page permission requires also access to children, or descendants, " "otherwise added page can't be changed by its creator." -msgstr "" -"La permission \"Ajouter une page\" nécesite aussi l'accès aux descendants, " -"sinon les pages ajoutées ne pourront pas être modifiées par leur créateur." +msgstr "La permission \"Ajouter une page\" nécesite aussi l'accès aux descendants, sinon les pages ajoutées ne pourront pas être modifiées par leur créateur." #: admin/forms.py:221 msgid "Add page permission also requires edit page permission." -msgstr "" -"La permission \"Ajouter une page\" nécessite la permission \"Editer une page" -"\"" +msgstr "La permission \"Ajouter une page\" nécessite la permission \"Editer une page\"" #: admin/forms.py:248 -#, fuzzy msgid "can_view" -msgstr "voir" +msgstr "can_view" #: admin/forms.py:260 msgid "Please select user or group first." @@ -232,9 +231,7 @@ msgstr "Notifier l'utilisateur" msgid "" "Send email notification to user about username or password change. Requires " "user email." -msgstr "" -"Envoyer une notification par courriel du changement de nom d'utilisateur ou " -"mot de passe. Nécessite un courriel valide. " +msgstr "Envoyer une notification par courriel du changement de nom d'utilisateur ou mot de passe. Nécessite un courriel valide. " #: admin/forms.py:318 msgid "New password" @@ -251,16 +248,12 @@ msgstr "La notification par courriel nécessite un courriel valide" #: admin/forms.py:341 msgid "" "The permission to add new pages requires the permission to change pages!" -msgstr "" -"La permission d'ajouter des pages nécessite la permission de modifier des " -"pages!" +msgstr "La permission d'ajouter des pages nécessite la permission de modifier des pages!" #: admin/forms.py:343 msgid "" "The permission to add new users requires the permission to change users!" -msgstr "" -"La permission d'ajouter des utilisateurs nécessite la permission de modifier " -"des utilisateurs!" +msgstr "La permission d'ajouter des utilisateurs nécessite la permission de modifier des utilisateurs!" #: admin/forms.py:345 msgid "To add permissions you also need to edit them!" @@ -272,9 +265,7 @@ msgstr "Propriétés" #: admin/pageadmin.py:100 msgid "Note: This page reloads if you change the selection. Save it first." -msgstr "" -"Note : cette page sera rechargée si vous changez la selection. Pensez à la " -"sauver au préalable." +msgstr "Note : cette page sera rechargée si vous changez la selection. Pensez à la sauver au préalable." #: admin/pageadmin.py:102 admin/pageadmin.py:154 msgid "Hidden" @@ -289,9 +280,8 @@ msgid "SEO Settings" msgstr "Paramètres SEO (Optimisation pour les moteurs de recherche)" #: admin/pageadmin.py:299 -#, fuzzy msgid "You have no permission to change the template" -msgstr "Vous n'avez pas la permission de modifier cette page" +msgstr "Vous n'avez pas la permission de modifier le modèle" #: admin/pageadmin.py:485 msgid "higher" @@ -329,14 +319,11 @@ msgstr "Vous n'avez pas la permission d'ajouter cette page" #: admin/pageadmin.py:1066 msgid "You do not have permission to change this page's in_navigation status" -msgstr "" -"Vous n'avez pas la permission de changer le statut \"Apparaître dans le menu" -"\"" +msgstr "Vous n'avez pas la permission de changer le statut \"Apparaître dans le menu\"" #: admin/pageadmin.py:1079 -#, fuzzy msgid "You have no permission to add a plugin" -msgstr "Vous n'avez pas la permission de modifier cette page" +msgstr "Vous n'avez pas la permission d'ajouter un plugin" #: admin/pageadmin.py:1126 admin/pageadmin.py:1158 msgid "Language must be set to a supported language!" @@ -356,64 +343,54 @@ msgid "Language must be different than the copied language!" msgstr "La langue doit être différente de la langue copiée !" #: admin/pageadmin.py:1166 -#, fuzzy msgid "You do not have permission to add plugins" -msgstr "Vous n'avez pas la permission de modifier cette page" +msgstr "Vous n'avez pas la permission d'ajouter des plugins" #: admin/pageadmin.py:1173 #, python-format msgid "Copied %(language)s plugins to %(placeholder)s" -msgstr "" -"Les greffons pour la langue %(language)s ont été copiés dans %(placeholder)s " +msgstr "Les greffons pour la langue %(language)s ont été copiés dans %(placeholder)s " #: admin/pageadmin.py:1186 admin/pageadmin.py:1294 admin/pageadmin.py:1316 -#, fuzzy msgid "You have no permission to change this page" msgstr "Vous n'avez pas la permission de modifier cette page" #: admin/pageadmin.py:1221 -#, fuzzy msgid "You have no permission to edit a plugin" -msgstr "Vous n'avez pas la permission de modifier cette page" +msgstr "Vous n'avez pas la permission de modifier un plugin" #: admin/pageadmin.py:1256 #, python-format msgid "" "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -msgstr "" -"Le bloc %(plugin_name)s à la position %(position)s de la zone " -"%(placeholder)s a été modifié" +msgstr "Le bloc %(plugin_name)s à la position %(position)s de la zone %(placeholder)s a été modifié" #: admin/pageadmin.py:1311 -#, fuzzy msgid "You have no permission to move a plugin" -msgstr "Vous n'avez pas la permission de modifier cette page" +msgstr "Vous n'avez pas la permission de déplacer un plugin" #: admin/pageadmin.py:1329 msgid "Plugins where moved" msgstr "Les blocs ont été déplacés" #: admin/pageadmin.py:1343 -#, fuzzy msgid "You have no permission to remove a plugin" -msgstr "Vous n'avez pas la permission de modifier cette page" +msgstr "Vous n'avez pas la permission de supprimer un plugin" #: admin/pageadmin.py:1361 admin/placeholderadmin.py:292 #, python-format msgid "" "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " "deleted." -msgstr "" -"Le bloc %(plugin_name)s à la position %(position)s de la zone " -"%(placeholder)s a été supprimé." +msgstr "Le bloc %(plugin_name)s à la position %(position)s de la zone %(placeholder)s a été supprimé." #: admin/permissionadmin.py:72 msgid "View restriction" -msgstr "" +msgstr "Voir la restriction" #: admin/permissionadmin.py:73 msgid "View restrictions" -msgstr "" +msgstr "Voir les restrictions" #: admin/permissionadmin.py:133 models/permissionmodels.py:75 msgid "Page permissions" @@ -428,19 +405,16 @@ msgid "Page permissions management" msgstr "Gestion des permissions relatives aux pages" #: admin/placeholderadmin.py:150 admin/placeholderadmin.py:191 -#, fuzzy msgid "You don't have permission to add content here." -msgstr "Vous n'avez pas la permission de modifier cette page" +msgstr "Vous n'avez pas la permission d'ajouter du contenu ici." #: admin/placeholderadmin.py:187 -#, fuzzy msgid "You don't have permission to add plugins" -msgstr "Vous n'avez pas la permission de modifier cette page" +msgstr "Vous n'avez pas la permission d'ajouter des plugins" #: admin/placeholderadmin.py:288 -#, fuzzy msgid "You don't have permission to delete a plugin" -msgstr "Vous n'avez pas la permission de modifier cette page" +msgstr "Vous n'avez pas la permission de supprimer un plugin" #: admin/useradmin.py:25 msgid "User details" @@ -742,15 +716,11 @@ msgstr "modifiée par" msgid "" "When the page should go live. Status must be \"Published\" for page to go " "live." -msgstr "" -"Date de publication de la page. Son statut doit être à \"Publié\" pour une " -"publication automatique." +msgstr "Date de publication de la page. Son statut doit être à \"Publié\" pour une publication automatique." #: models/pagemodel.py:67 msgid "When to expire the page. Leave empty to never expire." -msgstr "" -"Pour dépublier automatiquement la page. Laisser vide pour aucune " -"dépublication." +msgstr "Pour dépublier automatiquement la page. Laisser vide pour aucune dépublication." #: models/pagemodel.py:69 msgid "All ancestors will not be displayed in the navigation" @@ -760,9 +730,7 @@ msgstr "Les parents n'appaîtront pas dans le menu" msgid "" "An unique identifier that is used with the page_url templatetag for linking " "to this page" -msgstr "" -"Identifiant unique utilisé par le modèle page_url pour créer un lien vers " -"cette page" +msgstr "Identifiant unique utilisé par le modèle page_url pour créer un lien vers cette page" #: models/pagemodel.py:71 msgid "attached menu" @@ -838,11 +806,11 @@ msgstr "peut modérer" #: models/permissionmodels.py:28 msgid "view restricted" -msgstr "" +msgstr "Visibilité restreinte" #: models/permissionmodels.py:28 msgid "frontend view restriction" -msgstr "" +msgstr "Visibilité frontend restreinte " #: models/permissionmodels.py:51 msgid "can recover pages" @@ -854,9 +822,7 @@ msgstr "peut restaurer n'importe quelle page supprimée" #: models/permissionmodels.py:52 msgid "If none selected, user haves granted permissions to all sites." -msgstr "" -"Si aucun n'est selectionné, les permissions de l'utilisateur sont valables " -"sur tous les sites" +msgstr "Si aucun n'est selectionné, les permissions de l'utilisateur sont valables sur tous les sites" #: models/permissionmodels.py:52 msgid "sites" @@ -926,7 +892,7 @@ msgstr "fichier" #: plugins/file/templates/cms/plugins/file.html:6 msgid "file missing!" -msgstr "" +msgstr "fichier manquant!" #: plugins/flash/cms_plugins.py:9 msgid "Flash" @@ -943,16 +909,13 @@ msgstr "hauteur" #: plugins/flash/templates/cms/plugins/flash.html:40 #: plugins/video/templates/cms/plugins/video.html:60 -#, fuzzy msgid "Missing flash plugin. Please download the latest Adobe Flash Player: " -msgstr "" -"Le plugin flash n'est pas disponible. Veuillez le télécharger." +msgstr "Plugin flash manquant. Veuillez télécharger le dernier lecteur Adobe Flash:" #: plugins/flash/templates/cms/plugins/flash.html:42 #: plugins/video/templates/cms/plugins/video.html:62 msgid "Get Adobe Flash Player" -msgstr "" +msgstr "Obtenez Adobe Flash Player" #: plugins/googlemap/cms_plugins.py:10 msgid "Google Map" @@ -988,9 +951,7 @@ msgstr "latitude" #: plugins/googlemap/models.py:19 msgid "Use latitude & longitude to fine tune the map possiton." -msgstr "" -"Utiliser la longitude et la latitude pour régler finement le positionnement " -"de la carte." +msgstr "Utiliser la longitude et la latitude pour régler finement le positionnement de la carte." #: plugins/googlemap/models.py:20 msgid "longitude" @@ -1032,9 +993,7 @@ msgstr "La langue ou page doivent être renseignés" msgid "" "Choose a page to include its plugins into this placeholder, empty will " "choose current page" -msgstr "" -"Choisissez une page pour inclure ses plugins dans ce placeholder. Ne rien " -"choisir inclus les plugins de la page courante." +msgstr "Choisissez une page pour inclure ses plugins dans ce placeholder. Ne rien choisir inclus les plugins de la page courante." #: plugins/inherit/models.py:11 msgid "Optional: the language of the plugins you want" @@ -1075,7 +1034,7 @@ msgstr "Image" #: plugins/picture/models.py:14 msgid "center" -msgstr "" +msgstr "centre" #: plugins/picture/models.py:15 msgid "left" @@ -1131,9 +1090,7 @@ msgstr "HTML" #: plugins/snippet/models.py:15 msgid "" "Enter a template (i.e. \"snippets/plugin_xy.html\") which will be rendered. " -msgstr "" -"Veuillez fournir le nom du modèle (par ex.: \"snippets/plugin_xy.html\") qui " -"sera affiché." +msgstr "Veuillez fournir le nom du modèle (par ex.: \"snippets/plugin_xy.html\") qui sera affiché." #: plugins/snippet/models.py:25 msgid "Snippets" @@ -1248,35 +1205,31 @@ msgid "" "Example: \"brains AND zombies AND from:umbrella AND to:nemesis\": tweets " "from the user \"umbrella\" to the user \"nemesis\" that contain the words " "\"brains\" and \"zombies\"" -msgstr "" -"Par example: \"brains AND zombies AND from:umbrella AND to:nemesis\": tweets " -"from the user \"umbrella\" to the user \"nemesis\" that contain the words " -"\"brains\" and \"zombies\"" +msgstr "Par example: \"brains AND zombies AND from:umbrella AND to:nemesis\": tweets from the user \"umbrella\" to the user \"nemesis\" that contain the words \"brains\" and \"zombies\"" #: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:12 msgid "we said," -msgstr "" +msgstr "nous disions," #: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:13 msgid "we" -msgstr "" +msgstr "nous" #: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:14 msgid "we were" -msgstr "" +msgstr "nous étions" #: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:15 msgid "we replied to" -msgstr "" +msgstr "nous répondions à" #: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:16 msgid "we were checking out" -msgstr "" +msgstr "Nous vérifions" #: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:17 -#, fuzzy msgid "loading tweets..." -msgstr "Chargement..." +msgstr "chargement de tweets..." #: plugins/video/cms_plugins.py:10 msgid "Video" @@ -1292,20 +1245,17 @@ msgstr "fichier vidéo" #: plugins/video/models.py:9 msgid "use .flv file or h264 encoded video file" -msgstr "utilisez un fichier .flv ou une vidéo encodée au format h264" +msgstr "utiliser un fichier .flv ou une vidéo encodée au format h264" #: plugins/video/models.py:10 msgid "movie url" msgstr "URL du fichier video" #: plugins/video/models.py:10 -#, fuzzy msgid "" -"vimeo or youtube video url. Example: http://www.youtube.com/watch?v=-" -"iJ7bs4mTUY" -msgstr "" -"URL du fichier video YouTube ou Vimeo. Par exemple: http://www.youtube.com/" -"watch?v=YFa59lK-kpo" +"vimeo or youtube video url. Example: " +"http://www.youtube.com/watch?v=-iJ7bs4mTUY" +msgstr "URL vimeo ou youtube. Exemple: " #: plugins/video/models.py:11 msgid "preview image file" @@ -1497,9 +1447,7 @@ msgstr "États des pages" msgid "" "This page must be moderated at level %(moderation_level)s, post a message " "for moderator." -msgstr "" -"Cette page doit être validée au niveau %(moderation_level)s, contactez les " -"personnes concernées." +msgstr "Cette page doit être validée au niveau %(moderation_level)s, saisissez un message pour les personnes concernées." #: templates/admin/cms/page/change_form.html:187 msgid "Request approvemet" @@ -1569,7 +1517,7 @@ msgstr "fin" #: templates/admin/cms/page/change_list_tree.html:17 msgid "restricted" -msgstr "" +msgstr "restreint" #: templates/admin/cms/page/change_list_tree.html:19 msgid "last changes" @@ -1699,9 +1647,8 @@ msgid "Can move" msgstr "Peut déplacer" #: templates/admin/cms/page/permissions.html:14 -#, fuzzy msgid "Can view" -msgstr "Peut déplacer" +msgstr "peut voir" #: templates/admin/cms/page/permissions.html:21 #: templates/admin/cms/page/permissions.html:22 @@ -1723,7 +1670,7 @@ msgstr "La page n'hérite d'aucune permission" #: templates/admin/cms/page/plugin_change_form.html:114 #: templates/cms/toolbar/toolbar.html:24 msgid "Cancel" -msgstr "" +msgstr "Annuler" #: templates/admin/cms/page/plugin_forms_history.html:9 msgid "An old revision of a plugin can not be saved!" @@ -1793,7 +1740,7 @@ msgstr "plugins disponibles" #: templates/cms/toolbar/toolbar.html:22 msgid "The selected element can not be moved to the desired location." -msgstr "" +msgstr "L'élément selectionné ne peut pas être déplacé vers la position désirée." #: templates/cms/toolbar/toolbar.html:23 msgid "Are you sure you want to delete this plugin?" @@ -1809,7 +1756,7 @@ msgstr "bas" #: templates/cms/toolbar/toolbar.html:61 msgid "Move to placeholder" -msgstr "" +msgstr "Déplacer vers le bloc" #: templates/cms/toolbar/items/login.html:5 msgid "Username" @@ -1817,9 +1764,8 @@ msgstr "Nom d'utilisateur" #: templates/cms/toolbar/items/login.html:10 #: templates/cms/toolbar/items/login.html:12 -#, fuzzy msgid "Login" -msgstr "se connecter" +msgstr "Connexion" #: templates/cms/toolbar/items/status.html:2 msgid "Status" @@ -1827,12 +1773,12 @@ msgstr "État" #: templates/cms/toolbar/items/switcher.html:4 msgid "Switch on/off" -msgstr "" +msgstr "Bouton on/off" #: templatetags/cms_admin.py:86 #, python-format msgid "%(icon)s" -msgstr "" +msgstr "%(icon)s" #: templatetags/cms_admin.py:99 msgid "Unbind page moderation" @@ -1854,13 +1800,9 @@ msgstr "Page introuvable sur %(domain)s" #: templatetags/cms_tags.py:79 #, python-format msgid "" -"A template tag couldn't find the page with lookup arguments `" -"%(page_lookup)s\n" +"A template tag couldn't find the page with lookup arguments `%(page_lookup)s\n" "`. The URL of the request was: http://%(host)s%(path)s" -msgstr "" -"Un \"template tag\" n'a pas pu trouver la page avec les arguments « " -"%(page_lookup)s ». L'URL de la demande était la suivante: http://%(host)s" -"%(path)s" +msgstr "Un \"template tag\" n'a pas pu trouver la page avec les arguments « %(page_lookup)s ». L'URL de la demande était la suivante: http://%(host)s%(path)s" #: utils/mail.py:38 msgid "CMS - your user account was created." @@ -1883,98 +1825,14 @@ msgstr "approuver" msgid "CMS - Page %s requires approvement." msgstr "CMS - la page %s nécessite approbation" -#~ msgid "Missing flash plugin." -#~ msgstr "Il manque le bloc Flash." - -#~ msgid "Login url: %(login_url)s" -#~ msgstr "URL de login: %(login_url)s" - -#~ msgid "Move to %(name)s" -#~ msgstr "Déplacer vers %(name)s" - #~ msgid "move" -#~ msgstr "déplacer" - -#~ msgid "add child" -#~ msgstr "Ajouter descendant" - -#~ msgid "add sibling" -#~ msgstr "Ajouter \"soeur\"" - -#~ msgid "history" -#~ msgstr "historique" - -#~ msgid "Lock" -#~ msgstr "Vérrouiller" - -#~ msgid "Close" -#~ msgstr "Fermer" - -#~ msgid "Settings" -#~ msgstr "Paramètres" - -#~ msgid "Delete Plugin" -#~ msgstr "Supprimer le greffon" - -#~ msgid "English" -#~ msgstr "Anglais" - -#~ msgid "French" -#~ msgstr "Français" - -#~ msgid "German" -#~ msgstr "Allemand" - -#~ msgid "Brazil" -#~ msgstr "Brésil" - -#~ msgid "Dutch" -#~ msgstr "Néerlandais" - -#~ msgid "two columns" -#~ msgstr "deux colonnes" - -#~ msgid "three columns" -#~ msgstr "trois colonnes" - -#~ msgid "navigation examples" -#~ msgstr "Exemples de navigation" +#~ msgstr "move request" #~ msgid "sidebar column" -#~ msgstr "barre latérale" - -#~ msgid "left column" -#~ msgstr "colonne de gauche" - -#~ msgid "right column" -#~ msgstr "colonne de droite" - -#~ msgid "Articles" -#~ msgstr "Articles" - -#~ msgid "Sample App" -#~ msgstr "Application exemple" - -#~ msgid "sample root page" -#~ msgstr "page racine d'exemple" - -#~ msgid "sample settings page" -#~ msgstr "page de paramètres d'exemple" - -#~ msgid "sample account page" -#~ msgstr "page de compte d'exemple" - -#~ msgid "sample my profile page" -#~ msgstr "échantilloner de ma page de profil" - -#~ msgid "Static Menu" -#~ msgstr "Menu statique" - -#~ msgid "Static Menu2" -#~ msgstr "Menu statique 2" +#~ msgstr "background color" #~ msgid "fgcolor" -#~ msgstr "fgcolor" +#~ msgstr "foreground color" #~ msgid "Wanted language has not been translated yet." -#~ msgstr "La traduction pour la langue demandée n'est pas encore disponible." +#~ msgstr "Requested language has not been translated yet." diff --git a/cms/locale/hr/LC_MESSAGES/django.po b/cms/locale/hr/LC_MESSAGES/django.po new file mode 100644 index 00000000000..08ffc01723b --- /dev/null +++ b/cms/locale/hr/LC_MESSAGES/django.po @@ -0,0 +1,1836 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# , 2012. +msgid "" +msgstr "" +"Project-Id-Version: django-cms\n" +"Report-Msgid-Bugs-To: https://github.com/divio/django-cms/issues\n" +"POT-Creation-Date: 2011-08-14 09:47-0500\n" +"PO-Revision-Date: 2012-03-27 21:10+0000\n" +"Last-Translator: legendri \n" +"Language-Team: divio.ch \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hr\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n" +"X-Poedit-Country: SWITZERLAND\n" +"X-Poedit-Language: English\n" +"X-Poedit-SourceCharset: utf-8\n" + +#: cms_toolbar.py:68 +msgid "Edit mode" +msgstr "Uređivanje" + +#: cms_toolbar.py:77 +msgid "django CMS" +msgstr "django CMS" + +#: cms_toolbar.py:108 templates/admin/cms/page/menu_item.html:73 +msgid "Publish" +msgstr "Objavi" + +#: cms_toolbar.py:112 +msgid "Request Approval" +msgstr "Potrebno odobrenje" + +#: cms_toolbar.py:127 cms_toolbar.py:136 +msgid "Logout" +msgstr "Odjavi se" + +#: cms_toolbar.py:152 +msgid "Template" +msgstr "Predložak" + +#: cms_toolbar.py:160 +msgid "Move/add Pages" +msgstr "Premjesti/dodaj stranicu" + +#: cms_toolbar.py:165 +msgid "Add child page" +msgstr "Dodaj podređenu stranicu" + +#: cms_toolbar.py:171 +msgid "Add sibling page" +msgstr "Dodaj stranicu istog nivoa" + +#: cms_toolbar.py:177 +msgid "Delete Page" +msgstr "Izbriši stranicu" + +#: cms_toolbar.py:180 models/moderatormodels.py:45 +#: templates/admin/cms/page/permissions.html:5 +msgid "Page" +msgstr "stranica" + +#: cms_toolbar.py:189 +msgid "Site Administration" +msgstr "Upravljanje web stranicom" + +#: cms_toolbar.py:195 +msgid "Page Settings" +msgstr "Podešavanja stranice" + +#: cms_toolbar.py:201 +msgid "View History" +msgstr "Prikaži povijest" + +#: cms_toolbar.py:205 +msgid "Admin" +msgstr "Administrator" + +#: plugin_base.py:65 +msgid "Advanced options" +msgstr "Napredna svojstva" + +#: admin/forms.py:59 +msgid "Title" +msgstr "Naslov" + +#: admin/forms.py:60 +msgid "The default title" +msgstr "Uobičajeni naslov" + +#: admin/forms.py:61 +msgid "Slug" +msgstr "Slug" + +#: admin/forms.py:62 +msgid "The part of the title that is used in the URL" +msgstr "Dio naslova koji je korišten u URL-u" + +#: admin/forms.py:63 +msgid "Language" +msgstr "Jezik" + +#: admin/forms.py:64 +msgid "The current language of the content fields." +msgstr "Trenutni jezik polja sa sadržajem." + +#: admin/forms.py:117 +msgid "Another page with this slug already exists" +msgstr "Stranica sa tim slugom već postoji" + +#: admin/forms.py:135 +msgid "Menu Title" +msgstr "Naslov izbornika" + +#: admin/forms.py:136 +msgid "Overwrite what is displayed in the menu" +msgstr "Pregazi ono što je prikazano u meniju." + +#: admin/forms.py:137 +msgid "Page Title" +msgstr "Naslov stranice" + +#: admin/forms.py:138 +msgid "" +"Overwrites what is displayed at the top of your browser or in bookmarks" +msgstr "Pregazit će ono što je prikazano u vrhu preglednika i u oznakama." + +#: admin/forms.py:139 +msgid "Application" +msgstr "Aplkacija" + +#: admin/forms.py:141 +msgid "Hook application to this page." +msgstr "Zakači aplikaciju za ovu stranicu." + +#: admin/forms.py:142 +msgid "Overwrite URL" +msgstr "Pregazi URL" + +#: admin/forms.py:143 +msgid "Keep this field empty if standard path should be used." +msgstr "Ostavite ovo polje prazno ako treba koristiti standardnu putanju." + +#: admin/forms.py:149 +msgid "Redirect" +msgstr "Redirekcija" + +#: admin/forms.py:150 +msgid "Redirects to this URL." +msgstr "Izvedi redirekciju na ovaj URL." + +#: admin/forms.py:152 +msgid "A description of the page sometimes used by search engines." +msgstr "Opis stranice koji koriste neki pretraživači." + +#: admin/forms.py:154 +msgid "A list of comma seperated keywords sometimes used by search engines." +msgstr "Popis ključnih riječi, razadvojenih zarezima, koji koriste neki pretraživači." + +#: admin/forms.py:170 +msgid "A page with this reverse URL id exists already." +msgstr "Stranica sa zadatim inverznim URL-om već postoji." + +#: admin/forms.py:178 +msgid "Invalid URL, use /my/url format." +msgstr "Nepravilan URL, koristite format: /my/url." + +#: admin/forms.py:181 +#, python-format +msgid "Page with redirect url %r already exist" +msgstr "Stranica sa URL-om za redirekciju %r već postoji" + +#: admin/forms.py:191 admin/forms.py:192 migrations/0001_initial.py:41 +#: models/permissionmodels.py:16 +msgid "user" +msgstr "korisnik" + +#: admin/forms.py:216 +msgid "" +"Add page permission requires also access to children, or descendants, " +"otherwise added page can't be changed by its creator." +msgstr "Privilegije za dodavanje stranice također zahtjeva pravo pristupa djeci ili potomcima. U suprotnom, stranica se neće moći mijenjati od strane njenog tvorca." + +#: admin/forms.py:221 +msgid "Add page permission also requires edit page permission." +msgstr "Privilegije za dodavanje stranice zahtjevaju i privilegije za izmijenu stranice." + +#: admin/forms.py:248 +msgid "can_view" +msgstr "can_view" + +#: admin/forms.py:260 +msgid "Please select user or group first." +msgstr "Molimo prvo izaberite korisnika ili grupu." + +#: admin/forms.py:267 admin/forms.py:274 admin/forms.py:278 +#: templates/admin/cms/page/change_form.html:67 +#: templates/admin/cms/page/plugin_change_form.html:70 +#: templates/cms/toolbar/placeholder.html:25 +msgid "Add" +msgstr "Dodaj" + +#: admin/forms.py:268 admin/forms.py:275 admin/forms.py:279 +msgid "Change" +msgstr "Izmijeni" + +#: admin/forms.py:269 admin/forms.py:276 admin/forms.py:280 +#: templates/admin/page_submit_line.html:5 +#: templates/admin/cms/page/menu_item.html:44 +msgid "Delete" +msgstr "Izbriši" + +#: admin/forms.py:270 +msgid "Recover (any) pages" +msgstr "Povrati (bilo koju) stranicu" + +#: admin/forms.py:297 +msgid "Notify user" +msgstr "Obavjesti korisnika" + +#: admin/forms.py:298 +msgid "" +"Send email notification to user about username or password change. Requires " +"user email." +msgstr "Šalji e-mail obavijesti korisnicima pri promijeni korisničkog imena ili lozinke. Zahtjeva e-mail adresu korisnika." + +#: admin/forms.py:318 +msgid "New password" +msgstr "Nova lozinka" + +#: admin/forms.py:320 +msgid "New password confirmation" +msgstr "Potvrda nove lozinke" + +#: admin/forms.py:339 +msgid "Email notification requires valid email address." +msgstr "Obavijesti putem e-maila zahtjevaju važeću e-mail adresu." + +#: admin/forms.py:341 +msgid "" +"The permission to add new pages requires the permission to change pages!" +msgstr "Pravo na kreiranje nove stranice zahtjeva pravo za izmjenu stranice!" + +#: admin/forms.py:343 +msgid "" +"The permission to add new users requires the permission to change users!" +msgstr "Pravo na dodavanje novog korisnika zahtjeva pravo za izmjenu kornisika!" + +#: admin/forms.py:345 +msgid "To add permissions you also need to edit them!" +msgstr "Za dodavanje dozvole morate je i izmjeniti!" + +#: admin/pageadmin.py:97 +msgid "Basic Settings" +msgstr "Osnovna podešavanja" + +#: admin/pageadmin.py:100 +msgid "Note: This page reloads if you change the selection. Save it first." +msgstr "Napomena: Ova stranica će se ponovo učitati ako izmjenite odabir. Prvo spremite stranicu." + +#: admin/pageadmin.py:102 admin/pageadmin.py:154 +msgid "Hidden" +msgstr "Skriveno" + +#: admin/pageadmin.py:106 +msgid "Advanced Settings" +msgstr "Napredna podešavanja" + +#: admin/pageadmin.py:113 +msgid "SEO Settings" +msgstr "SEO podešavanja" + +#: admin/pageadmin.py:299 +msgid "You have no permission to change the template" +msgstr "Nemate ovlasti da mjenjate predložak" + +#: admin/pageadmin.py:485 +msgid "higher" +msgstr "više" + +#: admin/pageadmin.py:655 +msgid "Database error" +msgstr "Greška baze podataka" + +#: admin/pageadmin.py:855 +msgid "Page was successfully approved." +msgstr "Stranica je uspješno odobrena." + +#: admin/pageadmin.py:927 +#, python-format +msgid "%(name)s object with primary key %(key)r does not exist." +msgstr "objekt %(name)s sa primarnim ključem %(key)r ne postoji." + +#: admin/pageadmin.py:933 +msgid "There only exists one translation for this page" +msgstr "Postoji samo jedan prijevod ove stranice" + +#: admin/pageadmin.py:969 +#, python-format +msgid "Title and plugins with language %(language)s was deleted" +msgstr "Naslov i plagin na jeziku %(language)s je obrisan" + +#: admin/pageadmin.py:991 +msgid "Are you sure?" +msgstr "Da li ste sigurni?" + +#: admin/pageadmin.py:1052 +msgid "You do not have permission to publish this page" +msgstr "Nemate ovlasti da izbrišete ovu stranicu" + +#: admin/pageadmin.py:1066 +msgid "You do not have permission to change this page's in_navigation status" +msgstr "Nemate ovlasti da izmjenite status ove stranice \"u navigaciji\"" + +#: admin/pageadmin.py:1079 +msgid "You have no permission to add a plugin" +msgstr "Nemate ovlasti da dodate plugin" + +#: admin/pageadmin.py:1126 admin/pageadmin.py:1158 +msgid "Language must be set to a supported language!" +msgstr "Jezik mora biti postavljen na jedan od podržanih!" + +#: admin/pageadmin.py:1138 +#, python-format +msgid "%(plugin_name)s plugin added to %(placeholder)s" +msgstr "%(plugin_name)s plugin dodan u %(placeholder)s" + +#: admin/pageadmin.py:1156 +msgid "You do not have permission to change this page" +msgstr "Nemate ovlasti da izmjenite ovu stranicu" + +#: admin/pageadmin.py:1160 +msgid "Language must be different than the copied language!" +msgstr "Jezik mora biti različit od kopiranog jezika!" + +#: admin/pageadmin.py:1166 +msgid "You do not have permission to add plugins" +msgstr "Nemate ovlasti da dodajete pluginove" + +#: admin/pageadmin.py:1173 +#, python-format +msgid "Copied %(language)s plugins to %(placeholder)s" +msgstr "Kopirano %(language)s plugina u %(placeholder)s" + +#: admin/pageadmin.py:1186 admin/pageadmin.py:1294 admin/pageadmin.py:1316 +msgid "You have no permission to change this page" +msgstr "Nemate ovlasti da mjenjate ovu stranicu" + +#: admin/pageadmin.py:1221 +msgid "You have no permission to edit a plugin" +msgstr "Nemate ovlasti da mjenjate plugin" + +#: admin/pageadmin.py:1256 +#, python-format +msgid "" +"%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" +msgstr "%(plugin_name)s plugin, izmjenjen na poziciji %(position)s u %(placeholder)s" + +#: admin/pageadmin.py:1311 +msgid "You have no permission to move a plugin" +msgstr "Nemate ovlasti da premještate plugin" + +#: admin/pageadmin.py:1329 +msgid "Plugins where moved" +msgstr "Plugin je premješten" + +#: admin/pageadmin.py:1343 +msgid "You have no permission to remove a plugin" +msgstr "Nemate ovlasti da uklonite plugin" + +#: admin/pageadmin.py:1361 admin/placeholderadmin.py:292 +#, python-format +msgid "" +"%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " +"deleted." +msgstr "%(plugin_name)s plugin na poziciji %(position)s u %(placeholder)s je uklonjen." + +#: admin/permissionadmin.py:72 +msgid "View restriction" +msgstr "Prikaži ograničenja" + +#: admin/permissionadmin.py:73 +msgid "View restrictions" +msgstr "Prikaži ograničenja" + +#: admin/permissionadmin.py:133 models/permissionmodels.py:75 +msgid "Page permissions" +msgstr "Ovlasti stranice" + +#: admin/permissionadmin.py:134 +msgid "User & Group permissions" +msgstr "Ovlasti korisnika i grupe" + +#: admin/permissionadmin.py:135 +msgid "Page permissions management" +msgstr "Upravljanje ovlastima stranice" + +#: admin/placeholderadmin.py:150 admin/placeholderadmin.py:191 +msgid "You don't have permission to add content here." +msgstr "Nemate ovlasti da ovdje dodajete sadržaj." + +#: admin/placeholderadmin.py:187 +msgid "You don't have permission to add plugins" +msgstr "Nemate ovlasti da dodajete pluginove" + +#: admin/placeholderadmin.py:288 +msgid "You don't have permission to delete a plugin" +msgstr "Nemate ovlasti da izbrišete plugin" + +#: admin/useradmin.py:25 +msgid "User details" +msgstr "Detalji korisnika" + +#: admin/useradmin.py:26 +msgid "Groups" +msgstr "Grupe" + +#: admin/useradmin.py:36 templates/cms/toolbar/items/login.html:7 +msgid "Password" +msgstr "Lozinka" + +#: admin/dialog/forms.py:9 +msgid "Copy permissions" +msgstr "Iskopiraj ovlasti" + +#: admin/dialog/forms.py:16 +msgid "Copy moderation" +msgstr "Dosljednost kopiranja" + +#: conf/patch.py:28 +msgid "Inherit the template of the nearest ancestor" +msgstr "Nasljedi predložak najbližeg pretka" + +#: forms/fields.py:19 +msgid "Select a valid site" +msgstr "Izaberite ispravnu web stranicu" + +#: forms/fields.py:20 +msgid "Select a valid page" +msgstr "Izaberite ispravnu stranicu" + +#: forms/widgets.py:173 +msgid "Add Another" +msgstr "Dodaj još" + +#: migrations/0001_initial.py:12 migrations/0001_initial.py:24 +#: migrations/0001_initial.py:75 migrations/0003_remove_placeholder.py:18 +#: migrations/0010_5char_language.py:12 migrations/0010_5char_language.py:15 +#: migrations/0010_5char_language.py:22 migrations/0010_5char_language.py:25 +#: models/pluginmodel.py:79 models/titlemodels.py:10 +#: plugins/inherit/models.py:11 +msgid "language" +msgstr "jezik" + +#: migrations/0001_initial.py:13 migrations/0001_initial.py:26 +#: migrations/0001_initial.py:40 migrations/0001_initial.py:78 +#: migrations/0003_remove_placeholder.py:21 models/pagemodel.py:104 +#: models/permissionmodels.py:69 models/titlemodels.py:21 +#: plugins/inherit/forms.py:9 plugins/link/forms.py:9 +#: plugins/link/models.py:12 plugins/link/migrations/0001_initial.py:19 +#: plugins/picture/models.py:22 plugins/teaser/models.py:13 +msgid "page" +msgstr "stranica" + +#: migrations/0001_initial.py:14 migrations/0004_textobjects.py:12 +#: migrations/0004_textobjects.py:22 models/pluginmodel.py:78 +msgid "position" +msgstr "pozicija" + +#: migrations/0001_initial.py:15 migrations/0001_initial.py:29 +#: models/pluginmodel.py:81 models/titlemodels.py:22 +msgid "creation date" +msgstr "datum kreiranja" + +#: migrations/0001_initial.py:16 migrations/0001_initial.py:77 +#: migrations/0003_remove_placeholder.py:20 models/placeholdermodel.py:13 +msgid "slot" +msgstr "prorez" + +#: migrations/0001_initial.py:18 models/pluginmodel.py:80 +msgid "plugin_name" +msgstr "naziv plugina" + +#: migrations/0001_initial.py:25 migrations/0011_title_overwrites.py:12 +#: migrations/0011_title_overwrites.py:15 models/titlemodels.py:11 +#: models/titlemodels.py:12 models/titlemodels.py:20 plugins/file/models.py:25 +#: plugins/file/migrations/0001_initial.py:18 plugins/teaser/models.py:9 +#: plugins/twitter/models.py:6 plugins/twitter/models.py:15 +#: templates/admin/cms/page/change_list_tree.html:6 +msgid "title" +msgstr "Naslov" + +#: migrations/0001_initial.py:28 +msgid "path" +msgstr "putanja" + +#: migrations/0001_initial.py:30 models/titlemodels.py:13 +msgid "slug" +msgstr "slug" + +#: migrations/0001_initial.py:36 +msgid "everybody" +msgstr "svi" + +#: migrations/0001_initial.py:37 models/permissionmodels.py:20 +msgid "can edit" +msgstr "može mijenjati" + +#: migrations/0001_initial.py:38 models/permissionmodels.py:17 +msgid "group" +msgstr "grupa" + +#: migrations/0001_initial.py:39 models/permissionmodels.py:24 +msgid "can publish" +msgstr "može objavljivati" + +#: migrations/0001_initial.py:42 +msgid "type" +msgstr "tip" + +#: migrations/0001_initial.py:44 +msgid "can change soft-root" +msgstr "može mijenjati soft-root" + +#: migrations/0001_initial.py:50 migrations/0006_apphook.py:34 +#: migrations/0006_apphook.py:62 +msgid "status" +msgstr "status" + +#: migrations/0001_initial.py:53 +msgid "navigation extenders" +msgstr "proširenja navigacije" + +#: migrations/0001_initial.py:54 migrations/0006_apphook.py:12 +#: migrations/0006_apphook.py:46 models/titlemodels.py:15 +msgid "has url overwrite" +msgstr "izabrano prepisivanje url-a" + +#: migrations/0001_initial.py:55 migrations/0006_apphook.py:49 +msgid "url overwrite" +msgstr "prepisivanje url-a" + +#: migrations/0001_initial.py:57 +msgid "author" +msgstr "autor" + +#: migrations/0001_initial.py:58 migrations/0006_apphook.py:37 +msgid "reverse url id" +msgstr "id inverznog url-a" + +#: migrations/0001_initial.py:59 models/pagemodel.py:84 +msgid "login required" +msgstr "potrebno prijavljivanje" + +#: migrations/0001_initial.py:60 models/pagemodel.py:69 +msgid "soft root" +msgstr "soft root" + +#: migrations/0001_initial.py:63 models/pagemodel.py:67 +msgid "publication end date" +msgstr "datum okončanja objave" + +#: migrations/0001_initial.py:64 models/pagemodel.py:74 +#: plugins/snippet/models.py:14 +msgid "template" +msgstr "predložak" + +#: migrations/0001_initial.py:66 models/pagemodel.py:66 +msgid "publication date" +msgstr "datum objavljivanja" + +#: migrations/0001_initial.py:67 models/pagemodel.py:68 +#: templates/admin/cms/page/change_list_tree.html:9 +msgid "in navigation" +msgstr "u navigaciji" + +#: migrations/0006_apphook.py:15 migrations/0007_apphook_longer.py:11 +#: migrations/0007_apphook_longer.py:17 models/titlemodels.py:16 +msgid "application" +msgstr "aplikacija" + +#: migrations/0006_apphook.py:65 models/pagemodel.py:70 +msgid "id" +msgstr "id" + +#: migrations/0008_redirects.py:11 models/titlemodels.py:17 +msgid "redirect" +msgstr "preusmjeravanje" + +#: migrations/0009_added_meta_fields.py:12 models/titlemodels.py:19 +msgid "keywords" +msgstr "ključne riječi" + +#: migrations/0009_added_meta_fields.py:15 models/titlemodels.py:18 +#: plugins/teaser/models.py:20 +msgid "description" +msgstr "opis" + +#: models/moderatormodels.py:25 +msgid "Current page" +msgstr "trenutna stranica" + +#: models/moderatormodels.py:26 +msgid "Page children (immediate)" +msgstr "potomci stranice (neposredni)" + +#: models/moderatormodels.py:27 +msgid "Page and children (immediate)" +msgstr "stranica i potomci (neposredni)" + +#: models/moderatormodels.py:28 +msgid "Page descendants" +msgstr "potomci stranice" + +#: models/moderatormodels.py:29 +msgid "Page and descendants" +msgstr "stranica i potomci" + +#: models/moderatormodels.py:46 +#: templates/admin/cms/page/moderation_messages.html:6 +#: templates/admin/cms/page/permissions.html:6 +msgid "User" +msgstr "korisnik" + +#: models/moderatormodels.py:50 templatetags/cms_admin.py:99 +msgid "Moderate page" +msgstr "uredi stranicu" + +#: models/moderatormodels.py:51 templatetags/cms_admin.py:100 +msgid "Moderate children" +msgstr "Uredi neposredne potomke stranice" + +#: models/moderatormodels.py:52 templatetags/cms_admin.py:101 +msgid "Moderate descendants" +msgstr "uredi potomke" + +#: models/moderatormodels.py:55 models/moderatormodels.py:56 +msgid "PageModerator" +msgstr "PageModerator" + +#: models/moderatormodels.py:99 +msgid "created" +msgstr "stvoreno" + +#: models/moderatormodels.py:100 models/pagemodel.py:44 +msgid "changed" +msgstr "promijenjen" + +#: models/moderatormodels.py:101 +msgid "delete req." +msgstr " zahtjev za brisanje" + +#: models/moderatormodels.py:102 +msgid "move req." +msgstr " zahtjev za premještanje" + +#: models/moderatormodels.py:103 +msgid "publish req." +msgstr "zahtjev za objavljivanje " + +#: models/moderatormodels.py:104 +msgid "unpublish req." +msgstr "zahtjev za obustavljanje objave" + +#: models/moderatormodels.py:105 models/pagemodel.py:47 +msgid "approved" +msgstr "odobreno" + +#: models/moderatormodels.py:117 +msgid "Page moderator state" +msgstr "Status moderatora stranice" + +#: models/moderatormodels.py:118 +msgid "Page moderator states" +msgstr "Statusi moderatora stranice" + +#: models/pagemodel.py:45 +msgid "req. app." +msgstr "potrebna dozvola" + +#: models/pagemodel.py:46 templates/admin/cms/page/menu_item.html:44 +#: templates/cms/toolbar/toolbar.html:57 utils/moderator.py:90 +msgid "delete" +msgstr "izbriši" + +#: models/pagemodel.py:48 +msgid "app. par." +msgstr "app. par." + +#: models/pagemodel.py:52 +msgid "for logged in users only" +msgstr "samo za prijavljene korisnike" + +#: models/pagemodel.py:53 +msgid "for anonymous users only" +msgstr "samo za anonimne korisnike" + +#: models/pagemodel.py:61 +msgid "created by" +msgstr "stvorio" + +#: models/pagemodel.py:62 templates/admin/cms/page/change_list_tree.html:20 +msgid "changed by" +msgstr "promijenio" + +#: models/pagemodel.py:66 +msgid "" +"When the page should go live. Status must be \"Published\" for page to go " +"live." +msgstr "Kako bi se stranica objavila, status joj mora biti \"Objavljeno\"" + +#: models/pagemodel.py:67 +msgid "When to expire the page. Leave empty to never expire." +msgstr "Kada ističe objava stranice. Ostavite prazno ako nikad ne ističe." + +#: models/pagemodel.py:69 +msgid "All ancestors will not be displayed in the navigation" +msgstr "svi preci neće biti prikazani u navigaciji" + +#: models/pagemodel.py:70 +msgid "" +"An unique identifier that is used with the page_url templatetag for linking " +"to this page" +msgstr "Jedinstveni identifikator koji se koristi sa page_url oznakom za povezivanje sa ovom stranicom" + +#: models/pagemodel.py:71 +msgid "attached menu" +msgstr "povezan izbornik" + +#: models/pagemodel.py:72 +msgid "is published" +msgstr "objavljen je" + +#: models/pagemodel.py:74 +msgid "The template used to render the content." +msgstr " predložak korišten za prikaz sadržaja" + +#: models/pagemodel.py:75 +msgid "The site the page is accessible at." +msgstr "The site the page is accessible at." + +#: models/pagemodel.py:75 +msgid "site" +msgstr "stranica" + +#: models/pagemodel.py:77 +msgid "moderator state" +msgstr "stanje uređivanja" + +#: models/pagemodel.py:85 +msgid "menu visibility" +msgstr "vidljivost izbornika" + +#: models/pagemodel.py:85 +msgid "limit when this page is visible in the menu" +msgstr "ograniči kada je ova stranica vidljiva u izborniku" + +#: models/pagemodel.py:105 +msgid "pages" +msgstr "stranice" + +#: models/pagemodel.py:267 +msgid "Page was copied." +msgstr "stranica je kopirana" + +#: models/pagemodel.py:698 +msgid "default" +msgstr "uobičajenoa" + +#: models/permissionmodels.py:21 +msgid "can add" +msgstr "može dodati" + +#: models/permissionmodels.py:22 +msgid "can delete" +msgstr "može brisati" + +#: models/permissionmodels.py:23 +msgid "can change advanced settings" +msgstr "može mijenjati napredna podešavanja" + +#: models/permissionmodels.py:25 +msgid "can change permissions" +msgstr "može mijenjati ovlasti" + +#: models/permissionmodels.py:25 +msgid "on page level" +msgstr "na nivou stranice" + +#: models/permissionmodels.py:26 +msgid "can move" +msgstr "može premještati" + +#: models/permissionmodels.py:27 +msgid "can moderate" +msgstr "može uređivati" + +#: models/permissionmodels.py:28 +msgid "view restricted" +msgstr "pregled nije dozvoljen" + +#: models/permissionmodels.py:28 +msgid "frontend view restriction" +msgstr "zabrana prikaza na frontendu" + +#: models/permissionmodels.py:51 +msgid "can recover pages" +msgstr "može povratiti stranicu" + +#: models/permissionmodels.py:51 +msgid "can recover any deleted page" +msgstr "može povratiti bilo koju obrisanu stranicu" + +#: models/permissionmodels.py:52 +msgid "If none selected, user haves granted permissions to all sites." +msgstr "Ako ništa nije selektirano, korisnik je ima ovlasti za sve stranice." + +#: models/permissionmodels.py:52 +msgid "sites" +msgstr "stranice" + +#: models/permissionmodels.py:57 +msgid "Page global permission" +msgstr "Globalne ovlasti za stranicu" + +#: models/permissionmodels.py:58 +msgid "Pages global permissions" +msgstr "Globalne ovlasti za stranice" + +#: models/permissionmodels.py:68 templates/admin/cms/page/permissions.html:15 +msgid "Grant on" +msgstr "Postavi ovlasti za" + +#: models/permissionmodels.py:74 +msgid "Page permission" +msgstr "Ovlasti stranice" + +#: models/permissionmodels.py:89 +msgid "User (page)" +msgstr "Korisnik (stranica)" + +#: models/permissionmodels.py:90 +msgid "Users (page)" +msgstr "Korisnici (stranica)" + +#: models/permissionmodels.py:100 +msgid "User group (page)" +msgstr "Grupa korisnika (stranica)" + +#: models/permissionmodels.py:101 +msgid "User groups (page)" +msgstr "Grupe korisnika (stranica)" + +#: models/placeholdermodel.py:14 plugins/flash/models.py:9 +#: plugins/flash/migrations/0001_initial.py:16 plugins/video/models.py:13 +msgid "width" +msgstr "širina" + +#: models/pluginmodel.py:140 +msgid "" +msgstr "" + +#: models/titlemodels.py:12 +msgid "overwrite the title in the menu" +msgstr "pregazi naslov u meniju" + +#: models/titlemodels.py:14 +msgid "Path" +msgstr "Putanja" + +#: models/titlemodels.py:20 +msgid "overwrite the title (html title tag)" +msgstr "pregazi naslov (html tag title)" + +#: plugins/file/cms_plugins.py:9 +msgid "File" +msgstr "Datoteka" + +#: plugins/file/models.py:24 plugins/file/migrations/0001_initial.py:17 +#: plugins/flash/models.py:8 plugins/flash/migrations/0001_initial.py:18 +msgid "file" +msgstr "datoteka" + +#: plugins/file/templates/cms/plugins/file.html:6 +msgid "file missing!" +msgstr "datoteka ne postoji" + +#: plugins/flash/cms_plugins.py:9 +msgid "Flash" +msgstr "Flash" + +#: plugins/flash/models.py:8 +msgid "use swf file" +msgstr "koristite swf datoteku" + +#: plugins/flash/models.py:10 plugins/flash/migrations/0001_initial.py:19 +#: plugins/video/models.py:14 +msgid "height" +msgstr "visina" + +#: plugins/flash/templates/cms/plugins/flash.html:40 +#: plugins/video/templates/cms/plugins/video.html:60 +msgid "Missing flash plugin. Please download the latest Adobe Flash Player: " +msgstr "Nemate instaliran flash plugin. Molimo prezumite najnoviji Adobe Flash Player." + +#: plugins/flash/templates/cms/plugins/flash.html:42 +#: plugins/video/templates/cms/plugins/video.html:62 +msgid "Get Adobe Flash Player" +msgstr "Preuzmi Adobe Flash Player" + +#: plugins/googlemap/cms_plugins.py:10 +msgid "Google Map" +msgstr "Google karta" + +#: plugins/googlemap/models.py:9 +msgid "map title" +msgstr "naziv karte" + +#: plugins/googlemap/models.py:11 +msgid "address" +msgstr "adresa" + +#: plugins/googlemap/models.py:12 +msgid "zip code" +msgstr "poštanski broj" + +#: plugins/googlemap/models.py:13 +msgid "city" +msgstr "grad" + +#: plugins/googlemap/models.py:15 +msgid "additional content" +msgstr "dodatni sadržaj" + +#: plugins/googlemap/models.py:16 +msgid "zoom level" +msgstr "stupanj uvećanja" + +#: plugins/googlemap/models.py:18 +msgid "latitude" +msgstr "širina" + +#: plugins/googlemap/models.py:19 +msgid "Use latitude & longitude to fine tune the map possiton." +msgstr "Koristi širinu i dužinu za fino podešavanje položaja na karti" + +#: plugins/googlemap/models.py:20 +msgid "longitude" +msgstr "dužina" + +#: plugins/googlemap/models.py:22 +msgid "route planer title" +msgstr "naslov planera rute" + +#: plugins/googlemap/models.py:22 +msgid "Calculate your fastest way to here" +msgstr "Izračunaj najbrži pot do ovdje" + +#: plugins/googlemap/models.py:23 +msgid "route planer" +msgstr "planer rute" + +#: plugins/googlemap/models.py:30 +msgid "Map" +msgstr "Karta" + +#: plugins/googlemap/templates/cms/plugins/googlemap.html:76 +msgid "Your address: " +msgstr "Vaša adresa:" + +#: plugins/googlemap/templates/cms/plugins/googlemap.html:78 +msgid "Calculate route" +msgstr "Izračunaj rutu" + +#: plugins/inherit/cms_plugins.py:17 +msgid "Inherit Plugins from Page" +msgstr "Preuzmi pluginove od stranice" + +#: plugins/inherit/forms.py:23 +msgid "Language or Page must be filled out" +msgstr "Jezik ili stranica se moraju popuniti" + +#: plugins/inherit/models.py:10 +msgid "" +"Choose a page to include its plugins into this placeholder, empty will " +"choose current page" +msgstr "Izaberite stranicu čije pluginove treba uključiti u placeholder, ako je prazno, biti će izabrana trenutna stranica" + +#: plugins/inherit/models.py:11 +msgid "Optional: the language of the plugins you want" +msgstr "Opcionalno: jezik plugina koji želite" + +#: plugins/link/cms_plugins.py:12 +msgid "Link" +msgstr "Link" + +#: plugins/link/models.py:10 plugins/link/migrations/0001_initial.py:18 +#: plugins/link/migrations/0004_larger_link_names.py:11 +#: plugins/link/migrations/0004_larger_link_names.py:17 +#: plugins/snippet/models.py:12 plugins/snippet/migrations/0001_initial.py:17 +msgid "name" +msgstr "ime" + +#: plugins/link/models.py:11 plugins/link/migrations/0001_initial.py:16 +#: plugins/picture/models.py:21 plugins/picture/migrations/0001_initial.py:16 +#: plugins/teaser/models.py:19 +msgid "link" +msgstr "link" + +#: plugins/link/models.py:12 +msgid "A link to a page has priority over a text link." +msgstr "Link na stranicu ima prioritet u odnosu na tekstualni link." + +#: plugins/link/models.py:13 +msgid "mailto" +msgstr "email adresa" + +#: plugins/link/models.py:13 +msgid "An email adress has priority over a text link." +msgstr "Email adresa ima prioritet u odnosu na tekstualni link." + +#: plugins/picture/cms_plugins.py:9 +msgid "Picture" +msgstr "Slika" + +#: plugins/picture/models.py:14 +msgid "center" +msgstr "centar" + +#: plugins/picture/models.py:15 +msgid "left" +msgstr "lijevo" + +#: plugins/picture/models.py:16 +msgid "right" +msgstr "desno" + +#: plugins/picture/models.py:20 plugins/picture/migrations/0001_initial.py:17 +#: plugins/teaser/models.py:10 plugins/video/models.py:11 +msgid "image" +msgstr "slika" + +#: plugins/picture/models.py:21 plugins/picture/models.py:22 +msgid "if present image will be clickable" +msgstr "ako je izabrano, na sliku će se moći kliknuti" + +#: plugins/picture/models.py:23 plugins/picture/migrations/0001_initial.py:19 +msgid "alternate text" +msgstr "alternativni tekst" + +#: plugins/picture/models.py:23 +msgid "textual description of the image" +msgstr "tekstualni opis slike" + +#: plugins/picture/models.py:24 +msgid "long description" +msgstr "dugačak opis" + +#: plugins/picture/models.py:24 +msgid "additional description of the image" +msgstr "dodatni opis slike" + +#: plugins/picture/models.py:25 +msgid "side" +msgstr "strana" + +#: plugins/snippet/cms_plugins.py:12 plugins/snippet/models.py:24 +#: plugins/snippet/models.py:32 +msgid "Snippet" +msgstr "Isječak" + +#: plugins/snippet/cms_plugins.py:30 +#, python-format +msgid "Template %(template)s does not exist." +msgstr "Predložak %(template)s ne postoji." + +#: plugins/snippet/models.py:13 plugins/snippet/migrations/0001_initial.py:18 +msgid "HTML" +msgstr "HTML" + +#: plugins/snippet/models.py:15 +msgid "" +"Enter a template (i.e. \"snippets/plugin_xy.html\") which will be rendered. " +msgstr "Unesite ime predloška (na primjer \"snippets/plugin_xy.html\") koji se treba prikazivati." + +#: plugins/snippet/models.py:25 +msgid "Snippets" +msgstr "Isječci" + +#: plugins/teaser/cms_plugins.py:8 +msgid "Teaser" +msgstr "Teaser" + +#: plugins/teaser/models.py:14 +msgid "If present image will be clickable" +msgstr "Ako je izabrano, na sliku će se moći kliknuti" + +#: plugins/teaser/models.py:19 +msgid "If present image will be clickable." +msgstr "Ako je izabrano, na sliku će se moći kliknuti." + +#: plugins/teaser/templates/cms/plugins/teaser.html:11 +#: templates/cms/toolbar/toolbar.html:59 +msgid "more" +msgstr "više" + +#: plugins/text/cms_plugins.py:15 +msgid "Text" +msgstr "tekst" + +#: plugins/text/models.py:14 plugins/text/migrations/0001_initial.py:16 +msgid "body" +msgstr "tijelo" + +#: plugins/text/templates/cms/plugins/widgets/tinymce.html:30 +msgid "Plugins" +msgstr "Plugini" + +#: plugins/text/templates/cms/plugins/widgets/tinymce.html:38 +#: plugins/text/templates/cms/plugins/widgets/tinymce.html:106 +#: plugins/text/templates/cms/plugins/widgets/wymeditor.html:67 +msgid "Please select a plugin type." +msgstr "Molimo izaberite tip plugina." + +#: plugins/text/templates/cms/plugins/widgets/tinymce.html:54 +#: plugins/text/templates/cms/plugins/widgets/wymeditor.html:110 +msgid "Edit selected plugin" +msgstr "Uredi odabrani plugin." + +#: plugins/text/templates/cms/plugins/widgets/tinymce.html:58 +#: plugins/text/templates/cms/plugins/widgets/tinymce.html:124 +#: plugins/text/templates/cms/plugins/widgets/wymeditor.html:85 +msgid "Text editor does not support editing objects." +msgstr "Urednik teksta ne podržava uređivanje objekata." + +#: plugins/text/templates/cms/plugins/widgets/tinymce.html:63 +#: plugins/text/templates/cms/plugins/widgets/tinymce.html:129 +#: plugins/text/templates/cms/plugins/widgets/wymeditor.html:90 +msgid "No object selected." +msgstr "Objekt nije izabran." + +#: plugins/text/templates/cms/plugins/widgets/tinymce.html:112 +#: plugins/text/templates/cms/plugins/widgets/wymeditor.html:73 +msgid "Text editor does not support inserting objects." +msgstr "Urednik teksta ne podržava umetanje objekata." + +#: plugins/text/templates/cms/plugins/widgets/tinymce.html:133 +#: plugins/text/templates/cms/plugins/widgets/wymeditor.html:94 +msgid "Not a plugin object" +msgstr "Objekt nije plugin." + +#: plugins/text/templates/cms/plugins/widgets/wymeditor.html:106 +#: templates/admin/cms/page/widgets/installed_plugins_inc.html:4 +msgid "Available Plugins" +msgstr "Dostupni plugini." + +#: plugins/text/templates/cms/plugins/widgets/wymeditor.html:109 +msgid "Insert plugin" +msgstr "Umetni plugin." + +#: plugins/twitter/cms_plugins.py:10 +#: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:27 +msgid "Twitter" +msgstr "Twitter" + +#: plugins/twitter/cms_plugins.py:23 +msgid "Twitter Search" +msgstr "Pretraga Twitter-a" + +#: plugins/twitter/models.py:7 +msgid "twitter user" +msgstr "Kosrisnik Twittera" + +#: plugins/twitter/models.py:8 plugins/twitter/models.py:17 +msgid "count" +msgstr "račun" + +#: plugins/twitter/models.py:8 plugins/twitter/models.py:17 +msgid "Number of entries to display" +msgstr "Broj unosa koji se prikazuju." + +#: plugins/twitter/models.py:9 +msgid "link hint" +msgstr "link hint" + +#: plugins/twitter/models.py:9 +msgid "If given, the hint is displayed as link to your Twitter profile." +msgstr "Ako je upisano, nagovještaj se prikazuje kao link na Vaš Twitter profil." + +#: plugins/twitter/models.py:16 +msgid "query" +msgstr "upit" + +#: plugins/twitter/models.py:16 +msgid "" +"Example: \"brains AND zombies AND from:umbrella AND to:nemesis\": tweets " +"from the user \"umbrella\" to the user \"nemesis\" that contain the words " +"\"brains\" and \"zombies\"" +msgstr "Primjer: \"mozgovi AND zombiji AND from:kišobran AND to:nemesis\": tweetovi od korisnika \"kišobran\" do korisnika \"nemesis\" koji sadrže riječi \"mozgovi\" i \"zombiji\"" + +#: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:12 +msgid "we said," +msgstr "rekli smo," + +#: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:13 +msgid "we" +msgstr "mi" + +#: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:14 +msgid "we were" +msgstr "mi smo bili" + +#: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:15 +msgid "we replied to" +msgstr "odgovorili smo" + +#: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:16 +msgid "we were checking out" +msgstr "gledali smo" + +#: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:17 +msgid "loading tweets..." +msgstr "učitavanje tweetova..." + +#: plugins/video/cms_plugins.py:10 +msgid "Video" +msgstr "Video" + +#: plugins/video/cms_plugins.py:42 +msgid "Color Settings" +msgstr "Postavke boja" + +#: plugins/video/models.py:9 +msgid "movie file" +msgstr "video datoteka" + +#: plugins/video/models.py:9 +msgid "use .flv file or h264 encoded video file" +msgstr "koristi .flv ili h264 kodirane video datoteke" + +#: plugins/video/models.py:10 +msgid "movie url" +msgstr "URL do videa" + +#: plugins/video/models.py:10 +msgid "" +"vimeo or youtube video url. Example: " +"http://www.youtube.com/watch?v=-iJ7bs4mTUY" +msgstr "vimeo ili youtube URL. Na primer: http://www.youtube.com/watch?v=-iJ7bs4mTUY" + +#: plugins/video/models.py:11 +msgid "preview image file" +msgstr "brzi prikaz slike" + +#: plugins/video/models.py:16 +msgid "auto play" +msgstr "automatsko pokretanje" + +#: plugins/video/models.py:17 +msgid "auto hide" +msgstr "automatsko skrivanje" + +#: plugins/video/models.py:18 +msgid "fullscreen" +msgstr "preko cijelog zaslona" + +#: plugins/video/models.py:19 +msgid "loop" +msgstr "ciklus" + +#: plugins/video/models.py:22 +msgid "background color" +msgstr "pozadinska boja" + +#: plugins/video/models.py:22 plugins/video/models.py:23 +#: plugins/video/models.py:24 plugins/video/models.py:25 +#: plugins/video/models.py:26 plugins/video/models.py:27 +#: plugins/video/models.py:28 plugins/video/models.py:29 +msgid "Hexadecimal, eg ff00cc" +msgstr "Heksadecimalno, na primjer ff00cc" + +#: plugins/video/models.py:23 +msgid "text color" +msgstr "boja teksta" + +#: plugins/video/models.py:24 +msgid "seekbar color" +msgstr "pozadinska boja" + +#: plugins/video/models.py:25 +msgid "seekbar bg color" +msgstr "pozadinska boja" + +#: plugins/video/models.py:26 +msgid "loadingbar color" +msgstr "boja indikatora učitavanja" + +#: plugins/video/models.py:27 +msgid "button out color" +msgstr "boja gumba kad su isključeni" + +#: plugins/video/models.py:28 +msgid "button over color" +msgstr "boja gumba kada se pređe pokazivačem preko" + +#: plugins/video/models.py:29 +msgid "button highlight color" +msgstr "boja istaknutog gumba" + +#: templates/admin/page_submit_line.html:3 +#: templates/admin/cms/page/change_form.html:274 +#: templates/admin/cms/page/plugin_change_form.html:113 +msgid "Save" +msgstr "Spremi" + +#: templates/admin/page_submit_line.html:7 +#, python-format +msgid "Delete %(language)s translation" +msgstr "Izbriši prijevod na %(language)s" + +#: templates/admin/page_submit_line.html:11 +msgid "Save as new" +msgstr "Spremi kao novi" + +#: templates/admin/page_submit_line.html:12 +msgid "Save and add another" +msgstr "Spremi i dodaj još" + +#: templates/admin/page_submit_line.html:13 +#: templates/admin/cms/page/change_form.html:275 +msgid "Save and continue editing" +msgstr "Spremi i nastavi uređivanje" + +#: templates/admin/cms/mail/approvement_required.html:5 +#, python-format +msgid "" +"Page %(page)s may require approvement by you." +msgstr "Stranica %(page)s može zahtijevati Vaše odobrenje." + +#: templates/admin/cms/mail/approvement_required.html:8 +msgid "Last changes" +msgstr "Posljednje izmjene" + +#: templates/admin/cms/mail/base.html:55 +#, python-format +msgid "Log in to administration here." +msgstr "Ovdje se prijavite u administraciju.ovde" + +#: templates/admin/cms/mail/page_user_change.html:7 +msgid "Username:" +msgstr "Korisničko ime:" + +#: templates/admin/cms/mail/page_user_change.html:11 +msgid "Password:" +msgstr "Lozinka:" + +#: templates/admin/cms/page/change_form.html:3 +#: templates/admin/cms/page/plugin_forms_history.html:3 +#: templates/admin/cms/page/plugin_forms_ok.html:4 +msgid "Change a page" +msgstr "Promijeni stranicu" + +#: templates/admin/cms/page/change_form.html:64 +#: templates/admin/cms/page/change_list.html:8 +#: templates/admin/cms/page/plugin_change_form.html:67 +#: templates/admin/cms/page/recover_form.html:14 +#: templates/admin/cms/page/revision_form.html:6 +msgid "Home" +msgstr "može dodati" + +#: templates/admin/cms/page/change_form.html:73 +msgid "Approve page deletion" +msgstr "Odobri brisanje stranice" + +#: templates/admin/cms/page/change_form.html:79 +#, python-format +msgid "(requires approvement at %(moderation_level)s level)" +msgstr "(zahtjeva odobrenje na nivou %(moderation_level)s)" + +#: templates/admin/cms/page/change_form.html:80 +msgid "(you can perform actions on this page directly)" +msgstr "(možete direktno izvesti akcije nad ovom stranicom)" + +#: templates/admin/cms/page/change_form.html:93 +msgid "Remove delete request" +msgstr "Ukloni zahtjev za brisanjem" + +#: templates/admin/cms/page/change_form.html:95 +msgid "Approve delete" +msgstr "Odobri brisanje" + +#: templates/admin/cms/page/change_form.html:95 +msgid "Approve" +msgstr "Odobri" + +#: templates/admin/cms/page/change_form.html:95 +#: templates/admin/cms/page/change_form.html:96 +#: templates/admin/cms/page/change_list_tree.html:12 +msgid "draft" +msgstr "skica" + +#: templates/admin/cms/page/change_form.html:96 +msgid "Preview" +msgstr "Pregled" + +#: templates/admin/cms/page/change_form.html:99 +#: templates/admin/cms/page/revision_form.html:10 +msgid "History" +msgstr "Povijest" + +#: templates/admin/cms/page/change_form.html:100 +msgid "View on site" +msgstr "Prikaži na web stranici" + +#: templates/admin/cms/page/change_form.html:130 +#: templates/admin/cms/page/plugin_change_form.html:84 +msgid "Please correct the error below." +msgid_plural "Please correct the errors below." +msgstr[0] "Molimo ispravite navedenu grešku." +msgstr[1] "Molimo ispravite navedene greške." +msgstr[2] "Molimo ispravite navedene greške." + +#: templates/admin/cms/page/change_form.html:150 +msgid "All permissions" +msgstr "Sve ovlasti" + +#: templates/admin/cms/page/change_form.html:151 +#: templates/admin/cms/page/change_form.html:163 +#: templates/admin/cms/page/loading.html:2 +msgid "Loading..." +msgstr "Učitavanje..." + +#: templates/admin/cms/page/change_form.html:162 +msgid "Page states" +msgstr "Statusi stranice" + +#: templates/admin/cms/page/change_form.html:185 +#, python-format +msgid "" +"This page must be moderated at level %(moderation_level)s, post a message " +"for moderator." +msgstr "Stranica se mora uređivati na nivou %(moderation_level)s, pošaljite poruku moderatoru." + +#: templates/admin/cms/page/change_form.html:187 +msgid "Request approvemet" +msgstr "Zatraži odobrenje" + +#: templates/admin/cms/page/change_list.html:3 +msgid "List of pages" +msgstr "Popis stranica" + +#: templates/admin/cms/page/change_list.html:58 +msgid "Successfully moved" +msgstr "Uspješno premješteno" + +#: templates/admin/cms/page/change_list.html:63 +msgid "An error occured. Please reload the page" +msgstr "Došlo je do greške. Molimo osvježite stranicu" + +#: templates/admin/cms/page/change_list.html:84 +#, python-format +msgid "Recover deleted %(name)s" +msgstr "Povrati obrisano (%(name)s)" + +#: templates/admin/cms/page/change_list.html:87 +#, python-format +msgid "Add %(name)s" +msgstr "Dodaj %(name)s" + +#: templates/admin/cms/page/change_list.html:99 +msgid "Pages on:" +msgstr "Stranica na:" + +#: templates/admin/cms/page/change_list.html:116 +msgid "Filter:" +msgstr "Filter:" + +#: templates/admin/cms/page/change_list.html:116 +msgid "on" +msgstr "ukjlučeno" + +#: templates/admin/cms/page/change_list.html:116 +msgid "off" +msgstr "isključeno" + +#: templates/admin/cms/page/change_list.html:118 +msgid "Filter" +msgstr "Filter" + +#: templates/admin/cms/page/change_list_tree.html:8 +msgid "actions" +msgstr "akcije" + +#: templates/admin/cms/page/change_list_tree.html:10 +msgid "moderate" +msgstr "uredi" + +#: templates/admin/cms/page/change_list_tree.html:13 +msgid "published" +msgstr "objavljeno" + +#: templates/admin/cms/page/change_list_tree.html:15 +msgid "start" +msgstr "početak" + +#: templates/admin/cms/page/change_list_tree.html:16 +msgid "end" +msgstr "kraj" + +#: templates/admin/cms/page/change_list_tree.html:17 +msgid "restricted" +msgstr "ograničeno" + +#: templates/admin/cms/page/change_list_tree.html:19 +msgid "last changes" +msgstr "posljednje izmjene" + +#: templates/admin/cms/page/menu_item.html:5 +msgid "select this page" +msgstr "izaberi ovu stranicu" + +#: templates/admin/cms/page/menu_item.html:5 +#: templates/admin/cms/page/menu_item.html:6 +msgid "edit this page" +msgstr "izmjeni ovu stranicu" + +#: templates/admin/cms/page/menu_item.html:6 +#: templates/cms/toolbar/toolbar.html:54 +msgid "edit" +msgstr "uredi" + +#: templates/admin/cms/page/menu_item.html:16 +msgid "insert above" +msgstr "ubaci iznad" + +#: templates/admin/cms/page/menu_item.html:17 +msgid "insert below" +msgstr "ubaci ispod" + +#: templates/admin/cms/page/menu_item.html:19 +msgid "insert inside" +msgstr "ubaci unutra" + +#: templates/admin/cms/page/menu_item.html:23 +msgid "softroot" +msgstr "softroot" + +#: templates/admin/cms/page/menu_item.html:23 +msgid "home" +msgstr "početna" + +#: templates/admin/cms/page/menu_item.html:26 +#, python-format +msgid "Edit this page in %(language)s " +msgstr "Izmeni stranicu na jeziku %(language)s" + +#: templates/admin/cms/page/menu_item.html:33 +msgid "Cut" +msgstr "Izreži" + +#: templates/admin/cms/page/menu_item.html:33 +msgid "cut" +msgstr "izreži" + +#: templates/admin/cms/page/menu_item.html:34 +msgid "Copy" +msgstr "Kopiraj" + +#: templates/admin/cms/page/menu_item.html:34 +msgid "copy" +msgstr "kopiraj" + +#: templates/admin/cms/page/menu_item.html:37 +#: templates/admin/cms/page/menu_item.html:41 +msgid "Add Child" +msgstr "Dodaj podređenu" + +#: templates/admin/cms/page/menu_item.html:37 +#: templates/admin/cms/page/menu_item.html:41 +msgid "add" +msgstr "dodaj" + +#: templates/admin/cms/page/menu_item.html:65 +msgid "Approve directly" +msgstr "Odobri direktno" + +#: templates/admin/cms/page/menu_item.html:67 +#: templates/admin/cms/page/menu_item.html:79 +#: templates/admin/cms/page/menu_item.html:81 +msgid "view" +msgstr "pogledaj" + +#: templates/admin/cms/page/menu_item.html:72 +msgid "Unpublish" +msgstr "Ukloni objavu" + +#: templates/admin/cms/page/menu_item.html:79 +msgid "View on page" +msgstr "Prikaži na stranici" + +#: templates/admin/cms/page/moderation_messages.html:4 +msgid "Action" +msgstr "Akcija" + +#: templates/admin/cms/page/moderation_messages.html:5 +msgid "Created" +msgstr "Kreirano" + +#: templates/admin/cms/page/moderation_messages.html:7 +msgid "Message" +msgstr "Poruka" + +#: templates/admin/cms/page/permissions.html:7 +msgid "Group" +msgstr "Grupa" + +#: templates/admin/cms/page/permissions.html:8 +msgid "Can edit" +msgstr "Može mijenjati" + +#: templates/admin/cms/page/permissions.html:9 +msgid "Can add" +msgstr "Može dodavati" + +#: templates/admin/cms/page/permissions.html:10 +msgid "Can delete" +msgstr "Može brisati" + +#: templates/admin/cms/page/permissions.html:11 +msgid "Can publish" +msgstr "Može objavljivati" + +#: templates/admin/cms/page/permissions.html:12 +msgid "Can change permissions" +msgstr "Može mijenjati ovlasti" + +#: templates/admin/cms/page/permissions.html:13 +msgid "Can move" +msgstr "Može premjestiti" + +#: templates/admin/cms/page/permissions.html:14 +msgid "Can view" +msgstr "Može gledati" + +#: templates/admin/cms/page/permissions.html:21 +#: templates/admin/cms/page/permissions.html:22 +msgid "(global)" +msgstr "(globalni)" + +#: templates/admin/cms/page/permissions.html:26 +msgid "(current)" +msgstr "(tekući)" + +#: templates/admin/cms/page/permissions.html:43 +msgid "All" +msgstr "Sve" + +#: templates/admin/cms/page/permissions.html:51 +msgid "Page doesn't inherit any permissions." +msgstr "Stranica ne nasljeđuje niti jedno pravo pristupa" + +#: templates/admin/cms/page/plugin_change_form.html:114 +#: templates/cms/toolbar/toolbar.html:24 +msgid "Cancel" +msgstr "Odustani" + +#: templates/admin/cms/page/plugin_forms_history.html:9 +msgid "An old revision of a plugin can not be saved!" +msgstr "Stara revizija plugina se ne može sačuvati!" + +#: templates/admin/cms/page/plugin_forms_ok.html:21 +msgid "Plugin saved successfully." +msgstr "Plugin je uspješno spremljen." + +#: templates/admin/cms/page/recover_form.html:17 +#, python-format +msgid "Recover deleted %(verbose_name)s" +msgstr "Povrati izbrisani %(verbose_name)s" + +#: templates/admin/cms/page/recover_form.html:24 +msgid "Press the save button below to recover this version of the object." +msgstr "Kliknite na gumb Spremi kako biste povratili ovu verziju objekta." + +#: templates/admin/cms/page/revision_form.html:11 +#, python-format +msgid "Revert %(verbose_name)s" +msgstr "Povrati %(verbose_name)s" + +#: templates/admin/cms/page/revision_form.html:24 +msgid "Press the save button below to revert to this version of the object." +msgstr "Pritisnite gumb Spremi kako biste povratili ovu verziju objekta." + +#: templates/admin/cms/page/dialog/copy.html:4 +msgid "Copy options" +msgstr "Opcija kopiranja" + +#: templates/admin/cms/page/dialog/copy.html:6 +msgid "Choose copy options" +msgstr "Izaberite opcije kopiranja" + +#: templates/admin/cms/page/widgets/installed_plugins_inc.html:7 +msgid "Generic" +msgstr "Generičko" + +#: templates/admin/cms/page/widgets/installed_plugins_inc.html:15 +msgid "Add Plugin" +msgstr "Dodaj plugin" + +#: templates/admin/cms/page/widgets/installed_plugins_inc.html:18 +msgid "From Language" +msgstr "Na jeziku" + +#: templates/admin/cms/page/widgets/installed_plugins_inc.html:25 +msgid "Copy Plugins" +msgstr "Kopiraj plugin" + +#: templates/admin/cms/page/widgets/plugin_editor.html:12 +msgid "You must save the page first to add plugins." +msgstr "Prvo morate sačuvati stranicu kako biste dodali pluginove." + +#: templates/admin/cms/page/widgets/plugin_editor.html:15 +msgid "No Plugin selected. Selected one on the left side" +msgstr "Niste izabrali plugin. Izaberite jedan sa lijeve strane." + +#: templates/admin/cms/page/widgets/plugin_editor.html:17 +msgid "No Plugins present. Add a plugin to this placeholder-slot." +msgstr "Nema dostupnih pluginova. Dodajte plugin na ovaj placeholder-slot." + +#: templates/cms/toolbar/placeholder.html:32 +msgid "Available plugins" +msgstr "Dostupni pluginovi" + +#: templates/cms/toolbar/toolbar.html:22 +msgid "The selected element can not be moved to the desired location." +msgstr "Izabrani element se ne može pomaknuti na željeno mjesto." + +#: templates/cms/toolbar/toolbar.html:23 +msgid "Are you sure you want to delete this plugin?" +msgstr "Da li ste sigurni da želite izbrisati ovaj plugin?" + +#: templates/cms/toolbar/toolbar.html:55 +msgid "up" +msgstr "gore" + +#: templates/cms/toolbar/toolbar.html:56 +msgid "down" +msgstr "dolje" + +#: templates/cms/toolbar/toolbar.html:61 +msgid "Move to placeholder" +msgstr "Premjesti u placeholder" + +#: templates/cms/toolbar/items/login.html:5 +msgid "Username" +msgstr "Korisničko ime" + +#: templates/cms/toolbar/items/login.html:10 +#: templates/cms/toolbar/items/login.html:12 +msgid "Login" +msgstr "Prijavi se" + +#: templates/cms/toolbar/items/status.html:2 +msgid "Status" +msgstr "Status" + +#: templates/cms/toolbar/items/switcher.html:4 +msgid "Switch on/off" +msgstr "Uključi/Isključi" + +#: templatetags/cms_admin.py:86 +#, python-format +msgid "%(icon)s" +msgstr "%(icon)s" + +#: templatetags/cms_admin.py:99 +msgid "Unbind page moderation" +msgstr "Ukini uređivanje stranica" + +#: templatetags/cms_admin.py:100 +msgid "Unbind children moderation" +msgstr "Ukini uređivanje podređenih stranica" + +#: templatetags/cms_admin.py:101 +msgid "Unbind descendants moderation" +msgstr "Ukini uređivanje potomaka" + +#: templatetags/cms_tags.py:78 +#, python-format +msgid "Page not found on %(domain)s" +msgstr "Stranica nije pronađena na %(domain)s" + +#: templatetags/cms_tags.py:79 +#, python-format +msgid "" +"A template tag couldn't find the page with lookup arguments `%(page_lookup)s\n" +"`. The URL of the request was: http://%(host)s%(path)s" +msgstr "Template tag ne može pronaći stranicu sa parametrima `%(page_lookup)s `. URL je bio: http://%(host)s%(path)s" + +#: utils/mail.py:38 +msgid "CMS - your user account was created." +msgstr "CMS - Vaš korisnički račun je kreiran." + +#: utils/mail.py:40 +msgid "CMS - your user account was changed." +msgstr "CMS - Vaš korisnički račun je promjenjen." + +#: utils/moderator.py:83 +msgid "parent first" +msgstr "prvi roditelj" + +#: utils/moderator.py:90 +msgid "approve" +msgstr "odobri" + +#: utils/moderator.py:251 +#, python-format +msgid "CMS - Page %s requires approvement." +msgstr "CMS - Stranica %s zahtjeva odobrenje." + +#~ msgid "move" +#~ msgstr "move request" + +#~ msgid "sidebar column" +#~ msgstr "background color" + +#~ msgid "fgcolor" +#~ msgstr "foreground color" + +#~ msgid "Wanted language has not been translated yet." +#~ msgstr "Requested language has not been translated yet." diff --git a/cms/locale/hr/LC_MESSAGES/djangojs.po b/cms/locale/hr/LC_MESSAGES/djangojs.po new file mode 100644 index 00000000000..ceae2a9ce1d --- /dev/null +++ b/cms/locale/hr/LC_MESSAGES/djangojs.po @@ -0,0 +1,39 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# , 2012. +msgid "" +msgstr "" +"Project-Id-Version: django-cms\n" +"Report-Msgid-Bugs-To: https://github.com/divio/django-cms/issues\n" +"POT-Creation-Date: 2011-08-14 09:44-0500\n" +"PO-Revision-Date: 2012-03-27 21:06+0000\n" +"Last-Translator: legendri \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hr\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n" + +#: static/cms/js/change_form.js:31 +msgid "" +"Are you sure you want to change the %(field_name)s without saving the page " +"first?" +msgstr "Jeste li ste sigurni da želite promjeniti %(field_name)s a da prethodno ne spremite stranicu?" + +#: static/cms/js/change_form.js:69 +msgid "" +"Not all plugins are saved. Are you sure you want to save the page?\n" +"All unsaved plugin content will tried to save." +msgstr "Nisu svi pluginovi spremljeni. Jeste li sigurni da želite sačuvati stranicu?\nPokušati će se spremiti svi ne spremljeni sadržaji plugina." + +#: static/cms/js/change_form.js:127 +msgid "Are you sure you want to change tabs without saving the page first?" +msgstr "Jeste li ste sigurni da želite promjeniti tab prije nego što spremite stranicu?" + +#: static/cms/js/plugin_editor.js:132 +msgid "Are you sure you want to delete this plugin?" +msgstr "Jeste li sigurni da želite ukloniti ovaj plugin?" diff --git a/cms/locale/it/LC_MESSAGES/djangojs.po b/cms/locale/it/LC_MESSAGES/djangojs.po index 0bf75aea46a..157b40e0858 100644 --- a/cms/locale/it/LC_MESSAGES/djangojs.po +++ b/cms/locale/it/LC_MESSAGES/djangojs.po @@ -1,42 +1,39 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# +# Translators: +# Marco Barberis , 2011. +# , 2011. msgid "" msgstr "" "Project-Id-Version: django-cms\n" -"Report-Msgid-Bugs-To: \n" +"Report-Msgid-Bugs-To: https://github.com/divio/django-cms/issues\n" "POT-Creation-Date: 2011-08-14 09:44-0500\n" -"PO-Revision-Date: 2011-03-22 15:38+0000\n" -"Last-Translator: maba \n" +"PO-Revision-Date: 2011-10-28 12:34+0000\n" +"Last-Translator: Jonas Obrist \n" "Language-Team: LANGUAGE \n" -"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" #: static/cms/js/change_form.js:31 msgid "" "Are you sure you want to change the %(field_name)s without saving the page " "first?" -msgstr "" -"Sei sicuro di voler modificare il campo %(field_name)s senza salvare prima " -"la pagina?" +msgstr "Sei sicuro di voler modificare il campo %(field_name)s senza salvare prima la pagina?" #: static/cms/js/change_form.js:69 msgid "" "Not all plugins are saved. Are you sure you want to save the page?\n" "All unsaved plugin content will tried to save." -msgstr "" -"Non tutti i plugin sono stati salvati. Sei sicuro di voler salvare la " -"pagina?\n" -"Verrà tentato il salvataggio del contenuto dei plugin non salvati." +msgstr "Non tutti i plugin sono stati salvati. Sei sicuro di voler salvare la pagina?\nVerrà tentato il salvataggio del contenuto dei plugin non salvati." #: static/cms/js/change_form.js:127 msgid "Are you sure you want to change tabs without saving the page first?" -msgstr "" -"Sei sicuro di voler modificare le schede senza salvare prima la pagina?" +msgstr "Sei sicuro di voler modificare le schede senza salvare prima la pagina?" #: static/cms/js/plugin_editor.js:132 msgid "Are you sure you want to delete this plugin?" diff --git a/cms/locale/ja/LC_MESSAGES/django.po b/cms/locale/ja/LC_MESSAGES/django.po index a2d2e7eca4f..f993482227c 100644 --- a/cms/locale/ja/LC_MESSAGES/django.po +++ b/cms/locale/ja/LC_MESSAGES/django.po @@ -1,19 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# +# Translators: +# Daigo Sakamoto , 2011. +# Jonas Obrist , 2011. msgid "" msgstr "" "Project-Id-Version: django-cms\n" -"Report-Msgid-Bugs-To: \n" +"Report-Msgid-Bugs-To: https://github.com/divio/django-cms/issues\n" "POT-Creation-Date: 2011-08-14 09:47-0500\n" -"PO-Revision-Date: 2011-03-22 15:24+0000\n" -"Last-Translator: ojii \n" +"PO-Revision-Date: 2011-12-16 16:30+0000\n" +"Last-Translator: Jonas Obrist \n" "Language-Team: divio.ch \n" -"Language: ja\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ja\n" "Plural-Forms: nplurals=1; plural=0\n" "X-Poedit-Country: SWITZERLAND\n" "X-Poedit-Language: English\n" @@ -125,9 +128,9 @@ msgid "Page Title" msgstr "ページタイトル" #: admin/forms.py:138 -msgid "Overwrites what is displayed at the top of your browser or in bookmarks" -msgstr "" -"ブラウザのタイトルやブックマークに表示されているタイトルを上書きします。" +msgid "" +"Overwrites what is displayed at the top of your browser or in bookmarks" +msgstr "ブラウザのタイトルやブックマークに表示されているタイトルを上書きします。" #: admin/forms.py:139 msgid "Application" @@ -170,9 +173,9 @@ msgid "Invalid URL, use /my/url format." msgstr "無効なURLです。 /my/url のように入力してください。" #: admin/forms.py:181 -#, fuzzy, python-format +#, python-format msgid "Page with redirect url %r already exist" -msgstr "このスラグを使っているページが存在します。" +msgstr "" #: admin/forms.py:191 admin/forms.py:192 migrations/0001_initial.py:41 #: models/permissionmodels.py:16 @@ -190,9 +193,8 @@ msgid "Add page permission also requires edit page permission." msgstr "ページ追加権限は編集権限も必要です。" #: admin/forms.py:248 -#, fuzzy msgid "can_view" -msgstr "見る" +msgstr "" #: admin/forms.py:260 msgid "Please select user or group first." @@ -213,7 +215,7 @@ msgstr "変更" #: templates/admin/page_submit_line.html:5 #: templates/admin/cms/page/menu_item.html:44 msgid "Delete" -msgstr "変更" +msgstr "削除" #: admin/forms.py:270 msgid "Recover (any) pages" @@ -227,9 +229,7 @@ msgstr "ユーザに通知" msgid "" "Send email notification to user about username or password change. Requires " "user email." -msgstr "" -"パスワードや、ユーザ名が変更された時に、ユーザに通知メールを送信する。ユーザ" -"メールが必要です。" +msgstr "パスワードや、ユーザ名が変更された時に、ユーザに通知メールを送信する。ユーザメールが必要です。" #: admin/forms.py:318 msgid "New password" @@ -278,9 +278,8 @@ msgid "SEO Settings" msgstr "SEO設定" #: admin/pageadmin.py:299 -#, fuzzy msgid "You have no permission to change the template" -msgstr "このページを変更する権限がありません。" +msgstr "" #: admin/pageadmin.py:485 msgid "higher" @@ -297,8 +296,7 @@ msgstr "ページを承認しました。" #: admin/pageadmin.py:927 #, python-format msgid "%(name)s object with primary key %(key)r does not exist." -msgstr "" -"プライマリキー %(key)r を持って「%(name)s」というオブジェクトが存在しません。" +msgstr "プライマリキー %(key)r を持って「%(name)s」というオブジェクトが存在しません。" #: admin/pageadmin.py:933 msgid "There only exists one translation for this page" @@ -307,7 +305,7 @@ msgstr "このページは一つの翻訳しかありません。" #: admin/pageadmin.py:969 #, python-format msgid "Title and plugins with language %(language)s was deleted" -msgstr "" +msgstr "%(language)sのタイトルとプラグインは削除をしました。" #: admin/pageadmin.py:991 msgid "Are you sure?" @@ -322,9 +320,8 @@ msgid "You do not have permission to change this page's in_navigation status" msgstr "メニューステータスを変更する権限がありません。" #: admin/pageadmin.py:1079 -#, fuzzy msgid "You have no permission to add a plugin" -msgstr "このページを変更する権限がありません。" +msgstr "" #: admin/pageadmin.py:1126 admin/pageadmin.py:1158 msgid "Language must be set to a supported language!" @@ -344,9 +341,8 @@ msgid "Language must be different than the copied language!" msgstr "" #: admin/pageadmin.py:1166 -#, fuzzy msgid "You do not have permission to add plugins" -msgstr "このページを変更する権限がありません。" +msgstr "" #: admin/pageadmin.py:1173 #, python-format @@ -354,14 +350,12 @@ msgid "Copied %(language)s plugins to %(placeholder)s" msgstr "" #: admin/pageadmin.py:1186 admin/pageadmin.py:1294 admin/pageadmin.py:1316 -#, fuzzy msgid "You have no permission to change this page" -msgstr "このページを変更する権限がありません。" +msgstr "" #: admin/pageadmin.py:1221 -#, fuzzy msgid "You have no permission to edit a plugin" -msgstr "このページを変更する権限がありません。" +msgstr "" #: admin/pageadmin.py:1256 #, python-format @@ -370,18 +364,16 @@ msgid "" msgstr "" #: admin/pageadmin.py:1311 -#, fuzzy msgid "You have no permission to move a plugin" -msgstr "このページを変更する権限がありません。" +msgstr "" #: admin/pageadmin.py:1329 msgid "Plugins where moved" -msgstr "" +msgstr "プラグインは動かしました。" #: admin/pageadmin.py:1343 -#, fuzzy msgid "You have no permission to remove a plugin" -msgstr "このページを変更する権限がありません。" +msgstr "" #: admin/pageadmin.py:1361 admin/placeholderadmin.py:292 #, python-format @@ -411,19 +403,16 @@ msgid "Page permissions management" msgstr "ページ権限管理" #: admin/placeholderadmin.py:150 admin/placeholderadmin.py:191 -#, fuzzy msgid "You don't have permission to add content here." -msgstr "このページを変更する権限がありません。" +msgstr "" #: admin/placeholderadmin.py:187 -#, fuzzy msgid "You don't have permission to add plugins" -msgstr "このページを変更する権限がありません。" +msgstr "" #: admin/placeholderadmin.py:288 -#, fuzzy msgid "You don't have permission to delete a plugin" -msgstr "このページを変更する権限がありません。" +msgstr "" #: admin/useradmin.py:25 msgid "User details" @@ -876,7 +865,7 @@ msgstr "幅" #: models/pluginmodel.py:140 msgid "" -msgstr "" +msgstr "<空>" #: models/titlemodels.py:12 msgid "overwrite the title in the menu" @@ -1132,7 +1121,7 @@ msgstr "" #: plugins/text/templates/cms/plugins/widgets/tinymce.html:30 msgid "Plugins" -msgstr "" +msgstr "プラグイン" #: plugins/text/templates/cms/plugins/widgets/tinymce.html:38 #: plugins/text/templates/cms/plugins/widgets/tinymce.html:106 @@ -1237,9 +1226,8 @@ msgid "we were checking out" msgstr "" #: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:17 -#, fuzzy msgid "loading tweets..." -msgstr "ちょっと待って下さい" +msgstr "" #: plugins/video/cms_plugins.py:10 msgid "Video" @@ -1262,13 +1250,10 @@ msgid "movie url" msgstr "ムービーのURL" #: plugins/video/models.py:10 -#, fuzzy msgid "" -"vimeo or youtube video url. Example: http://www.youtube.com/watch?v=-" -"iJ7bs4mTUY" +"vimeo or youtube video url. Example: " +"http://www.youtube.com/watch?v=-iJ7bs4mTUY" msgstr "" -"VIMEOやYOUTUBEのURLを使って下さい。例えば:http://www.youtube.com/watch?" -"v=YFa59lK-kpo" #: plugins/video/models.py:11 msgid "preview image file" @@ -1588,12 +1573,12 @@ msgstr "コピーして" #: templates/admin/cms/page/menu_item.html:34 msgid "copy" -msgstr "コピーして" +msgstr "コピー" #: templates/admin/cms/page/menu_item.html:37 #: templates/admin/cms/page/menu_item.html:41 msgid "Add Child" -msgstr "" +msgstr "子ページを追加" #: templates/admin/cms/page/menu_item.html:37 #: templates/admin/cms/page/menu_item.html:41 @@ -1659,9 +1644,8 @@ msgid "Can move" msgstr "" #: templates/admin/cms/page/permissions.html:14 -#, fuzzy msgid "Can view" -msgstr "見る" +msgstr "" #: templates/admin/cms/page/permissions.html:21 #: templates/admin/cms/page/permissions.html:22 @@ -1777,9 +1761,8 @@ msgstr "ユーザ名" #: templates/cms/toolbar/items/login.html:10 #: templates/cms/toolbar/items/login.html:12 -#, fuzzy msgid "Login" -msgstr "ログイン" +msgstr "" #: templates/cms/toolbar/items/status.html:2 msgid "Status" @@ -1814,8 +1797,7 @@ msgstr "" #: templatetags/cms_tags.py:79 #, python-format msgid "" -"A template tag couldn't find the page with lookup arguments `" -"%(page_lookup)s\n" +"A template tag couldn't find the page with lookup arguments `%(page_lookup)s\n" "`. The URL of the request was: http://%(host)s%(path)s" msgstr "" @@ -1840,47 +1822,14 @@ msgstr "承認" msgid "CMS - Page %s requires approvement." msgstr "CMS - Page %s は承認が必要です。" -#~ msgid "Move to %(name)s" -#~ msgstr "%(name)s へ移動" - #~ msgid "move" -#~ msgstr "移動" - -#~ msgid "history" -#~ msgstr "履歴" - -#~ msgid "Lock" -#~ msgstr "ロック" - -#~ msgid "Close" -#~ msgstr "閉める" - -#~ msgid "Settings" -#~ msgstr "設定" - -#~ msgid "Delete Plugin" -#~ msgstr "プラグイン削除" - -#~ msgid "English" -#~ msgstr "英語" - -#~ msgid "French" -#~ msgstr "フランス語" - -#~ msgid "German" -#~ msgstr "ドイツ語" - -#~ msgid "Dutch" -#~ msgstr "オランダ語" - -#~ msgid "two columns" -#~ msgstr "二つ列" +#~ msgstr "move request" -#~ msgid "three columns" -#~ msgstr "三つ列" +#~ msgid "sidebar column" +#~ msgstr "background color" -#~ msgid "left column" -#~ msgstr "左列" +#~ msgid "fgcolor" +#~ msgstr "foreground color" -#~ msgid "right column" -#~ msgstr "右列" +#~ msgid "Wanted language has not been translated yet." +#~ msgstr "Requested language has not been translated yet." diff --git a/cms/locale/ja/LC_MESSAGES/djangojs.po b/cms/locale/ja/LC_MESSAGES/djangojs.po index 41aa8b4d05e..e476b0dca7c 100644 --- a/cms/locale/ja/LC_MESSAGES/djangojs.po +++ b/cms/locale/ja/LC_MESSAGES/djangojs.po @@ -1,19 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# +# Translators: +# Jonas Obrist , 2011. msgid "" msgstr "" "Project-Id-Version: django-cms\n" -"Report-Msgid-Bugs-To: \n" +"Report-Msgid-Bugs-To: https://github.com/divio/django-cms/issues\n" "POT-Creation-Date: 2011-08-14 09:44-0500\n" -"PO-Revision-Date: 2011-03-22 15:38+0000\n" -"Last-Translator: ojii \n" +"PO-Revision-Date: 2011-12-16 17:05+0000\n" +"Last-Translator: Jonas Obrist \n" "Language-Team: LANGUAGE \n" -"Language: ja\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ja\n" "Plural-Forms: nplurals=1; plural=0\n" #: static/cms/js/change_form.js:31 @@ -26,7 +28,7 @@ msgstr "保存せずに、本当に %(field_name)s を変更しますか?" msgid "" "Not all plugins are saved. Are you sure you want to save the page?\n" "All unsaved plugin content will tried to save." -msgstr "" +msgstr "保存をしなっかたプラグインがあります。そのプラグインはページを保存をするときにできるだけ保存をします。" #: static/cms/js/change_form.js:127 msgid "Are you sure you want to change tabs without saving the page first?" diff --git a/cms/locale/ka/LC_MESSAGES/django.po b/cms/locale/ka/LC_MESSAGES/django.po new file mode 100644 index 00000000000..3674eb5f2d7 --- /dev/null +++ b/cms/locale/ka/LC_MESSAGES/django.po @@ -0,0 +1,1834 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# André Bouatchidzé , 2012. +msgid "" +msgstr "" +"Project-Id-Version: django-cms\n" +"Report-Msgid-Bugs-To: https://github.com/divio/django-cms/issues\n" +"POT-Creation-Date: 2011-08-14 09:47-0500\n" +"PO-Revision-Date: 2012-03-14 20:26+0000\n" +"Last-Translator: André Bouatchidzé \n" +"Language-Team: divio.ch \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ka\n" +"Plural-Forms: nplurals=1; plural=0\n" +"X-Poedit-Country: SWITZERLAND\n" +"X-Poedit-Language: English\n" +"X-Poedit-SourceCharset: utf-8\n" + +#: cms_toolbar.py:68 +msgid "Edit mode" +msgstr "" + +#: cms_toolbar.py:77 +msgid "django CMS" +msgstr "" + +#: cms_toolbar.py:108 templates/admin/cms/page/menu_item.html:73 +msgid "Publish" +msgstr "" + +#: cms_toolbar.py:112 +msgid "Request Approval" +msgstr "" + +#: cms_toolbar.py:127 cms_toolbar.py:136 +msgid "Logout" +msgstr "" + +#: cms_toolbar.py:152 +msgid "Template" +msgstr "" + +#: cms_toolbar.py:160 +msgid "Move/add Pages" +msgstr "" + +#: cms_toolbar.py:165 +msgid "Add child page" +msgstr "" + +#: cms_toolbar.py:171 +msgid "Add sibling page" +msgstr "" + +#: cms_toolbar.py:177 +msgid "Delete Page" +msgstr "" + +#: cms_toolbar.py:180 models/moderatormodels.py:45 +#: templates/admin/cms/page/permissions.html:5 +msgid "Page" +msgstr "" + +#: cms_toolbar.py:189 +msgid "Site Administration" +msgstr "" + +#: cms_toolbar.py:195 +msgid "Page Settings" +msgstr "" + +#: cms_toolbar.py:201 +msgid "View History" +msgstr "" + +#: cms_toolbar.py:205 +msgid "Admin" +msgstr "" + +#: plugin_base.py:65 +msgid "Advanced options" +msgstr "" + +#: admin/forms.py:59 +msgid "Title" +msgstr "სათაური" + +#: admin/forms.py:60 +msgid "The default title" +msgstr "" + +#: admin/forms.py:61 +msgid "Slug" +msgstr "" + +#: admin/forms.py:62 +msgid "The part of the title that is used in the URL" +msgstr "" + +#: admin/forms.py:63 +msgid "Language" +msgstr "ენა" + +#: admin/forms.py:64 +msgid "The current language of the content fields." +msgstr "" + +#: admin/forms.py:117 +msgid "Another page with this slug already exists" +msgstr "" + +#: admin/forms.py:135 +msgid "Menu Title" +msgstr "" + +#: admin/forms.py:136 +msgid "Overwrite what is displayed in the menu" +msgstr "" + +#: admin/forms.py:137 +msgid "Page Title" +msgstr "გვერდის სათაური" + +#: admin/forms.py:138 +msgid "" +"Overwrites what is displayed at the top of your browser or in bookmarks" +msgstr "" + +#: admin/forms.py:139 +msgid "Application" +msgstr "" + +#: admin/forms.py:141 +msgid "Hook application to this page." +msgstr "" + +#: admin/forms.py:142 +msgid "Overwrite URL" +msgstr "" + +#: admin/forms.py:143 +msgid "Keep this field empty if standard path should be used." +msgstr "" + +#: admin/forms.py:149 +msgid "Redirect" +msgstr "გადამისამართება" + +#: admin/forms.py:150 +msgid "Redirects to this URL." +msgstr "" + +#: admin/forms.py:152 +msgid "A description of the page sometimes used by search engines." +msgstr "" + +#: admin/forms.py:154 +msgid "A list of comma seperated keywords sometimes used by search engines." +msgstr "" + +#: admin/forms.py:170 +msgid "A page with this reverse URL id exists already." +msgstr "" + +#: admin/forms.py:178 +msgid "Invalid URL, use /my/url format." +msgstr "" + +#: admin/forms.py:181 +#, python-format +msgid "Page with redirect url %r already exist" +msgstr "" + +#: admin/forms.py:191 admin/forms.py:192 migrations/0001_initial.py:41 +#: models/permissionmodels.py:16 +msgid "user" +msgstr "მომხმარებელი" + +#: admin/forms.py:216 +msgid "" +"Add page permission requires also access to children, or descendants, " +"otherwise added page can't be changed by its creator." +msgstr "" + +#: admin/forms.py:221 +msgid "Add page permission also requires edit page permission." +msgstr "" + +#: admin/forms.py:248 +msgid "can_view" +msgstr "" + +#: admin/forms.py:260 +msgid "Please select user or group first." +msgstr "" + +#: admin/forms.py:267 admin/forms.py:274 admin/forms.py:278 +#: templates/admin/cms/page/change_form.html:67 +#: templates/admin/cms/page/plugin_change_form.html:70 +#: templates/cms/toolbar/placeholder.html:25 +msgid "Add" +msgstr "დამატება" + +#: admin/forms.py:268 admin/forms.py:275 admin/forms.py:279 +msgid "Change" +msgstr "" + +#: admin/forms.py:269 admin/forms.py:276 admin/forms.py:280 +#: templates/admin/page_submit_line.html:5 +#: templates/admin/cms/page/menu_item.html:44 +msgid "Delete" +msgstr "" + +#: admin/forms.py:270 +msgid "Recover (any) pages" +msgstr "" + +#: admin/forms.py:297 +msgid "Notify user" +msgstr "" + +#: admin/forms.py:298 +msgid "" +"Send email notification to user about username or password change. Requires " +"user email." +msgstr "" + +#: admin/forms.py:318 +msgid "New password" +msgstr "ახალი პაროლი" + +#: admin/forms.py:320 +msgid "New password confirmation" +msgstr "" + +#: admin/forms.py:339 +msgid "Email notification requires valid email address." +msgstr "" + +#: admin/forms.py:341 +msgid "" +"The permission to add new pages requires the permission to change pages!" +msgstr "" + +#: admin/forms.py:343 +msgid "" +"The permission to add new users requires the permission to change users!" +msgstr "" + +#: admin/forms.py:345 +msgid "To add permissions you also need to edit them!" +msgstr "" + +#: admin/pageadmin.py:97 +msgid "Basic Settings" +msgstr "" + +#: admin/pageadmin.py:100 +msgid "Note: This page reloads if you change the selection. Save it first." +msgstr "" + +#: admin/pageadmin.py:102 admin/pageadmin.py:154 +msgid "Hidden" +msgstr "" + +#: admin/pageadmin.py:106 +msgid "Advanced Settings" +msgstr "" + +#: admin/pageadmin.py:113 +msgid "SEO Settings" +msgstr "" + +#: admin/pageadmin.py:299 +msgid "You have no permission to change the template" +msgstr "" + +#: admin/pageadmin.py:485 +msgid "higher" +msgstr "" + +#: admin/pageadmin.py:655 +msgid "Database error" +msgstr "" + +#: admin/pageadmin.py:855 +msgid "Page was successfully approved." +msgstr "" + +#: admin/pageadmin.py:927 +#, python-format +msgid "%(name)s object with primary key %(key)r does not exist." +msgstr "" + +#: admin/pageadmin.py:933 +msgid "There only exists one translation for this page" +msgstr "" + +#: admin/pageadmin.py:969 +#, python-format +msgid "Title and plugins with language %(language)s was deleted" +msgstr "" + +#: admin/pageadmin.py:991 +msgid "Are you sure?" +msgstr "" + +#: admin/pageadmin.py:1052 +msgid "You do not have permission to publish this page" +msgstr "" + +#: admin/pageadmin.py:1066 +msgid "You do not have permission to change this page's in_navigation status" +msgstr "" + +#: admin/pageadmin.py:1079 +msgid "You have no permission to add a plugin" +msgstr "" + +#: admin/pageadmin.py:1126 admin/pageadmin.py:1158 +msgid "Language must be set to a supported language!" +msgstr "" + +#: admin/pageadmin.py:1138 +#, python-format +msgid "%(plugin_name)s plugin added to %(placeholder)s" +msgstr "" + +#: admin/pageadmin.py:1156 +msgid "You do not have permission to change this page" +msgstr "" + +#: admin/pageadmin.py:1160 +msgid "Language must be different than the copied language!" +msgstr "" + +#: admin/pageadmin.py:1166 +msgid "You do not have permission to add plugins" +msgstr "" + +#: admin/pageadmin.py:1173 +#, python-format +msgid "Copied %(language)s plugins to %(placeholder)s" +msgstr "" + +#: admin/pageadmin.py:1186 admin/pageadmin.py:1294 admin/pageadmin.py:1316 +msgid "You have no permission to change this page" +msgstr "" + +#: admin/pageadmin.py:1221 +msgid "You have no permission to edit a plugin" +msgstr "" + +#: admin/pageadmin.py:1256 +#, python-format +msgid "" +"%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" +msgstr "" + +#: admin/pageadmin.py:1311 +msgid "You have no permission to move a plugin" +msgstr "" + +#: admin/pageadmin.py:1329 +msgid "Plugins where moved" +msgstr "" + +#: admin/pageadmin.py:1343 +msgid "You have no permission to remove a plugin" +msgstr "" + +#: admin/pageadmin.py:1361 admin/placeholderadmin.py:292 +#, python-format +msgid "" +"%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " +"deleted." +msgstr "" + +#: admin/permissionadmin.py:72 +msgid "View restriction" +msgstr "" + +#: admin/permissionadmin.py:73 +msgid "View restrictions" +msgstr "" + +#: admin/permissionadmin.py:133 models/permissionmodels.py:75 +msgid "Page permissions" +msgstr "" + +#: admin/permissionadmin.py:134 +msgid "User & Group permissions" +msgstr "" + +#: admin/permissionadmin.py:135 +msgid "Page permissions management" +msgstr "" + +#: admin/placeholderadmin.py:150 admin/placeholderadmin.py:191 +msgid "You don't have permission to add content here." +msgstr "" + +#: admin/placeholderadmin.py:187 +msgid "You don't have permission to add plugins" +msgstr "" + +#: admin/placeholderadmin.py:288 +msgid "You don't have permission to delete a plugin" +msgstr "" + +#: admin/useradmin.py:25 +msgid "User details" +msgstr "" + +#: admin/useradmin.py:26 +msgid "Groups" +msgstr "ჯგუფები" + +#: admin/useradmin.py:36 templates/cms/toolbar/items/login.html:7 +msgid "Password" +msgstr "პაროლი" + +#: admin/dialog/forms.py:9 +msgid "Copy permissions" +msgstr "" + +#: admin/dialog/forms.py:16 +msgid "Copy moderation" +msgstr "" + +#: conf/patch.py:28 +msgid "Inherit the template of the nearest ancestor" +msgstr "" + +#: forms/fields.py:19 +msgid "Select a valid site" +msgstr "" + +#: forms/fields.py:20 +msgid "Select a valid page" +msgstr "" + +#: forms/widgets.py:173 +msgid "Add Another" +msgstr "" + +#: migrations/0001_initial.py:12 migrations/0001_initial.py:24 +#: migrations/0001_initial.py:75 migrations/0003_remove_placeholder.py:18 +#: migrations/0010_5char_language.py:12 migrations/0010_5char_language.py:15 +#: migrations/0010_5char_language.py:22 migrations/0010_5char_language.py:25 +#: models/pluginmodel.py:79 models/titlemodels.py:10 +#: plugins/inherit/models.py:11 +msgid "language" +msgstr "ენა" + +#: migrations/0001_initial.py:13 migrations/0001_initial.py:26 +#: migrations/0001_initial.py:40 migrations/0001_initial.py:78 +#: migrations/0003_remove_placeholder.py:21 models/pagemodel.py:104 +#: models/permissionmodels.py:69 models/titlemodels.py:21 +#: plugins/inherit/forms.py:9 plugins/link/forms.py:9 +#: plugins/link/models.py:12 plugins/link/migrations/0001_initial.py:19 +#: plugins/picture/models.py:22 plugins/teaser/models.py:13 +msgid "page" +msgstr "გვერდი" + +#: migrations/0001_initial.py:14 migrations/0004_textobjects.py:12 +#: migrations/0004_textobjects.py:22 models/pluginmodel.py:78 +msgid "position" +msgstr "" + +#: migrations/0001_initial.py:15 migrations/0001_initial.py:29 +#: models/pluginmodel.py:81 models/titlemodels.py:22 +msgid "creation date" +msgstr "" + +#: migrations/0001_initial.py:16 migrations/0001_initial.py:77 +#: migrations/0003_remove_placeholder.py:20 models/placeholdermodel.py:13 +msgid "slot" +msgstr "" + +#: migrations/0001_initial.py:18 models/pluginmodel.py:80 +msgid "plugin_name" +msgstr "" + +#: migrations/0001_initial.py:25 migrations/0011_title_overwrites.py:12 +#: migrations/0011_title_overwrites.py:15 models/titlemodels.py:11 +#: models/titlemodels.py:12 models/titlemodels.py:20 plugins/file/models.py:25 +#: plugins/file/migrations/0001_initial.py:18 plugins/teaser/models.py:9 +#: plugins/twitter/models.py:6 plugins/twitter/models.py:15 +#: templates/admin/cms/page/change_list_tree.html:6 +msgid "title" +msgstr "სათაური" + +#: migrations/0001_initial.py:28 +msgid "path" +msgstr "" + +#: migrations/0001_initial.py:30 models/titlemodels.py:13 +msgid "slug" +msgstr "" + +#: migrations/0001_initial.py:36 +msgid "everybody" +msgstr "ყველა" + +#: migrations/0001_initial.py:37 models/permissionmodels.py:20 +msgid "can edit" +msgstr "" + +#: migrations/0001_initial.py:38 models/permissionmodels.py:17 +msgid "group" +msgstr "ჯგუფი" + +#: migrations/0001_initial.py:39 models/permissionmodels.py:24 +msgid "can publish" +msgstr "" + +#: migrations/0001_initial.py:42 +msgid "type" +msgstr "" + +#: migrations/0001_initial.py:44 +msgid "can change soft-root" +msgstr "" + +#: migrations/0001_initial.py:50 migrations/0006_apphook.py:34 +#: migrations/0006_apphook.py:62 +msgid "status" +msgstr "სტატუსი" + +#: migrations/0001_initial.py:53 +msgid "navigation extenders" +msgstr "" + +#: migrations/0001_initial.py:54 migrations/0006_apphook.py:12 +#: migrations/0006_apphook.py:46 models/titlemodels.py:15 +msgid "has url overwrite" +msgstr "" + +#: migrations/0001_initial.py:55 migrations/0006_apphook.py:49 +msgid "url overwrite" +msgstr "" + +#: migrations/0001_initial.py:57 +msgid "author" +msgstr "ავტორი" + +#: migrations/0001_initial.py:58 migrations/0006_apphook.py:37 +msgid "reverse url id" +msgstr "" + +#: migrations/0001_initial.py:59 models/pagemodel.py:84 +msgid "login required" +msgstr "" + +#: migrations/0001_initial.py:60 models/pagemodel.py:69 +msgid "soft root" +msgstr "" + +#: migrations/0001_initial.py:63 models/pagemodel.py:67 +msgid "publication end date" +msgstr "" + +#: migrations/0001_initial.py:64 models/pagemodel.py:74 +#: plugins/snippet/models.py:14 +msgid "template" +msgstr "" + +#: migrations/0001_initial.py:66 models/pagemodel.py:66 +msgid "publication date" +msgstr "" + +#: migrations/0001_initial.py:67 models/pagemodel.py:68 +#: templates/admin/cms/page/change_list_tree.html:9 +msgid "in navigation" +msgstr "" + +#: migrations/0006_apphook.py:15 migrations/0007_apphook_longer.py:11 +#: migrations/0007_apphook_longer.py:17 models/titlemodels.py:16 +msgid "application" +msgstr "" + +#: migrations/0006_apphook.py:65 models/pagemodel.py:70 +msgid "id" +msgstr "" + +#: migrations/0008_redirects.py:11 models/titlemodels.py:17 +msgid "redirect" +msgstr "გადამისამართება" + +#: migrations/0009_added_meta_fields.py:12 models/titlemodels.py:19 +msgid "keywords" +msgstr "" + +#: migrations/0009_added_meta_fields.py:15 models/titlemodels.py:18 +#: plugins/teaser/models.py:20 +msgid "description" +msgstr "" + +#: models/moderatormodels.py:25 +msgid "Current page" +msgstr "" + +#: models/moderatormodels.py:26 +msgid "Page children (immediate)" +msgstr "" + +#: models/moderatormodels.py:27 +msgid "Page and children (immediate)" +msgstr "" + +#: models/moderatormodels.py:28 +msgid "Page descendants" +msgstr "" + +#: models/moderatormodels.py:29 +msgid "Page and descendants" +msgstr "" + +#: models/moderatormodels.py:46 +#: templates/admin/cms/page/moderation_messages.html:6 +#: templates/admin/cms/page/permissions.html:6 +msgid "User" +msgstr "" + +#: models/moderatormodels.py:50 templatetags/cms_admin.py:99 +msgid "Moderate page" +msgstr "" + +#: models/moderatormodels.py:51 templatetags/cms_admin.py:100 +msgid "Moderate children" +msgstr "" + +#: models/moderatormodels.py:52 templatetags/cms_admin.py:101 +msgid "Moderate descendants" +msgstr "" + +#: models/moderatormodels.py:55 models/moderatormodels.py:56 +msgid "PageModerator" +msgstr "" + +#: models/moderatormodels.py:99 +msgid "created" +msgstr "" + +#: models/moderatormodels.py:100 models/pagemodel.py:44 +msgid "changed" +msgstr "" + +#: models/moderatormodels.py:101 +msgid "delete req." +msgstr "" + +#: models/moderatormodels.py:102 +msgid "move req." +msgstr "" + +#: models/moderatormodels.py:103 +msgid "publish req." +msgstr "" + +#: models/moderatormodels.py:104 +msgid "unpublish req." +msgstr "" + +#: models/moderatormodels.py:105 models/pagemodel.py:47 +msgid "approved" +msgstr "" + +#: models/moderatormodels.py:117 +msgid "Page moderator state" +msgstr "" + +#: models/moderatormodels.py:118 +msgid "Page moderator states" +msgstr "" + +#: models/pagemodel.py:45 +msgid "req. app." +msgstr "" + +#: models/pagemodel.py:46 templates/admin/cms/page/menu_item.html:44 +#: templates/cms/toolbar/toolbar.html:57 utils/moderator.py:90 +msgid "delete" +msgstr "" + +#: models/pagemodel.py:48 +msgid "app. par." +msgstr "" + +#: models/pagemodel.py:52 +msgid "for logged in users only" +msgstr "" + +#: models/pagemodel.py:53 +msgid "for anonymous users only" +msgstr "" + +#: models/pagemodel.py:61 +msgid "created by" +msgstr "" + +#: models/pagemodel.py:62 templates/admin/cms/page/change_list_tree.html:20 +msgid "changed by" +msgstr "" + +#: models/pagemodel.py:66 +msgid "" +"When the page should go live. Status must be \"Published\" for page to go " +"live." +msgstr "" + +#: models/pagemodel.py:67 +msgid "When to expire the page. Leave empty to never expire." +msgstr "" + +#: models/pagemodel.py:69 +msgid "All ancestors will not be displayed in the navigation" +msgstr "" + +#: models/pagemodel.py:70 +msgid "" +"An unique identifier that is used with the page_url templatetag for linking " +"to this page" +msgstr "" + +#: models/pagemodel.py:71 +msgid "attached menu" +msgstr "" + +#: models/pagemodel.py:72 +msgid "is published" +msgstr "" + +#: models/pagemodel.py:74 +msgid "The template used to render the content." +msgstr "" + +#: models/pagemodel.py:75 +msgid "The site the page is accessible at." +msgstr "" + +#: models/pagemodel.py:75 +msgid "site" +msgstr "საიტი" + +#: models/pagemodel.py:77 +msgid "moderator state" +msgstr "" + +#: models/pagemodel.py:85 +msgid "menu visibility" +msgstr "" + +#: models/pagemodel.py:85 +msgid "limit when this page is visible in the menu" +msgstr "" + +#: models/pagemodel.py:105 +msgid "pages" +msgstr "" + +#: models/pagemodel.py:267 +msgid "Page was copied." +msgstr "" + +#: models/pagemodel.py:698 +msgid "default" +msgstr "" + +#: models/permissionmodels.py:21 +msgid "can add" +msgstr "" + +#: models/permissionmodels.py:22 +msgid "can delete" +msgstr "" + +#: models/permissionmodels.py:23 +msgid "can change advanced settings" +msgstr "" + +#: models/permissionmodels.py:25 +msgid "can change permissions" +msgstr "" + +#: models/permissionmodels.py:25 +msgid "on page level" +msgstr "" + +#: models/permissionmodels.py:26 +msgid "can move" +msgstr "" + +#: models/permissionmodels.py:27 +msgid "can moderate" +msgstr "" + +#: models/permissionmodels.py:28 +msgid "view restricted" +msgstr "" + +#: models/permissionmodels.py:28 +msgid "frontend view restriction" +msgstr "" + +#: models/permissionmodels.py:51 +msgid "can recover pages" +msgstr "" + +#: models/permissionmodels.py:51 +msgid "can recover any deleted page" +msgstr "" + +#: models/permissionmodels.py:52 +msgid "If none selected, user haves granted permissions to all sites." +msgstr "" + +#: models/permissionmodels.py:52 +msgid "sites" +msgstr "საიტები" + +#: models/permissionmodels.py:57 +msgid "Page global permission" +msgstr "" + +#: models/permissionmodels.py:58 +msgid "Pages global permissions" +msgstr "" + +#: models/permissionmodels.py:68 templates/admin/cms/page/permissions.html:15 +msgid "Grant on" +msgstr "" + +#: models/permissionmodels.py:74 +msgid "Page permission" +msgstr "" + +#: models/permissionmodels.py:89 +msgid "User (page)" +msgstr "მომხმარებელი (გვერდი)" + +#: models/permissionmodels.py:90 +msgid "Users (page)" +msgstr "მომხმარებლები (გვერდი)" + +#: models/permissionmodels.py:100 +msgid "User group (page)" +msgstr "" + +#: models/permissionmodels.py:101 +msgid "User groups (page)" +msgstr "" + +#: models/placeholdermodel.py:14 plugins/flash/models.py:9 +#: plugins/flash/migrations/0001_initial.py:16 plugins/video/models.py:13 +msgid "width" +msgstr "სიგანე" + +#: models/pluginmodel.py:140 +msgid "" +msgstr "" + +#: models/titlemodels.py:12 +msgid "overwrite the title in the menu" +msgstr "გადამისამართება" + +#: models/titlemodels.py:14 +msgid "Path" +msgstr "" + +#: models/titlemodels.py:20 +msgid "overwrite the title (html title tag)" +msgstr "" + +#: plugins/file/cms_plugins.py:9 +msgid "File" +msgstr "ფაილი" + +#: plugins/file/models.py:24 plugins/file/migrations/0001_initial.py:17 +#: plugins/flash/models.py:8 plugins/flash/migrations/0001_initial.py:18 +msgid "file" +msgstr "ფაილი" + +#: plugins/file/templates/cms/plugins/file.html:6 +msgid "file missing!" +msgstr "" + +#: plugins/flash/cms_plugins.py:9 +msgid "Flash" +msgstr "" + +#: plugins/flash/models.py:8 +msgid "use swf file" +msgstr "" + +#: plugins/flash/models.py:10 plugins/flash/migrations/0001_initial.py:19 +#: plugins/video/models.py:14 +msgid "height" +msgstr "" + +#: plugins/flash/templates/cms/plugins/flash.html:40 +#: plugins/video/templates/cms/plugins/video.html:60 +msgid "Missing flash plugin. Please download the latest Adobe Flash Player: " +msgstr "" + +#: plugins/flash/templates/cms/plugins/flash.html:42 +#: plugins/video/templates/cms/plugins/video.html:62 +msgid "Get Adobe Flash Player" +msgstr "" + +#: plugins/googlemap/cms_plugins.py:10 +msgid "Google Map" +msgstr "" + +#: plugins/googlemap/models.py:9 +msgid "map title" +msgstr "" + +#: plugins/googlemap/models.py:11 +msgid "address" +msgstr "" + +#: plugins/googlemap/models.py:12 +msgid "zip code" +msgstr "" + +#: plugins/googlemap/models.py:13 +msgid "city" +msgstr "" + +#: plugins/googlemap/models.py:15 +msgid "additional content" +msgstr "" + +#: plugins/googlemap/models.py:16 +msgid "zoom level" +msgstr "" + +#: plugins/googlemap/models.py:18 +msgid "latitude" +msgstr "" + +#: plugins/googlemap/models.py:19 +msgid "Use latitude & longitude to fine tune the map possiton." +msgstr "" + +#: plugins/googlemap/models.py:20 +msgid "longitude" +msgstr "" + +#: plugins/googlemap/models.py:22 +msgid "route planer title" +msgstr "" + +#: plugins/googlemap/models.py:22 +msgid "Calculate your fastest way to here" +msgstr "" + +#: plugins/googlemap/models.py:23 +msgid "route planer" +msgstr "" + +#: plugins/googlemap/models.py:30 +msgid "Map" +msgstr "რუკა" + +#: plugins/googlemap/templates/cms/plugins/googlemap.html:76 +msgid "Your address: " +msgstr "" + +#: plugins/googlemap/templates/cms/plugins/googlemap.html:78 +msgid "Calculate route" +msgstr "" + +#: plugins/inherit/cms_plugins.py:17 +msgid "Inherit Plugins from Page" +msgstr "" + +#: plugins/inherit/forms.py:23 +msgid "Language or Page must be filled out" +msgstr "" + +#: plugins/inherit/models.py:10 +msgid "" +"Choose a page to include its plugins into this placeholder, empty will " +"choose current page" +msgstr "" + +#: plugins/inherit/models.py:11 +msgid "Optional: the language of the plugins you want" +msgstr "" + +#: plugins/link/cms_plugins.py:12 +msgid "Link" +msgstr "ბმული" + +#: plugins/link/models.py:10 plugins/link/migrations/0001_initial.py:18 +#: plugins/link/migrations/0004_larger_link_names.py:11 +#: plugins/link/migrations/0004_larger_link_names.py:17 +#: plugins/snippet/models.py:12 plugins/snippet/migrations/0001_initial.py:17 +msgid "name" +msgstr "სახელი" + +#: plugins/link/models.py:11 plugins/link/migrations/0001_initial.py:16 +#: plugins/picture/models.py:21 plugins/picture/migrations/0001_initial.py:16 +#: plugins/teaser/models.py:19 +msgid "link" +msgstr "ბმული" + +#: plugins/link/models.py:12 +msgid "A link to a page has priority over a text link." +msgstr "" + +#: plugins/link/models.py:13 +msgid "mailto" +msgstr "" + +#: plugins/link/models.py:13 +msgid "An email adress has priority over a text link." +msgstr "" + +#: plugins/picture/cms_plugins.py:9 +msgid "Picture" +msgstr "სურათი" + +#: plugins/picture/models.py:14 +msgid "center" +msgstr "" + +#: plugins/picture/models.py:15 +msgid "left" +msgstr "" + +#: plugins/picture/models.py:16 +msgid "right" +msgstr "" + +#: plugins/picture/models.py:20 plugins/picture/migrations/0001_initial.py:17 +#: plugins/teaser/models.py:10 plugins/video/models.py:11 +msgid "image" +msgstr "გამოსახულება" + +#: plugins/picture/models.py:21 plugins/picture/models.py:22 +msgid "if present image will be clickable" +msgstr "" + +#: plugins/picture/models.py:23 plugins/picture/migrations/0001_initial.py:19 +msgid "alternate text" +msgstr "" + +#: plugins/picture/models.py:23 +msgid "textual description of the image" +msgstr "" + +#: plugins/picture/models.py:24 +msgid "long description" +msgstr "" + +#: plugins/picture/models.py:24 +msgid "additional description of the image" +msgstr "" + +#: plugins/picture/models.py:25 +msgid "side" +msgstr "" + +#: plugins/snippet/cms_plugins.py:12 plugins/snippet/models.py:24 +#: plugins/snippet/models.py:32 +msgid "Snippet" +msgstr "" + +#: plugins/snippet/cms_plugins.py:30 +#, python-format +msgid "Template %(template)s does not exist." +msgstr "" + +#: plugins/snippet/models.py:13 plugins/snippet/migrations/0001_initial.py:18 +msgid "HTML" +msgstr "" + +#: plugins/snippet/models.py:15 +msgid "" +"Enter a template (i.e. \"snippets/plugin_xy.html\") which will be rendered. " +msgstr "" + +#: plugins/snippet/models.py:25 +msgid "Snippets" +msgstr "" + +#: plugins/teaser/cms_plugins.py:8 +msgid "Teaser" +msgstr "" + +#: plugins/teaser/models.py:14 +msgid "If present image will be clickable" +msgstr "" + +#: plugins/teaser/models.py:19 +msgid "If present image will be clickable." +msgstr "" + +#: plugins/teaser/templates/cms/plugins/teaser.html:11 +#: templates/cms/toolbar/toolbar.html:59 +msgid "more" +msgstr "მეტი" + +#: plugins/text/cms_plugins.py:15 +msgid "Text" +msgstr "ტექსტი" + +#: plugins/text/models.py:14 plugins/text/migrations/0001_initial.py:16 +msgid "body" +msgstr "" + +#: plugins/text/templates/cms/plugins/widgets/tinymce.html:30 +msgid "Plugins" +msgstr "" + +#: plugins/text/templates/cms/plugins/widgets/tinymce.html:38 +#: plugins/text/templates/cms/plugins/widgets/tinymce.html:106 +#: plugins/text/templates/cms/plugins/widgets/wymeditor.html:67 +msgid "Please select a plugin type." +msgstr "" + +#: plugins/text/templates/cms/plugins/widgets/tinymce.html:54 +#: plugins/text/templates/cms/plugins/widgets/wymeditor.html:110 +msgid "Edit selected plugin" +msgstr "" + +#: plugins/text/templates/cms/plugins/widgets/tinymce.html:58 +#: plugins/text/templates/cms/plugins/widgets/tinymce.html:124 +#: plugins/text/templates/cms/plugins/widgets/wymeditor.html:85 +msgid "Text editor does not support editing objects." +msgstr "" + +#: plugins/text/templates/cms/plugins/widgets/tinymce.html:63 +#: plugins/text/templates/cms/plugins/widgets/tinymce.html:129 +#: plugins/text/templates/cms/plugins/widgets/wymeditor.html:90 +msgid "No object selected." +msgstr "" + +#: plugins/text/templates/cms/plugins/widgets/tinymce.html:112 +#: plugins/text/templates/cms/plugins/widgets/wymeditor.html:73 +msgid "Text editor does not support inserting objects." +msgstr "" + +#: plugins/text/templates/cms/plugins/widgets/tinymce.html:133 +#: plugins/text/templates/cms/plugins/widgets/wymeditor.html:94 +msgid "Not a plugin object" +msgstr "" + +#: plugins/text/templates/cms/plugins/widgets/wymeditor.html:106 +#: templates/admin/cms/page/widgets/installed_plugins_inc.html:4 +msgid "Available Plugins" +msgstr "" + +#: plugins/text/templates/cms/plugins/widgets/wymeditor.html:109 +msgid "Insert plugin" +msgstr "" + +#: plugins/twitter/cms_plugins.py:10 +#: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:27 +msgid "Twitter" +msgstr "" + +#: plugins/twitter/cms_plugins.py:23 +msgid "Twitter Search" +msgstr "" + +#: plugins/twitter/models.py:7 +msgid "twitter user" +msgstr "" + +#: plugins/twitter/models.py:8 plugins/twitter/models.py:17 +msgid "count" +msgstr "" + +#: plugins/twitter/models.py:8 plugins/twitter/models.py:17 +msgid "Number of entries to display" +msgstr "" + +#: plugins/twitter/models.py:9 +msgid "link hint" +msgstr "" + +#: plugins/twitter/models.py:9 +msgid "If given, the hint is displayed as link to your Twitter profile." +msgstr "" + +#: plugins/twitter/models.py:16 +msgid "query" +msgstr "" + +#: plugins/twitter/models.py:16 +msgid "" +"Example: \"brains AND zombies AND from:umbrella AND to:nemesis\": tweets " +"from the user \"umbrella\" to the user \"nemesis\" that contain the words " +"\"brains\" and \"zombies\"" +msgstr "" + +#: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:12 +msgid "we said," +msgstr "" + +#: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:13 +msgid "we" +msgstr "ჩვენ" + +#: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:14 +msgid "we were" +msgstr "ჩვენ ვიყავით" + +#: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:15 +msgid "we replied to" +msgstr "" + +#: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:16 +msgid "we were checking out" +msgstr "" + +#: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:17 +msgid "loading tweets..." +msgstr "" + +#: plugins/video/cms_plugins.py:10 +msgid "Video" +msgstr "" + +#: plugins/video/cms_plugins.py:42 +msgid "Color Settings" +msgstr "" + +#: plugins/video/models.py:9 +msgid "movie file" +msgstr "" + +#: plugins/video/models.py:9 +msgid "use .flv file or h264 encoded video file" +msgstr "" + +#: plugins/video/models.py:10 +msgid "movie url" +msgstr "" + +#: plugins/video/models.py:10 +msgid "" +"vimeo or youtube video url. Example: " +"http://www.youtube.com/watch?v=-iJ7bs4mTUY" +msgstr "" + +#: plugins/video/models.py:11 +msgid "preview image file" +msgstr "" + +#: plugins/video/models.py:16 +msgid "auto play" +msgstr "" + +#: plugins/video/models.py:17 +msgid "auto hide" +msgstr "" + +#: plugins/video/models.py:18 +msgid "fullscreen" +msgstr "" + +#: plugins/video/models.py:19 +msgid "loop" +msgstr "" + +#: plugins/video/models.py:22 +msgid "background color" +msgstr "" + +#: plugins/video/models.py:22 plugins/video/models.py:23 +#: plugins/video/models.py:24 plugins/video/models.py:25 +#: plugins/video/models.py:26 plugins/video/models.py:27 +#: plugins/video/models.py:28 plugins/video/models.py:29 +msgid "Hexadecimal, eg ff00cc" +msgstr "" + +#: plugins/video/models.py:23 +msgid "text color" +msgstr "ტექსტის ფერი" + +#: plugins/video/models.py:24 +msgid "seekbar color" +msgstr "" + +#: plugins/video/models.py:25 +msgid "seekbar bg color" +msgstr "" + +#: plugins/video/models.py:26 +msgid "loadingbar color" +msgstr "" + +#: plugins/video/models.py:27 +msgid "button out color" +msgstr "" + +#: plugins/video/models.py:28 +msgid "button over color" +msgstr "" + +#: plugins/video/models.py:29 +msgid "button highlight color" +msgstr "" + +#: templates/admin/page_submit_line.html:3 +#: templates/admin/cms/page/change_form.html:274 +#: templates/admin/cms/page/plugin_change_form.html:113 +msgid "Save" +msgstr "შენახვა" + +#: templates/admin/page_submit_line.html:7 +#, python-format +msgid "Delete %(language)s translation" +msgstr "" + +#: templates/admin/page_submit_line.html:11 +msgid "Save as new" +msgstr "" + +#: templates/admin/page_submit_line.html:12 +msgid "Save and add another" +msgstr "" + +#: templates/admin/page_submit_line.html:13 +#: templates/admin/cms/page/change_form.html:275 +msgid "Save and continue editing" +msgstr "" + +#: templates/admin/cms/mail/approvement_required.html:5 +#, python-format +msgid "" +"Page %(page)s may require approvement by you." +msgstr "" + +#: templates/admin/cms/mail/approvement_required.html:8 +msgid "Last changes" +msgstr "ბოლო ცვლილებები" + +#: templates/admin/cms/mail/base.html:55 +#, python-format +msgid "Log in to administration here." +msgstr "" + +#: templates/admin/cms/mail/page_user_change.html:7 +msgid "Username:" +msgstr "" + +#: templates/admin/cms/mail/page_user_change.html:11 +msgid "Password:" +msgstr "პაროლი:" + +#: templates/admin/cms/page/change_form.html:3 +#: templates/admin/cms/page/plugin_forms_history.html:3 +#: templates/admin/cms/page/plugin_forms_ok.html:4 +msgid "Change a page" +msgstr "" + +#: templates/admin/cms/page/change_form.html:64 +#: templates/admin/cms/page/change_list.html:8 +#: templates/admin/cms/page/plugin_change_form.html:67 +#: templates/admin/cms/page/recover_form.html:14 +#: templates/admin/cms/page/revision_form.html:6 +msgid "Home" +msgstr "" + +#: templates/admin/cms/page/change_form.html:73 +msgid "Approve page deletion" +msgstr "" + +#: templates/admin/cms/page/change_form.html:79 +#, python-format +msgid "(requires approvement at %(moderation_level)s level)" +msgstr "" + +#: templates/admin/cms/page/change_form.html:80 +msgid "(you can perform actions on this page directly)" +msgstr "" + +#: templates/admin/cms/page/change_form.html:93 +msgid "Remove delete request" +msgstr "" + +#: templates/admin/cms/page/change_form.html:95 +msgid "Approve delete" +msgstr "" + +#: templates/admin/cms/page/change_form.html:95 +msgid "Approve" +msgstr "" + +#: templates/admin/cms/page/change_form.html:95 +#: templates/admin/cms/page/change_form.html:96 +#: templates/admin/cms/page/change_list_tree.html:12 +msgid "draft" +msgstr "" + +#: templates/admin/cms/page/change_form.html:96 +msgid "Preview" +msgstr "" + +#: templates/admin/cms/page/change_form.html:99 +#: templates/admin/cms/page/revision_form.html:10 +msgid "History" +msgstr "" + +#: templates/admin/cms/page/change_form.html:100 +msgid "View on site" +msgstr "" + +#: templates/admin/cms/page/change_form.html:130 +#: templates/admin/cms/page/plugin_change_form.html:84 +msgid "Please correct the error below." +msgid_plural "Please correct the errors below." +msgstr[0] "" + +#: templates/admin/cms/page/change_form.html:150 +msgid "All permissions" +msgstr "" + +#: templates/admin/cms/page/change_form.html:151 +#: templates/admin/cms/page/change_form.html:163 +#: templates/admin/cms/page/loading.html:2 +msgid "Loading..." +msgstr "" + +#: templates/admin/cms/page/change_form.html:162 +msgid "Page states" +msgstr "" + +#: templates/admin/cms/page/change_form.html:185 +#, python-format +msgid "" +"This page must be moderated at level %(moderation_level)s, post a message " +"for moderator." +msgstr "" + +#: templates/admin/cms/page/change_form.html:187 +msgid "Request approvemet" +msgstr "" + +#: templates/admin/cms/page/change_list.html:3 +msgid "List of pages" +msgstr "გვერდების სია" + +#: templates/admin/cms/page/change_list.html:58 +msgid "Successfully moved" +msgstr "" + +#: templates/admin/cms/page/change_list.html:63 +msgid "An error occured. Please reload the page" +msgstr "" + +#: templates/admin/cms/page/change_list.html:84 +#, python-format +msgid "Recover deleted %(name)s" +msgstr "" + +#: templates/admin/cms/page/change_list.html:87 +#, python-format +msgid "Add %(name)s" +msgstr "" + +#: templates/admin/cms/page/change_list.html:99 +msgid "Pages on:" +msgstr "" + +#: templates/admin/cms/page/change_list.html:116 +msgid "Filter:" +msgstr "" + +#: templates/admin/cms/page/change_list.html:116 +msgid "on" +msgstr "" + +#: templates/admin/cms/page/change_list.html:116 +msgid "off" +msgstr "" + +#: templates/admin/cms/page/change_list.html:118 +msgid "Filter" +msgstr "" + +#: templates/admin/cms/page/change_list_tree.html:8 +msgid "actions" +msgstr "" + +#: templates/admin/cms/page/change_list_tree.html:10 +msgid "moderate" +msgstr "" + +#: templates/admin/cms/page/change_list_tree.html:13 +msgid "published" +msgstr "" + +#: templates/admin/cms/page/change_list_tree.html:15 +msgid "start" +msgstr "" + +#: templates/admin/cms/page/change_list_tree.html:16 +msgid "end" +msgstr "" + +#: templates/admin/cms/page/change_list_tree.html:17 +msgid "restricted" +msgstr "" + +#: templates/admin/cms/page/change_list_tree.html:19 +msgid "last changes" +msgstr "" + +#: templates/admin/cms/page/menu_item.html:5 +msgid "select this page" +msgstr "" + +#: templates/admin/cms/page/menu_item.html:5 +#: templates/admin/cms/page/menu_item.html:6 +msgid "edit this page" +msgstr "ამ გვერდის რედაქტირება" + +#: templates/admin/cms/page/menu_item.html:6 +#: templates/cms/toolbar/toolbar.html:54 +msgid "edit" +msgstr "რედაქტირება" + +#: templates/admin/cms/page/menu_item.html:16 +msgid "insert above" +msgstr "" + +#: templates/admin/cms/page/menu_item.html:17 +msgid "insert below" +msgstr "" + +#: templates/admin/cms/page/menu_item.html:19 +msgid "insert inside" +msgstr "" + +#: templates/admin/cms/page/menu_item.html:23 +msgid "softroot" +msgstr "" + +#: templates/admin/cms/page/menu_item.html:23 +msgid "home" +msgstr "" + +#: templates/admin/cms/page/menu_item.html:26 +#, python-format +msgid "Edit this page in %(language)s " +msgstr "" + +#: templates/admin/cms/page/menu_item.html:33 +msgid "Cut" +msgstr "" + +#: templates/admin/cms/page/menu_item.html:33 +msgid "cut" +msgstr "" + +#: templates/admin/cms/page/menu_item.html:34 +msgid "Copy" +msgstr "" + +#: templates/admin/cms/page/menu_item.html:34 +msgid "copy" +msgstr "" + +#: templates/admin/cms/page/menu_item.html:37 +#: templates/admin/cms/page/menu_item.html:41 +msgid "Add Child" +msgstr "" + +#: templates/admin/cms/page/menu_item.html:37 +#: templates/admin/cms/page/menu_item.html:41 +msgid "add" +msgstr "" + +#: templates/admin/cms/page/menu_item.html:65 +msgid "Approve directly" +msgstr "" + +#: templates/admin/cms/page/menu_item.html:67 +#: templates/admin/cms/page/menu_item.html:79 +#: templates/admin/cms/page/menu_item.html:81 +msgid "view" +msgstr "" + +#: templates/admin/cms/page/menu_item.html:72 +msgid "Unpublish" +msgstr "" + +#: templates/admin/cms/page/menu_item.html:79 +msgid "View on page" +msgstr "" + +#: templates/admin/cms/page/moderation_messages.html:4 +msgid "Action" +msgstr "" + +#: templates/admin/cms/page/moderation_messages.html:5 +msgid "Created" +msgstr "" + +#: templates/admin/cms/page/moderation_messages.html:7 +msgid "Message" +msgstr "" + +#: templates/admin/cms/page/permissions.html:7 +msgid "Group" +msgstr "ჯგუფი" + +#: templates/admin/cms/page/permissions.html:8 +msgid "Can edit" +msgstr "" + +#: templates/admin/cms/page/permissions.html:9 +msgid "Can add" +msgstr "" + +#: templates/admin/cms/page/permissions.html:10 +msgid "Can delete" +msgstr "" + +#: templates/admin/cms/page/permissions.html:11 +msgid "Can publish" +msgstr "" + +#: templates/admin/cms/page/permissions.html:12 +msgid "Can change permissions" +msgstr "" + +#: templates/admin/cms/page/permissions.html:13 +msgid "Can move" +msgstr "" + +#: templates/admin/cms/page/permissions.html:14 +msgid "Can view" +msgstr "" + +#: templates/admin/cms/page/permissions.html:21 +#: templates/admin/cms/page/permissions.html:22 +msgid "(global)" +msgstr "" + +#: templates/admin/cms/page/permissions.html:26 +msgid "(current)" +msgstr "" + +#: templates/admin/cms/page/permissions.html:43 +msgid "All" +msgstr "ყველა" + +#: templates/admin/cms/page/permissions.html:51 +msgid "Page doesn't inherit any permissions." +msgstr "" + +#: templates/admin/cms/page/plugin_change_form.html:114 +#: templates/cms/toolbar/toolbar.html:24 +msgid "Cancel" +msgstr "" + +#: templates/admin/cms/page/plugin_forms_history.html:9 +msgid "An old revision of a plugin can not be saved!" +msgstr "" + +#: templates/admin/cms/page/plugin_forms_ok.html:21 +msgid "Plugin saved successfully." +msgstr "" + +#: templates/admin/cms/page/recover_form.html:17 +#, python-format +msgid "Recover deleted %(verbose_name)s" +msgstr "" + +#: templates/admin/cms/page/recover_form.html:24 +msgid "Press the save button below to recover this version of the object." +msgstr "" + +#: templates/admin/cms/page/revision_form.html:11 +#, python-format +msgid "Revert %(verbose_name)s" +msgstr "" + +#: templates/admin/cms/page/revision_form.html:24 +msgid "Press the save button below to revert to this version of the object." +msgstr "" + +#: templates/admin/cms/page/dialog/copy.html:4 +msgid "Copy options" +msgstr "" + +#: templates/admin/cms/page/dialog/copy.html:6 +msgid "Choose copy options" +msgstr "" + +#: templates/admin/cms/page/widgets/installed_plugins_inc.html:7 +msgid "Generic" +msgstr "" + +#: templates/admin/cms/page/widgets/installed_plugins_inc.html:15 +msgid "Add Plugin" +msgstr "" + +#: templates/admin/cms/page/widgets/installed_plugins_inc.html:18 +msgid "From Language" +msgstr "ენიდან" + +#: templates/admin/cms/page/widgets/installed_plugins_inc.html:25 +msgid "Copy Plugins" +msgstr "" + +#: templates/admin/cms/page/widgets/plugin_editor.html:12 +msgid "You must save the page first to add plugins." +msgstr "" + +#: templates/admin/cms/page/widgets/plugin_editor.html:15 +msgid "No Plugin selected. Selected one on the left side" +msgstr "" + +#: templates/admin/cms/page/widgets/plugin_editor.html:17 +msgid "No Plugins present. Add a plugin to this placeholder-slot." +msgstr "" + +#: templates/cms/toolbar/placeholder.html:32 +msgid "Available plugins" +msgstr "" + +#: templates/cms/toolbar/toolbar.html:22 +msgid "The selected element can not be moved to the desired location." +msgstr "" + +#: templates/cms/toolbar/toolbar.html:23 +msgid "Are you sure you want to delete this plugin?" +msgstr "" + +#: templates/cms/toolbar/toolbar.html:55 +msgid "up" +msgstr "" + +#: templates/cms/toolbar/toolbar.html:56 +msgid "down" +msgstr "" + +#: templates/cms/toolbar/toolbar.html:61 +msgid "Move to placeholder" +msgstr "" + +#: templates/cms/toolbar/items/login.html:5 +msgid "Username" +msgstr "" + +#: templates/cms/toolbar/items/login.html:10 +#: templates/cms/toolbar/items/login.html:12 +msgid "Login" +msgstr "" + +#: templates/cms/toolbar/items/status.html:2 +msgid "Status" +msgstr "" + +#: templates/cms/toolbar/items/switcher.html:4 +msgid "Switch on/off" +msgstr "" + +#: templatetags/cms_admin.py:86 +#, python-format +msgid "%(icon)s" +msgstr "" + +#: templatetags/cms_admin.py:99 +msgid "Unbind page moderation" +msgstr "" + +#: templatetags/cms_admin.py:100 +msgid "Unbind children moderation" +msgstr "" + +#: templatetags/cms_admin.py:101 +msgid "Unbind descendants moderation" +msgstr "" + +#: templatetags/cms_tags.py:78 +#, python-format +msgid "Page not found on %(domain)s" +msgstr "" + +#: templatetags/cms_tags.py:79 +#, python-format +msgid "" +"A template tag couldn't find the page with lookup arguments `%(page_lookup)s\n" +"`. The URL of the request was: http://%(host)s%(path)s" +msgstr "" + +#: utils/mail.py:38 +msgid "CMS - your user account was created." +msgstr "" + +#: utils/mail.py:40 +msgid "CMS - your user account was changed." +msgstr "" + +#: utils/moderator.py:83 +msgid "parent first" +msgstr "" + +#: utils/moderator.py:90 +msgid "approve" +msgstr "" + +#: utils/moderator.py:251 +#, python-format +msgid "CMS - Page %s requires approvement." +msgstr "" + +#~ msgid "move" +#~ msgstr "move request" + +#~ msgid "sidebar column" +#~ msgstr "background color" + +#~ msgid "fgcolor" +#~ msgstr "foreground color" + +#~ msgid "Wanted language has not been translated yet." +#~ msgstr "Requested language has not been translated yet." diff --git a/cms/locale/ku_IQ/LC_MESSAGES/django.po b/cms/locale/ku_IQ/LC_MESSAGES/django.po new file mode 100644 index 00000000000..2b17aafa49d --- /dev/null +++ b/cms/locale/ku_IQ/LC_MESSAGES/django.po @@ -0,0 +1,1835 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# , 2012. +msgid "" +msgstr "" +"Project-Id-Version: django-cms\n" +"Report-Msgid-Bugs-To: https://github.com/divio/django-cms/issues\n" +"POT-Creation-Date: 2011-08-14 09:47-0500\n" +"PO-Revision-Date: 2012-03-29 08:35+0000\n" +"Last-Translator: muhammad \n" +"Language-Team: divio.ch \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ku_IQ\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"X-Poedit-Country: SWITZERLAND\n" +"X-Poedit-Language: English\n" +"X-Poedit-SourceCharset: utf-8\n" + +#: cms_toolbar.py:68 +msgid "Edit mode" +msgstr "دۆخی دەستکاری کردن" + +#: cms_toolbar.py:77 +msgid "django CMS" +msgstr "django CMS" + +#: cms_toolbar.py:108 templates/admin/cms/page/menu_item.html:73 +msgid "Publish" +msgstr "بڵاوکردنەوە" + +#: cms_toolbar.py:112 +msgid "Request Approval" +msgstr "داواکاری پەسەندکردن" + +#: cms_toolbar.py:127 cms_toolbar.py:136 +msgid "Logout" +msgstr "چوونە دەرەوە" + +#: cms_toolbar.py:152 +msgid "Template" +msgstr "قاڵب" + +#: cms_toolbar.py:160 +msgid "Move/add Pages" +msgstr "گواستنەوە \\ زیادکردن پەڕەکان" + +#: cms_toolbar.py:165 +msgid "Add child page" +msgstr "زیادکردنی پەرەی نەوە" + +#: cms_toolbar.py:171 +msgid "Add sibling page" +msgstr "Add sibling page" + +#: cms_toolbar.py:177 +msgid "Delete Page" +msgstr "داواکاری سڕینەوە" + +#: cms_toolbar.py:180 models/moderatormodels.py:45 +#: templates/admin/cms/page/permissions.html:5 +msgid "Page" +msgstr "پەڕە" + +#: cms_toolbar.py:189 +msgid "Site Administration" +msgstr "بەڕێوەبەرایەتی ماڵپەر" + +#: cms_toolbar.py:195 +msgid "Page Settings" +msgstr "ڕێکخستنەکانی پەرە" + +#: cms_toolbar.py:201 +msgid "View History" +msgstr "پیشاندانی وێنە" + +#: cms_toolbar.py:205 +msgid "Admin" +msgstr "بەڕێوەبەر" + +#: plugin_base.py:65 +msgid "Advanced options" +msgstr "هەڵبژاردنە پێشکەوتووەکان" + +#: admin/forms.py:59 +msgid "Title" +msgstr "ناونیشان" + +#: admin/forms.py:60 +msgid "The default title" +msgstr "ناونیشانی بەردەوام" + +#: admin/forms.py:61 +msgid "Slug" +msgstr " بەستەر" + +#: admin/forms.py:62 +msgid "The part of the title that is used in the URL" +msgstr "ئەو بەشەی ناونیشان کە لە بەستەردا بەکاردێت" + +#: admin/forms.py:63 +msgid "Language" +msgstr "زمان" + +#: admin/forms.py:64 +msgid "The current language of the content fields." +msgstr "زمانی ئێستای پێکهاتەی بەشەکان" + +#: admin/forms.py:117 +msgid "Another page with this slug already exists" +msgstr "پەڕەیەکی تر هەیە بە هەمان بەستەر" + +#: admin/forms.py:135 +msgid "Menu Title" +msgstr "ناونیشانی پێڕست" + +#: admin/forms.py:136 +msgid "Overwrite what is displayed in the menu" +msgstr "ئەو نووسینانەی پیشان ئەدرێن لە پێڕست" + +#: admin/forms.py:137 +msgid "Page Title" +msgstr "ناونیشانی پەڕە" + +#: admin/forms.py:138 +msgid "" +"Overwrites what is displayed at the top of your browser or in bookmarks" +msgstr "ئەو نووسینانەی پیشان ئەدرێن لە بەشی سەرەوەی پەڕە یا لە نیشانەکاندا" + +#: admin/forms.py:139 +msgid "Application" +msgstr "بەرنامە" + +#: admin/forms.py:141 +msgid "Hook application to this page." +msgstr "بەستەری بەرنامە بۆ ئەم پەڕەیە" + +#: admin/forms.py:142 +msgid "Overwrite URL" +msgstr "ئەدرەسی نووسین" + +#: admin/forms.py:143 +msgid "Keep this field empty if standard path should be used." +msgstr "ئەم خانەیە بە بەتاڵی جێبهێڵە گەر پێویستە ڕێرەوی ئاسایی بەکاربێت " + +#: admin/forms.py:149 +msgid "Redirect" +msgstr " ئارەستەکردن" + +#: admin/forms.py:150 +msgid "Redirects to this URL." +msgstr "ئارەستەکردن بۆ ئەم ئەدرەسە" + +#: admin/forms.py:152 +msgid "A description of the page sometimes used by search engines." +msgstr "پێناسەی پەڕە - هەندێک جار لە لایەن بزوێنەری گەڕانەوە بەکاردێت" + +#: admin/forms.py:154 +msgid "A list of comma seperated keywords sometimes used by search engines." +msgstr "خشتەی ئەو کۆمایەنەی کا کلیلە ووشەکان لەیەکتر جیا دەکاتەوە - هەندێک جار لە لایەن بزوێنەری گەڕانەوە بەکاردێت - " + +#: admin/forms.py:170 +msgid "A page with this reverse URL id exists already." +msgstr "پەڕەیەک بە هەمان ناسەرەوەی ئەدرەس بوونی هەیە" + +#: admin/forms.py:178 +msgid "Invalid URL, use /my/url format." +msgstr "ئەدرەسێکی نەشیاو " + +#: admin/forms.py:181 +#, python-format +msgid "Page with redirect url %r already exist" +msgstr " بوونی نیەurl %r پەرە لەگەڵ ئاڕاستەکەری " + +#: admin/forms.py:191 admin/forms.py:192 migrations/0001_initial.py:41 +#: models/permissionmodels.py:16 +msgid "user" +msgstr "بەکارهێنەر" + +#: admin/forms.py:216 +msgid "" +"Add page permission requires also access to children, or descendants, " +"otherwise added page can't be changed by its creator." +msgstr "زیادکردنی مۆڵەت بۆ پەڕە پێویستی بە گەشتن بە لقەکان هەیە بە پێچەوانەوە پەڕەی زیادکراو ناگۆڕدرێت لە لایەن دروستەکەرەکەیەوە" + +#: admin/forms.py:221 +msgid "Add page permission also requires edit page permission." +msgstr "زیادکردنی مۆڵەت بۆ پەڕە پێویستی بە مۆڵەتی دەستکاریکردنی پەڕە هەیە" + +#: admin/forms.py:248 +msgid "can_view" +msgstr "توانای پشاندان" + +#: admin/forms.py:260 +msgid "Please select user or group first." +msgstr "تکایە بەکارهێەر یان کۆمەڵەیەک دەستنیشان بکە " + +#: admin/forms.py:267 admin/forms.py:274 admin/forms.py:278 +#: templates/admin/cms/page/change_form.html:67 +#: templates/admin/cms/page/plugin_change_form.html:70 +#: templates/cms/toolbar/placeholder.html:25 +msgid "Add" +msgstr "زیادکردن" + +#: admin/forms.py:268 admin/forms.py:275 admin/forms.py:279 +msgid "Change" +msgstr "گۆڕین" + +#: admin/forms.py:269 admin/forms.py:276 admin/forms.py:280 +#: templates/admin/page_submit_line.html:5 +#: templates/admin/cms/page/menu_item.html:44 +msgid "Delete" +msgstr "سڕینەوە" + +#: admin/forms.py:270 +msgid "Recover (any) pages" +msgstr "گەراندەوەی پەڕەکان - بەدەست خستنەوەی پەڕەکان\n " + +#: admin/forms.py:297 +msgid "Notify user" +msgstr "ئاگادار کردنەوەی بەکارهێنەر" + +#: admin/forms.py:298 +msgid "" +"Send email notification to user about username or password change. Requires " +"user email." +msgstr "پەیامی ئاگادارکردنەوە بنێرە بۆ بەکارهێنەر دەربارەی گۆڕینی ناوی بەکارهێنەر یان تێپەڕە ووشەکەی - پێویستی بە ئەدرەسی بەکارهێنەر هەیە" + +#: admin/forms.py:318 +msgid "New password" +msgstr "تێپەڕە ووشەی نوێ" + +#: admin/forms.py:320 +msgid "New password confirmation" +msgstr "دڵنیاکردنەوەی تێپەڕە ووشە" + +#: admin/forms.py:339 +msgid "Email notification requires valid email address." +msgstr "ئاگادارکردنەوە لە ڕێگەی پەیام پێویستی با ئەدرەسەکی شیاو هەیە" + +#: admin/forms.py:341 +msgid "" +"The permission to add new pages requires the permission to change pages!" +msgstr "مۆڵەتی زیادکردنی پەڕەی نوێ پێویستی بە مۆڵەتی دەستکاریکردنی پەڕەکان هەیە" + +#: admin/forms.py:343 +msgid "" +"The permission to add new users requires the permission to change users!" +msgstr "مۆڵەی زیادکردنی بەکارهینەری نوێ پێویستی بە مۆڵەتی دەستکاریکردنی بەکارهێنەرەکان هەیە" + +#: admin/forms.py:345 +msgid "To add permissions you also need to edit them!" +msgstr "بۆ زیادکردنی مۆڵەت پیویستیت بە مۆڵەتی دەستکاریکردنی مؤڵەتەکان هەیە " + +#: admin/pageadmin.py:97 +msgid "Basic Settings" +msgstr "ڕێکخستنە بنچینەیەکان" + +#: admin/pageadmin.py:100 +msgid "Note: This page reloads if you change the selection. Save it first." +msgstr "تێبینی: ئەم پەڕەیە باردەکرێتەوە ئەگەر گۆڕانکاری بکەیت لە دەستنیشانکراوەکان. سەرەتا پاشەکەوتی بکە " + +#: admin/pageadmin.py:102 admin/pageadmin.py:154 +msgid "Hidden" +msgstr "شاردراوەکان" + +#: admin/pageadmin.py:106 +msgid "Advanced Settings" +msgstr "ڕێکخستنە پێشکەوتووەکان" + +#: admin/pageadmin.py:113 +msgid "SEO Settings" +msgstr "SEO ڕێکخستنیەکانی" + +#: admin/pageadmin.py:299 +msgid "You have no permission to change the template" +msgstr "تۆ مۆڵەت پێدراو نیت بۆ گۆڕانکاری کردن لە قاڵب" + +#: admin/pageadmin.py:485 +msgid "higher" +msgstr "بەرزترین" + +#: admin/pageadmin.py:655 +msgid "Database error" +msgstr "هەڵە لە بنکەی زانیاری" + +#: admin/pageadmin.py:855 +msgid "Page was successfully approved." +msgstr "پەڕە بە سەرکەوتووی پەسەند کرا " + +#: admin/pageadmin.py:927 +#, python-format +msgid "%(name)s object with primary key %(key)r does not exist." +msgstr "%(name)s object with primary key %(key)r does not exist." + +#: admin/pageadmin.py:933 +msgid "There only exists one translation for this page" +msgstr "تاکە وەرگێڕان بۆ ئەم پەڕەیە" + +#: admin/pageadmin.py:969 +#, python-format +msgid "Title and plugins with language %(language)s was deleted" +msgstr "سڕدرانەوە %(language)s ناونیسان و پێوەکراوەکانی زمان" + +#: admin/pageadmin.py:991 +msgid "Are you sure?" +msgstr "دڵنیایت؟" + +#: admin/pageadmin.py:1052 +msgid "You do not have permission to publish this page" +msgstr "تۆ مؤڵەت نەدراویت بۆ بڵاوکردنەوەی ئەم پەڕەیە" + +#: admin/pageadmin.py:1066 +msgid "You do not have permission to change this page's in_navigation status" +msgstr "تۆ مۆڵەت پێدراو نیت بۆ گۆڕانکاری کردن لەم پەڕەیەدا لە وێبگەڕدا" + +#: admin/pageadmin.py:1079 +msgid "You have no permission to add a plugin" +msgstr "مۆڵەت پێدراو نیت بۆ زیادکردنی پێوەکراو" + +#: admin/pageadmin.py:1126 admin/pageadmin.py:1158 +msgid "Language must be set to a supported language!" +msgstr "زمان پیویستە بگۆڕدرەت بۆ زمانەکی پشتیگری کراو" + +#: admin/pageadmin.py:1138 +#, python-format +msgid "%(plugin_name)s plugin added to %(placeholder)s" +msgstr "%(placeholder)sپێوەکراوەکان زیادکراوە بۆ%(plugin_name)s " + +#: admin/pageadmin.py:1156 +msgid "You do not have permission to change this page" +msgstr "تۆ مۆڵەت پێدراو نیت بۆ گۆڕانکاری کردن لەم پەڕەیە" + +#: admin/pageadmin.py:1160 +msgid "Language must be different than the copied language!" +msgstr "زمانەکە پێویستە جیاواز بێت لە زمانە لەبەرگیراوەکە" + +#: admin/pageadmin.py:1166 +msgid "You do not have permission to add plugins" +msgstr "مۆڵەت نەدراویت بۆ زیادکردنی پێوەکراو" + +#: admin/pageadmin.py:1173 +#, python-format +msgid "Copied %(language)s plugins to %(placeholder)s" +msgstr " %(placeholder)s پێوەکراوەکان بۆ%(language)sلەبەرگیرایەوە" + +#: admin/pageadmin.py:1186 admin/pageadmin.py:1294 admin/pageadmin.py:1316 +msgid "You have no permission to change this page" +msgstr "مۆڵەت پێدراو نیت بۆ گۆڕانکاری کردن لە پەڕە" + +#: admin/pageadmin.py:1221 +msgid "You have no permission to edit a plugin" +msgstr "مۆڵەت پێدراو نیت بۆ دەستکاری کردنی پێوەکراو" + +#: admin/pageadmin.py:1256 +#, python-format +msgid "" +"%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" +msgstr "%(position)s لە %(placeholder)sپێوەکراوەکان دەستکاریکراوە لە شوێنی%(plugin_name)s " + +#: admin/pageadmin.py:1311 +msgid "You have no permission to move a plugin" +msgstr "مۆڵەت پێدراو نیت بۆ گواستنەوەی پێوەکراو" + +#: admin/pageadmin.py:1329 +msgid "Plugins where moved" +msgstr "ئەو پێوەکراوانەی گوازراونەتەوەوە" + +#: admin/pageadmin.py:1343 +msgid "You have no permission to remove a plugin" +msgstr "مۆڵەت پێدراو نیت بۆ سڕینەوەی پێوەکراو" + +#: admin/pageadmin.py:1361 admin/placeholderadmin.py:292 +#, python-format +msgid "" +"%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " +"deleted." +msgstr " سڕدراوەتەوە%(position)s in %(placeholder)s پێوەکراو لە شوێنی%(plugin_name)s " + +#: admin/permissionadmin.py:72 +msgid "View restriction" +msgstr "پیشاندانی سنوورەکان" + +#: admin/permissionadmin.py:73 +msgid "View restrictions" +msgstr "پیشاندانی سنوورەکان" + +#: admin/permissionadmin.py:133 models/permissionmodels.py:75 +msgid "Page permissions" +msgstr "مؤڵەتەکانی پەڕە" + +#: admin/permissionadmin.py:134 +msgid "User & Group permissions" +msgstr "مؤڵەتەکانی بەکارهێنەرو کۆمەڵە" + +#: admin/permissionadmin.py:135 +msgid "Page permissions management" +msgstr "بەڕێوەبەرایەتی مۆڵەتەکانی پەڕە " + +#: admin/placeholderadmin.py:150 admin/placeholderadmin.py:191 +msgid "You don't have permission to add content here." +msgstr "مۆلەت پیدراو نیت بۆ زیادکردنی ناوەڕۆک لێرەدا" + +#: admin/placeholderadmin.py:187 +msgid "You don't have permission to add plugins" +msgstr "مۆڵەت نەدراویت بۆ زیادکردنی پێوەکراوەکان" + +#: admin/placeholderadmin.py:288 +msgid "You don't have permission to delete a plugin" +msgstr "مۆڵەت نەدراویت بۆ سڕینەوەی پێوەکراو" + +#: admin/useradmin.py:25 +msgid "User details" +msgstr "زانیاری بەکارهێنەر" + +#: admin/useradmin.py:26 +msgid "Groups" +msgstr "کۆمەڵەکان" + +#: admin/useradmin.py:36 templates/cms/toolbar/items/login.html:7 +msgid "Password" +msgstr "تێپەڕە ووشە" + +#: admin/dialog/forms.py:9 +msgid "Copy permissions" +msgstr "مؤڵەتی لەبەرگرتنەوە" + +#: admin/dialog/forms.py:16 +msgid "Copy moderation" +msgstr "میانڕەوکردنی لەبەرگرتنەوە" + +#: conf/patch.py:28 +msgid "Inherit the template of the nearest ancestor" +msgstr "بە میرات وەرگرتن لە نزیکترین باوان" + +#: forms/fields.py:19 +msgid "Select a valid site" +msgstr "مالپەرێکی شیاو دەستنیشان بکە" + +#: forms/fields.py:20 +msgid "Select a valid page" +msgstr "پەرەیەکی شیاو دەسنیشان بکە" + +#: forms/widgets.py:173 +msgid "Add Another" +msgstr "زیادکردنی یەکێکی تر" + +#: migrations/0001_initial.py:12 migrations/0001_initial.py:24 +#: migrations/0001_initial.py:75 migrations/0003_remove_placeholder.py:18 +#: migrations/0010_5char_language.py:12 migrations/0010_5char_language.py:15 +#: migrations/0010_5char_language.py:22 migrations/0010_5char_language.py:25 +#: models/pluginmodel.py:79 models/titlemodels.py:10 +#: plugins/inherit/models.py:11 +msgid "language" +msgstr "زمان" + +#: migrations/0001_initial.py:13 migrations/0001_initial.py:26 +#: migrations/0001_initial.py:40 migrations/0001_initial.py:78 +#: migrations/0003_remove_placeholder.py:21 models/pagemodel.py:104 +#: models/permissionmodels.py:69 models/titlemodels.py:21 +#: plugins/inherit/forms.py:9 plugins/link/forms.py:9 +#: plugins/link/models.py:12 plugins/link/migrations/0001_initial.py:19 +#: plugins/picture/models.py:22 plugins/teaser/models.py:13 +msgid "page" +msgstr "پەڕە" + +#: migrations/0001_initial.py:14 migrations/0004_textobjects.py:12 +#: migrations/0004_textobjects.py:22 models/pluginmodel.py:78 +msgid "position" +msgstr "شوێن" + +#: migrations/0001_initial.py:15 migrations/0001_initial.py:29 +#: models/pluginmodel.py:81 models/titlemodels.py:22 +msgid "creation date" +msgstr "رۆژی دروستکردن" + +#: migrations/0001_initial.py:16 migrations/0001_initial.py:77 +#: migrations/0003_remove_placeholder.py:20 models/placeholdermodel.py:13 +msgid "slot" +msgstr "قلیش" + +#: migrations/0001_initial.py:18 models/pluginmodel.py:80 +msgid "plugin_name" +msgstr "ناوی پێوەکراو" + +#: migrations/0001_initial.py:25 migrations/0011_title_overwrites.py:12 +#: migrations/0011_title_overwrites.py:15 models/titlemodels.py:11 +#: models/titlemodels.py:12 models/titlemodels.py:20 plugins/file/models.py:25 +#: plugins/file/migrations/0001_initial.py:18 plugins/teaser/models.py:9 +#: plugins/twitter/models.py:6 plugins/twitter/models.py:15 +#: templates/admin/cms/page/change_list_tree.html:6 +msgid "title" +msgstr "ناونیشان" + +#: migrations/0001_initial.py:28 +msgid "path" +msgstr "ڕێڕەو" + +#: migrations/0001_initial.py:30 models/titlemodels.py:13 +msgid "slug" +msgstr "بەستەر" + +#: migrations/0001_initial.py:36 +msgid "everybody" +msgstr "هەمووان" + +#: migrations/0001_initial.py:37 models/permissionmodels.py:20 +msgid "can edit" +msgstr "توانای دەستکاری بکرێت" + +#: migrations/0001_initial.py:38 models/permissionmodels.py:17 +msgid "group" +msgstr "کۆمەڵە" + +#: migrations/0001_initial.py:39 models/permissionmodels.py:24 +msgid "can publish" +msgstr "توانای بڵاوکردنەوە" + +#: migrations/0001_initial.py:42 +msgid "type" +msgstr "جۆر" + +#: migrations/0001_initial.py:44 +msgid "can change soft-root" +msgstr "توانای گۆڕینی ڕەگ " + +#: migrations/0001_initial.py:50 migrations/0006_apphook.py:34 +#: migrations/0006_apphook.py:62 +msgid "status" +msgstr "دۆخ" + +#: migrations/0001_initial.py:53 +msgid "navigation extenders" +msgstr "درێژکەرەوەی وێبگەڕ" + +#: migrations/0001_initial.py:54 migrations/0006_apphook.py:12 +#: migrations/0006_apphook.py:46 models/titlemodels.py:15 +msgid "has url overwrite" +msgstr "ئەدرەسێکی نووسراوی هەیە" + +#: migrations/0001_initial.py:55 migrations/0006_apphook.py:49 +msgid "url overwrite" +msgstr "ئەدرەسەکە نووسراوە" + +#: migrations/0001_initial.py:57 +msgid "author" +msgstr "نووسەر" + +#: migrations/0001_initial.py:58 migrations/0006_apphook.py:37 +msgid "reverse url id" +msgstr "گەڕاندنەوەی ناسەرەوەی ئەدرەس" + +#: migrations/0001_initial.py:59 models/pagemodel.py:84 +msgid "login required" +msgstr "چوونە ژوورەوەی پێویستە" + +#: migrations/0001_initial.py:60 models/pagemodel.py:69 +msgid "soft root" +msgstr "ڕەگ" + +#: migrations/0001_initial.py:63 models/pagemodel.py:67 +msgid "publication end date" +msgstr "دواڕۆژی بڵاوکردنەوە" + +#: migrations/0001_initial.py:64 models/pagemodel.py:74 +#: plugins/snippet/models.py:14 +msgid "template" +msgstr "قاڵب" + +#: migrations/0001_initial.py:66 models/pagemodel.py:66 +msgid "publication date" +msgstr "ڕۆژی بڵاوکردنەوە" + +#: migrations/0001_initial.py:67 models/pagemodel.py:68 +#: templates/admin/cms/page/change_list_tree.html:9 +msgid "in navigation" +msgstr "لە وێبگەڕدایە" + +#: migrations/0006_apphook.py:15 migrations/0007_apphook_longer.py:11 +#: migrations/0007_apphook_longer.py:17 models/titlemodels.py:16 +msgid "application" +msgstr "بەرنامە" + +#: migrations/0006_apphook.py:65 models/pagemodel.py:70 +msgid "id" +msgstr "ناسەرەوە" + +#: migrations/0008_redirects.py:11 models/titlemodels.py:17 +msgid "redirect" +msgstr "ئاڕاستەکردن" + +#: migrations/0009_added_meta_fields.py:12 models/titlemodels.py:19 +msgid "keywords" +msgstr "کلیلە ووشەکان" + +#: migrations/0009_added_meta_fields.py:15 models/titlemodels.py:18 +#: plugins/teaser/models.py:20 +msgid "description" +msgstr "پێناسە" + +#: models/moderatormodels.py:25 +msgid "Current page" +msgstr "پەڕەی هەنووکەیی" + +#: models/moderatormodels.py:26 +msgid "Page children (immediate)" +msgstr "(immediate)پەڕە نەوەکان" + +#: models/moderatormodels.py:27 +msgid "Page and children (immediate)" +msgstr "پەڕەو نەوەکان" + +#: models/moderatormodels.py:28 +msgid "Page descendants" +msgstr "لقەکانی پەرە" + +#: models/moderatormodels.py:29 +msgid "Page and descendants" +msgstr "پەڕە و لقەکان" + +#: models/moderatormodels.py:46 +#: templates/admin/cms/page/moderation_messages.html:6 +#: templates/admin/cms/page/permissions.html:6 +msgid "User" +msgstr "بەکارهێنەر" + +#: models/moderatormodels.py:50 templatetags/cms_admin.py:99 +msgid "Moderate page" +msgstr "پەرەی میانڕەو" + +#: models/moderatormodels.py:51 templatetags/cms_admin.py:100 +msgid "Moderate children" +msgstr "نەوەی میانڕەو" + +#: models/moderatormodels.py:52 templatetags/cms_admin.py:101 +msgid "Moderate descendants" +msgstr "لقە میانڕەوەکان" + +#: models/moderatormodels.py:55 models/moderatormodels.py:56 +msgid "PageModerator" +msgstr "میانڕەوکەری پەرە" + +#: models/moderatormodels.py:99 +msgid "created" +msgstr "دروستکراوە" + +#: models/moderatormodels.py:100 models/pagemodel.py:44 +msgid "changed" +msgstr "گۆڕدراوە" + +#: models/moderatormodels.py:101 +msgid "delete req." +msgstr "داواکردی سڕینەوە" + +#: models/moderatormodels.py:102 +msgid "move req." +msgstr "داواکردنی گواستنەوە" + +#: models/moderatormodels.py:103 +msgid "publish req." +msgstr "داواکردنی بڵاوکردنەوە" + +#: models/moderatormodels.py:104 +msgid "unpublish req." +msgstr "داواکردنی بڵاونەکردنەوە" + +#: models/moderatormodels.py:105 models/pagemodel.py:47 +msgid "approved" +msgstr "پەسەندکراو" + +#: models/moderatormodels.py:117 +msgid "Page moderator state" +msgstr "دۆخی میانرەوکردنی پەڕە" + +#: models/moderatormodels.py:118 +msgid "Page moderator states" +msgstr "دۆخەکانی میانڕەوکردنی پەرە" + +#: models/pagemodel.py:45 +msgid "req. app." +msgstr "پێویستی بە ڕەزامەندی هەیە" + +#: models/pagemodel.py:46 templates/admin/cms/page/menu_item.html:44 +#: templates/cms/toolbar/toolbar.html:57 utils/moderator.py:90 +msgid "delete" +msgstr "سڕینەوە" + +#: models/pagemodel.py:48 +msgid "app. par." +msgstr "app. par." + +#: models/pagemodel.py:52 +msgid "for logged in users only" +msgstr "تەنها بۆ بەکارهێنەرە هاتووە ژوورەکانە " + +#: models/pagemodel.py:53 +msgid "for anonymous users only" +msgstr "تەنها بۆ بەکارهێنەرە نە ناسراوەکانە" + +#: models/pagemodel.py:61 +msgid "created by" +msgstr "دروستکراوە لەلایەن" + +#: models/pagemodel.py:62 templates/admin/cms/page/change_list_tree.html:20 +msgid "changed by" +msgstr "گۆڕدراوە لەلایەن" + +#: models/pagemodel.py:66 +msgid "" +"When the page should go live. Status must be \"Published\" for page to go " +"live." +msgstr "بۆ ئەوەی پەڕە زیندوو بێت .پێویستە دۆخەکە \"زیندووکراو\" بێت بۆ پەڕەکە" + +#: models/pagemodel.py:67 +msgid "When to expire the page. Leave empty to never expire." +msgstr " کاتی بەسەرچوونی پەڕە . بە بەتاڵی جێی بهێڵە بۆ ئەوەی بەسەرنەچێت " + +#: models/pagemodel.py:69 +msgid "All ancestors will not be displayed in the navigation" +msgstr "هەموو پێشینەکان پیشان نادرێن لە ڕێنیشاندەری وێبگەڕەکەدا" + +#: models/pagemodel.py:70 +msgid "" +"An unique identifier that is used with the page_url templatetag for linking " +"to this page" +msgstr "ناسەرەوەیەکی تاک و تەنها کە بەکاردێت لەگەڵ ئەدرەسی قاڵبی پەڕە بۆ بەستنەوەی بەم پەڕەیەوە" + +#: models/pagemodel.py:71 +msgid "attached menu" +msgstr "پێڕستی هاوپێچکراو" + +#: models/pagemodel.py:72 +msgid "is published" +msgstr "بڵاوکردنەوە" + +#: models/pagemodel.py:74 +msgid "The template used to render the content." +msgstr "ئەو قاڵبەی بەکاردێت بۆ نەخشاندنی ناوەڕۆک " + +#: models/pagemodel.py:75 +msgid "The site the page is accessible at." +msgstr "شوێنی پەڕەکە ببینرێت لە. " + +#: models/pagemodel.py:75 +msgid "site" +msgstr "ماڵپەر" + +#: models/pagemodel.py:77 +msgid "moderator state" +msgstr "دۆخی میانڕەو" + +#: models/pagemodel.py:85 +msgid "menu visibility" +msgstr "دەرکەوتنی پێڕست" + +#: models/pagemodel.py:85 +msgid "limit when this page is visible in the menu" +msgstr "سنووردارکردن لە کاتێکا ئەم پەرەیە دەرکەوتبێت لە پێڕستدا" + +#: models/pagemodel.py:105 +msgid "pages" +msgstr "پەڕەکان" + +#: models/pagemodel.py:267 +msgid "Page was copied." +msgstr "لەبەرگرتنەوەی پەرەکە سەرکەوتو بوو" + +#: models/pagemodel.py:698 +msgid "default" +msgstr "بنەڕەت" + +#: models/permissionmodels.py:21 +msgid "can add" +msgstr "ئەتوانرێت زیاد بکرێت" + +#: models/permissionmodels.py:22 +msgid "can delete" +msgstr "ئەتوانرێت بسڕدرێتەوە" + +#: models/permissionmodels.py:23 +msgid "can change advanced settings" +msgstr "ئەتوانرێت گۆڕانکاری لە " + +#: models/permissionmodels.py:25 +msgid "can change permissions" +msgstr "توانای گۆڕینی مؤڵەتەکان" + +#: models/permissionmodels.py:25 +msgid "on page level" +msgstr "لە ئاستی پەڕە" + +#: models/permissionmodels.py:26 +msgid "can move" +msgstr "توانای گواستنەوە" + +#: models/permissionmodels.py:27 +msgid "can moderate" +msgstr "توانای میانڕەوکردن" + +#: models/permissionmodels.py:28 +msgid "view restricted" +msgstr "پیشاندانی سنوورەکان" + +#: models/permissionmodels.py:28 +msgid "frontend view restriction" +msgstr "پیساندانی بەشی پێشەوەی سنوورەکان" + +#: models/permissionmodels.py:51 +msgid "can recover pages" +msgstr "توانای بەدەست ستنەوەی پەڕە" + +#: models/permissionmodels.py:51 +msgid "can recover any deleted page" +msgstr "توانای بەدەست خستنەوەی هەر پەڕەیەکئ سڕدراوە" + +#: models/permissionmodels.py:52 +msgid "If none selected, user haves granted permissions to all sites." +msgstr "ئەگەر هیچ هەڵبژاردنەک دیاری نەکردوە ،بەکارهێنەر مؤڵەتی هەموو شوێنەکانی پێ بەخشراوە" + +#: models/permissionmodels.py:52 +msgid "sites" +msgstr "شوێنەکان" + +#: models/permissionmodels.py:57 +msgid "Page global permission" +msgstr "مؤڵەتی گشتی پەڕە " + +#: models/permissionmodels.py:58 +msgid "Pages global permissions" +msgstr "مؤڵەتی گشتی پەڕەکان " + +#: models/permissionmodels.py:68 templates/admin/cms/page/permissions.html:15 +msgid "Grant on" +msgstr "پێبەخشراوە لە" + +#: models/permissionmodels.py:74 +msgid "Page permission" +msgstr "مؤڵەتی پەڕە" + +#: models/permissionmodels.py:89 +msgid "User (page)" +msgstr "بەکارهێنەر(پەڕ)ە" + +#: models/permissionmodels.py:90 +msgid "Users (page)" +msgstr "بەکارهێنەران(پەڕ)ە" + +#: models/permissionmodels.py:100 +msgid "User group (page)" +msgstr "کۆمەڵەی بەکارهێنەر(پەڕ)ە" + +#: models/permissionmodels.py:101 +msgid "User groups (page)" +msgstr "کۆمەڵەکانی بەکارهێنەر(پەڕ)ە" + +#: models/placeholdermodel.py:14 plugins/flash/models.py:9 +#: plugins/flash/migrations/0001_initial.py:16 plugins/video/models.py:13 +msgid "width" +msgstr "پانی" + +#: models/pluginmodel.py:140 +msgid "" +msgstr "<بەتاڵ>" + +#: models/titlemodels.py:12 +msgid "overwrite the title in the menu" +msgstr "تنووسینەوەی ناونیشان لە پێڕست" + +#: models/titlemodels.py:14 +msgid "Path" +msgstr "ڕێڕەو" + +#: models/titlemodels.py:20 +msgid "overwrite the title (html title tag)" +msgstr " نووسینەوەی ناونیشان(html title tag)" + +#: plugins/file/cms_plugins.py:9 +msgid "File" +msgstr "پەڕگە" + +#: plugins/file/models.py:24 plugins/file/migrations/0001_initial.py:17 +#: plugins/flash/models.py:8 plugins/flash/migrations/0001_initial.py:18 +msgid "file" +msgstr "پەڕگە" + +#: plugins/file/templates/cms/plugins/file.html:6 +msgid "file missing!" +msgstr "پەڕە وون بووە" + +#: plugins/flash/cms_plugins.py:9 +msgid "Flash" +msgstr "فلاش" + +#: plugins/flash/models.py:8 +msgid "use swf file" +msgstr "swf بەکارهێنانی پەڕگە لە جۆری" + +#: plugins/flash/models.py:10 plugins/flash/migrations/0001_initial.py:19 +#: plugins/video/models.py:14 +msgid "height" +msgstr "بەرزی" + +#: plugins/flash/templates/cms/plugins/flash.html:40 +#: plugins/video/templates/cms/plugins/video.html:60 +msgid "Missing flash plugin. Please download the latest Adobe Flash Player: " +msgstr "پێوەکراوی فلاش وون بووە، تکایە نوێترین ڤێرژنی لێدەری فلاش دابەزێنە" + +#: plugins/flash/templates/cms/plugins/flash.html:42 +#: plugins/video/templates/cms/plugins/video.html:62 +msgid "Get Adobe Flash Player" +msgstr "دەستکەوتنی ئەدۆب فلاس لێدەر" + +#: plugins/googlemap/cms_plugins.py:10 +msgid "Google Map" +msgstr "نەخشی گۆگل" + +#: plugins/googlemap/models.py:9 +msgid "map title" +msgstr "ناونیشانی نەخشە" + +#: plugins/googlemap/models.py:11 +msgid "address" +msgstr "ئەدرەس" + +#: plugins/googlemap/models.py:12 +msgid "zip code" +msgstr "zip code" + +#: plugins/googlemap/models.py:13 +msgid "city" +msgstr "شار" + +#: plugins/googlemap/models.py:15 +msgid "additional content" +msgstr "ناوەڕۆکی زیادە" + +#: plugins/googlemap/models.py:16 +msgid "zoom level" +msgstr "ئاستی گەورەکردن" + +#: plugins/googlemap/models.py:18 +msgid "latitude" +msgstr "پانی جوگرافیایی" + +#: plugins/googlemap/models.py:19 +msgid "Use latitude & longitude to fine tune the map possiton." +msgstr "بەکارهێنانی پانی جوگرافیایی و درێژی جوگرافیایی بۆ دۆزینەوەی شوێنی نەخشە" + +#: plugins/googlemap/models.py:20 +msgid "longitude" +msgstr "درێژی جوگرافیایی" + +#: plugins/googlemap/models.py:22 +msgid "route planer title" +msgstr "ڕێگای دابینکراو بۆ ناونیشان" + +#: plugins/googlemap/models.py:22 +msgid "Calculate your fastest way to here" +msgstr "هەژمارکردنی خیراترین ڕێگات تا ئێرە" + +#: plugins/googlemap/models.py:23 +msgid "route planer" +msgstr "ڕێگای دابینکراو" + +#: plugins/googlemap/models.py:30 +msgid "Map" +msgstr "نەخشە" + +#: plugins/googlemap/templates/cms/plugins/googlemap.html:76 +msgid "Your address: " +msgstr "ئەدرەسەکەت" + +#: plugins/googlemap/templates/cms/plugins/googlemap.html:78 +msgid "Calculate route" +msgstr "هەژمارکردنی ڕێگا" + +#: plugins/inherit/cms_plugins.py:17 +msgid "Inherit Plugins from Page" +msgstr "بە میرات وەرگرتنی پێوەکراوەکان لە پەڕەی" + +#: plugins/inherit/forms.py:23 +msgid "Language or Page must be filled out" +msgstr "زمان یان پەرگە کە پێویستە پڕ بکردرێتەوە" + +#: plugins/inherit/models.py:10 +msgid "" +"Choose a page to include its plugins into this placeholder, empty will " +"choose current page" +msgstr "بە بەتاڵی جێهێشتن پەڕەی ئێستا دیاری ئەکات، placeholderدیاریکردنی پەڕەیەک بۆ داخل کردنی پێوەکراوەکانی بۆ ئەم " + +#: plugins/inherit/models.py:11 +msgid "Optional: the language of the plugins you want" +msgstr "ئارەزوومەندانە:زمانی ئەو پێوەکراوەی کە ئەتەوێت بەکاری بهێنیت" + +#: plugins/link/cms_plugins.py:12 +msgid "Link" +msgstr "لینک" + +#: plugins/link/models.py:10 plugins/link/migrations/0001_initial.py:18 +#: plugins/link/migrations/0004_larger_link_names.py:11 +#: plugins/link/migrations/0004_larger_link_names.py:17 +#: plugins/snippet/models.py:12 plugins/snippet/migrations/0001_initial.py:17 +msgid "name" +msgstr "ناو" + +#: plugins/link/models.py:11 plugins/link/migrations/0001_initial.py:16 +#: plugins/picture/models.py:21 plugins/picture/migrations/0001_initial.py:16 +#: plugins/teaser/models.py:19 +msgid "link" +msgstr "لینک" + +#: plugins/link/models.py:12 +msgid "A link to a page has priority over a text link." +msgstr "لینکی پەڕە ئەولەویەتی بەرزترە لە لەنکی نووسین " + +#: plugins/link/models.py:13 +msgid "mailto" +msgstr "ئەدرەسی پۆستی ئەلیکترۆنی" + +#: plugins/link/models.py:13 +msgid "An email adress has priority over a text link." +msgstr "ئەدرەسی پۆستی ئەلیکترۆنی ئەولەویەتی بارزترە لە لینکی نووسین" + +#: plugins/picture/cms_plugins.py:9 +msgid "Picture" +msgstr "وێنە" + +#: plugins/picture/models.py:14 +msgid "center" +msgstr "ناوەند" + +#: plugins/picture/models.py:15 +msgid "left" +msgstr "چەپ" + +#: plugins/picture/models.py:16 +msgid "right" +msgstr "ڕاست" + +#: plugins/picture/models.py:20 plugins/picture/migrations/0001_initial.py:17 +#: plugins/teaser/models.py:10 plugins/video/models.py:11 +msgid "image" +msgstr "وێنە" + +#: plugins/picture/models.py:21 plugins/picture/models.py:22 +msgid "if present image will be clickable" +msgstr "ئەگەر هەنوکە وێنە توانای کرتەکردنی هابێت" + +#: plugins/picture/models.py:23 plugins/picture/migrations/0001_initial.py:19 +msgid "alternate text" +msgstr "نووسینی جێگرەوە" + +#: plugins/picture/models.py:23 +msgid "textual description of the image" +msgstr "پێناسەی وێنە بە نووسین" + +#: plugins/picture/models.py:24 +msgid "long description" +msgstr "پێناسەیەکی درێژ" + +#: plugins/picture/models.py:24 +msgid "additional description of the image" +msgstr "پێناسەی زیاتری وێنە" + +#: plugins/picture/models.py:25 +msgid "side" +msgstr "لا" + +#: plugins/snippet/cms_plugins.py:12 plugins/snippet/models.py:24 +#: plugins/snippet/models.py:32 +msgid "Snippet" +msgstr "Snippet" + +#: plugins/snippet/cms_plugins.py:30 +#, python-format +msgid "Template %(template)s does not exist." +msgstr " بوونی نیە%(template)sقاڵب" + +#: plugins/snippet/models.py:13 plugins/snippet/migrations/0001_initial.py:18 +msgid "HTML" +msgstr "HTML" + +#: plugins/snippet/models.py:15 +msgid "" +"Enter a template (i.e. \"snippets/plugin_xy.html\") which will be rendered. " +msgstr "(i.e. \"snippets/plugin_xy.html\") ئەو قاڵبە داخل بکە کە دەنەخشێنرێت " + +#: plugins/snippet/models.py:25 +msgid "Snippets" +msgstr "Snippets" + +#: plugins/teaser/cms_plugins.py:8 +msgid "Teaser" +msgstr "Teaser" + +#: plugins/teaser/models.py:14 +msgid "If present image will be clickable" +msgstr "ئەگەر هەنوکە وێنە توانای کرتەکردنی هابێت" + +#: plugins/teaser/models.py:19 +msgid "If present image will be clickable." +msgstr "ئەگەر هەنوکە وێنە توانای کرتەکردنی هابێت" + +#: plugins/teaser/templates/cms/plugins/teaser.html:11 +#: templates/cms/toolbar/toolbar.html:59 +msgid "more" +msgstr "زیاتر" + +#: plugins/text/cms_plugins.py:15 +msgid "Text" +msgstr "نووسین" + +#: plugins/text/models.py:14 plugins/text/migrations/0001_initial.py:16 +msgid "body" +msgstr "لاشە - بۆدی" + +#: plugins/text/templates/cms/plugins/widgets/tinymce.html:30 +msgid "Plugins" +msgstr "پێوەکراوەکان" + +#: plugins/text/templates/cms/plugins/widgets/tinymce.html:38 +#: plugins/text/templates/cms/plugins/widgets/tinymce.html:106 +#: plugins/text/templates/cms/plugins/widgets/wymeditor.html:67 +msgid "Please select a plugin type." +msgstr "تکایە جۆری پێوەکراو دیاری بکە" + +#: plugins/text/templates/cms/plugins/widgets/tinymce.html:54 +#: plugins/text/templates/cms/plugins/widgets/wymeditor.html:110 +msgid "Edit selected plugin" +msgstr "پێوەکراوی دەستنیشانکراو دەستکاری بکە " + +#: plugins/text/templates/cms/plugins/widgets/tinymce.html:58 +#: plugins/text/templates/cms/plugins/widgets/tinymce.html:124 +#: plugins/text/templates/cms/plugins/widgets/wymeditor.html:85 +msgid "Text editor does not support editing objects." +msgstr "نووسین دەست کاریکەرەکە پشتگیری ئۆبجێکتی دەستکاریکراو ناکات" + +#: plugins/text/templates/cms/plugins/widgets/tinymce.html:63 +#: plugins/text/templates/cms/plugins/widgets/tinymce.html:129 +#: plugins/text/templates/cms/plugins/widgets/wymeditor.html:90 +msgid "No object selected." +msgstr "هیج ئۆبجێکتێک دەستنیشان نەکراوە" + +#: plugins/text/templates/cms/plugins/widgets/tinymce.html:112 +#: plugins/text/templates/cms/plugins/widgets/wymeditor.html:73 +msgid "Text editor does not support inserting objects." +msgstr "نووسین دەست کاریکەرەکە پشتگیری ئۆبجێکتی داواکراو ناکات" + +#: plugins/text/templates/cms/plugins/widgets/tinymce.html:133 +#: plugins/text/templates/cms/plugins/widgets/wymeditor.html:94 +msgid "Not a plugin object" +msgstr "Not a plugin object" + +#: plugins/text/templates/cms/plugins/widgets/wymeditor.html:106 +#: templates/admin/cms/page/widgets/installed_plugins_inc.html:4 +msgid "Available Plugins" +msgstr "پێوەکراوە بەردەستەکان" + +#: plugins/text/templates/cms/plugins/widgets/wymeditor.html:109 +msgid "Insert plugin" +msgstr "داخڵکردنی پێوەکراو" + +#: plugins/twitter/cms_plugins.py:10 +#: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:27 +msgid "Twitter" +msgstr "تویتەر" + +#: plugins/twitter/cms_plugins.py:23 +msgid "Twitter Search" +msgstr "گەڕانی تویتەر" + +#: plugins/twitter/models.py:7 +msgid "twitter user" +msgstr "بەکارهێنەری تویتەر" + +#: plugins/twitter/models.py:8 plugins/twitter/models.py:17 +msgid "count" +msgstr "ژمارە" + +#: plugins/twitter/models.py:8 plugins/twitter/models.py:17 +msgid "Number of entries to display" +msgstr "ژمارەی بابەتەکان بۆ پیشاندان" + +#: plugins/twitter/models.py:9 +msgid "link hint" +msgstr "بیرخەرەوەی لینک" + +#: plugins/twitter/models.py:9 +msgid "If given, the hint is displayed as link to your Twitter profile." +msgstr "ئەگەر درا بوو، بیرخەرەوەکە وەک لینک پیشان ئەدرێت لە پرۆفایلی تویتەرەکەت" + +#: plugins/twitter/models.py:16 +msgid "query" +msgstr "داوا - کوێری" + +#: plugins/twitter/models.py:16 +msgid "" +"Example: \"brains AND zombies AND from:umbrella AND to:nemesis\": tweets " +"from the user \"umbrella\" to the user \"nemesis\" that contain the words " +"\"brains\" and \"zombies\"" +msgstr "Example: \"brains AND zombies AND from:umbrella AND to:nemesis\": tweets from the user \"umbrella\" to the user \"nemesis\" that contain the words \"brains\" and \"zombies\"" + +#: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:12 +msgid "we said," +msgstr "ئیمە ووتمان،" + +#: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:13 +msgid "we" +msgstr "ئێمە" + +#: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:14 +msgid "we were" +msgstr "ناوەند" + +#: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:15 +msgid "we replied to" +msgstr "ئێمە هاوپێچمان کردەوە بۆ" + +#: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:16 +msgid "we were checking out" +msgstr "ئیمە پشکنینمان کردووە" + +#: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:17 +msgid "loading tweets..." +msgstr "ئامادەکردنی توویت" + +#: plugins/video/cms_plugins.py:10 +msgid "Video" +msgstr "ڤیدیۆ" + +#: plugins/video/cms_plugins.py:42 +msgid "Color Settings" +msgstr "ڕێکخستنی ڕەنگەکان" + +#: plugins/video/models.py:9 +msgid "movie file" +msgstr "داواکاری گواستنەوە" + +#: plugins/video/models.py:9 +msgid "use .flv file or h264 encoded video file" +msgstr " بەکاربێنە بۆ ڤیدیۆ بە کۆدکراوەکەh264یان.flv" + +#: plugins/video/models.py:10 +msgid "movie url" +msgstr "داواکاری گواستنەوە" + +#: plugins/video/models.py:10 +msgid "" +"vimeo or youtube video url. Example: " +"http://www.youtube.com/watch?v=-iJ7bs4mTUY" +msgstr "vimeo or youtube video url. Example: http://www.youtube.com/watch?v=-iJ7bs4mTUY" + +#: plugins/video/models.py:11 +msgid "preview image file" +msgstr "پێشاندانی وێنە" + +#: plugins/video/models.py:16 +msgid "auto play" +msgstr "دەستپێکردنی خۆکار" + +#: plugins/video/models.py:17 +msgid "auto hide" +msgstr "شاردنەوەی خۆکار" + +#: plugins/video/models.py:18 +msgid "fullscreen" +msgstr "پیشاندانی پڕ بە شاشە" + +#: plugins/video/models.py:19 +msgid "loop" +msgstr "ئەڵقە - loop" + +#: plugins/video/models.py:22 +msgid "background color" +msgstr "ڕەنگی باکگراوەند" + +#: plugins/video/models.py:22 plugins/video/models.py:23 +#: plugins/video/models.py:24 plugins/video/models.py:25 +#: plugins/video/models.py:26 plugins/video/models.py:27 +#: plugins/video/models.py:28 plugins/video/models.py:29 +msgid "Hexadecimal, eg ff00cc" +msgstr " ff00cc هێکسا، بۆ نموونە " + +#: plugins/video/models.py:23 +msgid "text color" +msgstr "ڕەنگی نووسین" + +#: plugins/video/models.py:24 +msgid "seekbar color" +msgstr "ڕەنگی باکگراوەند" + +#: plugins/video/models.py:25 +msgid "seekbar bg color" +msgstr "ڕەنگی باگراوەند" + +#: plugins/video/models.py:26 +msgid "loadingbar color" +msgstr "ڕەنگی شریتی ئامادەکردن" + +#: plugins/video/models.py:27 +msgid "button out color" +msgstr "ڕەنگی دوگمە" + +#: plugins/video/models.py:28 +msgid "button over color" +msgstr "ڕەنگی سەر دوگمە" + +#: plugins/video/models.py:29 +msgid "button highlight color" +msgstr "ڕەنگی دوگمەی بەرچاوکراو" + +#: templates/admin/page_submit_line.html:3 +#: templates/admin/cms/page/change_form.html:274 +#: templates/admin/cms/page/plugin_change_form.html:113 +msgid "Save" +msgstr "پاشەکەوتکردن" + +#: templates/admin/page_submit_line.html:7 +#, python-format +msgid "Delete %(language)s translation" +msgstr "وەرگێڕان %(language)s سڕینەوەی " + +#: templates/admin/page_submit_line.html:11 +msgid "Save as new" +msgstr "پاشەکەوتکردن وەک بەشێکی نوێ" + +#: templates/admin/page_submit_line.html:12 +msgid "Save and add another" +msgstr "پاسەکەوتکردن و زیادکردنی یەکێکی تر" + +#: templates/admin/page_submit_line.html:13 +#: templates/admin/cms/page/change_form.html:275 +msgid "Save and continue editing" +msgstr "پاشەکەوتکردن و بەردەوام بوون لەسەر دەستکاری کردن" + +#: templates/admin/cms/mail/approvement_required.html:5 +#, python-format +msgid "" +"Page %(page)s may require approvement by you." +msgstr "ڕەنگە پێویستی بە پەسەند کردنی تۆبێت%(page)sپەڕەی" + +#: templates/admin/cms/mail/approvement_required.html:8 +msgid "Last changes" +msgstr "دوایین گؤڕانکاریەکان" + +#: templates/admin/cms/mail/base.html:55 +#, python-format +msgid "Log in to administration here." +msgstr "لێرەچوونەژوورەوە بۆ بەڕێوەبردن" + +#: templates/admin/cms/mail/page_user_change.html:7 +msgid "Username:" +msgstr "ناوی بەکارهێنەر" + +#: templates/admin/cms/mail/page_user_change.html:11 +msgid "Password:" +msgstr "تێپەرە ووشە" + +#: templates/admin/cms/page/change_form.html:3 +#: templates/admin/cms/page/plugin_forms_history.html:3 +#: templates/admin/cms/page/plugin_forms_ok.html:4 +msgid "Change a page" +msgstr "گۆڕینی پەڕە" + +#: templates/admin/cms/page/change_form.html:64 +#: templates/admin/cms/page/change_list.html:8 +#: templates/admin/cms/page/plugin_change_form.html:67 +#: templates/admin/cms/page/recover_form.html:14 +#: templates/admin/cms/page/revision_form.html:6 +msgid "Home" +msgstr "سەرەتا" + +#: templates/admin/cms/page/change_form.html:73 +msgid "Approve page deletion" +msgstr "پەسەندکردنی سڕینەوەی پەڕە" + +#: templates/admin/cms/page/change_form.html:79 +#, python-format +msgid "(requires approvement at %(moderation_level)s level)" +msgstr "( ئاست%(moderation_level)sپەسەندکردن داواکراوە لە)" + +#: templates/admin/cms/page/change_form.html:80 +msgid "(you can perform actions on this page directly)" +msgstr "(ئەتوانیت چالاکیەکان بە ئەنجام بگەیەنیت لەسەر ئەم پەڕەیە بە ڕاستەوخۆیی)" + +#: templates/admin/cms/page/change_form.html:93 +msgid "Remove delete request" +msgstr "لابردنی داواکاری سڕینەوە" + +#: templates/admin/cms/page/change_form.html:95 +msgid "Approve delete" +msgstr "پەسەندکردنی سڕینەوە" + +#: templates/admin/cms/page/change_form.html:95 +msgid "Approve" +msgstr "پەسەندکردن" + +#: templates/admin/cms/page/change_form.html:95 +#: templates/admin/cms/page/change_form.html:96 +#: templates/admin/cms/page/change_list_tree.html:12 +msgid "draft" +msgstr "گەڵاڵە" + +#: templates/admin/cms/page/change_form.html:96 +msgid "Preview" +msgstr "پێشبینین" + +#: templates/admin/cms/page/change_form.html:99 +#: templates/admin/cms/page/revision_form.html:10 +msgid "History" +msgstr "مێژوو" + +#: templates/admin/cms/page/change_form.html:100 +msgid "View on site" +msgstr "پیشاندان لە ماڵپەر" + +#: templates/admin/cms/page/change_form.html:130 +#: templates/admin/cms/page/plugin_change_form.html:84 +msgid "Please correct the error below." +msgid_plural "Please correct the errors below." +msgstr[0] "Please correct the errors below." +msgstr[1] "Please correct the errors below." + +#: templates/admin/cms/page/change_form.html:150 +msgid "All permissions" +msgstr "هەموو مؤڵەتەکان" + +#: templates/admin/cms/page/change_form.html:151 +#: templates/admin/cms/page/change_form.html:163 +#: templates/admin/cms/page/loading.html:2 +msgid "Loading..." +msgstr "ئامادەکردن..." + +#: templates/admin/cms/page/change_form.html:162 +msgid "Page states" +msgstr "دۆخی پەڕە" + +#: templates/admin/cms/page/change_form.html:185 +#, python-format +msgid "" +"This page must be moderated at level %(moderation_level)s, post a message " +"for moderator." +msgstr "بە پەیامێک میانڕەوکەر ئاگادار بکەرەوە%(moderation_level)s,ئەم پەڕەیە پێویستی بە میانرەوکردن هەیە لە ئاستی " + +#: templates/admin/cms/page/change_form.html:187 +msgid "Request approvemet" +msgstr "داواکاری پەسەندکردن" + +#: templates/admin/cms/page/change_list.html:3 +msgid "List of pages" +msgstr "لیستی پەرەکان" + +#: templates/admin/cms/page/change_list.html:58 +msgid "Successfully moved" +msgstr "بە سەرکەوتووی گواسترایەوە" + +#: templates/admin/cms/page/change_list.html:63 +msgid "An error occured. Please reload the page" +msgstr "هەڵەیەک ڕوویدا. تکایە پەرەکە باربکەرەوە " + +#: templates/admin/cms/page/change_list.html:84 +#, python-format +msgid "Recover deleted %(name)s" +msgstr "%(name)s بەدەست خستنەوەی سڕدراوەکان " + +#: templates/admin/cms/page/change_list.html:87 +#, python-format +msgid "Add %(name)s" +msgstr "%(name)s زیادکردن " + +#: templates/admin/cms/page/change_list.html:99 +msgid "Pages on:" +msgstr "پەرەکان لە: " + +#: templates/admin/cms/page/change_list.html:116 +msgid "Filter:" +msgstr "پاڵاوتەکردن:" + +#: templates/admin/cms/page/change_list.html:116 +msgid "on" +msgstr "لە" + +#: templates/admin/cms/page/change_list.html:116 +msgid "off" +msgstr "off" + +#: templates/admin/cms/page/change_list.html:118 +msgid "Filter" +msgstr "پاڵاوتەکردن" + +#: templates/admin/cms/page/change_list_tree.html:8 +msgid "actions" +msgstr "کردارەکان" + +#: templates/admin/cms/page/change_list_tree.html:10 +msgid "moderate" +msgstr "میانرەو" + +#: templates/admin/cms/page/change_list_tree.html:13 +msgid "published" +msgstr "بڵاوکراوەتەوە" + +#: templates/admin/cms/page/change_list_tree.html:15 +msgid "start" +msgstr "دەستپێکردن" + +#: templates/admin/cms/page/change_list_tree.html:16 +msgid "end" +msgstr "کۆتای" + +#: templates/admin/cms/page/change_list_tree.html:17 +msgid "restricted" +msgstr "دیاریکراو" + +#: templates/admin/cms/page/change_list_tree.html:19 +msgid "last changes" +msgstr "دواین گؤڕانکاریەکان" + +#: templates/admin/cms/page/menu_item.html:5 +msgid "select this page" +msgstr "ئەم پەڕەیە دەستنیسان بکە" + +#: templates/admin/cms/page/menu_item.html:5 +#: templates/admin/cms/page/menu_item.html:6 +msgid "edit this page" +msgstr "ئەم پەرەیە دەستکاری بکە" + +#: templates/admin/cms/page/menu_item.html:6 +#: templates/cms/toolbar/toolbar.html:54 +msgid "edit" +msgstr "دەستکاری کردن" + +#: templates/admin/cms/page/menu_item.html:16 +msgid "insert above" +msgstr "ئەوانەی سەرەوە داخل بکە" + +#: templates/admin/cms/page/menu_item.html:17 +msgid "insert below" +msgstr "ئەوانەی خوارەوە داخل بکە" + +#: templates/admin/cms/page/menu_item.html:19 +msgid "insert inside" +msgstr "ئەوانەی لا تەنیشت داخل بکە" + +#: templates/admin/cms/page/menu_item.html:23 +msgid "softroot" +msgstr "ڕەگ" + +#: templates/admin/cms/page/menu_item.html:23 +msgid "home" +msgstr "سەرەتا" + +#: templates/admin/cms/page/menu_item.html:26 +#, python-format +msgid "Edit this page in %(language)s " +msgstr "%(language)s ئەم پەڕەیە دەست کاری بکە لە " + +#: templates/admin/cms/page/menu_item.html:33 +msgid "Cut" +msgstr "بڕین" + +#: templates/admin/cms/page/menu_item.html:33 +msgid "cut" +msgstr "بڕین" + +#: templates/admin/cms/page/menu_item.html:34 +msgid "Copy" +msgstr "لەبەرگرتنەوە" + +#: templates/admin/cms/page/menu_item.html:34 +msgid "copy" +msgstr "لەبەرگرتنەوە" + +#: templates/admin/cms/page/menu_item.html:37 +#: templates/admin/cms/page/menu_item.html:41 +msgid "Add Child" +msgstr "زیادکردنی نەوە" + +#: templates/admin/cms/page/menu_item.html:37 +#: templates/admin/cms/page/menu_item.html:41 +msgid "add" +msgstr "زیادکردن" + +#: templates/admin/cms/page/menu_item.html:65 +msgid "Approve directly" +msgstr "پەسەندکردنی ڕاستەوخۆ" + +#: templates/admin/cms/page/menu_item.html:67 +#: templates/admin/cms/page/menu_item.html:79 +#: templates/admin/cms/page/menu_item.html:81 +msgid "view" +msgstr "پیشاندان" + +#: templates/admin/cms/page/menu_item.html:72 +msgid "Unpublish" +msgstr "بڵاو نەکردنەوە" + +#: templates/admin/cms/page/menu_item.html:79 +msgid "View on page" +msgstr "پیشاندان لە پەڕگە" + +#: templates/admin/cms/page/moderation_messages.html:4 +msgid "Action" +msgstr "کردار" + +#: templates/admin/cms/page/moderation_messages.html:5 +msgid "Created" +msgstr "دروستکراوە" + +#: templates/admin/cms/page/moderation_messages.html:7 +msgid "Message" +msgstr "پەیام" + +#: templates/admin/cms/page/permissions.html:7 +msgid "Group" +msgstr "کۆمەلە" + +#: templates/admin/cms/page/permissions.html:8 +msgid "Can edit" +msgstr "توانای دەستکاری کردن" + +#: templates/admin/cms/page/permissions.html:9 +msgid "Can add" +msgstr "توانای زیادکردن" + +#: templates/admin/cms/page/permissions.html:10 +msgid "Can delete" +msgstr "توانای سرینەوە" + +#: templates/admin/cms/page/permissions.html:11 +msgid "Can publish" +msgstr "توانای بڵاوکردنەوە" + +#: templates/admin/cms/page/permissions.html:12 +msgid "Can change permissions" +msgstr "توانای گؤڕینی مۆڵەت" + +#: templates/admin/cms/page/permissions.html:13 +msgid "Can move" +msgstr "توانای گواستنەوە" + +#: templates/admin/cms/page/permissions.html:14 +msgid "Can view" +msgstr "توانای پیشاندان" + +#: templates/admin/cms/page/permissions.html:21 +#: templates/admin/cms/page/permissions.html:22 +msgid "(global)" +msgstr "(گشتگیر)" + +#: templates/admin/cms/page/permissions.html:26 +msgid "(current)" +msgstr "(هەنووکە)" + +#: templates/admin/cms/page/permissions.html:43 +msgid "All" +msgstr "هەموو" + +#: templates/admin/cms/page/permissions.html:51 +msgid "Page doesn't inherit any permissions." +msgstr "پەڕگە هیچ مۆڵەتێکی بە میرات وەرنەگرتووە" + +#: templates/admin/cms/page/plugin_change_form.html:114 +#: templates/cms/toolbar/toolbar.html:24 +msgid "Cancel" +msgstr "پاشگەزبوونەوە" + +#: templates/admin/cms/page/plugin_forms_history.html:9 +msgid "An old revision of a plugin can not be saved!" +msgstr "پێوەکراوی کۆن ناتوانرێت پاشەکەوت بکرێت" + +#: templates/admin/cms/page/plugin_forms_ok.html:21 +msgid "Plugin saved successfully." +msgstr "پێوەکراو پاسەکەوت کرا بە سەرکەوتووی" + +#: templates/admin/cms/page/recover_form.html:17 +#, python-format +msgid "Recover deleted %(verbose_name)s" +msgstr " سڕدراوەکان%(verbose_name)s بەدەست خستنەوەی " + +#: templates/admin/cms/page/recover_form.html:24 +msgid "Press the save button below to recover this version of the object." +msgstr "پەنجە بنێ بە دوگمەی خوارەوە بۆ بەدەست خستنەوەی ئەم ڤێرژنەی ئۆبجێکتەکە" + +#: templates/admin/cms/page/revision_form.html:11 +#, python-format +msgid "Revert %(verbose_name)s" +msgstr "%(verbose_name)s بی گەڕێنەوە سەر باری سەرەتایی " + +#: templates/admin/cms/page/revision_form.html:24 +msgid "Press the save button below to revert to this version of the object." +msgstr "دوگمەی پاشەکەوت کردن کرتە بکە بۆ گەراندنەوە سەر باری سەرەتایی ئەم ڤێرژنەی ئۆبجێکتەکە" + +#: templates/admin/cms/page/dialog/copy.html:4 +msgid "Copy options" +msgstr "هەڵبژاردنەکانی لەبەرگرتنەوە" + +#: templates/admin/cms/page/dialog/copy.html:6 +msgid "Choose copy options" +msgstr "هەڵبژاردنەکانی لەبەرگرتنەوە دەستنیشان بکە" + +#: templates/admin/cms/page/widgets/installed_plugins_inc.html:7 +msgid "Generic" +msgstr "گشتی" + +#: templates/admin/cms/page/widgets/installed_plugins_inc.html:15 +msgid "Add Plugin" +msgstr "پێوەکراو زیاد بکە" + +#: templates/admin/cms/page/widgets/installed_plugins_inc.html:18 +msgid "From Language" +msgstr "لە زمانی" + +#: templates/admin/cms/page/widgets/installed_plugins_inc.html:25 +msgid "Copy Plugins" +msgstr "لەبەرگرتنەوەی پێوەکراوەکان" + +#: templates/admin/cms/page/widgets/plugin_editor.html:12 +msgid "You must save the page first to add plugins." +msgstr "سەرەتا پیویستە پێوەکراوەکە پاشەکەوت بکرێت بۆ زیادکردنی پێوەکراو" + +#: templates/admin/cms/page/widgets/plugin_editor.html:15 +msgid "No Plugin selected. Selected one on the left side" +msgstr "هیج پێوەکراوێک دەستنیشان نەکراوە ، دانەیەک دەستنیشان بکە لە لای چەپ" + +#: templates/admin/cms/page/widgets/plugin_editor.html:17 +msgid "No Plugins present. Add a plugin to this placeholder-slot." +msgstr "No Plugins present. Add a plugin to this placeholder-slot." + +#: templates/cms/toolbar/placeholder.html:32 +msgid "Available plugins" +msgstr "پێوەکراوا بەردەستەکان" + +#: templates/cms/toolbar/toolbar.html:22 +msgid "The selected element can not be moved to the desired location." +msgstr "توخمی دەست نیشانکراو نەتوانرا بگواستریتەوە بۆ شوێنی دیاریکراو " + +#: templates/cms/toolbar/toolbar.html:23 +msgid "Are you sure you want to delete this plugin?" +msgstr "دڵنیایت لە سڕینەوەی ئەم پێوەکراوە؟" + +#: templates/cms/toolbar/toolbar.html:55 +msgid "up" +msgstr "سەرەوە" + +#: templates/cms/toolbar/toolbar.html:56 +msgid "down" +msgstr "خوارەوە" + +#: templates/cms/toolbar/toolbar.html:61 +msgid "Move to placeholder" +msgstr "placeholder گواستنەوە بۆ " + +#: templates/cms/toolbar/items/login.html:5 +msgid "Username" +msgstr "ناوی بەکارهێنەر" + +#: templates/cms/toolbar/items/login.html:10 +#: templates/cms/toolbar/items/login.html:12 +msgid "Login" +msgstr "چوونە ژوورەوە" + +#: templates/cms/toolbar/items/status.html:2 +msgid "Status" +msgstr "دۆخ" + +#: templates/cms/toolbar/items/switcher.html:4 +msgid "Switch on/off" +msgstr "Switch on/off" + +#: templatetags/cms_admin.py:86 +#, python-format +msgid "%(icon)s" +msgstr "%(icon)s" + +#: templatetags/cms_admin.py:99 +msgid "Unbind page moderation" +msgstr "نەخستنە ئەستۆی میانڕەوکردنی پەڕە" + +#: templatetags/cms_admin.py:100 +msgid "Unbind children moderation" +msgstr "نەخستنە ئەستۆی میانڕەوکردنی پەڕە نەوەکان" + +#: templatetags/cms_admin.py:101 +msgid "Unbind descendants moderation" +msgstr "نەخستنە ئەستۆی میانڕەوکردنی لقەکان" + +#: templatetags/cms_tags.py:78 +#, python-format +msgid "Page not found on %(domain)s" +msgstr " %(domain)s پەرە نە دۆزرایەوە لە " + +#: templatetags/cms_tags.py:79 +#, python-format +msgid "" +"A template tag couldn't find the page with lookup arguments `%(page_lookup)s\n" +"`. The URL of the request was: http://%(host)s%(path)s" +msgstr "A template tag couldn't find the page with lookup arguments `%(page_lookup)s\n`. The URL of the request was: http://%(host)s%(path)s" + +#: utils/mail.py:38 +msgid "CMS - your user account was created." +msgstr "هەژماری بەکارهێنەرەکەت دروستکرا " + +#: utils/mail.py:40 +msgid "CMS - your user account was changed." +msgstr "هەژماری بەکارهێنەرەکەت گۆڕدرا" + +#: utils/moderator.py:83 +msgid "parent first" +msgstr "parent first" + +#: utils/moderator.py:90 +msgid "approve" +msgstr "پەسەندکردن" + +#: utils/moderator.py:251 +#, python-format +msgid "CMS - Page %s requires approvement." +msgstr "CMS - Page %s داواکاری پەسەندکردن" + +#~ msgid "move" +#~ msgstr "move request" + +#~ msgid "sidebar column" +#~ msgstr "background color" + +#~ msgid "fgcolor" +#~ msgstr "foreground color" + +#~ msgid "Wanted language has not been translated yet." +#~ msgstr "Requested language has not been translated yet." diff --git a/cms/locale/nl/LC_MESSAGES/django.po b/cms/locale/nl/LC_MESSAGES/django.po index 018f2edf28b..d263770d563 100644 --- a/cms/locale/nl/LC_MESSAGES/django.po +++ b/cms/locale/nl/LC_MESSAGES/django.po @@ -1,20 +1,27 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# -# Chris Wesseling , 2011 +# +# Translators: +# André Hendriks , 2011. +# , 2012. +# Chris Wesseling , 2011. +# Jacques de Hooge <>, 2012. +# Jonas Obrist , 2011. +# , 2012. +# , 2012. msgid "" msgstr "" "Project-Id-Version: django-cms\n" -"Report-Msgid-Bugs-To: \n" +"Report-Msgid-Bugs-To: https://github.com/divio/django-cms/issues\n" "POT-Creation-Date: 2011-08-14 09:47-0500\n" -"PO-Revision-Date: 2011-05-20 08:37+0000\n" -"Last-Translator: ojii \n" +"PO-Revision-Date: 2012-06-25 07:17+0000\n" +"Last-Translator: bouke \n" "Language-Team: divio.ch \n" -"Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" "X-Poedit-Country: SWITZERLAND\n" "X-Poedit-Language: English\n" @@ -26,7 +33,7 @@ msgstr "Bewerk-modus" #: cms_toolbar.py:77 msgid "django CMS" -msgstr "" +msgstr "django CMS" #: cms_toolbar.py:108 templates/admin/cms/page/menu_item.html:73 msgid "Publish" @@ -67,7 +74,7 @@ msgstr "Pagina" #: cms_toolbar.py:189 msgid "Site Administration" -msgstr "Website Administratie" +msgstr "Website-administratie" #: cms_toolbar.py:195 msgid "Page Settings" @@ -79,7 +86,7 @@ msgstr "Geschiedenis weergeven" #: cms_toolbar.py:205 msgid "Admin" -msgstr "" +msgstr "Beheeromgeving" #: plugin_base.py:65 msgid "Advanced options" @@ -126,10 +133,9 @@ msgid "Page Title" msgstr "Pagina-titel" #: admin/forms.py:138 -msgid "Overwrites what is displayed at the top of your browser or in bookmarks" -msgstr "" -"Overschrijft wat wordt weergegeven in de titelbalk van de browser of in " -"bladwijzers" +msgid "" +"Overwrites what is displayed at the top of your browser or in bookmarks" +msgstr "Overschrijft wat wordt weergegeven in de titelbalk van de browser of in bladwijzers" #: admin/forms.py:139 msgid "Application" @@ -157,14 +163,11 @@ msgstr "Stuurt door naar deze URL." #: admin/forms.py:152 msgid "A description of the page sometimes used by search engines." -msgstr "" -"Een beschrijving van de pagina die soms door zoekmachines wordt gebruikt." +msgstr "Een beschrijving van de pagina die soms door zoekmachines wordt gebruikt." #: admin/forms.py:154 msgid "A list of comma seperated keywords sometimes used by search engines." -msgstr "" -"Een door komma's gescheiden lijst van trefwoorden die soms door zoekmachines " -"wordt gebruikt." +msgstr "Een door komma's gescheiden lijst van trefwoorden die soms door zoekmachines wordt gebruikt." #: admin/forms.py:170 msgid "A page with this reverse URL id exists already." @@ -175,9 +178,9 @@ msgid "Invalid URL, use /my/url format." msgstr "Ongeldige URL, gebruik het formaat /mijn/url." #: admin/forms.py:181 -#, fuzzy, python-format +#, python-format msgid "Page with redirect url %r already exist" -msgstr "Er bestaat al een pagina met dezelfde slug" +msgstr "De pagina met omleidings-URL %r bestaat al" #: admin/forms.py:191 admin/forms.py:192 migrations/0001_initial.py:41 #: models/permissionmodels.py:16 @@ -188,25 +191,19 @@ msgstr "gebruiker" msgid "" "Add page permission requires also access to children, or descendants, " "otherwise added page can't be changed by its creator." -msgstr "" -"Om het recht te hebben pagina's toe te voegen, is ook toegang nodig tot de " -"kinderen (of afstammelingen), anders kan de toegevoegde pagina niet door " -"zijn maker worden aangepast." +msgstr "Om het recht te hebben pagina's toe te voegen, is ook toegang nodig tot de kinderen (of afstammelingen), anders kan de toegevoegde pagina niet door zijn maker worden aangepast." #: admin/forms.py:221 msgid "Add page permission also requires edit page permission." -msgstr "" -"Voor het recht om pagina's toe te voegen is ook het recht nodig pagina's te " -"bewerken." +msgstr "Voor het recht om pagina's toe te voegen is ook het recht nodig pagina's te bewerken." #: admin/forms.py:248 -#, fuzzy msgid "can_view" -msgstr "toon" +msgstr "kan_bekijken" #: admin/forms.py:260 msgid "Please select user or group first." -msgstr "Kies a.u.b. eerst de gebruiker of groep." +msgstr "Selecteer eerst een gebruiker of groep." #: admin/forms.py:267 admin/forms.py:274 admin/forms.py:278 #: templates/admin/cms/page/change_form.html:67 @@ -237,10 +234,7 @@ msgstr "Licht gebruiker in" msgid "" "Send email notification to user about username or password change. Requires " "user email." -msgstr "" -"Stuur een e-mailnotificatie naar de gebruiker over het aanpassen van de " -"gebruikersnaam of het wachtwoord. Hiervoor is het e-mailadres van de " -"gebruiker nodig." +msgstr "Stuur een e-mailnotificatie naar de gebruiker over het aanpassen van de gebruikersnaam of het wachtwoord. Hiervoor is het e-mailadres van de gebruiker nodig." #: admin/forms.py:318 msgid "New password" @@ -257,15 +251,12 @@ msgstr "Voor e-mailnotificatie is een geldig e-mailadres vereist." #: admin/forms.py:341 msgid "" "The permission to add new pages requires the permission to change pages!" -msgstr "" -"Het recht om pagina's toe te voegen vereist het recht pagina's aan te passen!" +msgstr "Het recht om pagina's toe te voegen vereist het recht pagina's aan te passen!" #: admin/forms.py:343 msgid "" "The permission to add new users requires the permission to change users!" -msgstr "" -"Het recht om gebruikers toe te voegen vereist het recht om gebruikers aan te " -"passen!" +msgstr "Het recht om gebruikers toe te voegen vereist het recht om gebruikers aan te passen!" #: admin/forms.py:345 msgid "To add permissions you also need to edit them!" @@ -277,9 +268,7 @@ msgstr "Basisinstelling" #: admin/pageadmin.py:100 msgid "Note: This page reloads if you change the selection. Save it first." -msgstr "" -"Opmerking: Deze pagina herlaadt wanneer je de selectie verandert. Sla het " -"eerst op." +msgstr "Opmerking: Deze pagina herlaadt wanneer je de selectie verandert. Sla het eerst op." #: admin/pageadmin.py:102 admin/pageadmin.py:154 msgid "Hidden" @@ -291,12 +280,11 @@ msgstr "Geavanceerde instellingen" #: admin/pageadmin.py:113 msgid "SEO Settings" -msgstr "SEO instellingen" +msgstr "SEO-instellingen" #: admin/pageadmin.py:299 -#, fuzzy msgid "You have no permission to change the template" -msgstr "Je bent niet toegestaan deze pagina de bewerken" +msgstr "U heeft geen toestemming dit sjabloon te wijzigen" #: admin/pageadmin.py:485 msgid "higher" @@ -304,7 +292,7 @@ msgstr "hoger" #: admin/pageadmin.py:655 msgid "Database error" -msgstr "Database fout" +msgstr "Databasefout" #: admin/pageadmin.py:855 msgid "Page was successfully approved." @@ -330,18 +318,15 @@ msgstr "Weet je het zeker?" #: admin/pageadmin.py:1052 msgid "You do not have permission to publish this page" -msgstr "Je bent niet toegestaan deze pagina te publiceren" +msgstr "Je hebt geen toestemming deze pagina te publiceren" #: admin/pageadmin.py:1066 msgid "You do not have permission to change this page's in_navigation status" -msgstr "" -"Je bent niet toegestaan om de in_navigatie toestand van deze pagina aan te " -"passen" +msgstr "Je bent niet toegestaan om de in_navigatie toestand van deze pagina aan te passen" #: admin/pageadmin.py:1079 -#, fuzzy msgid "You have no permission to add a plugin" -msgstr "Je bent niet toegestaan deze pagina de bewerken" +msgstr "U heeft geen toestemming om een plugin toe te voegen" #: admin/pageadmin.py:1126 admin/pageadmin.py:1158 msgid "Language must be set to a supported language!" @@ -361,9 +346,8 @@ msgid "Language must be different than the copied language!" msgstr "De taal moet verschillend zijn van de gekopieerde taal!" #: admin/pageadmin.py:1166 -#, fuzzy msgid "You do not have permission to add plugins" -msgstr "Je bent niet toegestaan deze pagina de bewerken" +msgstr "U heeft geen toestemming om plugins toe te voegen" #: admin/pageadmin.py:1173 #, python-format @@ -371,52 +355,45 @@ msgid "Copied %(language)s plugins to %(placeholder)s" msgstr "%(language)s plugins zijn gekopieerd naar %(placeholder)s" #: admin/pageadmin.py:1186 admin/pageadmin.py:1294 admin/pageadmin.py:1316 -#, fuzzy msgid "You have no permission to change this page" -msgstr "Je bent niet toegestaan deze pagina de bewerken" +msgstr "U heeft geen toestemming deze pagina te wijzigen" #: admin/pageadmin.py:1221 -#, fuzzy msgid "You have no permission to edit a plugin" -msgstr "Je bent niet toegestaan deze pagina de bewerken" +msgstr "U heeft geen toestemming om een plugin toe te wijzigen" #: admin/pageadmin.py:1256 #, python-format msgid "" "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -msgstr "" -"%(plugin_name)s-plugin bewerkt op positie %(position)s in %(placeholder)s" +msgstr "%(plugin_name)s-plugin bewerkt op positie %(position)s in %(placeholder)s" #: admin/pageadmin.py:1311 -#, fuzzy msgid "You have no permission to move a plugin" -msgstr "Je bent niet toegestaan deze pagina de bewerken" +msgstr "U heeft geen toestemming om een plugin toe te verplaatsen" #: admin/pageadmin.py:1329 msgid "Plugins where moved" msgstr "Plugins zijn verplaatst" #: admin/pageadmin.py:1343 -#, fuzzy msgid "You have no permission to remove a plugin" -msgstr "Je bent niet toegestaan deze pagina de bewerken" +msgstr "U heeft geen toestemming om een plugin toe te verwijderen" #: admin/pageadmin.py:1361 admin/placeholderadmin.py:292 #, python-format msgid "" "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " "deleted." -msgstr "" -"%(plugin_name)s-plugin op positie %(position)s in %(placeholder)s is " -"verwijderd." +msgstr "%(plugin_name)s-plugin op positie %(position)s in %(placeholder)s is verwijderd." #: admin/permissionadmin.py:72 msgid "View restriction" -msgstr "" +msgstr "Bekijk beperking" #: admin/permissionadmin.py:73 msgid "View restrictions" -msgstr "" +msgstr "Bekijk beperkingen" #: admin/permissionadmin.py:133 models/permissionmodels.py:75 msgid "Page permissions" @@ -428,22 +405,19 @@ msgstr "Gebruikers- & groepsrechten" #: admin/permissionadmin.py:135 msgid "Page permissions management" -msgstr "Pagina-rechten beheer" +msgstr "Beheer paginarechten" #: admin/placeholderadmin.py:150 admin/placeholderadmin.py:191 -#, fuzzy msgid "You don't have permission to add content here." -msgstr "Je bent niet toegestaan deze pagina de bewerken" +msgstr "U heeft geen toestemming hier inhoud toe te voegen" #: admin/placeholderadmin.py:187 -#, fuzzy msgid "You don't have permission to add plugins" -msgstr "Je bent niet toegestaan deze pagina de bewerken" +msgstr "U heeft geen toestemming om plugins toe te voegen" #: admin/placeholderadmin.py:288 -#, fuzzy msgid "You don't have permission to delete a plugin" -msgstr "Je bent niet toegestaan deze pagina de bewerken" +msgstr "U heeft geen toestemming om een plugin toe te verwijderen" #: admin/useradmin.py:25 msgid "User details" @@ -467,7 +441,7 @@ msgstr "Kopiëer moderatie" #: conf/patch.py:28 msgid "Inherit the template of the nearest ancestor" -msgstr "Erf het sjabloon van de dichtstbijzijnde voorouder" +msgstr "Erf het sjabloon van de bovenliggende pagina" #: forms/fields.py:19 msgid "Select a valid site" @@ -517,7 +491,7 @@ msgstr "plek" #: migrations/0001_initial.py:18 models/pluginmodel.py:80 msgid "plugin_name" -msgstr "plugin_naam" +msgstr "pluginnaam" #: migrations/0001_initial.py:25 migrations/0011_title_overwrites.py:12 #: migrations/0011_title_overwrites.py:15 models/titlemodels.py:11 @@ -584,7 +558,7 @@ msgstr "auteur" #: migrations/0001_initial.py:58 migrations/0006_apphook.py:37 msgid "reverse url id" -msgstr "omgekeerde URL kenmerk" +msgstr "omgekeerde URL-kenmerk" #: migrations/0001_initial.py:59 models/pagemodel.py:84 msgid "login required" @@ -640,19 +614,19 @@ msgstr "Huidige pagina" #: models/moderatormodels.py:26 msgid "Page children (immediate)" -msgstr "Pagina-kinderen (direct)" +msgstr "Direct onderliggende pagina's" #: models/moderatormodels.py:27 msgid "Page and children (immediate)" -msgstr "Pagina en kinderen (direct)" +msgstr "Deze en direct onderliggende pagina's" #: models/moderatormodels.py:28 msgid "Page descendants" -msgstr "Pagina-afstammelingen" +msgstr "Alle onderliggende pagina's" #: models/moderatormodels.py:29 msgid "Page and descendants" -msgstr "Pagina en afstammelingen" +msgstr "Deze en alle onderliggende pagina's" #: models/moderatormodels.py:46 #: templates/admin/cms/page/moderation_messages.html:6 @@ -666,15 +640,15 @@ msgstr "Modereer pagina" #: models/moderatormodels.py:51 templatetags/cms_admin.py:100 msgid "Moderate children" -msgstr "Modereer kinderen" +msgstr "Modereer onderliggende pagina's" #: models/moderatormodels.py:52 templatetags/cms_admin.py:101 msgid "Moderate descendants" -msgstr "Modereer afstammelingen" +msgstr "Modereer alle onderliggende pagina's" #: models/moderatormodels.py:55 models/moderatormodels.py:56 msgid "PageModerator" -msgstr "PaginaModerator" +msgstr "Paginamoderator" #: models/moderatormodels.py:99 msgid "created" @@ -686,19 +660,19 @@ msgstr "aangepast" #: models/moderatormodels.py:101 msgid "delete req." -msgstr "verwijderen vereist" +msgstr "verwijderverzoek" #: models/moderatormodels.py:102 msgid "move req." -msgstr "verplaatsen vereist" +msgstr "verplaatsverzoek" #: models/moderatormodels.py:103 msgid "publish req." -msgstr "publiceren vereist" +msgstr "publicatieverzoek" #: models/moderatormodels.py:104 msgid "unpublish req." -msgstr "depubliceren vereist" +msgstr "depublicatieverzoek" #: models/moderatormodels.py:105 models/pagemodel.py:47 msgid "approved" @@ -745,9 +719,7 @@ msgstr "bewerkt door" msgid "" "When the page should go live. Status must be \"Published\" for page to go " "live." -msgstr "" -"Wanneer de pagina publiek moet worden. Status moet op \"Gepubliceerd\" staan " -"om publiek te worden." +msgstr "Wanneer de pagina publiek moet worden. Status moet op \"Gepubliceerd\" staan om publiek te worden." #: models/pagemodel.py:67 msgid "When to expire the page. Leave empty to never expire." @@ -761,17 +733,15 @@ msgstr "Alle ouders zullen niet worden weergegeven in de navigatie" msgid "" "An unique identifier that is used with the page_url templatetag for linking " "to this page" -msgstr "" -"Een unieke naam die door de 'page_url' sjabloon-tag wordt gebruikt om naar " -"deze pagina te verwijzen." +msgstr "Een unieke naam die door de 'page_url' sjabloon-tag wordt gebruikt om naar deze pagina te verwijzen." #: models/pagemodel.py:71 msgid "attached menu" -msgstr "" +msgstr "gekoppeld menu" #: models/pagemodel.py:72 msgid "is published" -msgstr "is gepuliceerd" +msgstr "is gepubliceerd" #: models/pagemodel.py:74 msgid "The template used to render the content." @@ -795,7 +765,7 @@ msgstr "menu zichtbaarheid" #: models/pagemodel.py:85 msgid "limit when this page is visible in the menu" -msgstr "" +msgstr "beperk wanneer deze pagina zichtbaar is in het menu" #: models/pagemodel.py:105 msgid "pages" @@ -839,11 +809,11 @@ msgstr "kan modereren" #: models/permissionmodels.py:28 msgid "view restricted" -msgstr "" +msgstr "toegang tot view beperkt" #: models/permissionmodels.py:28 msgid "frontend view restriction" -msgstr "" +msgstr "beperking van toegang tot view door frontend" #: models/permissionmodels.py:51 msgid "can recover pages" @@ -900,7 +870,7 @@ msgstr "breedte" #: models/pluginmodel.py:140 msgid "" -msgstr "" +msgstr "" #: models/titlemodels.py:12 msgid "overwrite the title in the menu" @@ -925,7 +895,7 @@ msgstr "bestand" #: plugins/file/templates/cms/plugins/file.html:6 msgid "file missing!" -msgstr "" +msgstr "Bestand ontbreekt!" #: plugins/flash/cms_plugins.py:9 msgid "Flash" @@ -942,16 +912,13 @@ msgstr "hoogte" #: plugins/flash/templates/cms/plugins/flash.html:40 #: plugins/video/templates/cms/plugins/video.html:60 -#, fuzzy msgid "Missing flash plugin. Please download the latest Adobe Flash Player: " -msgstr "" -"Flash plugin niet gevonden. Download hier" +msgstr "Flash-plugin ontbreekt. Gelieve de laatste versie van Adobe Flash Player te downloaden:" #: plugins/flash/templates/cms/plugins/flash.html:42 #: plugins/video/templates/cms/plugins/video.html:62 msgid "Get Adobe Flash Player" -msgstr "" +msgstr "Download Adobe Flash Player" #: plugins/googlemap/cms_plugins.py:10 msgid "Google Map" @@ -987,9 +954,7 @@ msgstr "breedtegraad" #: plugins/googlemap/models.py:19 msgid "Use latitude & longitude to fine tune the map possiton." -msgstr "" -"Gebruik breedtegraad & lengtegraad om de positie op de kaart nauwkeurig in " -"te stellen." +msgstr "Gebruik breedtegraad & lengtegraad om de positie op de kaart nauwkeurig in te stellen." #: plugins/googlemap/models.py:20 msgid "longitude" @@ -1031,9 +996,7 @@ msgstr "Taal of Pagina moet ingevuld zijn" msgid "" "Choose a page to include its plugins into this placeholder, empty will " "choose current page" -msgstr "" -"Kies een pagina om diens plugins in de 'placeholder' in te voegen, indien " -"leeggelaten wordt de huidige pagina gekozen" +msgstr "Kies een pagina om diens plugins in de 'placeholder' in te voegen, indien leeggelaten wordt de huidige pagina gekozen" #: plugins/inherit/models.py:11 msgid "Optional: the language of the plugins you want" @@ -1074,7 +1037,7 @@ msgstr "Afbeelding" #: plugins/picture/models.py:14 msgid "center" -msgstr "" +msgstr "centreren" #: plugins/picture/models.py:15 msgid "left" @@ -1130,9 +1093,7 @@ msgstr "HTML" #: plugins/snippet/models.py:15 msgid "" "Enter a template (i.e. \"snippets/plugin_xy.html\") which will be rendered. " -msgstr "" -"Voer een sjabloon in (bijv. \"knipsels/plugin_xy.html\") dat weergegeven zal " -"worden." +msgstr "Voer een sjabloon in (bijv. \"knipsels/plugin_xy.html\") dat weergegeven zal worden." #: plugins/snippet/models.py:25 msgid "Snippets" @@ -1182,8 +1143,7 @@ msgstr "Geselecteerde plugin bewerken" #: plugins/text/templates/cms/plugins/widgets/tinymce.html:124 #: plugins/text/templates/cms/plugins/widgets/wymeditor.html:85 msgid "Text editor does not support editing objects." -msgstr "" -"Tekst-bewerker biedt geen ondersteuning voor het bewerken van objecten." +msgstr "Tekst-bewerker biedt geen ondersteuning voor het bewerken van objecten." #: plugins/text/templates/cms/plugins/widgets/tinymce.html:63 #: plugins/text/templates/cms/plugins/widgets/tinymce.html:129 @@ -1194,8 +1154,7 @@ msgstr "Geen object geselecteerd." #: plugins/text/templates/cms/plugins/widgets/tinymce.html:112 #: plugins/text/templates/cms/plugins/widgets/wymeditor.html:73 msgid "Text editor does not support inserting objects." -msgstr "" -"Tekst-bewerker biedt geen ondersteuning voor het invoegen van objecten." +msgstr "Tekst-bewerker biedt geen ondersteuning voor het invoegen van objecten." #: plugins/text/templates/cms/plugins/widgets/tinymce.html:133 #: plugins/text/templates/cms/plugins/widgets/wymeditor.html:94 @@ -1222,7 +1181,7 @@ msgstr "Twitter-zoekopdracht" #: plugins/twitter/models.py:7 msgid "twitter user" -msgstr "twitter gebruiker" +msgstr "twittergebruiker" #: plugins/twitter/models.py:8 plugins/twitter/models.py:17 msgid "count" @@ -1238,48 +1197,42 @@ msgstr "link hint" #: plugins/twitter/models.py:9 msgid "If given, the hint is displayed as link to your Twitter profile." -msgstr "" -"Indien opgegeven wordt deze hint weergegeven als een link naar je Twitter-" -"profiel." +msgstr "Indien opgegeven wordt deze hint weergegeven als een link naar je Twitter-profiel." #: plugins/twitter/models.py:16 msgid "query" -msgstr "" +msgstr "zoekopdracht" #: plugins/twitter/models.py:16 msgid "" "Example: \"brains AND zombies AND from:umbrella AND to:nemesis\": tweets " "from the user \"umbrella\" to the user \"nemesis\" that contain the words " "\"brains\" and \"zombies\"" -msgstr "" -"Voorbeeld: \"hersenen AND zombies AND from:umbrella AND to:nemesis\": tweets " -"van de gebruiker \"umbrella\" aan de gebruiker \"nemesis\" die de woorden " -"\"hersenen\" en \"zombies\" bevatten" +msgstr "Voorbeeld: \"hersenen AND zombies AND from:umbrella AND to:nemesis\": tweets van de gebruiker \"umbrella\" aan de gebruiker \"nemesis\" die de woorden \"hersenen\" en \"zombies\" bevatten" #: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:12 msgid "we said," -msgstr "" +msgstr "we zeiden," #: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:13 msgid "we" -msgstr "" +msgstr "we" #: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:14 msgid "we were" -msgstr "" +msgstr "we waren" #: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:15 msgid "we replied to" -msgstr "" +msgstr "wij beantwoordden" #: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:16 msgid "we were checking out" -msgstr "" +msgstr "wij checkten uit" #: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:17 -#, fuzzy msgid "loading tweets..." -msgstr "Bezig met laden..." +msgstr "tweets aan het laden..." #: plugins/video/cms_plugins.py:10 msgid "Video" @@ -1287,11 +1240,11 @@ msgstr "Video" #: plugins/video/cms_plugins.py:42 msgid "Color Settings" -msgstr "Kleur instellingen" +msgstr "Kleurinstellingen" #: plugins/video/models.py:9 msgid "movie file" -msgstr "video bestand" +msgstr "videobestand" #: plugins/video/models.py:9 msgid "use .flv file or h264 encoded video file" @@ -1302,13 +1255,10 @@ msgid "movie url" msgstr "video url" #: plugins/video/models.py:10 -#, fuzzy msgid "" -"vimeo or youtube video url. Example: http://www.youtube.com/watch?v=-" -"iJ7bs4mTUY" -msgstr "" -"Vimeo of YouTube video url. Voorbeeld:http://www.youtube.com/watch?v=YFa59lK-" -"kpo" +"vimeo or youtube video url. Example: " +"http://www.youtube.com/watch?v=-iJ7bs4mTUY" +msgstr "Vimeo- of YouTube-URL. Voorbeeld: http://www.youtube.com/watch?v=-iJ7bs4mTUY" #: plugins/video/models.py:11 msgid "preview image file" @@ -1397,9 +1347,7 @@ msgstr "Opslaan en opnieuw bewerken" #, python-format msgid "" "Page %(page)s may require approvement by you." -msgstr "" -"Pagina %(page)s moet mogelijk door jou worden " -"goedgekeurd." +msgstr "Pagina %(page)s moet mogelijk door jou worden goedgekeurd." #: templates/admin/cms/mail/approvement_required.html:8 msgid "Last changes" @@ -1502,9 +1450,7 @@ msgstr "Pagina toestanden" msgid "" "This page must be moderated at level %(moderation_level)s, post a message " "for moderator." -msgstr "" -"Deze pagina moet gemodereerd worden op %(moderation_level)s-niveau, stuur " -"een bericht naar de moderator." +msgstr "Deze pagina moet gemodereerd worden op %(moderation_level)s-niveau, stuur een bericht naar de moderator." #: templates/admin/cms/page/change_form.html:187 msgid "Request approvemet" @@ -1574,7 +1520,7 @@ msgstr "eind" #: templates/admin/cms/page/change_list_tree.html:17 msgid "restricted" -msgstr "" +msgstr "beperkt" #: templates/admin/cms/page/change_list_tree.html:19 msgid "last changes" @@ -1704,9 +1650,8 @@ msgid "Can move" msgstr "Kan verplaatsen" #: templates/admin/cms/page/permissions.html:14 -#, fuzzy msgid "Can view" -msgstr "Kan verplaatsen" +msgstr "Kan bekijken" #: templates/admin/cms/page/permissions.html:21 #: templates/admin/cms/page/permissions.html:22 @@ -1728,7 +1673,7 @@ msgstr "Pagina erft geen rechten." #: templates/admin/cms/page/plugin_change_form.html:114 #: templates/cms/toolbar/toolbar.html:24 msgid "Cancel" -msgstr "" +msgstr "Annuleren" #: templates/admin/cms/page/plugin_forms_history.html:9 msgid "An old revision of a plugin can not be saved!" @@ -1745,9 +1690,7 @@ msgstr "Herstel verwijderde %(verbose_name)s" #: templates/admin/cms/page/recover_form.html:24 msgid "Press the save button below to recover this version of the object." -msgstr "" -"Druk op de Opslaan-knop hieronder om deze versie van het object te " -"herstellen." +msgstr "Druk op de Opslaan-knop hieronder om deze versie van het object te herstellen." #: templates/admin/cms/page/revision_form.html:11 #, python-format @@ -1756,9 +1699,7 @@ msgstr "Stel %(verbose_name)s terug" #: templates/admin/cms/page/revision_form.html:24 msgid "Press the save button below to revert to this version of the object." -msgstr "" -"Druk op de Oplaan-knop hieronder om naa deze versie van het object terug te " -"stellen." +msgstr "Druk op de Oplaan-knop hieronder om naa deze versie van het object terug te stellen." #: templates/admin/cms/page/dialog/copy.html:4 msgid "Copy options" @@ -1802,7 +1743,7 @@ msgstr "Beschikbare plugins" #: templates/cms/toolbar/toolbar.html:22 msgid "The selected element can not be moved to the desired location." -msgstr "" +msgstr "Het geselecteerde element kan niet naar de gewenste locatie verplaatst worden" #: templates/cms/toolbar/toolbar.html:23 msgid "Are you sure you want to delete this plugin?" @@ -1814,11 +1755,11 @@ msgstr "omhoog" #: templates/cms/toolbar/toolbar.html:56 msgid "down" -msgstr "naar beneden" +msgstr "omlaag" #: templates/cms/toolbar/toolbar.html:61 msgid "Move to placeholder" -msgstr "" +msgstr "Verplaats naar placeholder" #: templates/cms/toolbar/items/login.html:5 msgid "Username" @@ -1826,9 +1767,8 @@ msgstr "Gebruikersnaam" #: templates/cms/toolbar/items/login.html:10 #: templates/cms/toolbar/items/login.html:12 -#, fuzzy msgid "Login" -msgstr "inloggen" +msgstr "Login" #: templates/cms/toolbar/items/status.html:2 msgid "Status" @@ -1836,12 +1776,12 @@ msgstr "Status" #: templates/cms/toolbar/items/switcher.html:4 msgid "Switch on/off" -msgstr "" +msgstr "Schakel in/uit" #: templatetags/cms_admin.py:86 #, python-format msgid "%(icon)s" -msgstr "" +msgstr "%(icon)s" #: templatetags/cms_admin.py:99 msgid "Unbind page moderation" @@ -1863,10 +1803,9 @@ msgstr "Pagina niet gevonden in %(domain)s" #: templatetags/cms_tags.py:79 #, python-format msgid "" -"A template tag couldn't find the page with lookup arguments `" -"%(page_lookup)s\n" +"A template tag couldn't find the page with lookup arguments `%(page_lookup)s\n" "`. The URL of the request was: http://%(host)s%(path)s" -msgstr "" +msgstr "Een template tag kan de pagina met opzoek argumenten `%(page_lookup)s\n` niet vinden. De URL van het verzoek was: http://%(host)s%(path)s" #: utils/mail.py:38 msgid "CMS - your user account was created." @@ -1889,89 +1828,14 @@ msgstr "keur goed" msgid "CMS - Page %s requires approvement." msgstr "CMS - Pagina %s moet goedgekeurd worden." -#~ msgid "Missing flash plugin." -#~ msgstr "Ontbrekende flash-plugin." - -#~ msgid "Login url: %(login_url)s" -#~ msgstr "Login url: %(login_url)s" - -#~ msgid "Move to %(name)s" -#~ msgstr "Verplaats naar %(name)s" - #~ msgid "move" -#~ msgstr "verplaats" - -#~ msgid "add child" -#~ msgstr "Kind toevoegen" - -#~ msgid "add sibling" -#~ msgstr "voeg in op hetzelfde niveau" - -#~ msgid "history" -#~ msgstr "geschiedenis" - -#~ msgid "Lock" -#~ msgstr "Op slot" - -#~ msgid "Close" -#~ msgstr "Sluiten" - -#~ msgid "Settings" -#~ msgstr "Instellingen" - -#~ msgid "Delete Plugin" -#~ msgstr "Plugin verwijderen" - -#~ msgid "English" -#~ msgstr "Engels" - -#~ msgid "French" -#~ msgstr "Frans" - -#~ msgid "German" -#~ msgstr "Duits" - -#~ msgid "Dutch" -#~ msgstr "Nederlands" - -#~ msgid "two columns" -#~ msgstr "twee kolommen" - -#~ msgid "three columns" -#~ msgstr "drie kolommen" - -#~ msgid "navigation examples" -#~ msgstr "navigatie voorbeelden" +#~ msgstr "move request" #~ msgid "sidebar column" -#~ msgstr "zijbalk kolom" - -#~ msgid "left column" -#~ msgstr "linker kolom" - -#~ msgid "right column" -#~ msgstr "rechter kolom" - -#~ msgid "Articles" -#~ msgstr "Artikelen" - -#~ msgid "Sample App" -#~ msgstr "Voorbeeld App" - -#~ msgid "sample settings page" -#~ msgstr "voorbeeld instellingenpagina" - -#~ msgid "sample my profile page" -#~ msgstr "voorbeeld mijn profiel pagina" - -#~ msgid "Static Menu" -#~ msgstr "Statisch Menu" - -#~ msgid "Static Menu2" -#~ msgstr "Statisch Menu2" +#~ msgstr "background color" #~ msgid "fgcolor" -#~ msgstr "voorgrondkleur" +#~ msgstr "foreground color" #~ msgid "Wanted language has not been translated yet." -#~ msgstr "Er is nog niet naar de gevraagde taal vertaald." +#~ msgstr "Requested language has not been translated yet." diff --git a/cms/locale/nl/LC_MESSAGES/djangojs.po b/cms/locale/nl/LC_MESSAGES/djangojs.po index a000e75e7e6..c70a843c197 100644 --- a/cms/locale/nl/LC_MESSAGES/djangojs.po +++ b/cms/locale/nl/LC_MESSAGES/djangojs.po @@ -1,40 +1,39 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# -# Chris Wesseling , 2011 +# +# Translators: +# Chris Wesseling , 2011. +# Jacques de Hooge <>, 2012. msgid "" msgstr "" "Project-Id-Version: django-cms\n" -"Report-Msgid-Bugs-To: \n" +"Report-Msgid-Bugs-To: https://github.com/divio/django-cms/issues\n" "POT-Creation-Date: 2011-08-14 09:44-0500\n" -"PO-Revision-Date: 2011-03-22 15:38+0000\n" -"Last-Translator: ojii \n" +"PO-Revision-Date: 2012-06-08 19:13+0000\n" +"Last-Translator: Jacques de Hooge <>\n" "Language-Team: LANGUAGE \n" -"Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" #: static/cms/js/change_form.js:31 msgid "" "Are you sure you want to change the %(field_name)s without saving the page " "first?" -msgstr "" -"Weet je zeker dat je het veld %(field_name)s wilt aanpassen zonder de pagina " -"eerst op te slaan?" +msgstr "Weet je zeker dat je het veld %(field_name)s wilt aanpassen zonder de pagina eerst op te slaan?" #: static/cms/js/change_form.js:69 msgid "" "Not all plugins are saved. Are you sure you want to save the page?\n" "All unsaved plugin content will tried to save." -msgstr "" +msgstr "Niet alle plugins zijn opgeslagen. Weet u zeker dat u de pagina wil opslaan? Er zal geprobeerd worden alle nog niet opgeslagen inhoud alsnog op te slaan." #: static/cms/js/change_form.js:127 msgid "Are you sure you want to change tabs without saving the page first?" -msgstr "" -"Weet je zeker dat je van tabblad wilt wisselen zonder de pagina op te slaan?" +msgstr "Weet je zeker dat je van tabblad wilt wisselen zonder de pagina op te slaan?" #: static/cms/js/plugin_editor.js:132 msgid "Are you sure you want to delete this plugin?" diff --git a/cms/locale/pl/LC_MESSAGES/django.po b/cms/locale/pl/LC_MESSAGES/django.po index 667987f5c87..ad0b34f27f0 100644 --- a/cms/locale/pl/LC_MESSAGES/django.po +++ b/cms/locale/pl/LC_MESSAGES/django.po @@ -1,21 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# +# Translators: +# , 2012. +# , 2012. msgid "" msgstr "" "Project-Id-Version: django-cms\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-14 09:49-0500\n" -"PO-Revision-Date: 2011-03-22 15:24+0000\n" -"Last-Translator: ojii \n" +"Report-Msgid-Bugs-To: https://github.com/divio/django-cms/issues\n" +"POT-Creation-Date: 2011-08-14 09:47-0500\n" +"PO-Revision-Date: 2012-03-12 00:09+0000\n" +"Last-Translator: angularcircle \n" "Language-Team: divio.ch \n" -"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2)\n" +"Language: pl\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" "X-Poedit-Country: SWITZERLAND\n" "X-Poedit-Language: English\n" "X-Poedit-SourceCharset: utf-8\n" @@ -26,7 +28,7 @@ msgstr "Tryb edycji" #: cms_toolbar.py:77 msgid "django CMS" -msgstr "" +msgstr "django CMS" #: cms_toolbar.py:108 templates/admin/cms/page/menu_item.html:73 msgid "Publish" @@ -34,7 +36,7 @@ msgstr "Publikuj" #: cms_toolbar.py:112 msgid "Request Approval" -msgstr "" +msgstr "Prośba o zaakceptowanie." #: cms_toolbar.py:127 cms_toolbar.py:136 msgid "Logout" @@ -79,7 +81,7 @@ msgstr "Pokaż historię" #: cms_toolbar.py:205 msgid "Admin" -msgstr "" +msgstr "django CMS" #: plugin_base.py:65 msgid "Advanced options" @@ -115,7 +117,7 @@ msgstr "Inna strona z takim skrótem adresu już istnieje." #: admin/forms.py:135 msgid "Menu Title" -msgstr "Tytuł menu" +msgstr "Tytuł w menu" #: admin/forms.py:136 msgid "Overwrite what is displayed in the menu" @@ -126,9 +128,9 @@ msgid "Page Title" msgstr "Tytuł strony" #: admin/forms.py:138 -msgid "Overwrites what is displayed at the top of your browser or in bookmarks" -msgstr "" -"Nadpisuje to co jest wyświetlane u góry przeglądarki lub w jej zakładkach" +msgid "" +"Overwrites what is displayed at the top of your browser or in bookmarks" +msgstr "Nadpisuje to co jest wyświetlane u góry przeglądarki lub w jej zakładkach" #: admin/forms.py:139 msgid "Application" @@ -171,9 +173,9 @@ msgid "Invalid URL, use /my/url format." msgstr "Nieprawidłowy URL. Użyj formatu /moj/url." #: admin/forms.py:181 -#, fuzzy, python-format +#, python-format msgid "Page with redirect url %r already exist" -msgstr "Inna strona z takim skrótem adresu już istnieje." +msgstr "Strona z przekierowaniem %r istnieje." #: admin/forms.py:191 admin/forms.py:192 migrations/0001_initial.py:41 #: models/permissionmodels.py:16 @@ -184,18 +186,15 @@ msgstr "użytkownik" msgid "" "Add page permission requires also access to children, or descendants, " "otherwise added page can't be changed by its creator." -msgstr "" -"Dodanie praw do strony wymaga dostępu do ich dzieci lub potomków, inaczej " -"dodana strona nie może zostać zmieniona przez jego twórcę." +msgstr "Dodanie praw do strony wymaga dostępu do ich dzieci lub potomków, inaczej dodana strona nie może zostać zmieniona przez jego twórcę." #: admin/forms.py:221 msgid "Add page permission also requires edit page permission." msgstr "Dodanie praw do strony wymaga także uprawnień do ich edycji." #: admin/forms.py:248 -#, fuzzy msgid "can_view" -msgstr "podgląd" +msgstr "can_view" #: admin/forms.py:260 msgid "Please select user or group first." @@ -230,9 +229,7 @@ msgstr "Powiadom użytkownika" msgid "" "Send email notification to user about username or password change. Requires " "user email." -msgstr "" -"Wyślij użytkownikowi email z powiadomieniem o zmianie loginu lub hasła. " -"Wymaga emaila użytkownika." +msgstr "Wyślij użytkownikowi email z powiadomieniem o zmianie loginu lub hasła. Wymaga emaila użytkownika." #: admin/forms.py:318 msgid "New password" @@ -244,22 +241,17 @@ msgstr "Potwierdź hasło" #: admin/forms.py:339 msgid "Email notification requires valid email address." -msgstr "" -"Powiadomienie email'em wymaga podania poprawnego adresu poczty " -"elektronicznej." +msgstr "Powiadomienie email'em wymaga podania poprawnego adresu poczty elektronicznej." #: admin/forms.py:341 msgid "" "The permission to add new pages requires the permission to change pages!" -msgstr "" -"Uprawnienie dodawania nowych stron wymaga uprawnienia do ich modyfikacji!" +msgstr "Uprawnienie dodawania nowych stron wymaga uprawnienia do ich modyfikacji!" #: admin/forms.py:343 msgid "" "The permission to add new users requires the permission to change users!" -msgstr "" -"Uprawnienie dodawania nowych użytkowników wymaga uprawnienia do modyfikacji " -"ich kont." +msgstr "Uprawnienie dodawania nowych użytkowników wymaga uprawnienia do modyfikacji ich kont." #: admin/forms.py:345 msgid "To add permissions you also need to edit them!" @@ -271,9 +263,7 @@ msgstr "Ustawienia podstawowe" #: admin/pageadmin.py:100 msgid "Note: This page reloads if you change the selection. Save it first." -msgstr "" -"Uwaga: gdy zmienione zostanie zaznaczenie wybranego elementu strona zostanie " -"automatycznie przeładowana, aby nie utracić danych najpierw zapisz." +msgstr "Uwaga: gdy zmienione zostanie zaznaczenie wybranego elementu strona zostanie automatycznie przeładowana, aby nie utracić danych najpierw zapisz." #: admin/pageadmin.py:102 admin/pageadmin.py:154 msgid "Hidden" @@ -288,9 +278,8 @@ msgid "SEO Settings" msgstr "Ustawienia SEO" #: admin/pageadmin.py:299 -#, fuzzy msgid "You have no permission to change the template" -msgstr "Brak zezwolenia na zmianę tej strony" +msgstr "Nie posiadasz uprawnień pozwalających na na zmianę szablonu" #: admin/pageadmin.py:485 msgid "higher" @@ -316,7 +305,7 @@ msgstr "Jest dostępne tylko jedno tłumaczenie dla tej strony" #: admin/pageadmin.py:969 #, python-format msgid "Title and plugins with language %(language)s was deleted" -msgstr "Tytuł i pluginy dla języka %(language)s zostały usunięte" +msgstr "Tytuł i wtyczki dla języka %(language)s zostały usunięte" #: admin/pageadmin.py:991 msgid "Are you sure?" @@ -331,9 +320,8 @@ msgid "You do not have permission to change this page's in_navigation status" msgstr "Brak zezwolenia na zmianę statusu in_navigation dla tej strony" #: admin/pageadmin.py:1079 -#, fuzzy msgid "You have no permission to add a plugin" -msgstr "Brak zezwolenia na zmianę tej strony" +msgstr "Nie posiadasz uprawnień by dodać wtyczkę" #: admin/pageadmin.py:1126 admin/pageadmin.py:1158 msgid "Language must be set to a supported language!" @@ -342,7 +330,7 @@ msgstr "Język musi być ustawiony na jeden z dostępnych!" #: admin/pageadmin.py:1138 #, python-format msgid "%(plugin_name)s plugin added to %(placeholder)s" -msgstr "Plugin %(plugin_name)s został dodany do %(placeholder)s" +msgstr "Wtyczka %(plugin_name)s została dodana do %(placeholder)s" #: admin/pageadmin.py:1156 msgid "You do not have permission to change this page" @@ -353,63 +341,54 @@ msgid "Language must be different than the copied language!" msgstr "Wybrany język musi być inny, niż ten z którego go skopiowano!" #: admin/pageadmin.py:1166 -#, fuzzy msgid "You do not have permission to add plugins" -msgstr "Brak zezwolenia na zmianę tej strony" +msgstr "Nie posiadasz uprawnień by dodać wtyczki" #: admin/pageadmin.py:1173 #, python-format msgid "Copied %(language)s plugins to %(placeholder)s" -msgstr "Przekopiowano pluginy %(language)s do %(placeholder)s" +msgstr "Przekopiowano wtyczki %(language)s do %(placeholder)s" #: admin/pageadmin.py:1186 admin/pageadmin.py:1294 admin/pageadmin.py:1316 -#, fuzzy msgid "You have no permission to change this page" -msgstr "Brak zezwolenia na zmianę tej strony" +msgstr "Brak zezwolenia na zmianę strony" #: admin/pageadmin.py:1221 -#, fuzzy msgid "You have no permission to edit a plugin" -msgstr "Brak zezwolenia na zmianę tej strony" +msgstr "Nie posiadasz uprawnień do edycji wtyczki" #: admin/pageadmin.py:1256 #, python-format msgid "" "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -msgstr "" -"Plugin %(plugin_name)s został zmieniony na pozycji %(position)s w " -"%(placeholder)s" +msgstr "Wtyczka %(plugin_name)s została zmieniona na pozycji %(position)s w %(placeholder)s" #: admin/pageadmin.py:1311 -#, fuzzy msgid "You have no permission to move a plugin" -msgstr "Brak zezwolenia na zmianę tej strony" +msgstr "Nie posiadasz uprawnień do przenoszenia wtyczki" #: admin/pageadmin.py:1329 msgid "Plugins where moved" -msgstr "Plugin'y zostały przeniesione" +msgstr "Wtyczki zostały przeniesione" #: admin/pageadmin.py:1343 -#, fuzzy msgid "You have no permission to remove a plugin" -msgstr "Brak zezwolenia na zmianę tej strony" +msgstr "Nie posiadasz uprawnień by usunąć wtyczkę" #: admin/pageadmin.py:1361 admin/placeholderadmin.py:292 #, python-format msgid "" "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " "deleted." -msgstr "" -"Plugin %(plugin_name)s na pozycji %(position)s w %(placeholder)s został " -"usunięty." +msgstr "Wtyczka %(plugin_name)s na pozycji %(position)s w %(placeholder)s została usunięta." #: admin/permissionadmin.py:72 msgid "View restriction" -msgstr "" +msgstr "Ograniczenie dostępu" #: admin/permissionadmin.py:73 msgid "View restrictions" -msgstr "" +msgstr "Ograniczenia wyświetlania" #: admin/permissionadmin.py:133 models/permissionmodels.py:75 msgid "Page permissions" @@ -424,19 +403,16 @@ msgid "Page permissions management" msgstr "Zarządzanie prawami dostępu do stron" #: admin/placeholderadmin.py:150 admin/placeholderadmin.py:191 -#, fuzzy msgid "You don't have permission to add content here." -msgstr "Brak zezwolenia na zmianę tej strony" +msgstr "Brak zezwolenia na dodawanie treści." #: admin/placeholderadmin.py:187 -#, fuzzy msgid "You don't have permission to add plugins" -msgstr "Brak zezwolenia na zmianę tej strony" +msgstr "Nie posiadasz uprawnień by dodać wtyczki" #: admin/placeholderadmin.py:288 -#, fuzzy msgid "You don't have permission to delete a plugin" -msgstr "Brak zezwolenia na zmianę tej strony" +msgstr "Nie posiadasz uprawnień by usunąć wtyczkę" #: admin/useradmin.py:25 msgid "User details" @@ -464,11 +440,11 @@ msgstr "Wykorzystaj ten sam szablon co strona nadrzędna" #: forms/fields.py:19 msgid "Select a valid site" -msgstr "" +msgstr "Wybierz poprawną domenę" #: forms/fields.py:20 msgid "Select a valid page" -msgstr "" +msgstr "Wybierz poprawną podstronę" #: forms/widgets.py:173 msgid "Add Another" @@ -510,7 +486,7 @@ msgstr "slot" #: migrations/0001_initial.py:18 models/pluginmodel.py:80 msgid "plugin_name" -msgstr "nazwa_wtyczki" +msgstr "nazwa wtyczki" #: migrations/0001_initial.py:25 migrations/0011_title_overwrites.py:12 #: migrations/0011_title_overwrites.py:15 models/titlemodels.py:11 @@ -720,11 +696,11 @@ msgstr "do zatwierdzenia el. nadrzędnych" #: models/pagemodel.py:52 msgid "for logged in users only" -msgstr "" +msgstr "tylko dla zalogowanych" #: models/pagemodel.py:53 msgid "for anonymous users only" -msgstr "" +msgstr "tylko dla niezalogowanych" #: models/pagemodel.py:61 msgid "created by" @@ -738,15 +714,11 @@ msgstr "zmienione przez" msgid "" "When the page should go live. Status must be \"Published\" for page to go " "live." -msgstr "" -"Aby strona była publicznie widoczna w internecie musi zostać \"opublikowana" -"\". W tym celu ustaw status \"opublikowano\"." +msgstr "Aby strona była publicznie widoczna w internecie musi zostać \"opublikowana\". W tym celu ustaw status \"opublikowano\"." #: models/pagemodel.py:67 msgid "When to expire the page. Leave empty to never expire." -msgstr "" -"Czas kiedy strona ma przestać być publikowana. Pozostaw to pole puste, gdy " -"strona zawsze ma być publikowana." +msgstr "Czas kiedy strona ma przestać być publikowana. Pozostaw to pole puste, gdy strona zawsze ma być publikowana." #: models/pagemodel.py:69 msgid "All ancestors will not be displayed in the navigation" @@ -756,13 +728,11 @@ msgstr "Wszyscy przodkowie nie będą wyświetlani w menu nawigacyjnym" msgid "" "An unique identifier that is used with the page_url templatetag for linking " "to this page" -msgstr "" -"Unikalny identyfikator używany przez templatetag page_url do tworzenia " -"odnośnika do tej strony" +msgstr "Unikalny identyfikator używany przez templatetag page_url do tworzenia odnośnika do tej strony" #: models/pagemodel.py:71 msgid "attached menu" -msgstr "" +msgstr "Przypisane menu" #: models/pagemodel.py:72 msgid "is published" @@ -770,7 +740,7 @@ msgstr "czy opublikowany" #: models/pagemodel.py:74 msgid "The template used to render the content." -msgstr "Szablon, który będzie użyty do renderowania treści." +msgstr "Szablon, który będzie wykorzystany do wyświetlenia treści na stronie." #: models/pagemodel.py:75 msgid "The site the page is accessible at." @@ -786,11 +756,11 @@ msgstr "Status moderatora" #: models/pagemodel.py:85 msgid "menu visibility" -msgstr "" +msgstr "widoczność w menu" #: models/pagemodel.py:85 msgid "limit when this page is visible in the menu" -msgstr "" +msgstr "określa kiedy strona jest widoczna w men" #: models/pagemodel.py:105 msgid "pages" @@ -834,11 +804,11 @@ msgstr "może moderować" #: models/permissionmodels.py:28 msgid "view restricted" -msgstr "" +msgstr "Strona z ograniczeniami" #: models/permissionmodels.py:28 msgid "frontend view restriction" -msgstr "" +msgstr "Ograniczenia dostępu" #: models/permissionmodels.py:51 msgid "can recover pages" @@ -850,9 +820,7 @@ msgstr "może odzyskać każdą usuniętą stronę" #: models/permissionmodels.py:52 msgid "If none selected, user haves granted permissions to all sites." -msgstr "" -"Jeśli niczego nie zaznaczono użytkownicy mają uprawnienia do wszystkich " -"witryn." +msgstr "Jeśli niczego nie zaznaczono użytkownicy mają uprawnienia do wszystkich witryn." #: models/permissionmodels.py:52 msgid "sites" @@ -897,7 +865,7 @@ msgstr "szerokość" #: models/pluginmodel.py:140 msgid "" -msgstr "" +msgstr "" #: models/titlemodels.py:12 msgid "overwrite the title in the menu" @@ -922,7 +890,7 @@ msgstr "plik" #: plugins/file/templates/cms/plugins/file.html:6 msgid "file missing!" -msgstr "" +msgstr "brak pliku!" #: plugins/flash/cms_plugins.py:9 msgid "Flash" @@ -939,16 +907,13 @@ msgstr "wysokość" #: plugins/flash/templates/cms/plugins/flash.html:40 #: plugins/video/templates/cms/plugins/video.html:60 -#, fuzzy msgid "Missing flash plugin. Please download the latest Adobe Flash Player: " -msgstr "" -"Nie posiadasz zainstalowanego pluginu Adobe Flash Player. Możesz go pobrać " -"tutaj." +msgstr "Brak wtyczki Flash. Pobierz najnowszą wersję Adobe Flash Player: " #: plugins/flash/templates/cms/plugins/flash.html:42 #: plugins/video/templates/cms/plugins/video.html:62 msgid "Get Adobe Flash Player" -msgstr "" +msgstr "Zdobądź Adobe Flash Player" #: plugins/googlemap/cms_plugins.py:10 msgid "Google Map" @@ -984,9 +949,7 @@ msgstr "szerokość geograficzna" #: plugins/googlemap/models.py:19 msgid "Use latitude & longitude to fine tune the map possiton." -msgstr "" -"Użyj szerokości i długości geograficznej w celu dostosowania współrzędnych " -"na mapie." +msgstr "Użyj szerokości i długości geograficznej w celu dostosowania współrzędnych na mapie." #: plugins/googlemap/models.py:20 msgid "longitude" @@ -1010,7 +973,7 @@ msgstr "Mapa" #: plugins/googlemap/templates/cms/plugins/googlemap.html:76 msgid "Your address: " -msgstr "" +msgstr "Twój adres" #: plugins/googlemap/templates/cms/plugins/googlemap.html:78 msgid "Calculate route" @@ -1018,7 +981,7 @@ msgstr "Oblicz trasę" #: plugins/inherit/cms_plugins.py:17 msgid "Inherit Plugins from Page" -msgstr "Odziedzicz pluginy ze strony" +msgstr "Odziedzicz wtyczki ze strony" #: plugins/inherit/forms.py:23 msgid "Language or Page must be filled out" @@ -1028,13 +991,11 @@ msgstr "Pola \"język\", bądź \"storna\" muszą zostać wypełnione" msgid "" "Choose a page to include its plugins into this placeholder, empty will " "choose current page" -msgstr "" -"Wybierz stronę z której pluginy mają zostać umierzone w tym placeholderze. " -"Pozostaw to pole puste, by wykorzystana została aktualna strona." +msgstr "Wybierz stronę z której wtyczki mają zostać umieszczone w tym placeholderze. Pozostaw to pole puste, by wykorzystana została aktualna strona." #: plugins/inherit/models.py:11 msgid "Optional: the language of the plugins you want" -msgstr "Opcjonalne: język dla wybranych pluginów" +msgstr "Opcjonalne: język dla wybranych wtyczek" #: plugins/link/cms_plugins.py:12 msgid "Link" @@ -1071,7 +1032,7 @@ msgstr "Obrazek" #: plugins/picture/models.py:14 msgid "center" -msgstr "" +msgstr "wyśrodkuj" #: plugins/picture/models.py:15 msgid "left" @@ -1127,8 +1088,7 @@ msgstr "HTML" #: plugins/snippet/models.py:15 msgid "" "Enter a template (i.e. \"snippets/plugin_xy.html\") which will be rendered. " -msgstr "" -"Podaj szablon (np. \"snippets/plugin_xy.html\"), który będzie renderowany. " +msgstr "Podaj ścieżkę do szablonu (np. \"snippets/plugin_xy.html\"), który ma zostać wyrenderowany. " #: plugins/snippet/models.py:25 msgid "Snippets" @@ -1167,12 +1127,12 @@ msgstr "Wtyczki" #: plugins/text/templates/cms/plugins/widgets/tinymce.html:106 #: plugins/text/templates/cms/plugins/widgets/wymeditor.html:67 msgid "Please select a plugin type." -msgstr "Proszę wybrać typ pluginu." +msgstr "Proszę wybrać typ wtyczki." #: plugins/text/templates/cms/plugins/widgets/tinymce.html:54 #: plugins/text/templates/cms/plugins/widgets/wymeditor.html:110 msgid "Edit selected plugin" -msgstr "Zmień wybrany plugin" +msgstr "Zmień wybraną wtyczkę" #: plugins/text/templates/cms/plugins/widgets/tinymce.html:58 #: plugins/text/templates/cms/plugins/widgets/tinymce.html:124 @@ -1194,16 +1154,16 @@ msgstr "Edytor tekstowy nie obsługuje wstawiania obiektów." #: plugins/text/templates/cms/plugins/widgets/tinymce.html:133 #: plugins/text/templates/cms/plugins/widgets/wymeditor.html:94 msgid "Not a plugin object" -msgstr "Obiekt nie jest pluginem." +msgstr "Obiekt nie jest wtyczką." #: plugins/text/templates/cms/plugins/widgets/wymeditor.html:106 #: templates/admin/cms/page/widgets/installed_plugins_inc.html:4 msgid "Available Plugins" -msgstr "Dostępne Plugin'y" +msgstr "Dostępne wtyczki" #: plugins/text/templates/cms/plugins/widgets/wymeditor.html:109 msgid "Insert plugin" -msgstr "wstaw plugin" +msgstr "Wstaw wtyczkę" #: plugins/twitter/cms_plugins.py:10 #: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:27 @@ -1232,9 +1192,7 @@ msgstr "podpowiedź dla odnośnika" #: plugins/twitter/models.py:9 msgid "If given, the hint is displayed as link to your Twitter profile." -msgstr "" -"Jeśli podana, wskazówka jest wyświetlana jako link do twojego profilu w " -"Twitterze." +msgstr "Jeśli podana, wskazówka jest wyświetlana jako link do twojego profilu w Twitterze." #: plugins/twitter/models.py:16 msgid "query" @@ -1268,9 +1226,8 @@ msgid "we were checking out" msgstr "" #: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:17 -#, fuzzy msgid "loading tweets..." -msgstr "Ładowanie..." +msgstr "ładowanie tweetów" #: plugins/video/cms_plugins.py:10 msgid "Video" @@ -1293,13 +1250,10 @@ msgid "movie url" msgstr "url pliku wideo" #: plugins/video/models.py:10 -#, fuzzy msgid "" -"vimeo or youtube video url. Example: http://www.youtube.com/watch?v=-" -"iJ7bs4mTUY" -msgstr "" -"adres filmu na vimeo, bądź youtube np. http://www.youtube.com/watch?" -"v=YFa59lK-kpo" +"vimeo or youtube video url. Example: " +"http://www.youtube.com/watch?v=-iJ7bs4mTUY" +msgstr "Adres URL do klipu wideo z Vimeo lub YouTube. Przykład: http://www.youtube.com/watch?v=-iJ7bs4mTUY" #: plugins/video/models.py:11 msgid "preview image file" @@ -1354,7 +1308,7 @@ msgstr "kolor przycisku" #: plugins/video/models.py:28 msgid "button over color" -msgstr "" +msgstr "kolor przycisku (przy najechaniu kursorem)" #: plugins/video/models.py:29 msgid "button highlight color" @@ -1388,9 +1342,7 @@ msgstr "Zapisz i kontynuuj edycję" #, python-format msgid "" "Page %(page)s may require approvement by you." -msgstr "" -"Strona %(page)s może wymagać zatwierdzenia " -"przez ciebie." +msgstr "Strona %(page)s może wymagać zatwierdzenia przez ciebie." #: templates/admin/cms/mail/approvement_required.html:8 msgid "Last changes" @@ -1399,8 +1351,7 @@ msgstr "Ostatnie zmiany" #: templates/admin/cms/mail/base.html:55 #, python-format msgid "Log in to administration here." -msgstr "" -"zaloguj się do panelu administracyjnego tutaj." +msgstr "zaloguj się do panelu administracyjnego tutaj." #: templates/admin/cms/mail/page_user_change.html:7 msgid "Username:" @@ -1495,9 +1446,7 @@ msgstr "Statusy strony" msgid "" "This page must be moderated at level %(moderation_level)s, post a message " "for moderator." -msgstr "" -"Ta strona musi być moderowana na poziomie %(moderation_level)s, wyślij " -"wiadomość do moderatora." +msgstr "Ta strona musi być moderowana na poziomie %(moderation_level)s, wyślij wiadomość do moderatora." #: templates/admin/cms/page/change_form.html:187 msgid "Request approvemet" @@ -1567,7 +1516,7 @@ msgstr "koniec" #: templates/admin/cms/page/change_list_tree.html:17 msgid "restricted" -msgstr "" +msgstr "ograniczone" #: templates/admin/cms/page/change_list_tree.html:19 msgid "last changes" @@ -1601,7 +1550,7 @@ msgstr "wstaw wewnątrz" #: templates/admin/cms/page/menu_item.html:23 msgid "softroot" -msgstr "" +msgstr "softroot" #: templates/admin/cms/page/menu_item.html:23 msgid "home" @@ -1697,9 +1646,8 @@ msgid "Can move" msgstr "Może przenosić" #: templates/admin/cms/page/permissions.html:14 -#, fuzzy msgid "Can view" -msgstr "Może przenosić" +msgstr "Może wyświetlać" #: templates/admin/cms/page/permissions.html:21 #: templates/admin/cms/page/permissions.html:22 @@ -1721,11 +1669,11 @@ msgstr "Strona nie dziedziczy żadnych uprawnień." #: templates/admin/cms/page/plugin_change_form.html:114 #: templates/cms/toolbar/toolbar.html:24 msgid "Cancel" -msgstr "" +msgstr "Anuluj" #: templates/admin/cms/page/plugin_forms_history.html:9 msgid "An old revision of a plugin can not be saved!" -msgstr "Stara wersja pluginu nie może zostać zapisana!" +msgstr "Stara wersja wtyczki nie może zostać zapisana!" #: templates/admin/cms/page/plugin_forms_ok.html:21 msgid "Plugin saved successfully." @@ -1759,11 +1707,11 @@ msgstr "Wybierz opcje kopiowania" #: templates/admin/cms/page/widgets/installed_plugins_inc.html:7 msgid "Generic" -msgstr "" +msgstr "Ogólne" #: templates/admin/cms/page/widgets/installed_plugins_inc.html:15 msgid "Add Plugin" -msgstr "Dodaj Plugin" +msgstr "Dodaj wtyczkę" #: templates/admin/cms/page/widgets/installed_plugins_inc.html:18 msgid "From Language" @@ -1771,31 +1719,31 @@ msgstr "Z języka" #: templates/admin/cms/page/widgets/installed_plugins_inc.html:25 msgid "Copy Plugins" -msgstr "Skopiuj plugin'y" +msgstr "Skopiuj wtyczki" #: templates/admin/cms/page/widgets/plugin_editor.html:12 msgid "You must save the page first to add plugins." -msgstr "Musisz zapisać stronę przed dodaniem pluginów." +msgstr "Musisz zapisać stronę przed dodaniem wtyczek." #: templates/admin/cms/page/widgets/plugin_editor.html:15 msgid "No Plugin selected. Selected one on the left side" -msgstr "Nie wybrano żadnego Plugin'a. Wybierz jeden z menu po lewej stronie" +msgstr "Nie wybrano żadnej wtyczki. Wybierz jedną z menu po lewej stronie" #: templates/admin/cms/page/widgets/plugin_editor.html:17 msgid "No Plugins present. Add a plugin to this placeholder-slot." -msgstr "Nie dodano jeszcze pluginów. Dodaj plugin dla tego slotu." +msgstr "Nie dodano jeszcze wtyczek. Dodaj wtyczkę dla tego slotu." #: templates/cms/toolbar/placeholder.html:32 msgid "Available plugins" -msgstr "" +msgstr "Dostępne wtyczki" #: templates/cms/toolbar/toolbar.html:22 msgid "The selected element can not be moved to the desired location." -msgstr "" +msgstr "Wybrany element nie może być przeniesiony do wybranego miejsca." #: templates/cms/toolbar/toolbar.html:23 msgid "Are you sure you want to delete this plugin?" -msgstr "Czy na pewno chcesz usunąć ten plugin?" +msgstr "Czy na pewno chcesz usunąć tę wtyczkę?" #: templates/cms/toolbar/toolbar.html:55 msgid "up" @@ -1807,7 +1755,7 @@ msgstr "przenieś niżej" #: templates/cms/toolbar/toolbar.html:61 msgid "Move to placeholder" -msgstr "" +msgstr "Przenieś do placeholdera" #: templates/cms/toolbar/items/login.html:5 msgid "Username" @@ -1815,9 +1763,8 @@ msgstr "Użytkownik" #: templates/cms/toolbar/items/login.html:10 #: templates/cms/toolbar/items/login.html:12 -#, fuzzy msgid "Login" -msgstr "zaloguj się" +msgstr "Zaloguj" #: templates/cms/toolbar/items/status.html:2 msgid "Status" @@ -1825,12 +1772,12 @@ msgstr "Status" #: templates/cms/toolbar/items/switcher.html:4 msgid "Switch on/off" -msgstr "" +msgstr "Włącz/wyłącz" #: templatetags/cms_admin.py:86 #, python-format msgid "%(icon)s" -msgstr "" +msgstr "%(icon)s" #: templatetags/cms_admin.py:99 msgid "Unbind page moderation" @@ -1847,15 +1794,14 @@ msgstr "Wyłącz moderację dla potomków strony" #: templatetags/cms_tags.py:78 #, python-format msgid "Page not found on %(domain)s" -msgstr "" +msgstr "Strona nie została odnaleziona na %(domain)s" #: templatetags/cms_tags.py:79 #, python-format msgid "" -"A template tag couldn't find the page with lookup arguments `" -"%(page_lookup)s\n" +"A template tag couldn't find the page with lookup arguments `%(page_lookup)s\n" "`. The URL of the request was: http://%(host)s%(path)s" -msgstr "" +msgstr "Nie udało się odnaleźć podstrony za pośrednictwem tagu w szablonie do którego przekazano następujące argumenty: `%(page_lookup)s`. Adres URL zapytania to: http://%(host)s%(path)s" #: utils/mail.py:38 msgid "CMS - your user account was created." @@ -1878,38 +1824,14 @@ msgstr "zaakceptowania" msgid "CMS - Page %s requires approvement." msgstr "CMS - Strona %s wymaga zaakceptowania." -#~ msgid "Missing flash plugin." -#~ msgstr "Brak pluginu dla Flash'a." - -#~ msgid "Move to %(name)s" -#~ msgstr "Przenieś do %(name)s" - #~ msgid "move" -#~ msgstr "przenieś" - -#~ msgid "add child" -#~ msgstr "Dodaj podstronę" - -#~ msgid "add sibling" -#~ msgstr "dodaj stronę" - -#~ msgid "history" -#~ msgstr "Historia" - -#~ msgid "Lock" -#~ msgstr "Zablokuj" - -#~ msgid "Close" -#~ msgstr "Zamknij" - -#~ msgid "Settings" -#~ msgstr "Ustawienia" +#~ msgstr "move request" -#~ msgid "Delete Plugin" -#~ msgstr "Usuń plugin" +#~ msgid "sidebar column" +#~ msgstr "background color" #~ msgid "fgcolor" -#~ msgstr "kolor tła" +#~ msgstr "foreground color" #~ msgid "Wanted language has not been translated yet." -#~ msgstr "Nie ma jeszcze tłumaczenia dla tego języka." +#~ msgstr "Requested language has not been translated yet." diff --git a/cms/locale/pl/LC_MESSAGES/djangojs.po b/cms/locale/pl/LC_MESSAGES/djangojs.po index a51d13299a8..6fd4f7fb49d 100644 --- a/cms/locale/pl/LC_MESSAGES/djangojs.po +++ b/cms/locale/pl/LC_MESSAGES/djangojs.po @@ -1,34 +1,34 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# +# Translators: +# , 2012. msgid "" msgstr "" "Project-Id-Version: django-cms\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-14 09:45-0500\n" -"PO-Revision-Date: 2011-03-22 15:38+0000\n" -"Last-Translator: ojii \n" +"Report-Msgid-Bugs-To: https://github.com/divio/django-cms/issues\n" +"POT-Creation-Date: 2011-08-14 09:44-0500\n" +"PO-Revision-Date: 2012-03-11 23:18+0000\n" +"Last-Translator: angularcircle \n" "Language-Team: LANGUAGE \n" -"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2)\n" +"Language: pl\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" #: static/cms/js/change_form.js:31 msgid "" "Are you sure you want to change the %(field_name)s without saving the page " "first?" -msgstr "" -"Czy na pewno chcesz zmienić %(field_name)s nie zapisując wcześniej strony?" +msgstr "Czy na pewno chcesz zmienić %(field_name)s nie zapisując wcześniej strony?" #: static/cms/js/change_form.js:69 msgid "" "Not all plugins are saved. Are you sure you want to save the page?\n" "All unsaved plugin content will tried to save." -msgstr "" +msgstr "Nie wszystkie pluginy zostały zapisane. Czy na pewno chcesz zapiać zmiany wprowadzone na stronie? Podjęta zostanie próba zapisu wszystkich niezapisanych pluginów. " #: static/cms/js/change_form.js:127 msgid "Are you sure you want to change tabs without saving the page first?" diff --git a/cms/locale/pt_BR/LC_MESSAGES/django.po b/cms/locale/pt_BR/LC_MESSAGES/django.po index cafae02995e..f0dd0792763 100644 --- a/cms/locale/pt_BR/LC_MESSAGES/django.po +++ b/cms/locale/pt_BR/LC_MESSAGES/django.po @@ -1,20 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# +# Translators: +# Fábio , 2011. +# Juliano Fischer Naves <>, 2012. msgid "" msgstr "" "Project-Id-Version: django-cms\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-14 09:48-0500\n" -"PO-Revision-Date: 2011-03-22 15:24+0000\n" -"Last-Translator: ojii \n" -"Language-Team: Portuguese (Brazilian) (http://www.transifex.net/projects/p/" -"django-cms/team/pt_BR/)\n" -"Language: pt_BR\n" +"Report-Msgid-Bugs-To: https://github.com/divio/django-cms/issues\n" +"POT-Creation-Date: 2011-08-14 09:47-0500\n" +"PO-Revision-Date: 2012-06-11 03:00+0000\n" +"Last-Translator: Juliano Fischer Naves <>\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/django-cms/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1)\n" "X-Poedit-Country: SWITZERLAND\n" "X-Poedit-Language: English\n" @@ -26,7 +28,7 @@ msgstr "Modo de edição" #: cms_toolbar.py:77 msgid "django CMS" -msgstr "" +msgstr "django CMS" #: cms_toolbar.py:108 templates/admin/cms/page/menu_item.html:73 msgid "Publish" @@ -34,7 +36,7 @@ msgstr "Publicar" #: cms_toolbar.py:112 msgid "Request Approval" -msgstr "" +msgstr "Solicitação de aprovação" #: cms_toolbar.py:127 cms_toolbar.py:136 msgid "Logout" @@ -79,7 +81,7 @@ msgstr "Ver Histórico" #: cms_toolbar.py:205 msgid "Admin" -msgstr "" +msgstr "Administrador" #: plugin_base.py:65 msgid "Advanced options" @@ -126,9 +128,9 @@ msgid "Page Title" msgstr "Título da página" #: admin/forms.py:138 -msgid "Overwrites what is displayed at the top of your browser or in bookmarks" -msgstr "" -"Sobrescreva o que será exibido no topo do seu navegador ou nos favoritos" +msgid "" +"Overwrites what is displayed at the top of your browser or in bookmarks" +msgstr "Sobrescreva o que será exibido no topo do seu navegador ou nos favoritos" #: admin/forms.py:139 msgid "Application" @@ -160,9 +162,7 @@ msgstr "A descrição de uma página, as vezes utilizada por Sites de busca." #: admin/forms.py:154 msgid "A list of comma seperated keywords sometimes used by search engines." -msgstr "" -"Uma lista de palavras-chave (separadas por vírgula). Normalmente usadas por " -"mecanismos de busca." +msgstr "Uma lista de palavras-chave (separadas por vírgula). Normalmente usadas por mecanismos de busca." #: admin/forms.py:170 msgid "A page with this reverse URL id exists already." @@ -173,9 +173,9 @@ msgid "Invalid URL, use /my/url format." msgstr "URL inválida, use o formato /minha/url" #: admin/forms.py:181 -#, fuzzy, python-format +#, python-format msgid "Page with redirect url %r already exist" -msgstr "Já existe outra página com este slug." +msgstr "Redirecionar página com %r url já existem" #: admin/forms.py:191 admin/forms.py:192 migrations/0001_initial.py:41 #: models/permissionmodels.py:16 @@ -186,21 +186,15 @@ msgstr "usuário" msgid "" "Add page permission requires also access to children, or descendants, " "otherwise added page can't be changed by its creator." -msgstr "" -"A permissão para adicionar páginas requer também acesso aos filhos, ou " -"descendentes, caso contrário a página adicionada não poderá ser modificada " -"pelo seu criador." +msgstr "A permissão para adicionar páginas requer também acesso aos filhos, ou descendentes, caso contrário a página adicionada não poderá ser modificada pelo seu criador." #: admin/forms.py:221 msgid "Add page permission also requires edit page permission." -msgstr "" -"A permissão para adicionar páginas também requer permissão de edição de " -"páginas" +msgstr "A permissão para adicionar páginas também requer permissão de edição de páginas" #: admin/forms.py:248 -#, fuzzy msgid "can_view" -msgstr "visualizar" +msgstr "can_view" #: admin/forms.py:260 msgid "Please select user or group first." @@ -235,9 +229,7 @@ msgstr "Notificar usuário" msgid "" "Send email notification to user about username or password change. Requires " "user email." -msgstr "" -"Enviar notificação por e-mail ao usuário sobre modificação no nome de " -"usuário ou senha. Requere o e-mail do usuário" +msgstr "Enviar notificação por e-mail ao usuário sobre modificação no nome de usuário ou senha. Requere o e-mail do usuário" #: admin/forms.py:318 msgid "New password" @@ -254,16 +246,12 @@ msgstr "Notificações de e-mail requerem um endereço de e-mail válido." #: admin/forms.py:341 msgid "" "The permission to add new pages requires the permission to change pages!" -msgstr "" -"A permissão para adicionar novas páginas requer a permissão para modificar " -"páginas!" +msgstr "A permissão para adicionar novas páginas requer a permissão para modificar páginas!" #: admin/forms.py:343 msgid "" "The permission to add new users requires the permission to change users!" -msgstr "" -"A permissão para adicionar usuários requer a permissão para modificar " -"usuários!" +msgstr "A permissão para adicionar usuários requer a permissão para modificar usuários!" #: admin/forms.py:345 msgid "To add permissions you also need to edit them!" @@ -275,9 +263,7 @@ msgstr "Configurações Básicas" #: admin/pageadmin.py:100 msgid "Note: This page reloads if you change the selection. Save it first." -msgstr "" -"Atenção: Esta página é recarregada se você salvar a seleção. Salve-a " -"primeiro." +msgstr "Atenção: Esta página é recarregada se você salvar a seleção. Salve-a primeiro." #: admin/pageadmin.py:102 admin/pageadmin.py:154 msgid "Hidden" @@ -292,9 +278,8 @@ msgid "SEO Settings" msgstr "Configurações de SEO" #: admin/pageadmin.py:299 -#, fuzzy msgid "You have no permission to change the template" -msgstr "Você não tem permissão para modificar esta página" +msgstr "Você não tem permissão para alterar o modelo" #: admin/pageadmin.py:485 msgid "higher" @@ -332,13 +317,11 @@ msgstr "Você não tem permissão para publicar esta página" #: admin/pageadmin.py:1066 msgid "You do not have permission to change this page's in_navigation status" -msgstr "" -"Você não tem permissão para modificar o status de navegação desta página" +msgstr "Você não tem permissão para modificar o status de navegação desta página" #: admin/pageadmin.py:1079 -#, fuzzy msgid "You have no permission to add a plugin" -msgstr "Você não tem permissão para modificar esta página" +msgstr "Você não tem permissão para adicionar um plugin" #: admin/pageadmin.py:1126 admin/pageadmin.py:1158 msgid "Language must be set to a supported language!" @@ -358,9 +341,8 @@ msgid "Language must be different than the copied language!" msgstr "a língua definida deve ser diferente da língua copiada!" #: admin/pageadmin.py:1166 -#, fuzzy msgid "You do not have permission to add plugins" -msgstr "Você não tem permissão para modificar esta página" +msgstr "Você não tem permissão para adicionar plugins" #: admin/pageadmin.py:1173 #, python-format @@ -368,52 +350,45 @@ msgid "Copied %(language)s plugins to %(placeholder)s" msgstr "Plugin %(language)s foi adicionado a %(placeholder)s" #: admin/pageadmin.py:1186 admin/pageadmin.py:1294 admin/pageadmin.py:1316 -#, fuzzy msgid "You have no permission to change this page" -msgstr "Você não tem permissão para modificar esta página" +msgstr "Você não tem permissão para alterar esta página" #: admin/pageadmin.py:1221 -#, fuzzy msgid "You have no permission to edit a plugin" -msgstr "Você não tem permissão para modificar esta página" +msgstr "Você não tem permissão para editar um plugin" #: admin/pageadmin.py:1256 #, python-format msgid "" "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -msgstr "" -"Plugin %(plugin_name)s editad na posição %(position)s em %(placeholder)s" +msgstr "Plugin %(plugin_name)s editad na posição %(position)s em %(placeholder)s" #: admin/pageadmin.py:1311 -#, fuzzy msgid "You have no permission to move a plugin" -msgstr "Você não tem permissão para modificar esta página" +msgstr "Você não tem permissão para mover um plugin" #: admin/pageadmin.py:1329 msgid "Plugins where moved" msgstr "Plugin foi movido" #: admin/pageadmin.py:1343 -#, fuzzy msgid "You have no permission to remove a plugin" -msgstr "Você não tem permissão para modificar esta página" +msgstr "Você não tem permissão para remover um plugin" #: admin/pageadmin.py:1361 admin/placeholderadmin.py:292 #, python-format msgid "" "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " "deleted." -msgstr "" -"Plugin %(plugin_name)s na posicão %(position)s em %(placeholder)s foi " -"excluído." +msgstr "Plugin %(plugin_name)s na posicão %(position)s em %(placeholder)s foi excluído." #: admin/permissionadmin.py:72 msgid "View restriction" -msgstr "" +msgstr "Ver restrição" #: admin/permissionadmin.py:73 msgid "View restrictions" -msgstr "" +msgstr "Ver restrições" #: admin/permissionadmin.py:133 models/permissionmodels.py:75 msgid "Page permissions" @@ -428,19 +403,16 @@ msgid "Page permissions management" msgstr "Gerenciament de permissões de página" #: admin/placeholderadmin.py:150 admin/placeholderadmin.py:191 -#, fuzzy msgid "You don't have permission to add content here." -msgstr "Você não tem permissão para modificar esta página" +msgstr "Você não tem permissão para adicionar o conteúdo aqui." #: admin/placeholderadmin.py:187 -#, fuzzy msgid "You don't have permission to add plugins" -msgstr "Você não tem permissão para modificar esta página" +msgstr "Você não tem permissão para adicionar plugins" #: admin/placeholderadmin.py:288 -#, fuzzy msgid "You don't have permission to delete a plugin" -msgstr "Você não tem permissão para modificar esta página" +msgstr "Você não tem permissão para excluir um plugin" #: admin/useradmin.py:25 msgid "User details" @@ -468,11 +440,11 @@ msgstr "Herdar o template do ancestral mais próximo" #: forms/fields.py:19 msgid "Select a valid site" -msgstr "" +msgstr "Selecione um site válido" #: forms/fields.py:20 msgid "Select a valid page" -msgstr "" +msgstr "Selecione uma página válida" #: forms/widgets.py:173 msgid "Add Another" @@ -724,11 +696,11 @@ msgstr "app. par." #: models/pagemodel.py:52 msgid "for logged in users only" -msgstr "" +msgstr "somente para usuários logados" #: models/pagemodel.py:53 msgid "for anonymous users only" -msgstr "" +msgstr "apenas para usuários anônimos" #: models/pagemodel.py:61 msgid "created by" @@ -742,9 +714,7 @@ msgstr "modificado por" msgid "" "When the page should go live. Status must be \"Published\" for page to go " "live." -msgstr "" -"Quando a página deve ir ao ar. Status deve ser \"Publicado\" para a página " -"ir para o ar." +msgstr "Quando a página deve ir ao ar. Status deve ser \"Publicado\" para a página ir para o ar." #: models/pagemodel.py:67 msgid "When to expire the page. Leave empty to never expire." @@ -758,13 +728,11 @@ msgstr "Todos os ancestrais não serão exibidos na navegação" msgid "" "An unique identifier that is used with the page_url templatetag for linking " "to this page" -msgstr "" -"Um identificador único que é usado com a templatetag page_url, para associar " -"a esta página" +msgstr "Um identificador único que é usado com a templatetag page_url, para associar a esta página" #: models/pagemodel.py:71 msgid "attached menu" -msgstr "" +msgstr "menu anexado" #: models/pagemodel.py:72 msgid "is published" @@ -788,11 +756,11 @@ msgstr "estado do moderador" #: models/pagemodel.py:85 msgid "menu visibility" -msgstr "" +msgstr "visibilidade do menu" #: models/pagemodel.py:85 msgid "limit when this page is visible in the menu" -msgstr "" +msgstr "limite quando esta página é visível no menu" #: models/pagemodel.py:105 msgid "pages" @@ -836,11 +804,11 @@ msgstr "pode moderar" #: models/permissionmodels.py:28 msgid "view restricted" -msgstr "" +msgstr "view restricted" #: models/permissionmodels.py:28 msgid "frontend view restriction" -msgstr "" +msgstr "frontend view restriction" #: models/permissionmodels.py:51 msgid "can recover pages" @@ -852,8 +820,7 @@ msgstr "pode recuperar qualquer página excluída" #: models/permissionmodels.py:52 msgid "If none selected, user haves granted permissions to all sites." -msgstr "" -"Se nenhum for selecionado, usuário terá permissões dadas a todos os sites." +msgstr "Se nenhum for selecionado, usuário terá permissões dadas a todos os sites." #: models/permissionmodels.py:52 msgid "sites" @@ -898,7 +865,7 @@ msgstr "largura" #: models/pluginmodel.py:140 msgid "" -msgstr "" +msgstr "" #: models/titlemodels.py:12 msgid "overwrite the title in the menu" @@ -923,7 +890,7 @@ msgstr "arquivo" #: plugins/file/templates/cms/plugins/file.html:6 msgid "file missing!" -msgstr "" +msgstr "arquivo faltando" #: plugins/flash/cms_plugins.py:9 msgid "Flash" @@ -940,16 +907,13 @@ msgstr "altura" #: plugins/flash/templates/cms/plugins/flash.html:40 #: plugins/video/templates/cms/plugins/video.html:60 -#, fuzzy msgid "Missing flash plugin. Please download the latest Adobe Flash Player: " -msgstr "" -"Plugin flash não disponível. Faça o download: aqui" +msgstr "Faltando o plugin do flash. Por favor, baixe a última versão do Adobe Flash Player:" #: plugins/flash/templates/cms/plugins/flash.html:42 #: plugins/video/templates/cms/plugins/video.html:62 msgid "Get Adobe Flash Player" -msgstr "" +msgstr "Obtenha o Adobe Flash Player" #: plugins/googlemap/cms_plugins.py:10 msgid "Google Map" @@ -985,8 +949,7 @@ msgstr "latitude" #: plugins/googlemap/models.py:19 msgid "Use latitude & longitude to fine tune the map possiton." -msgstr "" -"Use latitude e longitude para ajustar precisamente sua posição no mapa." +msgstr "Use latitude e longitude para ajustar precisamente sua posição no mapa." #: plugins/googlemap/models.py:20 msgid "longitude" @@ -1010,7 +973,7 @@ msgstr "Mapa" #: plugins/googlemap/templates/cms/plugins/googlemap.html:76 msgid "Your address: " -msgstr "" +msgstr "Seu endereço: " #: plugins/googlemap/templates/cms/plugins/googlemap.html:78 msgid "Calculate route" @@ -1028,9 +991,7 @@ msgstr "Idioma or Página devem ser preenchidos" msgid "" "Choose a page to include its plugins into this placeholder, empty will " "choose current page" -msgstr "" -"Escolha uma página para incluir os plugins nos espaços reservados, se ficar " -"vazio escolherá a página atual" +msgstr "Escolha uma página para incluir os plugins nos espaços reservados, se ficar vazio escolherá a página atual" #: plugins/inherit/models.py:11 msgid "Optional: the language of the plugins you want" @@ -1071,7 +1032,7 @@ msgstr "Figura" #: plugins/picture/models.py:14 msgid "center" -msgstr "" +msgstr "centro" #: plugins/picture/models.py:15 msgid "left" @@ -1127,8 +1088,7 @@ msgstr "HTML" #: plugins/snippet/models.py:15 msgid "" "Enter a template (i.e. \"snippets/plugin_xy.html\") which will be rendered. " -msgstr "" -"Coloque um template (ex.: \"snippets/plugin_xy.html\") que será renderizado." +msgstr "Coloque um template (ex.: \"snippets/plugin_xy.html\") que será renderizado." #: plugins/snippet/models.py:25 msgid "Snippets" @@ -1212,7 +1172,7 @@ msgstr "Twitter" #: plugins/twitter/cms_plugins.py:23 msgid "Twitter Search" -msgstr "" +msgstr "Busca no Twitter" #: plugins/twitter/models.py:7 msgid "twitter user" @@ -1236,39 +1196,38 @@ msgstr "Se dada, a dica será exibida como link para seu perfil no twitter." #: plugins/twitter/models.py:16 msgid "query" -msgstr "" +msgstr "consulta (query)" #: plugins/twitter/models.py:16 msgid "" "Example: \"brains AND zombies AND from:umbrella AND to:nemesis\": tweets " "from the user \"umbrella\" to the user \"nemesis\" that contain the words " "\"brains\" and \"zombies\"" -msgstr "" +msgstr "Example: \"brains AND zombies AND from:umbrella AND to:nemesis\": tweets from the user \"umbrella\" to the user \"nemesis\" that contain the words \"brains\" and \"zombies\"" #: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:12 msgid "we said," -msgstr "" +msgstr "nós dissemos," #: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:13 msgid "we" -msgstr "" +msgstr "nós" #: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:14 msgid "we were" -msgstr "" +msgstr "nós estávamos" #: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:15 msgid "we replied to" -msgstr "" +msgstr "nós respondemos a" #: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:16 msgid "we were checking out" -msgstr "" +msgstr "nós estamos verificando" #: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:17 -#, fuzzy msgid "loading tweets..." -msgstr "Carregando..." +msgstr "carregando tweets..." #: plugins/video/cms_plugins.py:10 msgid "Video" @@ -1291,12 +1250,10 @@ msgid "movie url" msgstr "url do filme" #: plugins/video/models.py:10 -#, fuzzy msgid "" -"vimeo or youtube video url. Example: http://www.youtube.com/watch?v=-" -"iJ7bs4mTUY" -msgstr "" -"url do vimeo ou do youtube. Exemplo: http://www.youtube.com/watch?v=YFa59lK-" +"vimeo or youtube video url. Example: " +"http://www.youtube.com/watch?v=-iJ7bs4mTUY" +msgstr "url do youtube ou vimeo. Exemplo: http://www.youtube.com/watch?v=-iJ7bs4mTUY" #: plugins/video/models.py:11 msgid "preview image file" @@ -1385,9 +1342,7 @@ msgstr "Salvar e continuar editando" #, python-format msgid "" "Page %(page)s may require approvement by you." -msgstr "" -"Página %(page)s pode requerer aprovação de " -"você." +msgstr "Página %(page)s pode requerer aprovação de você." #: templates/admin/cms/mail/approvement_required.html:8 msgid "Last changes" @@ -1490,9 +1445,7 @@ msgstr "Estados da página" msgid "" "This page must be moderated at level %(moderation_level)s, post a message " "for moderator." -msgstr "" -"Esta página precsa ser moderada no nível %(moderation_level)s, envie uma " -"mensagem ao moderador." +msgstr "Esta página precsa ser moderada no nível %(moderation_level)s, envie uma mensagem ao moderador." #: templates/admin/cms/page/change_form.html:187 msgid "Request approvemet" @@ -1562,7 +1515,7 @@ msgstr "fim" #: templates/admin/cms/page/change_list_tree.html:17 msgid "restricted" -msgstr "" +msgstr "limitado" #: templates/admin/cms/page/change_list_tree.html:19 msgid "last changes" @@ -1692,9 +1645,8 @@ msgid "Can move" msgstr "Pode mover" #: templates/admin/cms/page/permissions.html:14 -#, fuzzy msgid "Can view" -msgstr "Pode mover" +msgstr "Podem ver" #: templates/admin/cms/page/permissions.html:21 #: templates/admin/cms/page/permissions.html:22 @@ -1716,7 +1668,7 @@ msgstr "Página não herda nenhuma permissão." #: templates/admin/cms/page/plugin_change_form.html:114 #: templates/cms/toolbar/toolbar.html:24 msgid "Cancel" -msgstr "" +msgstr "Cancelar" #: templates/admin/cms/page/plugin_forms_history.html:9 msgid "An old revision of a plugin can not be saved!" @@ -1733,8 +1685,7 @@ msgstr "Recuperar %(verbose_name)s excluído" #: templates/admin/cms/page/recover_form.html:24 msgid "Press the save button below to recover this version of the object." -msgstr "" -"Pressione o botão 'salvar' abaixo para recuperar esta versão do objeto." +msgstr "Pressione o botão 'salvar' abaixo para recuperar esta versão do objeto." #: templates/admin/cms/page/revision_form.html:11 #, python-format @@ -1743,8 +1694,7 @@ msgstr "Reverter %(verbose_name)s" #: templates/admin/cms/page/revision_form.html:24 msgid "Press the save button below to revert to this version of the object." -msgstr "" -"Pressione o botão 'salvar' abaixo para reverter para esta versão do objeto." +msgstr "Pressione o botão 'salvar' abaixo para reverter para esta versão do objeto." #: templates/admin/cms/page/dialog/copy.html:4 msgid "Copy options" @@ -1756,7 +1706,7 @@ msgstr "Escolha opções de cópia" #: templates/admin/cms/page/widgets/installed_plugins_inc.html:7 msgid "Generic" -msgstr "" +msgstr "Genérico" #: templates/admin/cms/page/widgets/installed_plugins_inc.html:15 msgid "Add Plugin" @@ -1784,11 +1734,11 @@ msgstr "Não há plugins presentes. Adicione um plugin a este espaço." #: templates/cms/toolbar/placeholder.html:32 msgid "Available plugins" -msgstr "" +msgstr "Plugins disponíveis" #: templates/cms/toolbar/toolbar.html:22 msgid "The selected element can not be moved to the desired location." -msgstr "" +msgstr "O elemento selecionado não pode ser movido para o local desejado" #: templates/cms/toolbar/toolbar.html:23 msgid "Are you sure you want to delete this plugin?" @@ -1804,7 +1754,7 @@ msgstr "abaixo" #: templates/cms/toolbar/toolbar.html:61 msgid "Move to placeholder" -msgstr "" +msgstr "Mover para o espaço reservado" #: templates/cms/toolbar/items/login.html:5 msgid "Username" @@ -1812,9 +1762,8 @@ msgstr "Nome de usuário:" #: templates/cms/toolbar/items/login.html:10 #: templates/cms/toolbar/items/login.html:12 -#, fuzzy msgid "Login" -msgstr "login" +msgstr "Login" #: templates/cms/toolbar/items/status.html:2 msgid "Status" @@ -1822,7 +1771,7 @@ msgstr "status" #: templates/cms/toolbar/items/switcher.html:4 msgid "Switch on/off" -msgstr "" +msgstr "Ligar/Desligar" #: templatetags/cms_admin.py:86 #, python-format @@ -1844,15 +1793,14 @@ msgstr "Desligar moderação dos descendentes" #: templatetags/cms_tags.py:78 #, python-format msgid "Page not found on %(domain)s" -msgstr "" +msgstr "Página não encontrada em %(domain)s " #: templatetags/cms_tags.py:79 #, python-format msgid "" -"A template tag couldn't find the page with lookup arguments `" -"%(page_lookup)s\n" +"A template tag couldn't find the page with lookup arguments `%(page_lookup)s\n" "`. The URL of the request was: http://%(host)s%(path)s" -msgstr "" +msgstr "A marca de modelo (template tag) não conseguiu encontrar a página com os argumentos de pesquisa ` %(page_lookup)s\n`. A URL do requisitada foi: http://%(host)s%(path)s" #: utils/mail.py:38 msgid "CMS - your user account was created." @@ -1875,38 +1823,14 @@ msgstr "aprovar" msgid "CMS - Page %s requires approvement." msgstr "CMS - A Página %s requer aprovação." -#~ msgid "Missing flash plugin." -#~ msgstr "Falta o plugin do flash." - -#~ msgid "Move to %(name)s" -#~ msgstr "Mover para %(name)s" - #~ msgid "move" -#~ msgstr "mover" - -#~ msgid "add child" -#~ msgstr "adicionar filho" - -#~ msgid "add sibling" -#~ msgstr "adicionar irmã" - -#~ msgid "history" -#~ msgstr "histórico" - -#~ msgid "Lock" -#~ msgstr "Travar" - -#~ msgid "Close" -#~ msgstr "Fechar" - -#~ msgid "Settings" -#~ msgstr "Configurações" +#~ msgstr "move request" -#~ msgid "Delete Plugin" -#~ msgstr "Excluir Plugin" +#~ msgid "sidebar column" +#~ msgstr "background color" #~ msgid "fgcolor" -#~ msgstr "cor de primeiro plano" +#~ msgstr "foreground color" #~ msgid "Wanted language has not been translated yet." -#~ msgstr "Não há tradução para a língua desejada ainda." +#~ msgstr "Requested language has not been translated yet." diff --git a/cms/locale/pt_BR/LC_MESSAGES/djangojs.po b/cms/locale/pt_BR/LC_MESSAGES/djangojs.po index 19607d033bf..21d477422c2 100644 --- a/cms/locale/pt_BR/LC_MESSAGES/djangojs.po +++ b/cms/locale/pt_BR/LC_MESSAGES/djangojs.po @@ -1,41 +1,38 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# +# Translators: +# Juliano Fischer Naves <>, 2012. msgid "" msgstr "" "Project-Id-Version: django-cms\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-14 09:45-0500\n" -"PO-Revision-Date: 2011-03-22 15:38+0000\n" -"Last-Translator: ojii \n" -"Language-Team: Portuguese (Brazilian) (http://www.transifex.net/projects/p/" -"django-cms/team/pt_BR/)\n" -"Language: pt_BR\n" +"Report-Msgid-Bugs-To: https://github.com/divio/django-cms/issues\n" +"POT-Creation-Date: 2011-08-14 09:44-0500\n" +"PO-Revision-Date: 2012-04-22 04:36+0000\n" +"Last-Translator: Juliano Fischer Naves <>\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/django-cms/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1)\n" #: static/cms/js/change_form.js:31 msgid "" "Are you sure you want to change the %(field_name)s without saving the page " "first?" -msgstr "" -"Você tem certeza que quer mudar o conteúdo de %(field_name)s sem salvar a " -"página primeiro?" +msgstr "Você tem certeza que quer mudar o conteúdo de %(field_name)s sem salvar a página primeiro?" #: static/cms/js/change_form.js:69 msgid "" "Not all plugins are saved. Are you sure you want to save the page?\n" "All unsaved plugin content will tried to save." -msgstr "" +msgstr "Nem todos os plugins estão salvos. Você tem certeza que deseja salvar a página? Será feita uma tentativa de salvar todo o conteúdo de plugins não salvos." #: static/cms/js/change_form.js:127 msgid "Are you sure you want to change tabs without saving the page first?" -msgstr "" -"Você tem certeza que deseja trocar as abas sem salvar o conteúdo da página " -"primeiro?" +msgstr "Você tem certeza que deseja trocar as abas sem salvar o conteúdo da página primeiro?" #: static/cms/js/plugin_editor.js:132 msgid "Are you sure you want to delete this plugin?" diff --git a/cms/locale/sl_SI/LC_MESSAGES/django.po b/cms/locale/sl_SI/LC_MESSAGES/django.po index 380fa987104..5de6c883381 100644 --- a/cms/locale/sl_SI/LC_MESSAGES/django.po +++ b/cms/locale/sl_SI/LC_MESSAGES/django.po @@ -1,22 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# +# Translators: # simonv , 2011. +# , 2011. msgid "" msgstr "" "Project-Id-Version: django-cms\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-14 09:49-0500\n" -"PO-Revision-Date: 2011-03-22 15:24+0000\n" -"Last-Translator: ojii \n" +"Report-Msgid-Bugs-To: https://github.com/divio/django-cms/issues\n" +"POT-Creation-Date: 2011-08-14 09:47-0500\n" +"PO-Revision-Date: 2011-09-19 08:13+0000\n" +"Last-Translator: simonv \n" "Language-Team: divio.ch \n" -"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3)\n" +"Language: sl_SI\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3)\n" "X-Poedit-Country: SWITZERLAND\n" "X-Poedit-Language: English\n" "X-Poedit-SourceCharset: utf-8\n" @@ -27,7 +28,7 @@ msgstr "Način urejanja" #: cms_toolbar.py:77 msgid "django CMS" -msgstr "" +msgstr "django CMS" #: cms_toolbar.py:108 templates/admin/cms/page/menu_item.html:73 msgid "Publish" @@ -35,7 +36,7 @@ msgstr "Objavi" #: cms_toolbar.py:112 msgid "Request Approval" -msgstr "" +msgstr "Odobritev zahtevka" #: cms_toolbar.py:127 cms_toolbar.py:136 msgid "Logout" @@ -80,7 +81,7 @@ msgstr "Preglej zgodovino" #: cms_toolbar.py:205 msgid "Admin" -msgstr "" +msgstr "Administrator" #: plugin_base.py:65 msgid "Advanced options" @@ -127,7 +128,8 @@ msgid "Page Title" msgstr "Naslov strani" #: admin/forms.py:138 -msgid "Overwrites what is displayed at the top of your browser or in bookmarks" +msgid "" +"Overwrites what is displayed at the top of your browser or in bookmarks" msgstr "Prepiši besedilo, ki je prikazano na vrhu brskalnika ali v zaznamkih" #: admin/forms.py:139 @@ -171,9 +173,9 @@ msgid "Invalid URL, use /my/url format." msgstr "Napačen URL, uporabi obliko /moj/url" #: admin/forms.py:181 -#, fuzzy, python-format +#, python-format msgid "Page with redirect url %r already exist" -msgstr "Stran s takim kratkim opisom že obstaja" +msgstr "Stran s preusmerivenim URL %r že obstaja" #: admin/forms.py:191 admin/forms.py:192 migrations/0001_initial.py:41 #: models/permissionmodels.py:16 @@ -184,18 +186,15 @@ msgstr "Uporabnik" msgid "" "Add page permission requires also access to children, or descendants, " "otherwise added page can't be changed by its creator." -msgstr "" -"Pravica \"dodaj stran\" zahteva tudi dostop do otrok, ali potomcev, sicer " -"dodana strani ne more spremeniti njen ustvarjalec." +msgstr "Pravica \"dodaj stran\" zahteva tudi dostop do otrok, ali potomcev, sicer dodana strani ne more spremeniti njen ustvarjalec." #: admin/forms.py:221 msgid "Add page permission also requires edit page permission." msgstr "Pogoj za pravico \"dodaj stran\" je pravica \"urejaj stran\"." #: admin/forms.py:248 -#, fuzzy msgid "can_view" -msgstr "poglej" +msgstr "lahko_vidi" #: admin/forms.py:260 msgid "Please select user or group first." @@ -230,9 +229,7 @@ msgstr "Obvesti uporabnika" msgid "" "Send email notification to user about username or password change. Requires " "user email." -msgstr "" -"Uporabniku pošlji obvestilo o spremembi uporabniškega imena ali gesla. " -"Obvezena je uporabnikova e-pošta." +msgstr "Uporabniku pošlji obvestilo o spremembi uporabniškega imena ali gesla. Obvezena je uporabnikova e-pošta." #: admin/forms.py:318 msgid "New password" @@ -249,15 +246,12 @@ msgstr "Za obvestilo po e-pošti je potreben vrljaven e-poštni naslov." #: admin/forms.py:341 msgid "" "The permission to add new pages requires the permission to change pages!" -msgstr "" -"Pogoj za pravico \"dodaj novo stran\" je pravica \"spreminjaj strani\"!" +msgstr "Pogoj za pravico \"dodaj novo stran\" je pravica \"spreminjaj strani\"!" #: admin/forms.py:343 msgid "" "The permission to add new users requires the permission to change users!" -msgstr "" -"Pogoj za pravico \"dodaj novega uporabnika\" je pravica \"spreminjaj " -"uporabnike\"!" +msgstr "Pogoj za pravico \"dodaj novega uporabnika\" je pravica \"spreminjaj uporabnike\"!" #: admin/forms.py:345 msgid "To add permissions you also need to edit them!" @@ -269,9 +263,7 @@ msgstr "Osnovne nastvaitve" #: admin/pageadmin.py:100 msgid "Note: This page reloads if you change the selection. Save it first." -msgstr "" -"Opomba: Če spremenite izbiro, se bo ta stran ponovno naložila. Najprej jo " -"shranite." +msgstr "Opomba: Če spremenite izbiro, se bo ta stran ponovno naložila. Najprej jo shranite." #: admin/pageadmin.py:102 admin/pageadmin.py:154 msgid "Hidden" @@ -286,9 +278,8 @@ msgid "SEO Settings" msgstr "Nastavitve SEO" #: admin/pageadmin.py:299 -#, fuzzy msgid "You have no permission to change the template" -msgstr "Nimate pravice za spreminjanje te strani" +msgstr "Nimate pravice spreminjati predloge" #: admin/pageadmin.py:485 msgid "higher" @@ -329,9 +320,8 @@ msgid "You do not have permission to change this page's in_navigation status" msgstr "Nimate dovoljenja za spreminjanje strani v statusu in_navigation" #: admin/pageadmin.py:1079 -#, fuzzy msgid "You have no permission to add a plugin" -msgstr "Nimate pravice za spreminjanje te strani" +msgstr "Nimate pravice dodati vtičnika" #: admin/pageadmin.py:1126 admin/pageadmin.py:1158 msgid "Language must be set to a supported language!" @@ -351,9 +341,8 @@ msgid "Language must be different than the copied language!" msgstr "Jezik se mora razlikovati od kopiranega jezika!" #: admin/pageadmin.py:1166 -#, fuzzy msgid "You do not have permission to add plugins" -msgstr "Nimate pravice za spreminjanje te strani" +msgstr "Nimate pravice dodati vtičnika" #: admin/pageadmin.py:1173 #, python-format @@ -361,52 +350,45 @@ msgid "Copied %(language)s plugins to %(placeholder)s" msgstr "Vtičniki za %(language)s kopirani na %(placeholder)s" #: admin/pageadmin.py:1186 admin/pageadmin.py:1294 admin/pageadmin.py:1316 -#, fuzzy msgid "You have no permission to change this page" -msgstr "Nimate pravice za spreminjanje te strani" +msgstr "Nimate pravic, potrebnih za spreminjanje strani" #: admin/pageadmin.py:1221 -#, fuzzy msgid "You have no permission to edit a plugin" -msgstr "Nimate pravice za spreminjanje te strani" +msgstr "NImate pravice urejati vtičnika" #: admin/pageadmin.py:1256 #, python-format msgid "" "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -msgstr "" -"Vtičnik %(plugin_name)s urejan na mestu %(position)s na %(placeholder)s " +msgstr "Vtičnik %(plugin_name)s urejan na mestu %(position)s na %(placeholder)s " #: admin/pageadmin.py:1311 -#, fuzzy msgid "You have no permission to move a plugin" -msgstr "Nimate pravice za spreminjanje te strani" +msgstr "Nimate pravice poremikati vtičnika" #: admin/pageadmin.py:1329 msgid "Plugins where moved" msgstr "Vtičniki so bili preseljeni" #: admin/pageadmin.py:1343 -#, fuzzy msgid "You have no permission to remove a plugin" -msgstr "Nimate pravice za spreminjanje te strani" +msgstr "Nimate pravice za odstranjevanje vtičnika" #: admin/pageadmin.py:1361 admin/placeholderadmin.py:292 #, python-format msgid "" "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " "deleted." -msgstr "" -"Vtičnik %(plugin_name)s na mestu %(position)s na %(placeholder)s je bil " -"izbrisan." +msgstr "Vtičnik %(plugin_name)s na mestu %(position)s na %(placeholder)s je bil izbrisan." #: admin/permissionadmin.py:72 msgid "View restriction" -msgstr "" +msgstr "Poglej omejitev" #: admin/permissionadmin.py:73 msgid "View restrictions" -msgstr "" +msgstr "Poglej omejitve" #: admin/permissionadmin.py:133 models/permissionmodels.py:75 msgid "Page permissions" @@ -421,19 +403,16 @@ msgid "Page permissions management" msgstr "Upravljanje pravic na strani" #: admin/placeholderadmin.py:150 admin/placeholderadmin.py:191 -#, fuzzy msgid "You don't have permission to add content here." -msgstr "Nimate pravice za spreminjanje te strani" +msgstr "Na tem mestu nimate pravic za dodajanje vsebine" #: admin/placeholderadmin.py:187 -#, fuzzy msgid "You don't have permission to add plugins" -msgstr "Nimate pravice za spreminjanje te strani" +msgstr "Nimate pravic za dodajanje vtičnika" #: admin/placeholderadmin.py:288 -#, fuzzy msgid "You don't have permission to delete a plugin" -msgstr "Nimate pravice za spreminjanje te strani" +msgstr "Nimate pravic za brisanje vtičnika" #: admin/useradmin.py:25 msgid "User details" @@ -461,11 +440,11 @@ msgstr "Deduj predlogo najbližjega prednika" #: forms/fields.py:19 msgid "Select a valid site" -msgstr "" +msgstr "Izberite veljavno spletno stran" #: forms/fields.py:20 msgid "Select a valid page" -msgstr "" +msgstr "Izberite veljavno stran" #: forms/widgets.py:173 msgid "Add Another" @@ -717,11 +696,11 @@ msgstr "!app. par." #: models/pagemodel.py:52 msgid "for logged in users only" -msgstr "" +msgstr "Samo za prijavljene uporabnike" #: models/pagemodel.py:53 msgid "for anonymous users only" -msgstr "" +msgstr "Samo za anonimne uporabnike" #: models/pagemodel.py:61 msgid "created by" @@ -749,13 +728,11 @@ msgstr "Nasledniki ne bodo prikazani pri navigaciji" msgid "" "An unique identifier that is used with the page_url templatetag for linking " "to this page" -msgstr "" -"Za povezovanje na to stran je potrebna enolična identifikacijska oznaae, ki " -"se uporablja pri page_url templatetag " +msgstr "Za povezovanje na to stran je potrebna enolična identifikacijska oznaae, ki se uporablja pri page_url templatetag " #: models/pagemodel.py:71 msgid "attached menu" -msgstr "" +msgstr "Povezani meni" #: models/pagemodel.py:72 msgid "is published" @@ -779,11 +756,11 @@ msgstr "Stanje moderatorja" #: models/pagemodel.py:85 msgid "menu visibility" -msgstr "" +msgstr "Vidnost menija" #: models/pagemodel.py:85 msgid "limit when this page is visible in the menu" -msgstr "" +msgstr "Omeji kdaj bo ta stran prkazana v meniju" #: models/pagemodel.py:105 msgid "pages" @@ -827,11 +804,11 @@ msgstr "lahko moderira" #: models/permissionmodels.py:28 msgid "view restricted" -msgstr "" +msgstr "omejeni pogled" #: models/permissionmodels.py:28 msgid "frontend view restriction" -msgstr "" +msgstr "omejitve pogleda prikazovalnika" #: models/permissionmodels.py:51 msgid "can recover pages" @@ -888,7 +865,7 @@ msgstr "širina" #: models/pluginmodel.py:140 msgid "" -msgstr "" +msgstr "" #: models/titlemodels.py:12 msgid "overwrite the title in the menu" @@ -913,7 +890,7 @@ msgstr "datoteka" #: plugins/file/templates/cms/plugins/file.html:6 msgid "file missing!" -msgstr "" +msgstr "manjka datoteka!" #: plugins/flash/cms_plugins.py:9 msgid "Flash" @@ -930,16 +907,13 @@ msgstr "višina" #: plugins/flash/templates/cms/plugins/flash.html:40 #: plugins/video/templates/cms/plugins/video.html:60 -#, fuzzy msgid "Missing flash plugin. Please download the latest Adobe Flash Player: " -msgstr "" -"Manjkajoči flash vtičnik. Prenesite ga here" +msgstr "Manjka vtičnik flash. Prosimo namestite najnovejši Adobe Flash Player:" #: plugins/flash/templates/cms/plugins/flash.html:42 #: plugins/video/templates/cms/plugins/video.html:62 msgid "Get Adobe Flash Player" -msgstr "" +msgstr "Prenesi Adobe Flas Player" #: plugins/googlemap/cms_plugins.py:10 msgid "Google Map" @@ -999,7 +973,7 @@ msgstr "Zemljevid" #: plugins/googlemap/templates/cms/plugins/googlemap.html:76 msgid "Your address: " -msgstr "" +msgstr "Vaš naslov:" #: plugins/googlemap/templates/cms/plugins/googlemap.html:78 msgid "Calculate route" @@ -1017,9 +991,7 @@ msgstr "Jezik ali stran mora biti izpolnjnjena" msgid "" "Choose a page to include its plugins into this placeholder, empty will " "choose current page" -msgstr "" -"Izberite stran za vključitev njenega vtičnika na to rezervirano mest, če " -"pustite prazno, bo to trenutna stran" +msgstr "Izberite stran za vključitev njenega vtičnika na to rezervirano mest, če pustite prazno, bo to trenutna stran" #: plugins/inherit/models.py:11 msgid "Optional: the language of the plugins you want" @@ -1060,7 +1032,7 @@ msgstr "Slika" #: plugins/picture/models.py:14 msgid "center" -msgstr "" +msgstr "sredina" #: plugins/picture/models.py:15 msgid "left" @@ -1116,8 +1088,7 @@ msgstr "HTML" #: plugins/snippet/models.py:15 msgid "" "Enter a template (i.e. \"snippets/plugin_xy.html\") which will be rendered. " -msgstr "" -"Vpišite predlogo (npr. \"snippets/ plugin_xy.html\"), ki bodo prikazana." +msgstr "Vpišite predlogo (npr. \"snippets/ plugin_xy.html\"), ki bodo prikazana." #: plugins/snippet/models.py:25 msgid "Snippets" @@ -1201,7 +1172,7 @@ msgstr "Twitter" #: plugins/twitter/cms_plugins.py:23 msgid "Twitter Search" -msgstr "" +msgstr "Iskanje po Twitterju" #: plugins/twitter/models.py:7 msgid "twitter user" @@ -1225,39 +1196,38 @@ msgstr "Če je podan, bo namig prikazan pri povezavi na vaš Tweeter profil." #: plugins/twitter/models.py:16 msgid "query" -msgstr "" +msgstr "povpraševanje" #: plugins/twitter/models.py:16 msgid "" "Example: \"brains AND zombies AND from:umbrella AND to:nemesis\": tweets " "from the user \"umbrella\" to the user \"nemesis\" that contain the words " "\"brains\" and \"zombies\"" -msgstr "" +msgstr "Primer: \"brains AND zombies AND from:umbrella AND to:nemesis\": tweet-i uporabnika \"umbrella\" za uporabnika \"nemesis\" ki vsebujejo besede \"brains\" in \"zombies\"" #: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:12 msgid "we said," -msgstr "" +msgstr "reksli smo, " #: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:13 msgid "we" -msgstr "" +msgstr "mi" #: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:14 msgid "we were" -msgstr "" +msgstr "bili smo" #: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:15 msgid "we replied to" -msgstr "" +msgstr "odgovorili smo na " #: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:16 msgid "we were checking out" -msgstr "" +msgstr "pregledovali smo" #: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:17 -#, fuzzy msgid "loading tweets..." -msgstr "Nalagam..." +msgstr "nalagam twwete" #: plugins/video/cms_plugins.py:10 msgid "Video" @@ -1280,13 +1250,10 @@ msgid "movie url" msgstr "url filma" #: plugins/video/models.py:10 -#, fuzzy msgid "" -"vimeo or youtube video url. Example: http://www.youtube.com/watch?v=-" -"iJ7bs4mTUY" -msgstr "" -"url vimeo ali youtube videa. Primer: http://www.youtube.com/watch?v=YFa59lK-" -"kpo" +"vimeo or youtube video url. Example: " +"http://www.youtube.com/watch?v=-iJ7bs4mTUY" +msgstr "URL videa na Vimeo ali YouTube. Primer: http://www.youtube.com/watch?v=-iJ7bs4mTUY" #: plugins/video/models.py:11 msgid "preview image file" @@ -1375,8 +1342,7 @@ msgstr "Shrani in nadaljuj urejanje" #, python-format msgid "" "Page %(page)s may require approvement by you." -msgstr "" -"Stran %(page)s je lahko zahteva vašo odobritev." +msgstr "Stran %(page)s je lahko zahteva vašo odobritev." #: templates/admin/cms/mail/approvement_required.html:8 msgid "Last changes" @@ -1481,9 +1447,7 @@ msgstr "Statusi strani" msgid "" "This page must be moderated at level %(moderation_level)s, post a message " "for moderator." -msgstr "" -"Ta stran mora biti moderirana na ravni %(moderation_level)s, pošljite " -"sporočilo moderatorju." +msgstr "Ta stran mora biti moderirana na ravni %(moderation_level)s, pošljite sporočilo moderatorju." #: templates/admin/cms/page/change_form.html:187 msgid "Request approvemet" @@ -1553,7 +1517,7 @@ msgstr "konec" #: templates/admin/cms/page/change_list_tree.html:17 msgid "restricted" -msgstr "" +msgstr "omejen" #: templates/admin/cms/page/change_list_tree.html:19 msgid "last changes" @@ -1683,9 +1647,8 @@ msgid "Can move" msgstr "Lahko premika" #: templates/admin/cms/page/permissions.html:14 -#, fuzzy msgid "Can view" -msgstr "Lahko premika" +msgstr "Lahko vidi" #: templates/admin/cms/page/permissions.html:21 #: templates/admin/cms/page/permissions.html:22 @@ -1707,7 +1670,7 @@ msgstr "Stran ne deduje pravic." #: templates/admin/cms/page/plugin_change_form.html:114 #: templates/cms/toolbar/toolbar.html:24 msgid "Cancel" -msgstr "" +msgstr "Prekliči" #: templates/admin/cms/page/plugin_forms_history.html:9 msgid "An old revision of a plugin can not be saved!" @@ -1724,9 +1687,7 @@ msgstr "Obnoviizbrisane %(verbose_name)s " #: templates/admin/cms/page/recover_form.html:24 msgid "Press the save button below to recover this version of the object." -msgstr "" -"Pritisnite spodnji gumb za shranjevanje, če želite obnoviti to različico " -"predmeta." +msgstr "Pritisnite spodnji gumb za shranjevanje, če želite obnoviti to različico predmeta." #: templates/admin/cms/page/revision_form.html:11 #, python-format @@ -1735,9 +1696,7 @@ msgstr "Povrni %(verbose_name)s " #: templates/admin/cms/page/revision_form.html:24 msgid "Press the save button below to revert to this version of the object." -msgstr "" -"Pritisnite spodnji gumb za shranjevanje, če želite povrniti na to različica " -"predmeta." +msgstr "Pritisnite spodnji gumb za shranjevanje, če želite povrniti na to različica predmeta." #: templates/admin/cms/page/dialog/copy.html:4 msgid "Copy options" @@ -1749,7 +1708,7 @@ msgstr "Izberi možnosti kopiranja" #: templates/admin/cms/page/widgets/installed_plugins_inc.html:7 msgid "Generic" -msgstr "" +msgstr "Generično" #: templates/admin/cms/page/widgets/installed_plugins_inc.html:15 msgid "Add Plugin" @@ -1777,11 +1736,11 @@ msgstr "Vtičnika ni. Dodajte vtičnik na za to predvideno mesto." #: templates/cms/toolbar/placeholder.html:32 msgid "Available plugins" -msgstr "" +msgstr "Razpoložljivi vtičniki" #: templates/cms/toolbar/toolbar.html:22 msgid "The selected element can not be moved to the desired location." -msgstr "" +msgstr "Izbranega elementa ne morete premakniti na izbrano mesto." #: templates/cms/toolbar/toolbar.html:23 msgid "Are you sure you want to delete this plugin?" @@ -1797,7 +1756,7 @@ msgstr "dol" #: templates/cms/toolbar/toolbar.html:61 msgid "Move to placeholder" -msgstr "" +msgstr "Premakni na oznako" #: templates/cms/toolbar/items/login.html:5 msgid "Username" @@ -1805,9 +1764,8 @@ msgstr "Uporabniško ime" #: templates/cms/toolbar/items/login.html:10 #: templates/cms/toolbar/items/login.html:12 -#, fuzzy msgid "Login" -msgstr "prijava" +msgstr "Prijava" #: templates/cms/toolbar/items/status.html:2 msgid "Status" @@ -1815,12 +1773,12 @@ msgstr "Status" #: templates/cms/toolbar/items/switcher.html:4 msgid "Switch on/off" -msgstr "" +msgstr "Vklopi/Izklopi" #: templatetags/cms_admin.py:86 #, python-format msgid "%(icon)s" -msgstr "" +msgstr "%(icon)s" #: templatetags/cms_admin.py:99 msgid "Unbind page moderation" @@ -1837,15 +1795,14 @@ msgstr "Loči moderiranje naslednikov" #: templatetags/cms_tags.py:78 #, python-format msgid "Page not found on %(domain)s" -msgstr "" +msgstr "Strani ni mogoče najti v %(domain)s " #: templatetags/cms_tags.py:79 #, python-format msgid "" -"A template tag couldn't find the page with lookup arguments `" -"%(page_lookup)s\n" +"A template tag couldn't find the page with lookup arguments `%(page_lookup)s\n" "`. The URL of the request was: http://%(host)s%(path)s" -msgstr "" +msgstr "Oznaka predloge ni našla strani z iskalnimi pogoji `%(page_lookup)s \n`. URL zahtevka: http://%(host)s%(path)s" #: utils/mail.py:38 msgid "CMS - your user account was created." @@ -1868,38 +1825,14 @@ msgstr "odobri" msgid "CMS - Page %s requires approvement." msgstr "CMS - Stran %s zahteva odobritev." -#~ msgid "Missing flash plugin." -#~ msgstr "Manjka vtičnik za flash" - -#~ msgid "Move to %(name)s" -#~ msgstr "Premakni v %(name)s " - #~ msgid "move" -#~ msgstr "premakni" - -#~ msgid "add child" -#~ msgstr "dodaj otroka" - -#~ msgid "add sibling" -#~ msgstr "dodaj brata/sestro" - -#~ msgid "history" -#~ msgstr "zgodovina" - -#~ msgid "Lock" -#~ msgstr "Zakleni" - -#~ msgid "Close" -#~ msgstr "Zapri" - -#~ msgid "Settings" -#~ msgstr "Nastavitve" +#~ msgstr "move request" -#~ msgid "Delete Plugin" -#~ msgstr "Izbriši vtičnik" +#~ msgid "sidebar column" +#~ msgstr "background color" #~ msgid "fgcolor" -#~ msgstr "barva ospredja" +#~ msgstr "foreground color" #~ msgid "Wanted language has not been translated yet." -#~ msgstr "Želeni jezik še ni bil preveden." +#~ msgstr "Requested language has not been translated yet." diff --git a/cms/locale/sl_SI/LC_MESSAGES/djangojs.po b/cms/locale/sl_SI/LC_MESSAGES/djangojs.po index 68bf9952c2d..a00e372e8ea 100644 --- a/cms/locale/sl_SI/LC_MESSAGES/djangojs.po +++ b/cms/locale/sl_SI/LC_MESSAGES/djangojs.po @@ -1,41 +1,39 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# +# Translators: +# Ales Kocjancic , 2011. # simonv , 2011. msgid "" msgstr "" "Project-Id-Version: django-cms\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-14 09:45-0500\n" -"PO-Revision-Date: 2011-03-22 15:38+0000\n" -"Last-Translator: ojii \n" +"Report-Msgid-Bugs-To: https://github.com/divio/django-cms/issues\n" +"POT-Creation-Date: 2011-08-14 09:44-0500\n" +"PO-Revision-Date: 2011-12-16 16:29+0000\n" +"Last-Translator: Ales Kocjancic \n" "Language-Team: LANGUAGE \n" -"Language: sl_SI\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3)\n" +"Language: sl_SI\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3)\n" #: static/cms/js/change_form.js:31 msgid "" "Are you sure you want to change the %(field_name)s without saving the page " "first?" -msgstr "" -"Ali ste prepričani da želite spremeniti polja %(field_name)s preden shranite " -"spremembe na strani?" +msgstr "Ali ste prepričani da želite spremeniti polja %(field_name)s preden shranite spremembe na strani?" #: static/cms/js/change_form.js:69 msgid "" "Not all plugins are saved. Are you sure you want to save the page?\n" "All unsaved plugin content will tried to save." -msgstr "" +msgstr "Nekateri vtičniki niso shranjeni. Ali ste prepričani, da želite shraniti to stran? Neshranjeni vtičniki bodo poiskusili biti shranjeni." #: static/cms/js/change_form.js:127 msgid "Are you sure you want to change tabs without saving the page first?" -msgstr "" -"Ste prepričani, da želite spremeniti tabulatorje preden shranite stran?" +msgstr "Ste prepričani, da želite spremeniti tabulatorje preden shranite stran?" #: static/cms/js/plugin_editor.js:132 msgid "Are you sure you want to delete this plugin?" diff --git a/cms/locale/sr@latin/LC_MESSAGES/django.po b/cms/locale/sr@latin/LC_MESSAGES/django.po new file mode 100644 index 00000000000..bec2286baa4 --- /dev/null +++ b/cms/locale/sr@latin/LC_MESSAGES/django.po @@ -0,0 +1,1836 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Milorad Pop-Tosic , 2012. +msgid "" +msgstr "" +"Project-Id-Version: django-cms\n" +"Report-Msgid-Bugs-To: https://github.com/divio/django-cms/issues\n" +"POT-Creation-Date: 2011-08-14 09:47-0500\n" +"PO-Revision-Date: 2012-01-18 12:21+0000\n" +"Last-Translator: Milorad Pop-Tosic \n" +"Language-Team: divio.ch \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sr@latin\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" +"X-Poedit-Country: SWITZERLAND\n" +"X-Poedit-Language: English\n" +"X-Poedit-SourceCharset: utf-8\n" + +#: cms_toolbar.py:68 +msgid "Edit mode" +msgstr "Režim izmene" + +#: cms_toolbar.py:77 +msgid "django CMS" +msgstr "django CMS" + +#: cms_toolbar.py:108 templates/admin/cms/page/menu_item.html:73 +msgid "Publish" +msgstr "Objavi" + +#: cms_toolbar.py:112 +msgid "Request Approval" +msgstr "Potrebno odobrenje" + +#: cms_toolbar.py:127 cms_toolbar.py:136 +msgid "Logout" +msgstr "Odjavi se" + +#: cms_toolbar.py:152 +msgid "Template" +msgstr "Šablon" + +#: cms_toolbar.py:160 +msgid "Move/add Pages" +msgstr "Premesti/dodaj stranu" + +#: cms_toolbar.py:165 +msgid "Add child page" +msgstr "Dodaj podređenu stranu" + +#: cms_toolbar.py:171 +msgid "Add sibling page" +msgstr "Dodaj stranu istog nivoa" + +#: cms_toolbar.py:177 +msgid "Delete Page" +msgstr "Izbriši stranu" + +#: cms_toolbar.py:180 models/moderatormodels.py:45 +#: templates/admin/cms/page/permissions.html:5 +msgid "Page" +msgstr "Strana" + +#: cms_toolbar.py:189 +msgid "Site Administration" +msgstr "Upravljanje sajtom" + +#: cms_toolbar.py:195 +msgid "Page Settings" +msgstr "Podešavanja strane" + +#: cms_toolbar.py:201 +msgid "View History" +msgstr "Prikaži istoriju" + +#: cms_toolbar.py:205 +msgid "Admin" +msgstr "Administrator" + +#: plugin_base.py:65 +msgid "Advanced options" +msgstr "Napredna podešavanja" + +#: admin/forms.py:59 +msgid "Title" +msgstr "Naslov" + +#: admin/forms.py:60 +msgid "The default title" +msgstr "Podrazumevani naslov" + +#: admin/forms.py:61 +msgid "Slug" +msgstr "Slag" + +#: admin/forms.py:62 +msgid "The part of the title that is used in the URL" +msgstr "Deo naslova koji se koristi u URL-u" + +#: admin/forms.py:63 +msgid "Language" +msgstr "Jezik" + +#: admin/forms.py:64 +msgid "The current language of the content fields." +msgstr "Trenutni jezik polja sa sadržajem." + +#: admin/forms.py:117 +msgid "Another page with this slug already exists" +msgstr "Stranica sa zadatim slagom već postoji." + +#: admin/forms.py:135 +msgid "Menu Title" +msgstr "Naslov u meniju" + +#: admin/forms.py:136 +msgid "Overwrite what is displayed in the menu" +msgstr "Pregazi ono što je prikazano u meniju." + +#: admin/forms.py:137 +msgid "Page Title" +msgstr "Naslov stranice" + +#: admin/forms.py:138 +msgid "" +"Overwrites what is displayed at the top of your browser or in bookmarks" +msgstr "Pregaziće ono što je prikazano u vrhu pregledača i markerima." + +#: admin/forms.py:139 +msgid "Application" +msgstr "Applikacija" + +#: admin/forms.py:141 +msgid "Hook application to this page." +msgstr "Veži aplikaciju za ovu stranu." + +#: admin/forms.py:142 +msgid "Overwrite URL" +msgstr "Pregazi URL" + +#: admin/forms.py:143 +msgid "Keep this field empty if standard path should be used." +msgstr "Ostavite ovo polje prazno ako treba koristiti standardnu putanju." + +#: admin/forms.py:149 +msgid "Redirect" +msgstr "Redirekcija" + +#: admin/forms.py:150 +msgid "Redirects to this URL." +msgstr "Vrši redirekciju na ovaj URL." + +#: admin/forms.py:152 +msgid "A description of the page sometimes used by search engines." +msgstr "Opis stranice koji koriste pretraživači." + +#: admin/forms.py:154 +msgid "A list of comma seperated keywords sometimes used by search engines." +msgstr "Spisak ključnih reči, zadvojenih zapetama, koji koriste pretraživači." + +#: admin/forms.py:170 +msgid "A page with this reverse URL id exists already." +msgstr "Stranica sa zadatim inverznim URL-om već postoji." + +#: admin/forms.py:178 +msgid "Invalid URL, use /my/url format." +msgstr "Nepravilan URL, koristite format: /my/url." + +#: admin/forms.py:181 +#, python-format +msgid "Page with redirect url %r already exist" +msgstr "Strana sa URL-om za redirekciju %r već postoji" + +#: admin/forms.py:191 admin/forms.py:192 migrations/0001_initial.py:41 +#: models/permissionmodels.py:16 +msgid "user" +msgstr "korisnik" + +#: admin/forms.py:216 +msgid "" +"Add page permission requires also access to children, or descendants, " +"otherwise added page can't be changed by its creator." +msgstr "Privilegije za dodavanje strane takođe zahteva pravo pristupa deci ili potomcima. U suprotnom, strana se neće moći menjati od strane njenog tvorca." + +#: admin/forms.py:221 +msgid "Add page permission also requires edit page permission." +msgstr "Privilegije za dodavanje strane zahtevaju i privilegije za izmenu strane." + +#: admin/forms.py:248 +msgid "can_view" +msgstr "can_view" + +#: admin/forms.py:260 +msgid "Please select user or group first." +msgstr "Molimo prvo izaberite korisnika ili grupu." + +#: admin/forms.py:267 admin/forms.py:274 admin/forms.py:278 +#: templates/admin/cms/page/change_form.html:67 +#: templates/admin/cms/page/plugin_change_form.html:70 +#: templates/cms/toolbar/placeholder.html:25 +msgid "Add" +msgstr "Dodaj" + +#: admin/forms.py:268 admin/forms.py:275 admin/forms.py:279 +msgid "Change" +msgstr "Izmeni" + +#: admin/forms.py:269 admin/forms.py:276 admin/forms.py:280 +#: templates/admin/page_submit_line.html:5 +#: templates/admin/cms/page/menu_item.html:44 +msgid "Delete" +msgstr "Izbriši" + +#: admin/forms.py:270 +msgid "Recover (any) pages" +msgstr "Povrati (bilo koju) stranu" + +#: admin/forms.py:297 +msgid "Notify user" +msgstr "Obavesti korisnika" + +#: admin/forms.py:298 +msgid "" +"Send email notification to user about username or password change. Requires " +"user email." +msgstr "Šalji imejl obaveštenja korisnicima pri promeni korisničkog imena ili lozinke. Zahteva imejl adresu korisnika." + +#: admin/forms.py:318 +msgid "New password" +msgstr "Nova lozinka" + +#: admin/forms.py:320 +msgid "New password confirmation" +msgstr "Potvrda nove lozinke" + +#: admin/forms.py:339 +msgid "Email notification requires valid email address." +msgstr "Obaveštenje putem imejla zahteva važeću imejl adresu." + +#: admin/forms.py:341 +msgid "" +"The permission to add new pages requires the permission to change pages!" +msgstr "Pravo na kreiranje nove strane zahteva pravo za izmenu strane!" + +#: admin/forms.py:343 +msgid "" +"The permission to add new users requires the permission to change users!" +msgstr "Pravo na dodavanje novog korisnika zahteva pravo za izmenu kornisika!" + +#: admin/forms.py:345 +msgid "To add permissions you also need to edit them!" +msgstr "Da biste dodali dozvolu morate je izmeniti!" + +#: admin/pageadmin.py:97 +msgid "Basic Settings" +msgstr "Osnovna podešavanja" + +#: admin/pageadmin.py:100 +msgid "Note: This page reloads if you change the selection. Save it first." +msgstr "Napomena: Ova stranica će se ponovo učitati ako izmenite izbor. Prvo sačuvajte stranicu." + +#: admin/pageadmin.py:102 admin/pageadmin.py:154 +msgid "Hidden" +msgstr "Sakriveno" + +#: admin/pageadmin.py:106 +msgid "Advanced Settings" +msgstr "Napredna podešavanja" + +#: admin/pageadmin.py:113 +msgid "SEO Settings" +msgstr "SEO podešavanja" + +#: admin/pageadmin.py:299 +msgid "You have no permission to change the template" +msgstr "Nemate privilegije da menjate šablon" + +#: admin/pageadmin.py:485 +msgid "higher" +msgstr "više" + +#: admin/pageadmin.py:655 +msgid "Database error" +msgstr "Greška baze podataka" + +#: admin/pageadmin.py:855 +msgid "Page was successfully approved." +msgstr "Stranica je uspešno odobrena." + +#: admin/pageadmin.py:927 +#, python-format +msgid "%(name)s object with primary key %(key)r does not exist." +msgstr "objekat %(name)s sa primarnim ključem %(key)r ne postoji." + +#: admin/pageadmin.py:933 +msgid "There only exists one translation for this page" +msgstr "Postoji samo jedan prevod ove stranice" + +#: admin/pageadmin.py:969 +#, python-format +msgid "Title and plugins with language %(language)s was deleted" +msgstr "Naslov i plagin na jeziku %(language)s je obrisan" + +#: admin/pageadmin.py:991 +msgid "Are you sure?" +msgstr "Da li ste sigurni?" + +#: admin/pageadmin.py:1052 +msgid "You do not have permission to publish this page" +msgstr "Nemate privilegije da izbrišete ovu stranu" + +#: admin/pageadmin.py:1066 +msgid "You do not have permission to change this page's in_navigation status" +msgstr "Nemate privilegije da izmenite status ove strane \"u navigaciji\"" + +#: admin/pageadmin.py:1079 +msgid "You have no permission to add a plugin" +msgstr "Nemate privilegije da dodate plagin" + +#: admin/pageadmin.py:1126 admin/pageadmin.py:1158 +msgid "Language must be set to a supported language!" +msgstr "Jezik mora biti postaljen na jedan od podržanih!" + +#: admin/pageadmin.py:1138 +#, python-format +msgid "%(plugin_name)s plugin added to %(placeholder)s" +msgstr "%(plugin_name)s plagin dodat u %(placeholder)s" + +#: admin/pageadmin.py:1156 +msgid "You do not have permission to change this page" +msgstr "Nemate privilegije da izmenite ovu stranu" + +#: admin/pageadmin.py:1160 +msgid "Language must be different than the copied language!" +msgstr "Jezik mora biti različit od kopiranog jezika!" + +#: admin/pageadmin.py:1166 +msgid "You do not have permission to add plugins" +msgstr "Nemate privilegije da dodate plagine" + +#: admin/pageadmin.py:1173 +#, python-format +msgid "Copied %(language)s plugins to %(placeholder)s" +msgstr "Kopirano %(language)s plagina u %(placeholder)s" + +#: admin/pageadmin.py:1186 admin/pageadmin.py:1294 admin/pageadmin.py:1316 +msgid "You have no permission to change this page" +msgstr "Nemate privilegije da menjate ovu stranu" + +#: admin/pageadmin.py:1221 +msgid "You have no permission to edit a plugin" +msgstr "Nemate privilegije da menjate plagin" + +#: admin/pageadmin.py:1256 +#, python-format +msgid "" +"%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" +msgstr "%(plugin_name)s plagin, izmenjen na poziciji %(position)s u %(placeholder)s" + +#: admin/pageadmin.py:1311 +msgid "You have no permission to move a plugin" +msgstr "Nemate privilegije da pomerate plagin" + +#: admin/pageadmin.py:1329 +msgid "Plugins where moved" +msgstr "Plagin je premešten" + +#: admin/pageadmin.py:1343 +msgid "You have no permission to remove a plugin" +msgstr "Nemate privilegije da uklonite plagin" + +#: admin/pageadmin.py:1361 admin/placeholderadmin.py:292 +#, python-format +msgid "" +"%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " +"deleted." +msgstr "%(plugin_name)s plagin na poziciji %(position)s u %(placeholder)s je uklonjen." + +#: admin/permissionadmin.py:72 +msgid "View restriction" +msgstr "Prikaži ograničenja" + +#: admin/permissionadmin.py:73 +msgid "View restrictions" +msgstr "Prikaži ograničenja" + +#: admin/permissionadmin.py:133 models/permissionmodels.py:75 +msgid "Page permissions" +msgstr "Privilegije strane" + +#: admin/permissionadmin.py:134 +msgid "User & Group permissions" +msgstr "Privilegije korisnika i grupe" + +#: admin/permissionadmin.py:135 +msgid "Page permissions management" +msgstr "Upravljanje privilegijama strane" + +#: admin/placeholderadmin.py:150 admin/placeholderadmin.py:191 +msgid "You don't have permission to add content here." +msgstr "Nemate privilegije da dodate sadržaj ovde." + +#: admin/placeholderadmin.py:187 +msgid "You don't have permission to add plugins" +msgstr "Nemate privilegije da dodajete plagine" + +#: admin/placeholderadmin.py:288 +msgid "You don't have permission to delete a plugin" +msgstr "Nemate privilegije da izbrišete plagin" + +#: admin/useradmin.py:25 +msgid "User details" +msgstr "Detalji korisnika" + +#: admin/useradmin.py:26 +msgid "Groups" +msgstr "Grupe" + +#: admin/useradmin.py:36 templates/cms/toolbar/items/login.html:7 +msgid "Password" +msgstr "Lozinka" + +#: admin/dialog/forms.py:9 +msgid "Copy permissions" +msgstr "Iskopiraj privilegije" + +#: admin/dialog/forms.py:16 +msgid "Copy moderation" +msgstr "Moderacija kopiranja" + +#: conf/patch.py:28 +msgid "Inherit the template of the nearest ancestor" +msgstr "Nasledi šablon najbližeg pretka" + +#: forms/fields.py:19 +msgid "Select a valid site" +msgstr "Izaberite važeći sajt" + +#: forms/fields.py:20 +msgid "Select a valid page" +msgstr "Izaberite važeću stranicu" + +#: forms/widgets.py:173 +msgid "Add Another" +msgstr "Dodaj još" + +#: migrations/0001_initial.py:12 migrations/0001_initial.py:24 +#: migrations/0001_initial.py:75 migrations/0003_remove_placeholder.py:18 +#: migrations/0010_5char_language.py:12 migrations/0010_5char_language.py:15 +#: migrations/0010_5char_language.py:22 migrations/0010_5char_language.py:25 +#: models/pluginmodel.py:79 models/titlemodels.py:10 +#: plugins/inherit/models.py:11 +msgid "language" +msgstr "jezik" + +#: migrations/0001_initial.py:13 migrations/0001_initial.py:26 +#: migrations/0001_initial.py:40 migrations/0001_initial.py:78 +#: migrations/0003_remove_placeholder.py:21 models/pagemodel.py:104 +#: models/permissionmodels.py:69 models/titlemodels.py:21 +#: plugins/inherit/forms.py:9 plugins/link/forms.py:9 +#: plugins/link/models.py:12 plugins/link/migrations/0001_initial.py:19 +#: plugins/picture/models.py:22 plugins/teaser/models.py:13 +msgid "page" +msgstr "strana" + +#: migrations/0001_initial.py:14 migrations/0004_textobjects.py:12 +#: migrations/0004_textobjects.py:22 models/pluginmodel.py:78 +msgid "position" +msgstr "pozicija" + +#: migrations/0001_initial.py:15 migrations/0001_initial.py:29 +#: models/pluginmodel.py:81 models/titlemodels.py:22 +msgid "creation date" +msgstr "datum kreiranja" + +#: migrations/0001_initial.py:16 migrations/0001_initial.py:77 +#: migrations/0003_remove_placeholder.py:20 models/placeholdermodel.py:13 +msgid "slot" +msgstr "slot" + +#: migrations/0001_initial.py:18 models/pluginmodel.py:80 +msgid "plugin_name" +msgstr "plugin_name" + +#: migrations/0001_initial.py:25 migrations/0011_title_overwrites.py:12 +#: migrations/0011_title_overwrites.py:15 models/titlemodels.py:11 +#: models/titlemodels.py:12 models/titlemodels.py:20 plugins/file/models.py:25 +#: plugins/file/migrations/0001_initial.py:18 plugins/teaser/models.py:9 +#: plugins/twitter/models.py:6 plugins/twitter/models.py:15 +#: templates/admin/cms/page/change_list_tree.html:6 +msgid "title" +msgstr "naslov" + +#: migrations/0001_initial.py:28 +msgid "path" +msgstr "putanja" + +#: migrations/0001_initial.py:30 models/titlemodels.py:13 +msgid "slug" +msgstr "slag" + +#: migrations/0001_initial.py:36 +msgid "everybody" +msgstr "svi" + +#: migrations/0001_initial.py:37 models/permissionmodels.py:20 +msgid "can edit" +msgstr "može da menja" + +#: migrations/0001_initial.py:38 models/permissionmodels.py:17 +msgid "group" +msgstr "grupa" + +#: migrations/0001_initial.py:39 models/permissionmodels.py:24 +msgid "can publish" +msgstr "može da objavljuje" + +#: migrations/0001_initial.py:42 +msgid "type" +msgstr "tip" + +#: migrations/0001_initial.py:44 +msgid "can change soft-root" +msgstr "može da izmeni soft-root" + +#: migrations/0001_initial.py:50 migrations/0006_apphook.py:34 +#: migrations/0006_apphook.py:62 +msgid "status" +msgstr "status" + +#: migrations/0001_initial.py:53 +msgid "navigation extenders" +msgstr "proširenja navigacije" + +#: migrations/0001_initial.py:54 migrations/0006_apphook.py:12 +#: migrations/0006_apphook.py:46 models/titlemodels.py:15 +msgid "has url overwrite" +msgstr "izabrano prepisivanje url-a" + +#: migrations/0001_initial.py:55 migrations/0006_apphook.py:49 +msgid "url overwrite" +msgstr "prepisivanje url-a" + +#: migrations/0001_initial.py:57 +msgid "author" +msgstr "autor" + +#: migrations/0001_initial.py:58 migrations/0006_apphook.py:37 +msgid "reverse url id" +msgstr "id inverznog url-a" + +#: migrations/0001_initial.py:59 models/pagemodel.py:84 +msgid "login required" +msgstr "potrebno prijavljivanje" + +#: migrations/0001_initial.py:60 models/pagemodel.py:69 +msgid "soft root" +msgstr "soft root" + +#: migrations/0001_initial.py:63 models/pagemodel.py:67 +msgid "publication end date" +msgstr "datum okončanja objave" + +#: migrations/0001_initial.py:64 models/pagemodel.py:74 +#: plugins/snippet/models.py:14 +msgid "template" +msgstr "šablon" + +#: migrations/0001_initial.py:66 models/pagemodel.py:66 +msgid "publication date" +msgstr "datum objavljivanja" + +#: migrations/0001_initial.py:67 models/pagemodel.py:68 +#: templates/admin/cms/page/change_list_tree.html:9 +msgid "in navigation" +msgstr "u navigaciji" + +#: migrations/0006_apphook.py:15 migrations/0007_apphook_longer.py:11 +#: migrations/0007_apphook_longer.py:17 models/titlemodels.py:16 +msgid "application" +msgstr "aplikacija" + +#: migrations/0006_apphook.py:65 models/pagemodel.py:70 +msgid "id" +msgstr "id" + +#: migrations/0008_redirects.py:11 models/titlemodels.py:17 +msgid "redirect" +msgstr "redirekcija" + +#: migrations/0009_added_meta_fields.py:12 models/titlemodels.py:19 +msgid "keywords" +msgstr "ključne reči" + +#: migrations/0009_added_meta_fields.py:15 models/titlemodels.py:18 +#: plugins/teaser/models.py:20 +msgid "description" +msgstr "opis" + +#: models/moderatormodels.py:25 +msgid "Current page" +msgstr "Trenutna strana" + +#: models/moderatormodels.py:26 +msgid "Page children (immediate)" +msgstr "Potomci strane (neposredni)" + +#: models/moderatormodels.py:27 +msgid "Page and children (immediate)" +msgstr "Strana i potomci (neposredni)" + +#: models/moderatormodels.py:28 +msgid "Page descendants" +msgstr "Potomci strane" + +#: models/moderatormodels.py:29 +msgid "Page and descendants" +msgstr "Strana i potomci" + +#: models/moderatormodels.py:46 +#: templates/admin/cms/page/moderation_messages.html:6 +#: templates/admin/cms/page/permissions.html:6 +msgid "User" +msgstr "Korisnik" + +#: models/moderatormodels.py:50 templatetags/cms_admin.py:99 +msgid "Moderate page" +msgstr "Uredi stranu" + +#: models/moderatormodels.py:51 templatetags/cms_admin.py:100 +msgid "Moderate children" +msgstr "Uredi neposredne potomke stranice" + +#: models/moderatormodels.py:52 templatetags/cms_admin.py:101 +msgid "Moderate descendants" +msgstr "Uredi potomke" + +#: models/moderatormodels.py:55 models/moderatormodels.py:56 +msgid "PageModerator" +msgstr "PageModerator" + +#: models/moderatormodels.py:99 +msgid "created" +msgstr "kreirano" + +#: models/moderatormodels.py:100 models/pagemodel.py:44 +msgid "changed" +msgstr "izmenjeno" + +#: models/moderatormodels.py:101 +msgid "delete req." +msgstr "brisanje" + +#: models/moderatormodels.py:102 +msgid "move req." +msgstr "premeštanje" + +#: models/moderatormodels.py:103 +msgid "publish req." +msgstr "objavljivanje" + +#: models/moderatormodels.py:104 +msgid "unpublish req." +msgstr "obustavljanje objave" + +#: models/moderatormodels.py:105 models/pagemodel.py:47 +msgid "approved" +msgstr "odobreno" + +#: models/moderatormodels.py:117 +msgid "Page moderator state" +msgstr "Status moderatora strane" + +#: models/moderatormodels.py:118 +msgid "Page moderator states" +msgstr "Statusi moderatora strane" + +#: models/pagemodel.py:45 +msgid "req. app." +msgstr "zahtev za aplikacijom" + +#: models/pagemodel.py:46 templates/admin/cms/page/menu_item.html:44 +#: templates/cms/toolbar/toolbar.html:57 utils/moderator.py:90 +msgid "delete" +msgstr "izbriši" + +#: models/pagemodel.py:48 +msgid "app. par." +msgstr "часть приложения" + +#: models/pagemodel.py:52 +msgid "for logged in users only" +msgstr "samo za prijavljene korisnike" + +#: models/pagemodel.py:53 +msgid "for anonymous users only" +msgstr "samo za anonimne korisnike" + +#: models/pagemodel.py:61 +msgid "created by" +msgstr "kreirao" + +#: models/pagemodel.py:62 templates/admin/cms/page/change_list_tree.html:20 +msgid "changed by" +msgstr "izmenio" + +#: models/pagemodel.py:66 +msgid "" +"When the page should go live. Status must be \"Published\" for page to go " +"live." +msgstr "Da bi se strana objavila, nepophodno je da joj status bude \"Objavljeno\"." + +#: models/pagemodel.py:67 +msgid "When to expire the page. Leave empty to never expire." +msgstr "Kada ističe objava strane. Ostavite prazno ako nikad ne ističe." + +#: models/pagemodel.py:69 +msgid "All ancestors will not be displayed in the navigation" +msgstr "Neće svi pretci biti prikazani u navigaciji" + +#: models/pagemodel.py:70 +msgid "" +"An unique identifier that is used with the page_url templatetag for linking " +"to this page" +msgstr "Jedinstveni identifikator koji se koristi sa page_url tagom za linkovanje sa ovom stranicom" + +#: models/pagemodel.py:71 +msgid "attached menu" +msgstr "povezani meni" + +#: models/pagemodel.py:72 +msgid "is published" +msgstr "objavljen" + +#: models/pagemodel.py:74 +msgid "The template used to render the content." +msgstr "Šablon koji se koristi za prikaz sadržaja." + +#: models/pagemodel.py:75 +msgid "The site the page is accessible at." +msgstr "The site the page is accessible at." + +#: models/pagemodel.py:75 +msgid "site" +msgstr "sajt" + +#: models/pagemodel.py:77 +msgid "moderator state" +msgstr "status uređivanja" + +#: models/pagemodel.py:85 +msgid "menu visibility" +msgstr "vidljivost u meniju" + +#: models/pagemodel.py:85 +msgid "limit when this page is visible in the menu" +msgstr "ograniči kada je ova strana vidljiva u meniju" + +#: models/pagemodel.py:105 +msgid "pages" +msgstr "strane" + +#: models/pagemodel.py:267 +msgid "Page was copied." +msgstr "Stranica je iskopirana." + +#: models/pagemodel.py:698 +msgid "default" +msgstr "podrazumevano" + +#: models/permissionmodels.py:21 +msgid "can add" +msgstr "može da doda" + +#: models/permissionmodels.py:22 +msgid "can delete" +msgstr "može da izbriše" + +#: models/permissionmodels.py:23 +msgid "can change advanced settings" +msgstr "može da menja napredna podešavanja" + +#: models/permissionmodels.py:25 +msgid "can change permissions" +msgstr "može da menja dozvole" + +#: models/permissionmodels.py:25 +msgid "on page level" +msgstr "na nivou strane" + +#: models/permissionmodels.py:26 +msgid "can move" +msgstr "može da premešta" + +#: models/permissionmodels.py:27 +msgid "can moderate" +msgstr "može da uređuje" + +#: models/permissionmodels.py:28 +msgid "view restricted" +msgstr "pregled nije dozvoljen" + +#: models/permissionmodels.py:28 +msgid "frontend view restriction" +msgstr "zabrana prikaza na frontendu" + +#: models/permissionmodels.py:51 +msgid "can recover pages" +msgstr "može da povrati stranu" + +#: models/permissionmodels.py:51 +msgid "can recover any deleted page" +msgstr "može da povrati bilo koju sačuvanu stranu" + +#: models/permissionmodels.py:52 +msgid "If none selected, user haves granted permissions to all sites." +msgstr "Ako ništa nije selektovano, korisnik je da privilegije za sve sajtove." + +#: models/permissionmodels.py:52 +msgid "sites" +msgstr "sajtovi" + +#: models/permissionmodels.py:57 +msgid "Page global permission" +msgstr "Globalna prava pristupa za stranicu" + +#: models/permissionmodels.py:58 +msgid "Pages global permissions" +msgstr "Globalna prava pristupa za stranice" + +#: models/permissionmodels.py:68 templates/admin/cms/page/permissions.html:15 +msgid "Grant on" +msgstr "Postavi prava za" + +#: models/permissionmodels.py:74 +msgid "Page permission" +msgstr "Prava pristupa strane" + +#: models/permissionmodels.py:89 +msgid "User (page)" +msgstr "Korisnik (strana)" + +#: models/permissionmodels.py:90 +msgid "Users (page)" +msgstr "Korisnici (strana)" + +#: models/permissionmodels.py:100 +msgid "User group (page)" +msgstr "Grupa korisnika (strana)" + +#: models/permissionmodels.py:101 +msgid "User groups (page)" +msgstr "Grupe korisnika (strana)" + +#: models/placeholdermodel.py:14 plugins/flash/models.py:9 +#: plugins/flash/migrations/0001_initial.py:16 plugins/video/models.py:13 +msgid "width" +msgstr "širina" + +#: models/pluginmodel.py:140 +msgid "" +msgstr "" + +#: models/titlemodels.py:12 +msgid "overwrite the title in the menu" +msgstr "pregazi naslov u meniju" + +#: models/titlemodels.py:14 +msgid "Path" +msgstr "Putanja" + +#: models/titlemodels.py:20 +msgid "overwrite the title (html title tag)" +msgstr "pregazi naslov (html tag title)" + +#: plugins/file/cms_plugins.py:9 +msgid "File" +msgstr "Fajl" + +#: plugins/file/models.py:24 plugins/file/migrations/0001_initial.py:17 +#: plugins/flash/models.py:8 plugins/flash/migrations/0001_initial.py:18 +msgid "file" +msgstr "fajl" + +#: plugins/file/templates/cms/plugins/file.html:6 +msgid "file missing!" +msgstr "fajl ne postoji!" + +#: plugins/flash/cms_plugins.py:9 +msgid "Flash" +msgstr "Fleš" + +#: plugins/flash/models.py:8 +msgid "use swf file" +msgstr "koristite swf fajl" + +#: plugins/flash/models.py:10 plugins/flash/migrations/0001_initial.py:19 +#: plugins/video/models.py:14 +msgid "height" +msgstr "visina" + +#: plugins/flash/templates/cms/plugins/flash.html:40 +#: plugins/video/templates/cms/plugins/video.html:60 +msgid "Missing flash plugin. Please download the latest Adobe Flash Player: " +msgstr "Nemate instaliran fleš plagin. Molimo prezumite najnoviji Adobe Flash Player." + +#: plugins/flash/templates/cms/plugins/flash.html:42 +#: plugins/video/templates/cms/plugins/video.html:62 +msgid "Get Adobe Flash Player" +msgstr "Preuzmi Adobe Flash Player" + +#: plugins/googlemap/cms_plugins.py:10 +msgid "Google Map" +msgstr "Google Map" + +#: plugins/googlemap/models.py:9 +msgid "map title" +msgstr "naslov mape" + +#: plugins/googlemap/models.py:11 +msgid "address" +msgstr "adresa" + +#: plugins/googlemap/models.py:12 +msgid "zip code" +msgstr "poštanski broj" + +#: plugins/googlemap/models.py:13 +msgid "city" +msgstr "grad" + +#: plugins/googlemap/models.py:15 +msgid "additional content" +msgstr "dodatni sadržaj" + +#: plugins/googlemap/models.py:16 +msgid "zoom level" +msgstr "nivo uvećanja" + +#: plugins/googlemap/models.py:18 +msgid "latitude" +msgstr "širina" + +#: plugins/googlemap/models.py:19 +msgid "Use latitude & longitude to fine tune the map possiton." +msgstr "Koristi širinu i dužinu za fino podešavanje položaja mape." + +#: plugins/googlemap/models.py:20 +msgid "longitude" +msgstr "dužina" + +#: plugins/googlemap/models.py:22 +msgid "route planer title" +msgstr "naslov planera rute" + +#: plugins/googlemap/models.py:22 +msgid "Calculate your fastest way to here" +msgstr "Izračunaj najbliži put do ovde" + +#: plugins/googlemap/models.py:23 +msgid "route planer" +msgstr "planer rute" + +#: plugins/googlemap/models.py:30 +msgid "Map" +msgstr "Karta" + +#: plugins/googlemap/templates/cms/plugins/googlemap.html:76 +msgid "Your address: " +msgstr "Vaša adresa: " + +#: plugins/googlemap/templates/cms/plugins/googlemap.html:78 +msgid "Calculate route" +msgstr "Sračunaj rutu" + +#: plugins/inherit/cms_plugins.py:17 +msgid "Inherit Plugins from Page" +msgstr "Nasledi plagine od strane" + +#: plugins/inherit/forms.py:23 +msgid "Language or Page must be filled out" +msgstr "Jezik ili strana se moraju popuniti" + +#: plugins/inherit/models.py:10 +msgid "" +"Choose a page to include its plugins into this placeholder, empty will " +"choose current page" +msgstr "Izaberite stranu čije plagine treba uključiti u placeholder, ako je prazno, biće izabrana trenutna strana" + +#: plugins/inherit/models.py:11 +msgid "Optional: the language of the plugins you want" +msgstr "Opciono: jezik plagina koji želite" + +#: plugins/link/cms_plugins.py:12 +msgid "Link" +msgstr "Link" + +#: plugins/link/models.py:10 plugins/link/migrations/0001_initial.py:18 +#: plugins/link/migrations/0004_larger_link_names.py:11 +#: plugins/link/migrations/0004_larger_link_names.py:17 +#: plugins/snippet/models.py:12 plugins/snippet/migrations/0001_initial.py:17 +msgid "name" +msgstr "naziv" + +#: plugins/link/models.py:11 plugins/link/migrations/0001_initial.py:16 +#: plugins/picture/models.py:21 plugins/picture/migrations/0001_initial.py:16 +#: plugins/teaser/models.py:19 +msgid "link" +msgstr "link" + +#: plugins/link/models.py:12 +msgid "A link to a page has priority over a text link." +msgstr "Link na stranicu ima prioritet u odnosu na tekstualni link." + +#: plugins/link/models.py:13 +msgid "mailto" +msgstr "mailto" + +#: plugins/link/models.py:13 +msgid "An email adress has priority over a text link." +msgstr "Imejl adresa ima prioritet u odnosu na tekstualni link." + +#: plugins/picture/cms_plugins.py:9 +msgid "Picture" +msgstr "Slika" + +#: plugins/picture/models.py:14 +msgid "center" +msgstr "centar" + +#: plugins/picture/models.py:15 +msgid "left" +msgstr "levo" + +#: plugins/picture/models.py:16 +msgid "right" +msgstr "desno" + +#: plugins/picture/models.py:20 plugins/picture/migrations/0001_initial.py:17 +#: plugins/teaser/models.py:10 plugins/video/models.py:11 +msgid "image" +msgstr "slika" + +#: plugins/picture/models.py:21 plugins/picture/models.py:22 +msgid "if present image will be clickable" +msgstr "ako je izabrano, na sliku će moći da se klikne" + +#: plugins/picture/models.py:23 plugins/picture/migrations/0001_initial.py:19 +msgid "alternate text" +msgstr "alternativni tekst" + +#: plugins/picture/models.py:23 +msgid "textual description of the image" +msgstr "tekstulani opis sadržaja na slici" + +#: plugins/picture/models.py:24 +msgid "long description" +msgstr "dugački opis" + +#: plugins/picture/models.py:24 +msgid "additional description of the image" +msgstr "dodatni opis slike" + +#: plugins/picture/models.py:25 +msgid "side" +msgstr "strana" + +#: plugins/snippet/cms_plugins.py:12 plugins/snippet/models.py:24 +#: plugins/snippet/models.py:32 +msgid "Snippet" +msgstr "Isečak" + +#: plugins/snippet/cms_plugins.py:30 +#, python-format +msgid "Template %(template)s does not exist." +msgstr "Šablon %(template)s ne postoji." + +#: plugins/snippet/models.py:13 plugins/snippet/migrations/0001_initial.py:18 +msgid "HTML" +msgstr "HTML" + +#: plugins/snippet/models.py:15 +msgid "" +"Enter a template (i.e. \"snippets/plugin_xy.html\") which will be rendered. " +msgstr "Unesite ime šablona (na primer \"snippets/plugin_xy.html\") koji treba da se prikazuje. " + +#: plugins/snippet/models.py:25 +msgid "Snippets" +msgstr "Isečci" + +#: plugins/teaser/cms_plugins.py:8 +msgid "Teaser" +msgstr "Teaser" + +#: plugins/teaser/models.py:14 +msgid "If present image will be clickable" +msgstr "Ako je izabrano, na sliku će moći da se klikne" + +#: plugins/teaser/models.py:19 +msgid "If present image will be clickable." +msgstr "Если выбран, то на изображение можно кликнуть." + +#: plugins/teaser/templates/cms/plugins/teaser.html:11 +#: templates/cms/toolbar/toolbar.html:59 +msgid "more" +msgstr "više" + +#: plugins/text/cms_plugins.py:15 +msgid "Text" +msgstr "Tekst" + +#: plugins/text/models.py:14 plugins/text/migrations/0001_initial.py:16 +msgid "body" +msgstr "telo" + +#: plugins/text/templates/cms/plugins/widgets/tinymce.html:30 +msgid "Plugins" +msgstr "Plagini" + +#: plugins/text/templates/cms/plugins/widgets/tinymce.html:38 +#: plugins/text/templates/cms/plugins/widgets/tinymce.html:106 +#: plugins/text/templates/cms/plugins/widgets/wymeditor.html:67 +msgid "Please select a plugin type." +msgstr "Molimo izaberite tip plagina." + +#: plugins/text/templates/cms/plugins/widgets/tinymce.html:54 +#: plugins/text/templates/cms/plugins/widgets/wymeditor.html:110 +msgid "Edit selected plugin" +msgstr "Izmeni izabrani plagin." + +#: plugins/text/templates/cms/plugins/widgets/tinymce.html:58 +#: plugins/text/templates/cms/plugins/widgets/tinymce.html:124 +#: plugins/text/templates/cms/plugins/widgets/wymeditor.html:85 +msgid "Text editor does not support editing objects." +msgstr "Tekst editor ne podržava izmenu objekata." + +#: plugins/text/templates/cms/plugins/widgets/tinymce.html:63 +#: plugins/text/templates/cms/plugins/widgets/tinymce.html:129 +#: plugins/text/templates/cms/plugins/widgets/wymeditor.html:90 +msgid "No object selected." +msgstr "Niste izabrali objekat." + +#: plugins/text/templates/cms/plugins/widgets/tinymce.html:112 +#: plugins/text/templates/cms/plugins/widgets/wymeditor.html:73 +msgid "Text editor does not support inserting objects." +msgstr "Tekst editor ne podržava umetanje objekata." + +#: plugins/text/templates/cms/plugins/widgets/tinymce.html:133 +#: plugins/text/templates/cms/plugins/widgets/wymeditor.html:94 +msgid "Not a plugin object" +msgstr "Objekat nije plagin." + +#: plugins/text/templates/cms/plugins/widgets/wymeditor.html:106 +#: templates/admin/cms/page/widgets/installed_plugins_inc.html:4 +msgid "Available Plugins" +msgstr "Dostupni plagini." + +#: plugins/text/templates/cms/plugins/widgets/wymeditor.html:109 +msgid "Insert plugin" +msgstr "Umetni plagin" + +#: plugins/twitter/cms_plugins.py:10 +#: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:27 +msgid "Twitter" +msgstr "Twitter" + +#: plugins/twitter/cms_plugins.py:23 +msgid "Twitter Search" +msgstr "Pretraga Twitter-a" + +#: plugins/twitter/models.py:7 +msgid "twitter user" +msgstr "twitter korisnik" + +#: plugins/twitter/models.py:8 plugins/twitter/models.py:17 +msgid "count" +msgstr "broj" + +#: plugins/twitter/models.py:8 plugins/twitter/models.py:17 +msgid "Number of entries to display" +msgstr "Broj unosa koji se prikazuju" + +#: plugins/twitter/models.py:9 +msgid "link hint" +msgstr "nagoveštaj za link" + +#: plugins/twitter/models.py:9 +msgid "If given, the hint is displayed as link to your Twitter profile." +msgstr "Ako je dato, nagoveštaj se prikazuje kao link ka Vašem Twitter profilu." + +#: plugins/twitter/models.py:16 +msgid "query" +msgstr "upit" + +#: plugins/twitter/models.py:16 +msgid "" +"Example: \"brains AND zombies AND from:umbrella AND to:nemesis\": tweets " +"from the user \"umbrella\" to the user \"nemesis\" that contain the words " +"\"brains\" and \"zombies\"" +msgstr "Пример: \"brains AND zombies AND from:umbrella AND to:nemesis\": tvit korisnika \"umbrella\" korisniku \"nemesis\" sadrži reči \"brains\" и \"zombies\"" + +#: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:12 +msgid "we said," +msgstr "rekli smo," + +#: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:13 +msgid "we" +msgstr "mi" + +#: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:14 +msgid "we were" +msgstr "mi smo bili" + +#: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:15 +msgid "we replied to" +msgstr "odgovorili smo" + +#: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:16 +msgid "we were checking out" +msgstr "gledali smo" + +#: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:17 +msgid "loading tweets..." +msgstr "učitavanje tvitova..." + +#: plugins/video/cms_plugins.py:10 +msgid "Video" +msgstr "Video" + +#: plugins/video/cms_plugins.py:42 +msgid "Color Settings" +msgstr "Podešavanje boja" + +#: plugins/video/models.py:9 +msgid "movie file" +msgstr "video fajl" + +#: plugins/video/models.py:9 +msgid "use .flv file or h264 encoded video file" +msgstr "koristite .flv ili h264 kodiran fajl" + +#: plugins/video/models.py:10 +msgid "movie url" +msgstr "URL do videa" + +#: plugins/video/models.py:10 +msgid "" +"vimeo or youtube video url. Example: " +"http://www.youtube.com/watch?v=-iJ7bs4mTUY" +msgstr "vimeo ili youtube URL. Na primer: http://www.youtube.com/watch?v=-iJ7bs4mTUY" + +#: plugins/video/models.py:11 +msgid "preview image file" +msgstr "brzi prikaz slike" + +#: plugins/video/models.py:16 +msgid "auto play" +msgstr "auto play" + +#: plugins/video/models.py:17 +msgid "auto hide" +msgstr "automatsko skrivanje" + +#: plugins/video/models.py:18 +msgid "fullscreen" +msgstr "ceo ekran" + +#: plugins/video/models.py:19 +msgid "loop" +msgstr "ciklus" + +#: plugins/video/models.py:22 +msgid "background color" +msgstr "pozadinska boja" + +#: plugins/video/models.py:22 plugins/video/models.py:23 +#: plugins/video/models.py:24 plugins/video/models.py:25 +#: plugins/video/models.py:26 plugins/video/models.py:27 +#: plugins/video/models.py:28 plugins/video/models.py:29 +msgid "Hexadecimal, eg ff00cc" +msgstr "Heksadecimalno, na primer ff00cc" + +#: plugins/video/models.py:23 +msgid "text color" +msgstr "boja teksta" + +#: plugins/video/models.py:24 +msgid "seekbar color" +msgstr "boja trake" + +#: plugins/video/models.py:25 +msgid "seekbar bg color" +msgstr "pozadinska boja trake" + +#: plugins/video/models.py:26 +msgid "loadingbar color" +msgstr "boja indikatora za učitavanje" + +#: plugins/video/models.py:27 +msgid "button out color" +msgstr "boja dugmića kad su isključeni" + +#: plugins/video/models.py:28 +msgid "button over color" +msgstr "boja dugmića kada se pređe preko njih" + +#: plugins/video/models.py:29 +msgid "button highlight color" +msgstr "boja istaknutih dugmića" + +#: templates/admin/page_submit_line.html:3 +#: templates/admin/cms/page/change_form.html:274 +#: templates/admin/cms/page/plugin_change_form.html:113 +msgid "Save" +msgstr "Sačuvaj" + +#: templates/admin/page_submit_line.html:7 +#, python-format +msgid "Delete %(language)s translation" +msgstr "Izbriši prevod na %(language)s" + +#: templates/admin/page_submit_line.html:11 +msgid "Save as new" +msgstr "Sačuvaj kao novi" + +#: templates/admin/page_submit_line.html:12 +msgid "Save and add another" +msgstr "Sačuvaj i dodaj još" + +#: templates/admin/page_submit_line.html:13 +#: templates/admin/cms/page/change_form.html:275 +msgid "Save and continue editing" +msgstr "Sačuvaj i nastavi izmenjivanje" + +#: templates/admin/cms/mail/approvement_required.html:5 +#, python-format +msgid "" +"Page %(page)s may require approvement by you." +msgstr "Strana %(page)s može zahtevati Vaše odobrenje." + +#: templates/admin/cms/mail/approvement_required.html:8 +msgid "Last changes" +msgstr "Poslednje izmene" + +#: templates/admin/cms/mail/base.html:55 +#, python-format +msgid "Log in to administration here." +msgstr "Prijavite se u administraciju ovde." + +#: templates/admin/cms/mail/page_user_change.html:7 +msgid "Username:" +msgstr "Korisničko ime:" + +#: templates/admin/cms/mail/page_user_change.html:11 +msgid "Password:" +msgstr "Lozinka:" + +#: templates/admin/cms/page/change_form.html:3 +#: templates/admin/cms/page/plugin_forms_history.html:3 +#: templates/admin/cms/page/plugin_forms_ok.html:4 +msgid "Change a page" +msgstr "Izmeni stranu" + +#: templates/admin/cms/page/change_form.html:64 +#: templates/admin/cms/page/change_list.html:8 +#: templates/admin/cms/page/plugin_change_form.html:67 +#: templates/admin/cms/page/recover_form.html:14 +#: templates/admin/cms/page/revision_form.html:6 +msgid "Home" +msgstr "Početna" + +#: templates/admin/cms/page/change_form.html:73 +msgid "Approve page deletion" +msgstr "Odobri brisanje strane" + +#: templates/admin/cms/page/change_form.html:79 +#, python-format +msgid "(requires approvement at %(moderation_level)s level)" +msgstr "(zahteva odobrenje na nivou %(moderation_level)s)" + +#: templates/admin/cms/page/change_form.html:80 +msgid "(you can perform actions on this page directly)" +msgstr "(možete direktno sprovesti akcije nad ovom stranom)" + +#: templates/admin/cms/page/change_form.html:93 +msgid "Remove delete request" +msgstr "Ukloni zahtev za brisanjem" + +#: templates/admin/cms/page/change_form.html:95 +msgid "Approve delete" +msgstr "Odobri brisanje" + +#: templates/admin/cms/page/change_form.html:95 +msgid "Approve" +msgstr "Odobri" + +#: templates/admin/cms/page/change_form.html:95 +#: templates/admin/cms/page/change_form.html:96 +#: templates/admin/cms/page/change_list_tree.html:12 +msgid "draft" +msgstr "draft" + +#: templates/admin/cms/page/change_form.html:96 +msgid "Preview" +msgstr "Pregled" + +#: templates/admin/cms/page/change_form.html:99 +#: templates/admin/cms/page/revision_form.html:10 +msgid "History" +msgstr "Istorija" + +#: templates/admin/cms/page/change_form.html:100 +msgid "View on site" +msgstr "Prikaži na sajtu" + +#: templates/admin/cms/page/change_form.html:130 +#: templates/admin/cms/page/plugin_change_form.html:84 +msgid "Please correct the error below." +msgid_plural "Please correct the errors below." +msgstr[0] "Molimo ispravite navedene greške." +msgstr[1] "Molimo ispravite navedene greške." +msgstr[2] "Molimo ispravite navedene greške." + +#: templates/admin/cms/page/change_form.html:150 +msgid "All permissions" +msgstr "Sva prava" + +#: templates/admin/cms/page/change_form.html:151 +#: templates/admin/cms/page/change_form.html:163 +#: templates/admin/cms/page/loading.html:2 +msgid "Loading..." +msgstr "Učitavanje..." + +#: templates/admin/cms/page/change_form.html:162 +msgid "Page states" +msgstr "Statusi strane" + +#: templates/admin/cms/page/change_form.html:185 +#, python-format +msgid "" +"This page must be moderated at level %(moderation_level)s, post a message " +"for moderator." +msgstr "Strana se mora uređivati na nivou %(moderation_level)s, pošaljite poruku moderatoru." + +#: templates/admin/cms/page/change_form.html:187 +msgid "Request approvemet" +msgstr "Zatraži odobrenje" + +#: templates/admin/cms/page/change_list.html:3 +msgid "List of pages" +msgstr "Spisak strana" + +#: templates/admin/cms/page/change_list.html:58 +msgid "Successfully moved" +msgstr "Uspešno premešteno" + +#: templates/admin/cms/page/change_list.html:63 +msgid "An error occured. Please reload the page" +msgstr "Došlo je do greške. Molimo osvežite stranu" + +#: templates/admin/cms/page/change_list.html:84 +#, python-format +msgid "Recover deleted %(name)s" +msgstr "Povrati obrisano (%(name)s)" + +#: templates/admin/cms/page/change_list.html:87 +#, python-format +msgid "Add %(name)s" +msgstr "Dodaj %(name)s" + +#: templates/admin/cms/page/change_list.html:99 +msgid "Pages on:" +msgstr "Strana na:" + +#: templates/admin/cms/page/change_list.html:116 +msgid "Filter:" +msgstr "Filter:" + +#: templates/admin/cms/page/change_list.html:116 +msgid "on" +msgstr "ukjlučeno" + +#: templates/admin/cms/page/change_list.html:116 +msgid "off" +msgstr "isključen" + +#: templates/admin/cms/page/change_list.html:118 +msgid "Filter" +msgstr "Filter" + +#: templates/admin/cms/page/change_list_tree.html:8 +msgid "actions" +msgstr "akcije" + +#: templates/admin/cms/page/change_list_tree.html:10 +msgid "moderate" +msgstr "uređuj" + +#: templates/admin/cms/page/change_list_tree.html:13 +msgid "published" +msgstr "objavljeno" + +#: templates/admin/cms/page/change_list_tree.html:15 +msgid "start" +msgstr "početak" + +#: templates/admin/cms/page/change_list_tree.html:16 +msgid "end" +msgstr "kraj" + +#: templates/admin/cms/page/change_list_tree.html:17 +msgid "restricted" +msgstr "ograničеnja" + +#: templates/admin/cms/page/change_list_tree.html:19 +msgid "last changes" +msgstr "poslednje izmene" + +#: templates/admin/cms/page/menu_item.html:5 +msgid "select this page" +msgstr "izaberi ovu stranu" + +#: templates/admin/cms/page/menu_item.html:5 +#: templates/admin/cms/page/menu_item.html:6 +msgid "edit this page" +msgstr "izmeni ovu stranu" + +#: templates/admin/cms/page/menu_item.html:6 +#: templates/cms/toolbar/toolbar.html:54 +msgid "edit" +msgstr "izmeni" + +#: templates/admin/cms/page/menu_item.html:16 +msgid "insert above" +msgstr "ubaci iznad" + +#: templates/admin/cms/page/menu_item.html:17 +msgid "insert below" +msgstr "ubaci ispod" + +#: templates/admin/cms/page/menu_item.html:19 +msgid "insert inside" +msgstr "ubaci unutra" + +#: templates/admin/cms/page/menu_item.html:23 +msgid "softroot" +msgstr "softroot" + +#: templates/admin/cms/page/menu_item.html:23 +msgid "home" +msgstr "početna" + +#: templates/admin/cms/page/menu_item.html:26 +#, python-format +msgid "Edit this page in %(language)s " +msgstr "Izmeni stranu na jeziku %(language)s" + +#: templates/admin/cms/page/menu_item.html:33 +msgid "Cut" +msgstr "Iseci" + +#: templates/admin/cms/page/menu_item.html:33 +msgid "cut" +msgstr "iseci" + +#: templates/admin/cms/page/menu_item.html:34 +msgid "Copy" +msgstr "Kopiraj" + +#: templates/admin/cms/page/menu_item.html:34 +msgid "copy" +msgstr "kopiraj" + +#: templates/admin/cms/page/menu_item.html:37 +#: templates/admin/cms/page/menu_item.html:41 +msgid "Add Child" +msgstr "Dodaj dete" + +#: templates/admin/cms/page/menu_item.html:37 +#: templates/admin/cms/page/menu_item.html:41 +msgid "add" +msgstr "dodaj" + +#: templates/admin/cms/page/menu_item.html:65 +msgid "Approve directly" +msgstr "Odobri direktno" + +#: templates/admin/cms/page/menu_item.html:67 +#: templates/admin/cms/page/menu_item.html:79 +#: templates/admin/cms/page/menu_item.html:81 +msgid "view" +msgstr "prikaži" + +#: templates/admin/cms/page/menu_item.html:72 +msgid "Unpublish" +msgstr "Povuci objavu" + +#: templates/admin/cms/page/menu_item.html:79 +msgid "View on page" +msgstr "Prikaži na strani" + +#: templates/admin/cms/page/moderation_messages.html:4 +msgid "Action" +msgstr "Akcija" + +#: templates/admin/cms/page/moderation_messages.html:5 +msgid "Created" +msgstr "Kreirano" + +#: templates/admin/cms/page/moderation_messages.html:7 +msgid "Message" +msgstr "Poruka" + +#: templates/admin/cms/page/permissions.html:7 +msgid "Group" +msgstr "Grupa" + +#: templates/admin/cms/page/permissions.html:8 +msgid "Can edit" +msgstr "Može da izmeni" + +#: templates/admin/cms/page/permissions.html:9 +msgid "Can add" +msgstr "Može da doda" + +#: templates/admin/cms/page/permissions.html:10 +msgid "Can delete" +msgstr "Može da izbriše" + +#: templates/admin/cms/page/permissions.html:11 +msgid "Can publish" +msgstr "Može da objavi" + +#: templates/admin/cms/page/permissions.html:12 +msgid "Can change permissions" +msgstr "Može da izmeni privilegije" + +#: templates/admin/cms/page/permissions.html:13 +msgid "Can move" +msgstr "Može da premesti" + +#: templates/admin/cms/page/permissions.html:14 +msgid "Can view" +msgstr "Može da gleda" + +#: templates/admin/cms/page/permissions.html:21 +#: templates/admin/cms/page/permissions.html:22 +msgid "(global)" +msgstr "(globalni)" + +#: templates/admin/cms/page/permissions.html:26 +msgid "(current)" +msgstr "(tekući)" + +#: templates/admin/cms/page/permissions.html:43 +msgid "All" +msgstr "Sve" + +#: templates/admin/cms/page/permissions.html:51 +msgid "Page doesn't inherit any permissions." +msgstr "Strana ne nasleđuje nijedno pravo pristupa" + +#: templates/admin/cms/page/plugin_change_form.html:114 +#: templates/cms/toolbar/toolbar.html:24 +msgid "Cancel" +msgstr "Odustani" + +#: templates/admin/cms/page/plugin_forms_history.html:9 +msgid "An old revision of a plugin can not be saved!" +msgstr "Stara revizija plagina se ne može sačuvati!" + +#: templates/admin/cms/page/plugin_forms_ok.html:21 +msgid "Plugin saved successfully." +msgstr "Plagin je uspešno sačuvan." + +#: templates/admin/cms/page/recover_form.html:17 +#, python-format +msgid "Recover deleted %(verbose_name)s" +msgstr "Povrati izbrisano %(verbose_name)s" + +#: templates/admin/cms/page/recover_form.html:24 +msgid "Press the save button below to recover this version of the object." +msgstr "Pritisnite dugme Sačuvaj kako biste povratili ovu verziju objekta." + +#: templates/admin/cms/page/revision_form.html:11 +#, python-format +msgid "Revert %(verbose_name)s" +msgstr "Povrati %(verbose_name)s" + +#: templates/admin/cms/page/revision_form.html:24 +msgid "Press the save button below to revert to this version of the object." +msgstr "Pritisnite dugme Sačuvaj kako biste povratili ovu verziju objekta." + +#: templates/admin/cms/page/dialog/copy.html:4 +msgid "Copy options" +msgstr "Opcija kopiranja" + +#: templates/admin/cms/page/dialog/copy.html:6 +msgid "Choose copy options" +msgstr "Izaberite opcije kopiranja" + +#: templates/admin/cms/page/widgets/installed_plugins_inc.html:7 +msgid "Generic" +msgstr "Opšte" + +#: templates/admin/cms/page/widgets/installed_plugins_inc.html:15 +msgid "Add Plugin" +msgstr "Dodaj plagin" + +#: templates/admin/cms/page/widgets/installed_plugins_inc.html:18 +msgid "From Language" +msgstr "Na jeziku" + +#: templates/admin/cms/page/widgets/installed_plugins_inc.html:25 +msgid "Copy Plugins" +msgstr "Kopiraj plagin" + +#: templates/admin/cms/page/widgets/plugin_editor.html:12 +msgid "You must save the page first to add plugins." +msgstr "Prvo morate sačuvati stranu kako biste dodali plagine." + +#: templates/admin/cms/page/widgets/plugin_editor.html:15 +msgid "No Plugin selected. Selected one on the left side" +msgstr "Niste izabrali plagin. Izaberite jedan sa leve strane." + +#: templates/admin/cms/page/widgets/plugin_editor.html:17 +msgid "No Plugins present. Add a plugin to this placeholder-slot." +msgstr "Nema dostupnih plagina. Dodajte plagin na ovaj placeholder-slot." + +#: templates/cms/toolbar/placeholder.html:32 +msgid "Available plugins" +msgstr "Dostupni plagini" + +#: templates/cms/toolbar/toolbar.html:22 +msgid "The selected element can not be moved to the desired location." +msgstr "Izabrani element se ne može pomeriti na zahtevanu lokaciju." + +#: templates/cms/toolbar/toolbar.html:23 +msgid "Are you sure you want to delete this plugin?" +msgstr "Da li ste sigurni da želite da izbrišete ovaj plagin?" + +#: templates/cms/toolbar/toolbar.html:55 +msgid "up" +msgstr "gore" + +#: templates/cms/toolbar/toolbar.html:56 +msgid "down" +msgstr "dole" + +#: templates/cms/toolbar/toolbar.html:61 +msgid "Move to placeholder" +msgstr "Premesti u placeholder" + +#: templates/cms/toolbar/items/login.html:5 +msgid "Username" +msgstr "Korisničko ime" + +#: templates/cms/toolbar/items/login.html:10 +#: templates/cms/toolbar/items/login.html:12 +msgid "Login" +msgstr "Prijavljivanje" + +#: templates/cms/toolbar/items/status.html:2 +msgid "Status" +msgstr "Status" + +#: templates/cms/toolbar/items/switcher.html:4 +msgid "Switch on/off" +msgstr "Uključi/Isključi" + +#: templatetags/cms_admin.py:86 +#, python-format +msgid "%(icon)s" +msgstr "%(icon)s" + +#: templatetags/cms_admin.py:99 +msgid "Unbind page moderation" +msgstr "Ukini moderaciju stranica" + +#: templatetags/cms_admin.py:100 +msgid "Unbind children moderation" +msgstr "Ukini moderaciju neposrednih potomaka" + +#: templatetags/cms_admin.py:101 +msgid "Unbind descendants moderation" +msgstr "Ukini moderaciju potomaka" + +#: templatetags/cms_tags.py:78 +#, python-format +msgid "Page not found on %(domain)s" +msgstr "Strana nije pronađena na %(domain)s" + +#: templatetags/cms_tags.py:79 +#, python-format +msgid "" +"A template tag couldn't find the page with lookup arguments `%(page_lookup)s\n" +"`. The URL of the request was: http://%(host)s%(path)s" +msgstr "Template tag ne može pronaći stranu sa parametrima `%(page_lookup)s\n`. URL je bio: http://%(host)s%(path)s" + +#: utils/mail.py:38 +msgid "CMS - your user account was created." +msgstr "CMS - Vaš nalog je kreiran." + +#: utils/mail.py:40 +msgid "CMS - your user account was changed." +msgstr "CMS - Vaš nalog je izmenjen." + +#: utils/moderator.py:83 +msgid "parent first" +msgstr "prvi roditelj" + +#: utils/moderator.py:90 +msgid "approve" +msgstr "odobri" + +#: utils/moderator.py:251 +#, python-format +msgid "CMS - Page %s requires approvement." +msgstr "CMS - Strana %s zahteva odobrenje." + +#~ msgid "move" +#~ msgstr "move request" + +#~ msgid "sidebar column" +#~ msgstr "background color" + +#~ msgid "fgcolor" +#~ msgstr "foreground color" + +#~ msgid "Wanted language has not been translated yet." +#~ msgstr "Requested language has not been translated yet." diff --git a/cms/locale/sr@latin/LC_MESSAGES/djangojs.po b/cms/locale/sr@latin/LC_MESSAGES/djangojs.po new file mode 100644 index 00000000000..ec6ff987a59 --- /dev/null +++ b/cms/locale/sr@latin/LC_MESSAGES/djangojs.po @@ -0,0 +1,38 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: django-cms\n" +"Report-Msgid-Bugs-To: https://github.com/divio/django-cms/issues\n" +"POT-Creation-Date: 2011-08-14 09:44-0500\n" +"PO-Revision-Date: 2012-01-18 12:22+0000\n" +"Last-Translator: Milorad Pop-Tosic \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sr@latin\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" + +#: static/cms/js/change_form.js:31 +msgid "" +"Are you sure you want to change the %(field_name)s without saving the page " +"first?" +msgstr "Da li ste sigurni da želite da izmenite %(field_name)s a da prethodno ne sačuvate stranu?" + +#: static/cms/js/change_form.js:69 +msgid "" +"Not all plugins are saved. Are you sure you want to save the page?\n" +"All unsaved plugin content will tried to save." +msgstr "Nisu svi plagini sačuvani. Da li ste sigurni da želite da sačuvate stranu?\nBiće pokušano čuvanje za sve plagine koji nisu sačuvani." + +#: static/cms/js/change_form.js:127 +msgid "Are you sure you want to change tabs without saving the page first?" +msgstr "Da li ste sigurni da želite da promenite tab pre nego što sačuvate stranu?" + +#: static/cms/js/plugin_editor.js:132 +msgid "Are you sure you want to delete this plugin?" +msgstr "Da li ste sigurni da želite da uklonite ovaj plagin?" diff --git a/cms/locale/sv/LC_MESSAGES/django.po b/cms/locale/sv/LC_MESSAGES/django.po index a9b9d4dd975..e12c0581134 100644 --- a/cms/locale/sv/LC_MESSAGES/django.po +++ b/cms/locale/sv/LC_MESSAGES/django.po @@ -1,19 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# +# Translators: +# , 2011. +# Patrik Gärdeman , 2011. +# Simon Hedberg , 2011. +# tapetersen , 2011. msgid "" msgstr "" "Project-Id-Version: django-cms\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-14 09:49-0500\n" -"PO-Revision-Date: 2011-03-22 15:24+0000\n" -"Last-Translator: ojii \n" +"Report-Msgid-Bugs-To: https://github.com/divio/django-cms/issues\n" +"POT-Creation-Date: 2011-08-14 09:47-0500\n" +"PO-Revision-Date: 2011-11-07 15:39+0000\n" +"Last-Translator: hannseman \n" "Language-Team: divio.ch \n" -"Language: sv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" "X-Poedit-Country: SWITZERLAND\n" "X-Poedit-Language: English\n" @@ -25,7 +30,7 @@ msgstr "Redigeringsläge" #: cms_toolbar.py:77 msgid "django CMS" -msgstr "" +msgstr "django CMS" #: cms_toolbar.py:108 templates/admin/cms/page/menu_item.html:73 msgid "Publish" @@ -33,7 +38,7 @@ msgstr "Publicera" #: cms_toolbar.py:112 msgid "Request Approval" -msgstr "" +msgstr "Begär godkännande" #: cms_toolbar.py:127 cms_toolbar.py:136 msgid "Logout" @@ -78,7 +83,7 @@ msgstr "Visa historik" #: cms_toolbar.py:205 msgid "Admin" -msgstr "" +msgstr "Admin" #: plugin_base.py:65 msgid "Advanced options" @@ -125,7 +130,8 @@ msgid "Page Title" msgstr "Sidrubrik" #: admin/forms.py:138 -msgid "Overwrites what is displayed at the top of your browser or in bookmarks" +msgid "" +"Overwrites what is displayed at the top of your browser or in bookmarks" msgstr "Anger vad som visas i webbläsarens topp eller i bokmärken" #: admin/forms.py:139 @@ -169,9 +175,9 @@ msgid "Invalid URL, use /my/url format." msgstr "Felaktig URL, använd följande format: /min/url." #: admin/forms.py:181 -#, fuzzy, python-format +#, python-format msgid "Page with redirect url %r already exist" -msgstr "En annan sida med samma URL-namn finns redan" +msgstr "Sidan med omdirigerings-URL %r finns redan" #: admin/forms.py:191 admin/forms.py:192 migrations/0001_initial.py:41 #: models/permissionmodels.py:16 @@ -182,18 +188,15 @@ msgstr "användare" msgid "" "Add page permission requires also access to children, or descendants, " "otherwise added page can't be changed by its creator." -msgstr "" -"Tillåtelse att lägga till sida kräver också tillgång till barn eller " -"efterkommande annars kan inte tillagd sida redigeras av den som skapat den." +msgstr "Tillåtelse att lägga till sida kräver också tillgång till barn eller efterkommande annars kan inte tillagd sida redigeras av den som skapat den." #: admin/forms.py:221 msgid "Add page permission also requires edit page permission." msgstr "Tillåtelse att lägga till sida kräver tillåtelse att redigera sidor." #: admin/forms.py:248 -#, fuzzy msgid "can_view" -msgstr "vy" +msgstr "" #: admin/forms.py:260 msgid "Please select user or group first." @@ -228,9 +231,7 @@ msgstr "Meddela användare" msgid "" "Send email notification to user about username or password change. Requires " "user email." -msgstr "" -"Skicka e-postmeddelande till användare om användarnamn eller " -"lösenordsförändring. E-postadress på användare krävs." +msgstr "Skicka e-postmeddelande till användare om användarnamn eller lösenordsförändring. E-postadress på användare krävs." #: admin/forms.py:318 msgid "New password" @@ -252,8 +253,7 @@ msgstr "Tillåtelse att lägga till sidor kräver tillåtelse att redigera sidor #: admin/forms.py:343 msgid "" "The permission to add new users requires the permission to change users!" -msgstr "" -"Tillåtelse att lägga till användare kröver tillåtelse att redigera användare!" +msgstr "Tillåtelse att lägga till användare kröver tillåtelse att redigera användare!" #: admin/forms.py:345 msgid "To add permissions you also need to edit them!" @@ -280,9 +280,8 @@ msgid "SEO Settings" msgstr "SEO-inställningar" #: admin/pageadmin.py:299 -#, fuzzy msgid "You have no permission to change the template" -msgstr "Du har inte tillåtelse att redigera denna sida" +msgstr "Du har ingen behörighet att ändra mallen" #: admin/pageadmin.py:485 msgid "higher" @@ -323,9 +322,8 @@ msgid "You do not have permission to change this page's in_navigation status" msgstr "Du har inte tillåtelse att ändra denna sidas 'i navigation'-status" #: admin/pageadmin.py:1079 -#, fuzzy msgid "You have no permission to add a plugin" -msgstr "Du har inte tillåtelse att redigera denna sida" +msgstr "Du har ingen behörighet att lägga till en plugin" #: admin/pageadmin.py:1126 admin/pageadmin.py:1158 msgid "Language must be set to a supported language!" @@ -345,9 +343,8 @@ msgid "Language must be different than the copied language!" msgstr "Språket måste vara ett annat än det som kopieras!" #: admin/pageadmin.py:1166 -#, fuzzy msgid "You do not have permission to add plugins" -msgstr "Du har inte tillåtelse att redigera denna sida" +msgstr "Du har inte behörighet att lägga till plugins" #: admin/pageadmin.py:1173 #, python-format @@ -355,52 +352,45 @@ msgid "Copied %(language)s plugins to %(placeholder)s" msgstr "%(language)s plugin har kopierats till %(placeholder)s" #: admin/pageadmin.py:1186 admin/pageadmin.py:1294 admin/pageadmin.py:1316 -#, fuzzy msgid "You have no permission to change this page" -msgstr "Du har inte tillåtelse att redigera denna sida" +msgstr "Du har ingen behörighet att ändra denna sida" #: admin/pageadmin.py:1221 -#, fuzzy msgid "You have no permission to edit a plugin" -msgstr "Du har inte tillåtelse att redigera denna sida" +msgstr "Du har ingen behörighet att redigera plugins" #: admin/pageadmin.py:1256 #, python-format msgid "" "%(plugin_name)s plugin edited at position %(position)s in %(placeholder)s" -msgstr "" -"%(plugin_name)s plugin har redigerats på plats %(position)s i %(placeholder)s" +msgstr "%(plugin_name)s plugin har redigerats på plats %(position)s i %(placeholder)s" #: admin/pageadmin.py:1311 -#, fuzzy msgid "You have no permission to move a plugin" -msgstr "Du har inte tillåtelse att redigera denna sida" +msgstr "Du har ingen behörighet att flytta plugins" #: admin/pageadmin.py:1329 msgid "Plugins where moved" msgstr "Plugins har flyttats" #: admin/pageadmin.py:1343 -#, fuzzy msgid "You have no permission to remove a plugin" -msgstr "Du har inte tillåtelse att redigera denna sida" +msgstr "Du har ingen behörighet att ta bort plugins" #: admin/pageadmin.py:1361 admin/placeholderadmin.py:292 #, python-format msgid "" "%(plugin_name)s plugin at position %(position)s in %(placeholder)s was " "deleted." -msgstr "" -"%(plugin_name)s plugin på position %(position)s i %(placeholder)s har " -"raderats." +msgstr "%(plugin_name)s plugin på position %(position)s i %(placeholder)s har raderats." #: admin/permissionadmin.py:72 msgid "View restriction" -msgstr "" +msgstr "Vy-restriktion" #: admin/permissionadmin.py:73 msgid "View restrictions" -msgstr "" +msgstr "Vy-restriktioner" #: admin/permissionadmin.py:133 models/permissionmodels.py:75 msgid "Page permissions" @@ -415,19 +405,16 @@ msgid "Page permissions management" msgstr "Administrera rättigheter för sida" #: admin/placeholderadmin.py:150 admin/placeholderadmin.py:191 -#, fuzzy msgid "You don't have permission to add content here." -msgstr "Du har inte tillåtelse att redigera denna sida" +msgstr "Du har inte behörighet att lägga till innehåll här." #: admin/placeholderadmin.py:187 -#, fuzzy msgid "You don't have permission to add plugins" -msgstr "Du har inte tillåtelse att redigera denna sida" +msgstr "Du har inte behörighet att lägga till plugins" #: admin/placeholderadmin.py:288 -#, fuzzy msgid "You don't have permission to delete a plugin" -msgstr "Du har inte tillåtelse att redigera denna sida" +msgstr "Du har inte behörighet att ta bort plugins" #: admin/useradmin.py:25 msgid "User details" @@ -455,11 +442,11 @@ msgstr "Ärv mall" #: forms/fields.py:19 msgid "Select a valid site" -msgstr "" +msgstr "Välj en giltig webbplats" #: forms/fields.py:20 msgid "Select a valid page" -msgstr "" +msgstr "Välj en giltig sida" #: forms/widgets.py:173 msgid "Add Another" @@ -711,11 +698,11 @@ msgstr "godkänd, inv. överstående" #: models/pagemodel.py:52 msgid "for logged in users only" -msgstr "" +msgstr "endast för inloggade användare" #: models/pagemodel.py:53 msgid "for anonymous users only" -msgstr "" +msgstr "endast för anonyma användare" #: models/pagemodel.py:61 msgid "created by" @@ -729,9 +716,7 @@ msgstr "ändrad av" msgid "" "When the page should go live. Status must be \"Published\" for page to go " "live." -msgstr "" -"När sidan ska gå live. Status måste vara \"Publicerad\" för att sidan ska gå " -"live." +msgstr "När sidan ska gå live. Status måste vara \"Publicerad\" för att sidan ska gå live." #: models/pagemodel.py:67 msgid "When to expire the page. Leave empty to never expire." @@ -745,13 +730,11 @@ msgstr "Alla ovanstående sidor kommer inte att visas i navigeringen" msgid "" "An unique identifier that is used with the page_url templatetag for linking " "to this page" -msgstr "" -"Ett unikt id som används med mallkommandot page_url för att länka till denna " -"sida" +msgstr "Ett unikt id som används med mallkommandot page_url för att länka till denna sida" #: models/pagemodel.py:71 msgid "attached menu" -msgstr "" +msgstr "bifogad meny" #: models/pagemodel.py:72 msgid "is published" @@ -775,11 +758,11 @@ msgstr "modereringsläge" #: models/pagemodel.py:85 msgid "menu visibility" -msgstr "" +msgstr "menysynlighet" #: models/pagemodel.py:85 msgid "limit when this page is visible in the menu" -msgstr "" +msgstr "begränsa när denna sida ska vara synlig i menyn" #: models/pagemodel.py:105 msgid "pages" @@ -823,11 +806,11 @@ msgstr "kan moderera" #: models/permissionmodels.py:28 msgid "view restricted" -msgstr "" +msgstr "vyn är begränsad" #: models/permissionmodels.py:28 msgid "frontend view restriction" -msgstr "" +msgstr "frontend-vy begränsning" #: models/permissionmodels.py:51 msgid "can recover pages" @@ -909,7 +892,7 @@ msgstr "fil" #: plugins/file/templates/cms/plugins/file.html:6 msgid "file missing!" -msgstr "" +msgstr "fil saknas!" #: plugins/flash/cms_plugins.py:9 msgid "Flash" @@ -926,16 +909,13 @@ msgstr "höjd" #: plugins/flash/templates/cms/plugins/flash.html:40 #: plugins/video/templates/cms/plugins/video.html:60 -#, fuzzy msgid "Missing flash plugin. Please download the latest Adobe Flash Player: " -msgstr "" -"Flash-plugin saknas. Ladda ner här" +msgstr "Flash-plugin saknas. Ladda ned den senaste Adobe Flash Player:" #: plugins/flash/templates/cms/plugins/flash.html:42 #: plugins/video/templates/cms/plugins/video.html:62 msgid "Get Adobe Flash Player" -msgstr "" +msgstr "Hämta Adobe Flash Player" #: plugins/googlemap/cms_plugins.py:10 msgid "Google Map" @@ -995,7 +975,7 @@ msgstr "Karta" #: plugins/googlemap/templates/cms/plugins/googlemap.html:76 msgid "Your address: " -msgstr "" +msgstr "Din adress:" #: plugins/googlemap/templates/cms/plugins/googlemap.html:78 msgid "Calculate route" @@ -1013,9 +993,7 @@ msgstr "Språk eller Sida måste vara ifylld" msgid "" "Choose a page to include its plugins into this placeholder, empty will " "choose current page" -msgstr "" -"Välj en sida för att inkludera dess plugins till denna platshållare, lämna " -"blankt för nuvarande sida" +msgstr "Välj en sida för att inkludera dess plugins till denna platshållare, lämna blankt för nuvarande sida" #: plugins/inherit/models.py:11 msgid "Optional: the language of the plugins you want" @@ -1112,8 +1090,7 @@ msgstr "HTML" #: plugins/snippet/models.py:15 msgid "" "Enter a template (i.e. \"snippets/plugin_xy.html\") which will be rendered. " -msgstr "" -"Ange en mall (t.ex. \"snippets/plugin_xy.html\") som kommer att användas." +msgstr "Ange en mall (t.ex. \"snippets/plugin_xy.html\") som kommer att användas." #: plugins/snippet/models.py:25 msgid "Snippets" @@ -1197,7 +1174,7 @@ msgstr "Twitter" #: plugins/twitter/cms_plugins.py:23 msgid "Twitter Search" -msgstr "" +msgstr "Twitter sök" #: plugins/twitter/models.py:7 msgid "twitter user" @@ -1221,14 +1198,14 @@ msgstr "Länktipset visas som en länk till din Twitter-profil." #: plugins/twitter/models.py:16 msgid "query" -msgstr "" +msgstr "fråga" #: plugins/twitter/models.py:16 msgid "" "Example: \"brains AND zombies AND from:umbrella AND to:nemesis\": tweets " "from the user \"umbrella\" to the user \"nemesis\" that contain the words " "\"brains\" and \"zombies\"" -msgstr "" +msgstr "Exempel: \"hjärnor AND zombies AND from:paraply AND to:Nemesis\": tweets från användaren \"paraply\" till användaren \"Nemesis\" som innehåller orden \"hjärnor\" och \"zombies\"" #: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:12 msgid "we said," @@ -1236,11 +1213,11 @@ msgstr "" #: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:13 msgid "we" -msgstr "" +msgstr "vi" #: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:14 msgid "we were" -msgstr "" +msgstr "vi var" #: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:15 msgid "we replied to" @@ -1251,9 +1228,8 @@ msgid "we were checking out" msgstr "" #: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:17 -#, fuzzy msgid "loading tweets..." -msgstr "Laddar..." +msgstr "laddar tweets ..." #: plugins/video/cms_plugins.py:10 msgid "Video" @@ -1276,13 +1252,10 @@ msgid "movie url" msgstr "film url" #: plugins/video/models.py:10 -#, fuzzy msgid "" -"vimeo or youtube video url. Example: http://www.youtube.com/watch?v=-" -"iJ7bs4mTUY" -msgstr "" -"vimeo eller youtube video url. Exampel: http://www.youtube.com/watch?" -"v=YFa59lK-kpo" +"vimeo or youtube video url. Example: " +"http://www.youtube.com/watch?v=-iJ7bs4mTUY" +msgstr "vimeo eller youtube video url. Exempel: http://www.youtube.com/watch?v=-iJ7bs4mTUY" #: plugins/video/models.py:11 msgid "preview image file" @@ -1371,8 +1344,7 @@ msgstr "Spara och fortsätt redigera" #, python-format msgid "" "Page %(page)s may require approvement by you." -msgstr "" -"Sida %(page)s kan behöva godkännande av dig." +msgstr "Sida %(page)s kan behöva godkännande av dig." #: templates/admin/cms/mail/approvement_required.html:8 msgid "Last changes" @@ -1475,9 +1447,7 @@ msgstr "Sidstatus" msgid "" "This page must be moderated at level %(moderation_level)s, post a message " "for moderator." -msgstr "" -"Denna sida måste godkännas på nivå %(moderation_level)s, skicka ett " -"meddelande till moderatorn." +msgstr "Denna sida måste godkännas på nivå %(moderation_level)s, skicka ett meddelande till moderatorn." #: templates/admin/cms/page/change_form.html:187 msgid "Request approvemet" @@ -1547,7 +1517,7 @@ msgstr "slut" #: templates/admin/cms/page/change_list_tree.html:17 msgid "restricted" -msgstr "" +msgstr "begränsad" #: templates/admin/cms/page/change_list_tree.html:19 msgid "last changes" @@ -1677,9 +1647,8 @@ msgid "Can move" msgstr "Kan flytta" #: templates/admin/cms/page/permissions.html:14 -#, fuzzy msgid "Can view" -msgstr "Kan flytta" +msgstr "Kan visa" #: templates/admin/cms/page/permissions.html:21 #: templates/admin/cms/page/permissions.html:22 @@ -1701,7 +1670,7 @@ msgstr "Sidan ärver inga rättigheter" #: templates/admin/cms/page/plugin_change_form.html:114 #: templates/cms/toolbar/toolbar.html:24 msgid "Cancel" -msgstr "" +msgstr "Avbryt" #: templates/admin/cms/page/plugin_forms_history.html:9 msgid "An old revision of a plugin can not be saved!" @@ -1727,8 +1696,7 @@ msgstr "Återgå till %(verbose_name)s" #: templates/admin/cms/page/revision_form.html:24 msgid "Press the save button below to revert to this version of the object." -msgstr "" -"Tryck på spara-knappen nedan för att återgå till denna version av objektet." +msgstr "Tryck på spara-knappen nedan för att återgå till denna version av objektet." #: templates/admin/cms/page/dialog/copy.html:4 msgid "Copy options" @@ -1740,7 +1708,7 @@ msgstr "Välj kopieringsalternativ" #: templates/admin/cms/page/widgets/installed_plugins_inc.html:7 msgid "Generic" -msgstr "" +msgstr "Generisk" #: templates/admin/cms/page/widgets/installed_plugins_inc.html:15 msgid "Add Plugin" @@ -1768,11 +1736,11 @@ msgstr "Inget plugin har lagts till. Lägg till ett plugin till denna plats." #: templates/cms/toolbar/placeholder.html:32 msgid "Available plugins" -msgstr "" +msgstr "Tillgängliga plugins" #: templates/cms/toolbar/toolbar.html:22 msgid "The selected element can not be moved to the desired location." -msgstr "" +msgstr "Det valda elementet kan inte flyttas till önskad plats." #: templates/cms/toolbar/toolbar.html:23 msgid "Are you sure you want to delete this plugin?" @@ -1788,7 +1756,7 @@ msgstr "ner" #: templates/cms/toolbar/toolbar.html:61 msgid "Move to placeholder" -msgstr "" +msgstr "Flytta till platshållare" #: templates/cms/toolbar/items/login.html:5 msgid "Username" @@ -1796,9 +1764,8 @@ msgstr "Användarnamn" #: templates/cms/toolbar/items/login.html:10 #: templates/cms/toolbar/items/login.html:12 -#, fuzzy msgid "Login" -msgstr "login" +msgstr "Inloggning" #: templates/cms/toolbar/items/status.html:2 msgid "Status" @@ -1806,12 +1773,12 @@ msgstr "Status" #: templates/cms/toolbar/items/switcher.html:4 msgid "Switch on/off" -msgstr "" +msgstr "Slå på / av" #: templatetags/cms_admin.py:86 #, python-format msgid "%(icon)s" -msgstr "" +msgstr " %(icon)s " #: templatetags/cms_admin.py:99 msgid "Unbind page moderation" @@ -1828,15 +1795,14 @@ msgstr "Frigör undernivåer från moderering" #: templatetags/cms_tags.py:78 #, python-format msgid "Page not found on %(domain)s" -msgstr "" +msgstr "Sidan hittades inte på %(domain)s " #: templatetags/cms_tags.py:79 #, python-format msgid "" -"A template tag couldn't find the page with lookup arguments `" -"%(page_lookup)s\n" +"A template tag couldn't find the page with lookup arguments `%(page_lookup)s\n" "`. The URL of the request was: http://%(host)s%(path)s" -msgstr "" +msgstr "En mall-tagg kunde inte hitta sidan med uppslags-argumenten `%(page_lookup)s\n`. Webbadressen för begäran var: http://%(host)s%(path)s" #: utils/mail.py:38 msgid "CMS - your user account was created." @@ -1859,38 +1825,14 @@ msgstr "godkänn" msgid "CMS - Page %s requires approvement." msgstr "CMS - Sida %s behöver godkännande." -#~ msgid "Missing flash plugin." -#~ msgstr "Flash insticksprogram saknas" - -#~ msgid "Move to %(name)s" -#~ msgstr "Flytta till %(name)s" - #~ msgid "move" -#~ msgstr "flytta" - -#~ msgid "add child" -#~ msgstr "lägg till undersida" - -#~ msgid "add sibling" -#~ msgstr "lägg till syskon" - -#~ msgid "history" -#~ msgstr "historik" - -#~ msgid "Lock" -#~ msgstr "Fäst" - -#~ msgid "Close" -#~ msgstr "Stäng" - -#~ msgid "Settings" -#~ msgstr "Inställningar" +#~ msgstr "move request" -#~ msgid "Delete Plugin" -#~ msgstr "Radera plugin" +#~ msgid "sidebar column" +#~ msgstr "background color" #~ msgid "fgcolor" -#~ msgstr "fg-färg" +#~ msgstr "foreground color" #~ msgid "Wanted language has not been translated yet." -#~ msgstr "Önskad språk har inte översatts än." +#~ msgstr "Requested language has not been translated yet." diff --git a/cms/locale/tr/LC_MESSAGES/django.po b/cms/locale/tr/LC_MESSAGES/django.po index 3b84ab1cf5c..a177d2cb5e6 100644 --- a/cms/locale/tr/LC_MESSAGES/django.po +++ b/cms/locale/tr/LC_MESSAGES/django.po @@ -1,20 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# +# Translators: +# Mustafa Arıcı <>, 2012. +# , 2011. +# suleyman , 2011. msgid "" msgstr "" "Project-Id-Version: django-cms\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-14 09:49-0500\n" -"PO-Revision-Date: 2011-03-22 15:24+0000\n" -"Last-Translator: ojii \n" -"Language-Team: Turkish (http://www.transifex.net/projects/p/django-cms/team/" -"tr/)\n" -"Language: tr\n" +"Report-Msgid-Bugs-To: https://github.com/divio/django-cms/issues\n" +"POT-Creation-Date: 2011-08-14 09:47-0500\n" +"PO-Revision-Date: 2012-01-23 01:25+0000\n" +"Last-Translator: Mustafa Arıcı <>\n" +"Language-Team: Turkish (http://www.transifex.com/projects/p/django-cms/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: tr\n" "Plural-Forms: nplurals=1; plural=0\n" "X-Poedit-Country: SWITZERLAND\n" "X-Poedit-Language: English\n" @@ -95,7 +98,7 @@ msgstr "Öntanımlı başlık" #: admin/forms.py:61 msgid "Slug" -msgstr "" +msgstr "rumuz" #: admin/forms.py:62 msgid "The part of the title that is used in the URL" @@ -111,7 +114,7 @@ msgstr "İçerik alanlarının geçerli dili." #: admin/forms.py:117 msgid "Another page with this slug already exists" -msgstr "" +msgstr "Bu rumuza sahip başka bir sayfa mevcuttur." #: admin/forms.py:135 msgid "Menu Title" @@ -126,7 +129,8 @@ msgid "Page Title" msgstr "Sayfa Başlığı" #: admin/forms.py:138 -msgid "Overwrites what is displayed at the top of your browser or in bookmarks" +msgid "" +"Overwrites what is displayed at the top of your browser or in bookmarks" msgstr "Tarayıcınızın üstünde veya yerimlerinde yazanın üzerine yaz" #: admin/forms.py:139 @@ -139,7 +143,7 @@ msgstr "Uygulamayı bu sayfaya bağla." #: admin/forms.py:142 msgid "Overwrite URL" -msgstr "" +msgstr "URL'nin üzerine yaz" #: admin/forms.py:143 msgid "Keep this field empty if standard path should be used." @@ -159,9 +163,7 @@ msgstr "Sayfanın açıklaması, bazen arama motorları tarafından kullanılır #: admin/forms.py:154 msgid "A list of comma seperated keywords sometimes used by search engines." -msgstr "" -"Virgül ile ayrılmış anahtar kelimeler, bazen arama motorları tarafından " -"kullanılır." +msgstr "Virgül ile ayrılmış anahtar kelimeler, bazen arama motorları tarafından kullanılır." #: admin/forms.py:170 msgid "A page with this reverse URL id exists already." @@ -185,19 +187,15 @@ msgstr "kullanıcı" msgid "" "Add page permission requires also access to children, or descendants, " "otherwise added page can't be changed by its creator." -msgstr "" -"Sayfa ekleme yetkisi aynı zamanda alt başlıkların yetkilerine de ihtiyaç " -"duyar, yoksa sayfa ekleyen kişi içeriğini değiştiremez." +msgstr "Sayfa ekleme yetkisi aynı zamanda alt başlıkların yetkilerine de ihtiyaç duyar, yoksa sayfa ekleyen kişi içeriğini değiştiremez." #: admin/forms.py:221 msgid "Add page permission also requires edit page permission." -msgstr "" -"Sayfa ekleme yetkisi aynı zamanda sayfa düzenleme yetkisi de gerektirir." +msgstr "Sayfa ekleme yetkisi aynı zamanda sayfa düzenleme yetkisi de gerektirir." #: admin/forms.py:248 -#, fuzzy msgid "can_view" -msgstr "göster" +msgstr "" #: admin/forms.py:260 msgid "Please select user or group first." @@ -232,9 +230,7 @@ msgstr "Kullanıcıyı bilgilendir" msgid "" "Send email notification to user about username or password change. Requires " "user email." -msgstr "" -"Kullanıcıya, kullanıcı adı ve parola değişikliği ile ilgili eposta gönder. " -"Kullanıcının epostası olması gerekir." +msgstr "Kullanıcıya, kullanıcı adı ve parola değişikliği ile ilgili eposta gönder. Kullanıcının epostası olması gerekir." #: admin/forms.py:318 msgid "New password" @@ -260,7 +256,7 @@ msgstr "Kullanıcı ekleme yetkisi, kullanıcı düzenleme yetkisi de gerektirir #: admin/forms.py:345 msgid "To add permissions you also need to edit them!" -msgstr "" +msgstr "Yetkileri eklemek için aynı zamanda düzenleyebilmelisiniz de!" #: admin/pageadmin.py:97 msgid "Basic Settings" @@ -283,9 +279,8 @@ msgid "SEO Settings" msgstr "Arama Motoru (SEO) Ayarları" #: admin/pageadmin.py:299 -#, fuzzy msgid "You have no permission to change the template" -msgstr "Bu sayfayı değiştirmek için yetkiniz yok" +msgstr "" #: admin/pageadmin.py:485 msgid "higher" @@ -323,12 +318,11 @@ msgstr "Bu sayfayı yayınlamak için yetkiniz yok" #: admin/pageadmin.py:1066 msgid "You do not have permission to change this page's in_navigation status" -msgstr "" +msgstr "Bu sayfanın menüde görünürlüğünü düzenleme yetkiniz yok" #: admin/pageadmin.py:1079 -#, fuzzy msgid "You have no permission to add a plugin" -msgstr "Bu sayfayı değiştirmek için yetkiniz yok" +msgstr "" #: admin/pageadmin.py:1126 admin/pageadmin.py:1158 msgid "Language must be set to a supported language!" @@ -348,9 +342,8 @@ msgid "Language must be different than the copied language!" msgstr "Dil, kopyalanan dilden farklı olmalı!" #: admin/pageadmin.py:1166 -#, fuzzy msgid "You do not have permission to add plugins" -msgstr "Bu sayfayı değiştirmek için yetkiniz yok" +msgstr "" #: admin/pageadmin.py:1173 #, python-format @@ -358,14 +351,12 @@ msgid "Copied %(language)s plugins to %(placeholder)s" msgstr "" #: admin/pageadmin.py:1186 admin/pageadmin.py:1294 admin/pageadmin.py:1316 -#, fuzzy msgid "You have no permission to change this page" -msgstr "Bu sayfayı değiştirmek için yetkiniz yok" +msgstr "" #: admin/pageadmin.py:1221 -#, fuzzy msgid "You have no permission to edit a plugin" -msgstr "Bu sayfayı değiştirmek için yetkiniz yok" +msgstr "" #: admin/pageadmin.py:1256 #, python-format @@ -374,18 +365,16 @@ msgid "" msgstr "" #: admin/pageadmin.py:1311 -#, fuzzy msgid "You have no permission to move a plugin" -msgstr "Bu sayfayı değiştirmek için yetkiniz yok" +msgstr "" #: admin/pageadmin.py:1329 msgid "Plugins where moved" msgstr "Eklentiler taşındı" #: admin/pageadmin.py:1343 -#, fuzzy msgid "You have no permission to remove a plugin" -msgstr "Bu sayfayı değiştirmek için yetkiniz yok" +msgstr "" #: admin/pageadmin.py:1361 admin/placeholderadmin.py:292 #, python-format @@ -415,19 +404,16 @@ msgid "Page permissions management" msgstr "Sayfa yetki yönetimi" #: admin/placeholderadmin.py:150 admin/placeholderadmin.py:191 -#, fuzzy msgid "You don't have permission to add content here." -msgstr "Bu sayfayı değiştirmek için yetkiniz yok" +msgstr "" #: admin/placeholderadmin.py:187 -#, fuzzy msgid "You don't have permission to add plugins" -msgstr "Bu sayfayı değiştirmek için yetkiniz yok" +msgstr "" #: admin/placeholderadmin.py:288 -#, fuzzy msgid "You don't have permission to delete a plugin" -msgstr "Bu sayfayı değiştirmek için yetkiniz yok" +msgstr "" #: admin/useradmin.py:25 msgid "User details" @@ -729,9 +715,7 @@ msgstr "değiştiren" msgid "" "When the page should go live. Status must be \"Published\" for page to go " "live." -msgstr "" -"Sayfa ne zaman yayında olacağı. Sayfanın yayında olması için durumunun " -"\"Yayınlanmış\" olması gerekir." +msgstr "Sayfa ne zaman yayında olacağı. Sayfanın yayında olması için durumunun \"Yayınlanmış\" olması gerekir." #: models/pagemodel.py:67 msgid "When to expire the page. Leave empty to never expire." @@ -1008,9 +992,7 @@ msgstr "Dil veya Sayfa doldurulmalı" msgid "" "Choose a page to include its plugins into this placeholder, empty will " "choose current page" -msgstr "" -"Eklentilerini bu yer tutucuda kullanmak için bir sayfa seçin, boş " -"bırakırsanız geçerli sayfa seçilecek." +msgstr "Eklentilerini bu yer tutucuda kullanmak için bir sayfa seçin, boş bırakırsanız geçerli sayfa seçilecek." #: plugins/inherit/models.py:11 msgid "Optional: the language of the plugins you want" @@ -1211,8 +1193,7 @@ msgstr "bağlantı ipucu" #: plugins/twitter/models.py:9 msgid "If given, the hint is displayed as link to your Twitter profile." -msgstr "" -"Eğer verilirse ipucu, Twitter hesabınıza bir bağlantı şeklinde gösterilecek. " +msgstr "Eğer verilirse ipucu, Twitter hesabınıza bir bağlantı şeklinde gösterilecek. " #: plugins/twitter/models.py:16 msgid "query" @@ -1246,9 +1227,8 @@ msgid "we were checking out" msgstr "" #: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:17 -#, fuzzy msgid "loading tweets..." -msgstr "Yüklüyor..." +msgstr "" #: plugins/video/cms_plugins.py:10 msgid "Video" @@ -1272,8 +1252,8 @@ msgstr "görüntü" #: plugins/video/models.py:10 msgid "" -"vimeo or youtube video url. Example: http://www.youtube.com/watch?v=-" -"iJ7bs4mTUY" +"vimeo or youtube video url. Example: " +"http://www.youtube.com/watch?v=-iJ7bs4mTUY" msgstr "" #: plugins/video/models.py:11 @@ -1665,9 +1645,8 @@ msgid "Can move" msgstr "Taşıyabilir" #: templates/admin/cms/page/permissions.html:14 -#, fuzzy msgid "Can view" -msgstr "Taşıyabilir" +msgstr "" #: templates/admin/cms/page/permissions.html:21 #: templates/admin/cms/page/permissions.html:22 @@ -1783,9 +1762,8 @@ msgstr "Kullanıcı adı" #: templates/cms/toolbar/items/login.html:10 #: templates/cms/toolbar/items/login.html:12 -#, fuzzy msgid "Login" -msgstr "giriş" +msgstr "" #: templates/cms/toolbar/items/status.html:2 msgid "Status" @@ -1820,8 +1798,7 @@ msgstr "" #: templatetags/cms_tags.py:79 #, python-format msgid "" -"A template tag couldn't find the page with lookup arguments `" -"%(page_lookup)s\n" +"A template tag couldn't find the page with lookup arguments `%(page_lookup)s\n" "`. The URL of the request was: http://%(host)s%(path)s" msgstr "" @@ -1846,29 +1823,14 @@ msgstr "onayla" msgid "CMS - Page %s requires approvement." msgstr "CMS - %s sayfası onay bekliyor." -#~ msgid "Missing flash plugin." -#~ msgstr "Flash eklentisi yok." - -#~ msgid "Move to %(name)s" -#~ msgstr "%(name)s'a taşı" - #~ msgid "move" -#~ msgstr "taşı" - -#~ msgid "history" -#~ msgstr "geçmiş" - -#~ msgid "Lock" -#~ msgstr "Kilitle" - -#~ msgid "Close" -#~ msgstr "Kapat" +#~ msgstr "move request" -#~ msgid "Settings" -#~ msgstr "Ayarlar" +#~ msgid "sidebar column" +#~ msgstr "background color" -#~ msgid "Delete Plugin" -#~ msgstr "Eklentiyi Sil" +#~ msgid "fgcolor" +#~ msgstr "foreground color" #~ msgid "Wanted language has not been translated yet." -#~ msgstr "İstanen dil henüz tercüme edilmedi." +#~ msgstr "Requested language has not been translated yet." diff --git a/cms/locale/zh_CN/LC_MESSAGES/django.po b/cms/locale/zh_CN/LC_MESSAGES/django.po index 15db472eac4..a3f0a9dc3a5 100644 --- a/cms/locale/zh_CN/LC_MESSAGES/django.po +++ b/cms/locale/zh_CN/LC_MESSAGES/django.po @@ -1,19 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# +# Translators: +# aaffdd11 , 2011. +# , 2011. msgid "" msgstr "" "Project-Id-Version: django-cms\n" -"Report-Msgid-Bugs-To: \n" +"Report-Msgid-Bugs-To: https://github.com/divio/django-cms/issues\n" "POT-Creation-Date: 2011-08-14 09:47-0500\n" -"PO-Revision-Date: 2011-03-22 15:24+0000\n" -"Last-Translator: ojii \n" +"PO-Revision-Date: 2011-12-13 08:05+0000\n" +"Last-Translator: ofive \n" "Language-Team: divio.ch \n" -"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0\n" "X-Poedit-Country: SWITZERLAND\n" "X-Poedit-Language: English\n" @@ -25,7 +28,7 @@ msgstr "编辑模式" #: cms_toolbar.py:77 msgid "django CMS" -msgstr "" +msgstr "django 新闻发布系统" #: cms_toolbar.py:108 templates/admin/cms/page/menu_item.html:73 msgid "Publish" @@ -78,7 +81,7 @@ msgstr "查看履历" #: cms_toolbar.py:205 msgid "Admin" -msgstr "" +msgstr "Admin" #: plugin_base.py:65 msgid "Advanced options" @@ -125,7 +128,8 @@ msgid "Page Title" msgstr "页面标题" #: admin/forms.py:138 -msgid "Overwrites what is displayed at the top of your browser or in bookmarks" +msgid "" +"Overwrites what is displayed at the top of your browser or in bookmarks" msgstr "覆盖显示在浏览器顶部标题栏或书签中的信息" #: admin/forms.py:139 @@ -169,9 +173,9 @@ msgid "Invalid URL, use /my/url format." msgstr "无效的URL, 正确格式:/my/url" #: admin/forms.py:181 -#, fuzzy, python-format +#, python-format msgid "Page with redirect url %r already exist" -msgstr "其他页面已经使用了该缩略名" +msgstr "重定向页面url %r已经存在" #: admin/forms.py:191 admin/forms.py:192 migrations/0001_initial.py:41 #: models/permissionmodels.py:16 @@ -189,9 +193,8 @@ msgid "Add page permission also requires edit page permission." msgstr "添加页面的权限同时需要有编辑页面的权限" #: admin/forms.py:248 -#, fuzzy msgid "can_view" -msgstr "查看" +msgstr "can_view" #: admin/forms.py:260 msgid "Please select user or group first." @@ -275,9 +278,8 @@ msgid "SEO Settings" msgstr "SEO设置" #: admin/pageadmin.py:299 -#, fuzzy msgid "You have no permission to change the template" -msgstr "您没有权限修改本页面" +msgstr "没有修改模版权限" #: admin/pageadmin.py:485 msgid "higher" @@ -318,9 +320,8 @@ msgid "You do not have permission to change this page's in_navigation status" msgstr "你没有权限修改这个页面的浏览模式" #: admin/pageadmin.py:1079 -#, fuzzy msgid "You have no permission to add a plugin" -msgstr "您没有权限修改本页面" +msgstr "没有添加插件权限" #: admin/pageadmin.py:1126 admin/pageadmin.py:1158 msgid "Language must be set to a supported language!" @@ -340,9 +341,8 @@ msgid "Language must be different than the copied language!" msgstr "该语言必须和被复制的语言不同!" #: admin/pageadmin.py:1166 -#, fuzzy msgid "You do not have permission to add plugins" -msgstr "您没有权限修改本页面" +msgstr "没有添加插件权限" #: admin/pageadmin.py:1173 #, python-format @@ -350,14 +350,12 @@ msgid "Copied %(language)s plugins to %(placeholder)s" msgstr "复制%(language)s 插件到 %(placeholder)s" #: admin/pageadmin.py:1186 admin/pageadmin.py:1294 admin/pageadmin.py:1316 -#, fuzzy msgid "You have no permission to change this page" -msgstr "您没有权限修改本页面" +msgstr "没有修改页面权限" #: admin/pageadmin.py:1221 -#, fuzzy msgid "You have no permission to edit a plugin" -msgstr "您没有权限修改本页面" +msgstr "没有编辑插件权限" #: admin/pageadmin.py:1256 #, python-format @@ -366,18 +364,16 @@ msgid "" msgstr "%(plugin_name)s 插件在 %(placeholder)s 的位置 %(position)s 处被修改" #: admin/pageadmin.py:1311 -#, fuzzy msgid "You have no permission to move a plugin" -msgstr "您没有权限修改本页面" +msgstr "没有移动插件权限" #: admin/pageadmin.py:1329 msgid "Plugins where moved" msgstr "已移动的插件" #: admin/pageadmin.py:1343 -#, fuzzy msgid "You have no permission to remove a plugin" -msgstr "您没有权限修改本页面" +msgstr "没有移除插件权限" #: admin/pageadmin.py:1361 admin/placeholderadmin.py:292 #, python-format @@ -388,11 +384,11 @@ msgstr "%(plugin_name)s 插件在 %(placeholder)s 的位置 %(position)s 处被 #: admin/permissionadmin.py:72 msgid "View restriction" -msgstr "" +msgstr "视图限制" #: admin/permissionadmin.py:73 msgid "View restrictions" -msgstr "" +msgstr "视图限制" #: admin/permissionadmin.py:133 models/permissionmodels.py:75 msgid "Page permissions" @@ -407,19 +403,16 @@ msgid "Page permissions management" msgstr "页面权限管理" #: admin/placeholderadmin.py:150 admin/placeholderadmin.py:191 -#, fuzzy msgid "You don't have permission to add content here." -msgstr "您没有权限修改本页面" +msgstr "没有在这里添加内容的权限" #: admin/placeholderadmin.py:187 -#, fuzzy msgid "You don't have permission to add plugins" -msgstr "您没有权限修改本页面" +msgstr "没有添加插件权限" #: admin/placeholderadmin.py:288 -#, fuzzy msgid "You don't have permission to delete a plugin" -msgstr "您没有权限修改本页面" +msgstr "没有删除插件权限" #: admin/useradmin.py:25 msgid "User details" @@ -811,11 +804,11 @@ msgstr "可以核对" #: models/permissionmodels.py:28 msgid "view restricted" -msgstr "" +msgstr "视图受限" #: models/permissionmodels.py:28 msgid "frontend view restriction" -msgstr "" +msgstr "前端视图限制" #: models/permissionmodels.py:51 msgid "can recover pages" @@ -897,7 +890,7 @@ msgstr "文件" #: plugins/file/templates/cms/plugins/file.html:6 msgid "file missing!" -msgstr "" +msgstr "文件丢失" #: plugins/flash/cms_plugins.py:9 msgid "Flash" @@ -914,15 +907,13 @@ msgstr "高" #: plugins/flash/templates/cms/plugins/flash.html:40 #: plugins/video/templates/cms/plugins/video.html:60 -#, fuzzy msgid "Missing flash plugin. Please download the latest Adobe Flash Player: " -msgstr "" -"flash插件缺失. 请在 这里下载" +msgstr "flash插件丢失,请下载最新版的Adobe Flash Player" #: plugins/flash/templates/cms/plugins/flash.html:42 #: plugins/video/templates/cms/plugins/video.html:62 msgid "Get Adobe Flash Player" -msgstr "" +msgstr "获取Get Adobe Flash Player" #: plugins/googlemap/cms_plugins.py:10 msgid "Google Map" @@ -1041,7 +1032,7 @@ msgstr "图片" #: plugins/picture/models.py:14 msgid "center" -msgstr "" +msgstr "中心" #: plugins/picture/models.py:15 msgid "left" @@ -1212,35 +1203,31 @@ msgid "" "Example: \"brains AND zombies AND from:umbrella AND to:nemesis\": tweets " "from the user \"umbrella\" to the user \"nemesis\" that contain the words " "\"brains\" and \"zombies\"" -msgstr "" -"例子:\"brains AND zombies AND from:umbrella AND to:nemesis\": tweets from " -"the user \"umbrella\" to the user \"nemesis\" that contain the words \"brains" -"\" and \"zombies\"" +msgstr "例子:\"brains AND zombies AND from:umbrella AND to:nemesis\": tweets from the user \"umbrella\" to the user \"nemesis\" that contain the words \"brains\" and \"zombies\"" #: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:12 msgid "we said," -msgstr "" +msgstr "我们说," #: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:13 msgid "we" -msgstr "" +msgstr "我们" #: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:14 msgid "we were" -msgstr "" +msgstr "我们是" #: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:15 msgid "we replied to" -msgstr "" +msgstr "我们回复给" #: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:16 msgid "we were checking out" -msgstr "" +msgstr "我们正在检查" #: plugins/twitter/templates/cms/plugins/twitter_recent_entries.html:17 -#, fuzzy msgid "loading tweets..." -msgstr "加载中..." +msgstr "加载推文中...." #: plugins/video/cms_plugins.py:10 msgid "Video" @@ -1263,12 +1250,10 @@ msgid "movie url" msgstr "电影url" #: plugins/video/models.py:10 -#, fuzzy msgid "" -"vimeo or youtube video url. Example: http://www.youtube.com/watch?v=-" -"iJ7bs4mTUY" -msgstr "" -"vimeo或youtube视频的url。例如: http://www.youtube.com/watch?v=YFa59lK-kpo" +"vimeo or youtube video url. Example: " +"http://www.youtube.com/watch?v=-iJ7bs4mTUY" +msgstr "vimeo或者youtube视频url连接,例如:http://www.youtube.com/watch?v=-iJ7bs4mTUY" #: plugins/video/models.py:11 msgid "preview image file" @@ -1529,7 +1514,7 @@ msgstr "结束" #: templates/admin/cms/page/change_list_tree.html:17 msgid "restricted" -msgstr "" +msgstr "受限的" #: templates/admin/cms/page/change_list_tree.html:19 msgid "last changes" @@ -1659,9 +1644,8 @@ msgid "Can move" msgstr "允许移动" #: templates/admin/cms/page/permissions.html:14 -#, fuzzy msgid "Can view" -msgstr "允许移动" +msgstr "Can view" #: templates/admin/cms/page/permissions.html:21 #: templates/admin/cms/page/permissions.html:22 @@ -1683,7 +1667,7 @@ msgstr "页面不继承任何权限。" #: templates/admin/cms/page/plugin_change_form.html:114 #: templates/cms/toolbar/toolbar.html:24 msgid "Cancel" -msgstr "" +msgstr "取消" #: templates/admin/cms/page/plugin_forms_history.html:9 msgid "An old revision of a plugin can not be saved!" @@ -1753,7 +1737,7 @@ msgstr "可用的插件" #: templates/cms/toolbar/toolbar.html:22 msgid "The selected element can not be moved to the desired location." -msgstr "" +msgstr "所选元素不能移动到目标位置" #: templates/cms/toolbar/toolbar.html:23 msgid "Are you sure you want to delete this plugin?" @@ -1769,7 +1753,7 @@ msgstr "下" #: templates/cms/toolbar/toolbar.html:61 msgid "Move to placeholder" -msgstr "" +msgstr "移动到placeholder" #: templates/cms/toolbar/items/login.html:5 msgid "Username" @@ -1777,9 +1761,8 @@ msgstr "用户名" #: templates/cms/toolbar/items/login.html:10 #: templates/cms/toolbar/items/login.html:12 -#, fuzzy msgid "Login" -msgstr "登录" +msgstr "登陆" #: templates/cms/toolbar/items/status.html:2 msgid "Status" @@ -1787,12 +1770,12 @@ msgstr "状态" #: templates/cms/toolbar/items/switcher.html:4 msgid "Switch on/off" -msgstr "" +msgstr "开关" #: templatetags/cms_admin.py:86 #, python-format msgid "%(icon)s" -msgstr "" +msgstr "%(icon)s" #: templatetags/cms_admin.py:99 msgid "Unbind page moderation" @@ -1814,12 +1797,9 @@ msgstr "该页面在 %(domain)s 中未找到" #: templatetags/cms_tags.py:79 #, python-format msgid "" -"A template tag couldn't find the page with lookup arguments `" -"%(page_lookup)s\n" +"A template tag couldn't find the page with lookup arguments `%(page_lookup)s\n" "`. The URL of the request was: http://%(host)s%(path)s" -msgstr "" -"模板标签无法找到`%(page_lookup)s `所对应的页面。源请求页面为http://%(host)s" -"%(path)s" +msgstr "模板标签无法找到`%(page_lookup)s `所对应的页面。源请求页面为http://%(host)s%(path)s" #: utils/mail.py:38 msgid "CMS - your user account was created." @@ -1842,98 +1822,14 @@ msgstr "批准" msgid "CMS - Page %s requires approvement." msgstr "CMS - 页面[%s]请求批准。" -#~ msgid "Missing flash plugin." -#~ msgstr "没有找到Flash插件" - -#~ msgid "Login url: %(login_url)s" -#~ msgstr "登录链接 %(login_url)s" - -#~ msgid "Move to %(name)s" -#~ msgstr "移动到%(name)s" - #~ msgid "move" -#~ msgstr "移动" - -#~ msgid "add child" -#~ msgstr "添加子页面" - -#~ msgid "add sibling" -#~ msgstr "添加同级页面" - -#~ msgid "history" -#~ msgstr "历史" - -#~ msgid "Lock" -#~ msgstr "锁定" - -#~ msgid "Close" -#~ msgstr "关闭" - -#~ msgid "Settings" -#~ msgstr "设置" - -#~ msgid "Delete Plugin" -#~ msgstr "删除插件" - -#~ msgid "English" -#~ msgstr "英语" - -#~ msgid "French" -#~ msgstr "法语" - -#~ msgid "German" -#~ msgstr "德语" - -#~ msgid "Brazil" -#~ msgstr "巴西语" - -#~ msgid "Dutch" -#~ msgstr "荷兰语" - -#~ msgid "two columns" -#~ msgstr "两列" - -#~ msgid "three columns" -#~ msgstr "三列" - -#~ msgid "navigation examples" -#~ msgstr "导航案例" +#~ msgstr "move request" #~ msgid "sidebar column" -#~ msgstr "边栏列" - -#~ msgid "left column" -#~ msgstr "左列" - -#~ msgid "right column" -#~ msgstr "右列" - -#~ msgid "Articles" -#~ msgstr "文章" - -#~ msgid "Sample App" -#~ msgstr "示例应用程序" - -#~ msgid "sample root page" -#~ msgstr "示例根页面" - -#~ msgid "sample settings page" -#~ msgstr "示例设置页" - -#~ msgid "sample account page" -#~ msgstr "示例账户页" - -#~ msgid "sample my profile page" -#~ msgstr "示例个人简介页" - -#~ msgid "Static Menu" -#~ msgstr "静态菜单" - -#~ msgid "Static Menu2" -#~ msgstr "静态菜单2" +#~ msgstr "background color" #~ msgid "fgcolor" -#~ msgstr "前景色" +#~ msgstr "foreground color" #~ msgid "Wanted language has not been translated yet." -#~ msgstr "您所要的语言还未被翻译" +#~ msgstr "Requested language has not been translated yet." From 111a1f03c1619eec23533cdaf852ab9aa3bdc43c Mon Sep 17 00:00:00 2001 From: Jonas Obrist Date: Fri, 29 Jun 2012 14:38:46 +0200 Subject: [PATCH 22/24] compiled translations --- cms/locale/bg/LC_MESSAGES/django.mo | Bin 27826 -> 38035 bytes cms/locale/bg/LC_MESSAGES/djangojs.mo | Bin 1012 -> 1464 bytes cms/locale/ca/LC_MESSAGES/django.mo | Bin 25348 -> 29900 bytes cms/locale/ca/LC_MESSAGES/djangojs.mo | Bin 860 -> 1178 bytes cms/locale/da/LC_MESSAGES/django.mo | Bin 2598 -> 28922 bytes cms/locale/da/LC_MESSAGES/djangojs.mo | Bin 870 -> 1165 bytes cms/locale/de/LC_MESSAGES/django.mo | Bin 27511 -> 30654 bytes cms/locale/es/LC_MESSAGES/django.mo | Bin 27221 -> 30187 bytes cms/locale/es_AR/LC_MESSAGES/django.mo | Bin 6416 -> 6975 bytes cms/locale/es_BO/LC_MESSAGES/django.mo | Bin 0 -> 30266 bytes cms/locale/es_BO/LC_MESSAGES/djangojs.mo | Bin 0 -> 1215 bytes cms/locale/fr/LC_MESSAGES/django.mo | Bin 27505 -> 30541 bytes cms/locale/hr/LC_MESSAGES/django.mo | Bin 0 -> 29378 bytes cms/locale/hr/LC_MESSAGES/djangojs.mo | Bin 0 -> 1293 bytes cms/locale/it/LC_MESSAGES/djangojs.mo | Bin 1157 -> 1198 bytes cms/locale/ja/LC_MESSAGES/django.mo | Bin 12053 -> 12461 bytes cms/locale/ja/LC_MESSAGES/djangojs.mo | Bin 849 -> 1191 bytes cms/locale/ka/LC_MESSAGES/django.mo | Bin 0 -> 3066 bytes cms/locale/ku_IQ/LC_MESSAGES/django.mo | Bin 0 -> 37676 bytes cms/locale/nl/LC_MESSAGES/django.mo | Bin 26400 -> 30021 bytes cms/locale/nl/LC_MESSAGES/djangojs.mo | Bin 884 -> 1220 bytes cms/locale/pl/LC_MESSAGES/django.mo | Bin 25563 -> 29668 bytes cms/locale/pl/LC_MESSAGES/djangojs.mo | Bin 904 -> 1276 bytes cms/locale/pt_BR/LC_MESSAGES/django.mo | Bin 25294 -> 29820 bytes cms/locale/pt_BR/LC_MESSAGES/djangojs.mo | Bin 955 -> 1303 bytes cms/locale/sl_SI/LC_MESSAGES/django.mo | Bin 24557 -> 28957 bytes cms/locale/sl_SI/LC_MESSAGES/djangojs.mo | Bin 941 -> 1279 bytes cms/locale/sr@latin/LC_MESSAGES/django.mo | Bin 0 -> 29144 bytes cms/locale/sr@latin/LC_MESSAGES/djangojs.mo | Bin 0 -> 1304 bytes cms/locale/sv/LC_MESSAGES/django.mo | Bin 24445 -> 28707 bytes cms/locale/tr/LC_MESSAGES/django.mo | Bin 19040 -> 19580 bytes cms/locale/zh_CN/LC_MESSAGES/django.mo | Bin 24753 -> 27438 bytes 32 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 cms/locale/es_BO/LC_MESSAGES/django.mo create mode 100644 cms/locale/es_BO/LC_MESSAGES/djangojs.mo create mode 100644 cms/locale/hr/LC_MESSAGES/django.mo create mode 100644 cms/locale/hr/LC_MESSAGES/djangojs.mo create mode 100644 cms/locale/ka/LC_MESSAGES/django.mo create mode 100644 cms/locale/ku_IQ/LC_MESSAGES/django.mo create mode 100644 cms/locale/sr@latin/LC_MESSAGES/django.mo create mode 100644 cms/locale/sr@latin/LC_MESSAGES/djangojs.mo diff --git a/cms/locale/bg/LC_MESSAGES/django.mo b/cms/locale/bg/LC_MESSAGES/django.mo index 7527e7ffd402b6a34fc7a292909e083855f04f84..0367c5fb85bd1d66100bf2e187022043bf824809 100644 GIT binary patch literal 38035 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 Qb{&ef{N0D7Kd~tP4@JCuH2?qr delta 9843 zcmZYD2|!m>zQFPOcV~-56h+hv$nGBjHxv!ra7og%RNMmL&!Py(BALq{DEBP&*fLs~ zR+CMo2rjr+Z)(OjS^vK}(>R$nZPP1jnz5HHW4`b2-lK!_ZvFV2bMC!oKNm{9+^+e8 z!+j~F!{Y{5w!<(YaI&vq945UYR7wqFRxiUy$6OqMTX71$i4!q|mwa$8cEKVXgcT^y zzknHdUgv{)8^&1jS;&32v6@6D3Jzj>JdXbOI{M)mlm;#!eKS76q4*6h$JjoG5sbSr z2oIpt^A--q(-??1Fc|~;8b&3(;BidEZ%`WUX&OdnjKMq5iPFFb?1nkm z9}6%5H=}gqS(N9SFd9!`Km0`7CDQJY6QkVR7)e4J%ERthf-+J!%9L)3Jeb1H+KXFtSh@&O_N2 zWxBipQ^@Z^Y4|M4d+(zR=n{6s&rv#h1!Z7A>GF=z%)h+g$2>^|At?DUlnVOj@>pc~ zj3ms$Nk|>WM&w^(FF$(XS(GKYg3@45=H0|N9D);2X4H+cN!Rsb{+%RFP#`n$6?VWM zP%5~N(qq3E!x)a;Q95`Jw#Qj0_vfN?xEN&*RG`dM14=zlpw#~YN=Nr&D*nMuLMpzF zvWDrgwv%xT`8<@Ve*rl`MiWYfXD|*w!136gjCA}ilw&y+<+<%B9o&N)7^4NHV_uYw zxIZUhZ3@l=eK3MiHsMf|2k%DN?FA^CX&K7%>yb}@u^pv@hjjUyD0}7{_Q0zs$Jal> zp8D=6`MyYp-9`e5&J-l0jBp6b+D^xCT&nMHL7Aan;b?pf$Ktp8{@_Hro{=cejYH`` zE}B?{T~MJ6@M-KO=f8zS2nDAx3@@Ur)psaU>PWI@q7%xL^+Fl(V4R7g(CQe<^RJ-{ zs2MxqQIz`MK$+q5D9``WXgxY{2Ts7#+7Jra;Km$eb`3Ym z`+Kk>{u$Hp63Q1Zj33gWY?K+j8)Yw)qFbh7EeRid7Uk2r2c?G}p-kat=!d_cKl;*| zbTABMWC(5@K3{O9n%dJ5!Q{XWu$5x`ev9F9PWj7DVe zMl;GtE~6a3zoB&CE0h`eMcii{?2LFcg{#6XdpftM!Q7G>xqO>>ItrNphrYaMy zo}xUMg8?`TWyD4L{z8-yRG~DuOuHJTo-HU1Jc%+BPoup53d(@@>HF>@B&4B}C@-Ey z>G69g4g6L61xkf~$9DJ~$}zo$@?Q8ryQ3z`j3jF_bom6GpMf%S1-5RZOy8*0HyTkI z+Nj-((&NWbMzRxwaIY>uh4TDqln%eE%m0Yd&}9t7FHoNQLEpb_PD2K+f1Qb7nx!_nG!l>1JdAE-@7sb?fgz2i}yn~K)1*X8rjZE~YXKd=_1 zXPZzO+K$$gqs+u!egC+=e_H!4N(1Lm8oYqAr#{Bl9ft8W-Xrhxak&%a>r@Px>74&^ z5-(984Rs%8pXV5K$#YnW&tegF;aBBctiZAO4o<~j{=$?QT7WWuYV3yf+9$NHVo%E7 z#5}y1!Tc{LF>-|cZ9anXX}pY5(RGv#_>Q!HH`L%1@{izTyokA&z_9k=LpTiwX4-4L z2Bl*=Fb-eE-gq8I;XmCZq{2a2_OH{2u`l`OFcM$K(fBdmhcUb*E=PIJi_EU^50r0v z91lxFqftIw3(>>|lu!9?oj-;$<+zC=I`XGQxLt{zIgX#+UdcCTH{eMSlOkO+tFqe!SHqV-Vg&z7~7o z8(4xLVk2fxusd`b?Wqo3RCDZ=6Qyc*G>6eIt%U6sDm} z>3t|`TY@pT4&!hyN=1J{`89n7W$*N(w+pZaWs2WNdH+Xz276An|E@TUBgub)VHlai z{LAJUMxqoeP+6X9EE-8g^V;0ImyO)lzQJpIqyH{ z`$MPNU(!77>Z#2CXdd_t1yaG+H~_ozwU8IHQ7T%EvYU^gKc2+^yo{ajYYf8gkWYfq zk$IN2&O$z-#>03A9>Em+J+8tZr!oJMcwoByz%`WJ+lhshsp^GNK`zS39z{7uzr!^A z2&IEv@3WU^BFd62LFw?5C>`F5(Rd7{gO@P^!`(CZT}@&rCgN$7&GQ|~i`TWjGwlk( za0ulY=!;cYfGbf>(O;3l8JV-}zofPzt7yD|^D&UG)g~-QnIZSTNX#aY#SaE=>_C~y zzoS%W%(1_a^RYA8zo6`akI`EDxim&T4}0QsScOM16rEHeGc_7z6W5|F@iUk%=l_hI zFgnpa*}a+A4f8Pp>rh6z3uEzBH1QmE$M0|v`rU8;QmI2um~j~&#DqM12429$ zz`T5!VK-|m?nZjxn@vEF{qfH)C(yhbEpu_KEQg4#u&C_V?jI3?sh@rNI|bcK2SCj-J2} zJd5(&XK3Pels(nQWw(=r)_?y`Bq1Z4p)E$K@Bx$x*J3h0jnd#BP)2@U=P#p-=nGwb z1B1!?7TNVipyZt>9mvFXIJt=VpG0DcesDX=CVB;BM&8nXiZYV+#dbrzQ1WRg9h!uF zaXLx^)w;Z1=htIAt2xaR32W3Y8g>e|b=at=V3`RLUc=f8i>{fY1#~wV>nhj8|B4H z?MjppY`~$oL+8(71o=-<2I45QJJbbbX2Vei8jsAZ+n7K?9-N0#VIj)e)}oAf6FTtb z)mdj^@hx50f`fv<9~+8&hupbLMtWc}qjOe7ML9Z$$5JN`|gLNZ(_ zynG5L5gDYvK$-GX(tIqf9Sw#b`Cfz^-S>$rgg-HoGWox(Ye`Qg;iUPR8y{Oadl|pe>AztR z_y2*966HjrJ>mAw97Dm)>lG3X9v(sTC0$JXQ{U`H*;&%Zi6cY}A>Ru5a>_|qP5eU0 zDd|9T<@o@jJJC#jAMpp`Bw@8b4cKG1uKA?CCUz4a5l4yN5yOb9#5gMY6+S_5Dy>uU z6yChDxZn2rl+164#l$B>1ovOVLxe}xU#{O1ImFA7(bp&*yg~XaVis|Zs3tZLBZ-Fz zljy>8kKkiO80k6;#&7T^LauL#7p)Y3nBxBsop?t6-;s6Q#n0))t9I7<>E&lVvD3=& zyB${%FA&*;T+a{}hkceJKbij@N&Hz#xlC?c##ADX zbc7V@D@%Jnb|%^r7j@Z0yi=!dl1^d?(T9546LJl)G2YQ;%7NddGk?Kf6Jzwle}Bu z7(o0lv4_ay;ePmAB9d4}4Ad2nwEm=y#&9Bvm_TeNdJ%1}g>5ovq#wF@{+}h2p>Mu~ zew~Xvy0rhL6@26eFKvZ) ziC|(BF+f+;N?NW^o!?<+t)D&lxs+I;%l2!}X#4U`tv{KSLN34W%$MRC89VdT>;Q`f-#~ z)sH^sU%tpFD=lASmXwy)sJ&xGZyg(_MvQ$)eLr?YT$QV^w8~XbV^q18B%Aq_mC2-* zx~i&OW^GlOSz2gRl@^!OsF%m(I%?HNnGq^6J3g8_bh4_hshJ9Ub4nrmrkHPh%En_uG^Zlg~`&1zV5q`#-lBWlZ}L2B5f?rPV>u6}LHmrUx@vSm`7Lv^0) zR9EYQhj>n!o|E22)7$9X;H~#Icn*5kds@AXo`a_6xTndxPFnP|CL5j|R_dtLy2`(| zn>uq(N?+4+%q~tgMww-$)iq{Cky%i&cyYd2?W)XI;W4SPo?TR4Pj{)uyT;RGdK+k~ zfp$InrCb{GoKR2Y^jFL8o*8+7E>L24w%r83}FrBu!flH_^`~QwG&SlLr~rQBRZVH!UZi&FoMzwXTnPdfL1&t53(J zRjJsTAL?mQy{G>+q}A~3lsWS>%apMgt?K9L;~cGO+`Z*dCq0Kfw|6(w@a$raTD%WQ z%MA4Wd(GR{BW&#b)Vuff)9IJn zc^lM;85>p2%*jg4ic*_$15|u&u;0#qZxl5)H?{-)JgFAuX0-D*s^@d3wcp~|ru=57 z`#t43Y%NQx=LoAA7O<1vowVkWWm21G4^@w>3s;}b4hb|oPdRT+FbkoAT-{Z_IT`BW z+~NJl+n)u`cDh-EV^w07rMgRb4t`&S5nX0hLCLjdlReEuHJ#tO+H)&u9AwfLRXdg-sSAx z<_+seFuJ1*JgX>CRTQmk$Lf7k6y0?@U1sjQYw1q|y=kVrM{$xLbHiM>$~jfLi^r&a z#j(n#WU$YEs*$~W==t#_j?Q`%YHsP+j@x8JYQUlha*@wpDRnq@s=S5$RL&wlwQym$ zs#=tw1}+L$2Nx~v&7N(bdO0sA_)@U0)~82rg~m;)YYzh zOmv$~sE^$#>m81%)q6Px<>isLZPxAObJewScS~KxXh#QD|A2aQV}z=o)v3#^efn)> zlF89yxDB$Naxmpc%VJvJ5;;X`-jX!OGivjagke-7^~gOQZk7zA@H88qC#_j)vd=2T z(mQJ53wz9Sh?#t~p{HY=>QfcnUG6mTNwm%;&GETB!B*H)l|7(UUblL}(UszZe4nY_ z`Zn;~t%m6qH&sLRP`_QITCEvvROhP)2JE5Y{WN;gs&#%%w(_rySMS!0zyzOW86_QP zR+nmesX4Xl)#tT+*cjT-2!jB z&ouH|qN7ROO{(F+ZYq9xwyIcOuG*~#4Uo0C^`Y3h!l^tfx^-s~IY!=xnZSBZcoPSY z1G9BSH}%nqj;eaaRh7!FU9&PwU0CT1lwTv9N;ZdV(k3N`yZs9i@ z{e2r*T$a!999NrXgsWkz?+@isCRASF*jN?w1y5ZQsvceKr`}lY4zZW(fb2-wZSrpX zOjEtTIzXLY6Q*{o@$J9@H>>B@%vMQjKZq=JmAT~aF_S-9YF*Ve(kVIfjN0zDn!av{ zdVBqrmIWJv9qOHpLy}}OO0QR2{cn}oG_9jzcb$e=6?=ZwqmPW~oL^X2#b0FVgGb_2 z%%*IA`J?P+b1m;}N^lHeJTevf>uSq%v1=NQ%Cg$x(sHvrf3eG&LF-^xi>DeMn;leH zyMR9pN^aI?sLhXc>%f$qQd=s+g83t?s$yw=nRS~#&I;A4&B^Mg%`XQ2=ZF5SE#<+r T<^NHes^1!^68UG`w!8li-F?e% diff --git a/cms/locale/bg/LC_MESSAGES/djangojs.mo b/cms/locale/bg/LC_MESSAGES/djangojs.mo index f83ae33decf1fa87d5c154694b9af75efc3eabc0..1f0f2e395d38e13a3a5f74433aa29b162cbb6963 100644 GIT binary patch literal 1464 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 R#BZ*MPj;E=_cG3B{{i1~jtBq% delta 225 zcmbQmd55k3o)F7a1|VPoVi_Q|0b*7ljsap2C;(z-AT9*rKp@@<#5zFC&d9(J55y)w z><#2kVPatL1=0_Iv@Vd=V`g9gN-+SrU;r{7D8#_vSd^+znO~|GBUCO6dq i#L!F5m^`0JjmIZ3FTFG|J=IDfIdSq4rs&B!%%1@!aV(tx diff --git a/cms/locale/da/LC_MESSAGES/django.mo b/cms/locale/da/LC_MESSAGES/django.mo index a00ff16637d2060b4e22597f0f067dce65b24bb9..94aec7a15ab966362c62d69e8fbe45def1e02327 100644 GIT binary patch literal 28922 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 HR2BLUm>P^D diff --git a/cms/locale/da/LC_MESSAGES/djangojs.mo b/cms/locale/da/LC_MESSAGES/djangojs.mo index fc63cd387fbd0f5d4712545c72dc4e3f374b3c73..ff37b89f5c07ac9fdcb162995cb7c9ff0d625ba5 100644 GIT binary patch delta 433 zcmX|+J4*vW6oqH=5+9Y7l1MJt1+!~3LH)HmZ?99f}!bXb}VG#TQ zT3ZQLHYu!ZEo}r#e}iWi$%T(|XXf0?oS(vE@%n2uch69HPy)wb0eB#(TW|#Kz!~@e zTcB((HiCAbPv8x-aCWkcwV{vD#P8 zlI)0+w8z{rX*ycpPg+uaPD9(}t))Xa;~;(ipP*hCC>|)f5_nUQ;0~!UU1927qfzNA zHIz-ua)s*0U9%VZmLtX@w46&jaKmcPmzIz+=28n|)2Qo-v9Vm+sn!})+iPyu^@~x? z((FNh8YjAvIbZ2uEXHq|>msOt&Dy$B;Ydv#U1!(@L=9CNt< delta 197 zcmeC>e8yIPPl#nI0}!wPu?!H~05K~N#{e-16acX^5ElY*AP{c_VjUo6XJlZg0%8*& zwg>XpGchoD0_pca8YFMY%)kJYVgPc%0AxN;h=IYeC{>{{zf_^P6vUXU%g8-((W=S& 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 diff --git a/cms/locale/es/LC_MESSAGES/django.mo b/cms/locale/es/LC_MESSAGES/django.mo index 172227c047362e0717f1bb7ec47370e17b7804d1..8abdae43b4d88526aeb013a901d7df04848cf6c6 100644 GIT binary patch delta 12023 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 UgH*dxRTwHmc38c{z*RZ_1_TBn*Z=?k delta 9094 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 diff --git a/cms/locale/es_AR/LC_MESSAGES/django.mo b/cms/locale/es_AR/LC_MESSAGES/django.mo index fe2f421eac7c25e185563c5b1073d1deb825f166..7629cd9b1d0ccf4ed62ab88337f56b16be7059bb 100644 GIT binary patch delta 2081 zcmYk+TWl0n9LMp~0&Oj}P;Ny98K{7?Y`4YILP0H5C?yy~3<`=k?T))sc6T;2vlyzl z@e+7Y6Lo`#4+b7A(O@F3mxLG$spyL_VoXR(fCq^_h$etBF-r9N+Z_^4_CKF9=gj4t z|2ea-FZ;5)aADfSgN8Cl%pnrh#@Kj#A_q!GjWH{*6XQ67y7nDhg_rOFv}!B;4o=|w zAWp`^*n{ukvv?kxaC@CGQ;jK@-Bem>cn)>LF>JsRHsWdI9p-y%$8*SyrskGPe>19o z5q4lKI)5_K!8>VBqlK?vHy+12-fw=U(nZ5%jN$xxWB8fP9B#!OcpE0MA74NX^bBgC zXK^uJ!~v|Old9Q_^Kb_;W;2Ql@Fkp%W0LoqlhFm=;VjP2p3-MaF2(M*Zhe_x%#}U&bo-)fLo0uCadF6HA-O{}w6i-m(i@Asz&=u5Xyp9jzoB|83 zk&hsQHT$p?-$1SX7s$0{2Gi8%*@}A50N#UJQ4=^2^&djEf%yby<7wn)e&UeAtEi=W zoX(|Kc#4W%{2J=>If@VA54a6mNQ?HyC@OUypuU2SaRvT`dQklK%KyR>7~^~lHL)L2 zd*Ro}-%)$(8nTxP<~kKUxaN+^$Qn^8n~u70A*w$f*@IP__YvA7`m<4KBXqqss0N@c zY35vR))03SHy35EUf;jUy~MI|t#Z(sDl2mdjlPRu^O{A3iZXI@(b8y;y-}ll@@}}v-|~Ub953nigq)bz5K^?qisEv1*PSaa#gi! zvR;^S{L+z{p{gnUUT&|IbNq}O1g@8Tvu?0v!1waGptPZ`xw_U4f@eHGQQBGGJYmbQ z@7N(1SqVFIjI+n__YQf9y(Xy}Ov+92RFk%|$-JF(Os;YWQzntev6N3tT%|izJj#m=XM#9`%R52wWJ60;Pw_&- z-1VKyVx2u!M^|rGPg@72ev=)9u}6G68>H>f^Lwq0c{^+M+rB$GYFn!VCp+w>(_Y4Q z(|t)D^`c^|v7?x2+%aWSH0WN-33jb{xb$^nNA=XLPBQQMmYwvSq@7K8#lEKQQd`r3 zsz#FL+J2NaulUh4m!##HT50z5oz;{3y=>^)fir%>E`>8+oUr?8XE4D)Hv K5woksD`Wir+LG)E&-uLP<(&7t=Xu|r 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 TNtiWs9;(Xs03AV-!kYgD=2W^1 literal 0 HcmV?d00001 diff --git a/cms/locale/hr/LC_MESSAGES/djangojs.mo b/cms/locale/hr/LC_MESSAGES/djangojs.mo new file mode 100644 index 0000000000000000000000000000000000000000..dd3548eebf594dbbb294910894ec57bf7d0ae75c GIT binary patch literal 1293 zcmbVL!EO^V5M7`MX^)(d7!E~6;AA%~P_|9eQc6{nLa9=YAUEr792`5?-jqs69DxHz zZe02!J<%hd0H44&@SLWJLcmjDHX^&VISJ^)XF zufQ$f>bWR-1=)oB1{?vw{`o=_J%{`OnL=((MbSsdw~(NW7t9fkqVqtwJ6f@V4opd| z94Y%;d-8_b9j*&Op6@!^m%d|4PmT|yF35KT^*M}t(mLPxdkpZWXZEB}`3uc^;>Q0+ z%!LvjS#_kNzA6i;8_{Fqi7PeQJL0GWnTotZzpXCV$8|K~6}Xpr=rjsLZKJ(FEA}O9 z-b#^&t^`UY+OnoA+MaFX?3u7m8l6$zMZXMd_guU!`o?;;=?a;%`(@!+%VgB?zVEVX zwLmk=-Adc^s<|9UQ=NELrE{fl@z#?TTeX6FL}m}T7a7%(G-b&=OXn!Lm(9(wv}p(>h+YaU#FlZ*Xn6X4N3@X?3e1bQ`2I7E~qm@+G3i}n>Qye;3PNTlftJKM~{TV z7gLggaIz?^mXvckJ`zgesBcZLE41`7Ob52ID@cpN(D7mTB7G}*f#*C5lkCLK5%(D5%H%K^UT nq`r8|yey9o!`YX2$Z(t_IEZ|j^e{LkD7VK)ynA{#uS7oqn&+BA literal 0 HcmV?d00001 diff --git a/cms/locale/it/LC_MESSAGES/djangojs.mo b/cms/locale/it/LC_MESSAGES/djangojs.mo index 29d7fc7a2e2ba54c041b37154aa237b3313548d9..101e2d4d8a9462976511ed19fa869d8ccd2ea387 100644 GIT binary patch delta 161 zcmZqWT*o=VMQtJ@1H(Qbc4uH<2w-Ml2m{hHfV2*feh;K40%;kRjai+HS{WrJ1;tkS z`stY^8Kp^j$@#hZDVb%N`T8kYiFxVyy2-i4`kBSWrK!b}KQlUV8ye^uStuA9Ss9y5 zwr3KT@XF6iELQMOD#|P_QLxEPb;!@k%+yQHn4Hg~HhB?K6qgUsl+wiXR4aweKbd+M E0URVQtN;K2 delta 139 zcmZ3-*~&S=MJ9QD#;i`p$+Aq2)&|D9 zMn(#TrdGxl+6F+t<&#)kq8n0_m{**WSdw34rI4GLl&D~no0M3Tlv+29p|(PhwtrX<~Y+l|p98C<9mny9kZ@xl$Pt>ra+8D*0umq~3W5aWszo`J;6h>u<|4ZU zDMX<)prLYzNCR?60f*Y5opy$!Q?QQOaZ3-V?NFs-JGS=wd-uOnrsF&O_VYaN@m%lw z?uMPYNBp6W6JmEdwhJUlY2#e0R@jLOo3D#=W3eB$#YH$Cm*NzB6*Dl5t+88I=h|aW z?1267J{*Q)a6GQV0P-*7{>CTQx>gC11`;rpdJpV~ldv<+LN)Xh4!{*S5Vx5v$k^Qt z)Onv^EdCWWm(NlCxNebpS8PrHt`7xW&>z)6Cica#r~xcM%_t8?UCXB;o)Bq2m zW_$|U;YBhKcwz-t(f zw@^#_FZ>pENijg z{RR2w?((6Tb?O-za3ap9-UoGkh3&6Jtx!Gc`dvL)e+{6C9ckE%Jdf@&rsJoWgIyTD zT!?zwUqjvdt2h>KpeE3jb=9+!h-!Bza>%8lR{BxYKp#i-vm``;2h*)Yjc6lkY3fiX zHlp{C;c)7Qa4LR)8c5&Xkq+me29S&D=vk|mquO1Int3(q*3{bZ&>jkU?_WnP{ePE&?%DgOhJWoH zaPC9Y1vgPMxMlnA+WxOmPj@WKr}GA)2AE>?4Ag`kKn>(!)UBS5x&=>bKmEI63c9cY z)zEsYS6Y3OxfQh{+ffbfK@GUs>W5JSJ&tPcJZdH0N40wuhvIeH?~-}{b)Yi^nSi>m zC#r*FRD*-@Hopm(_?-4LZJk$x{jeS<<1w6oU!Vq->2r>+1UDA-7RurCN`6g<` zPwNDY@SJ%GHRG!|6%&~5Gq?aXpwp|5s8_Lu*j?atmstFQZoGjMaaGIn=*2C()apfm+mcKSdqCf^D&P zTI3tAKenen0yXn&)XFTxc=~sx6x3nJ+=puLqIns0!AGcuK1X%@Z=8x_hDGWdP!l3zAR`jYjRyF`qD(nx*D?)WB*`x30nJjaJ`h z_5J2i^K?4vuM01-Lj(C0YUCf8zc+82e@6}IpJp3=5_NtzR6D&f1_z=BGQ^Ijq1qp5 z^~rX8`f%1?7tUgbmUzBdjM`s~T8TPTM|)8#^oH%ffa>TPGA4H&bzNLW#CX(oiKupb zRv(4xFFQm*Gn#8BEJih0hH5BizJNM!v(5Q^zUt2+8_DEGk16C0!cV^QlToCQtRX)p-z6)_|8J|=!8fh9W%9X&yh5Jy_VB+W ztR}rkuKGVs;T+L>dy;4yM|O~>RblH$rjUJP35jkGP-rBNktW;O4>yyyh-Rm^YiD{H)kaAK)eB>;NC4)#E8BKPRrGyv4`}=VYK1^OC+E$Qf zNEf14uYlB&SIGt9ZPvdlqn1Nfkrzm7l1Sbr-y;>IfjmXllH(+cB$4R$LkjVv4LM47 zlIYfxLMnNOJVg4FiA2whw{75aF?l^w^*#^q+1u(H@7aHt@?i3lh7<7*ww*AwxGebm z#D+WZXJQ{&URcz!zss(;-bJel3QGcRZbaYe<@x3LzT(n~{JfTNJvzjUDGV0n`}`$& zzOv{Ug~8>%B7aH2Dt|$~Z_vVQEI*3K}R)UsfE*C=3Kv<9yKCu1Y3uh{y;E& zUb(*{P~;DmmS_8Bl$OxPoTcT3fndXbk|s1vOJ3AzrVS?Bx5D4BH~CL-6aIMc%*2L+ zeUclR`_#qXJn~YwdUv?`Y`E%FxN1jBYTvq;xSHBOztY@tw%_EqjDz8-x5HJ<;p!F_ zu5Juh|F0gdJbH7>&T!?HaAjk-@|^eC)N*(5rkI?2=N+zmD_nKnYhrV_`f#}Nz&Etx Ybx8O3HWhxcs%2furkIv?!#cPAFWu`W7ytkO delta 4194 zcmYk;3rv+|9LMpegD4Oxl6eahFQ9@bU}%DQK`At%3z&-6W0HASE}2>$Q8UsE@@ROW zGNClhN)LF+X)C*Jxt2?}Tum)kZfTpARIau9{y6`$^^D*7JkRsK@AEwG^S&H7;N3di zcOkabR!2Eb;>gW#=l;gixAQ?c+TOW)@EB&}Z#WhQ#yB?!%Ppa%K@d*gNNgB@do4#U>8r=!j*!B$v~(YPEn z(Rypwq88eKI)5*=W`1{sN)I|tq84xgBk>nZ!<(pq6Yp@2&2h=71*W0ycmzh^I6M9* zYGIR5*Uhl@Y-`WQ?({Fg1m<_uREFUDsDZ9v%N?Wcq+`e6Ks`|tCSew)qb6E_y0bDn zz6{&YUW2-R19rt))D0d)-M|U-^`-J9mHY8`)QYq344yCwHDLjE!pX?vcS}%PyBhDp zm#uvOTXqt=(0>7SLw}-nRD)>zDAWSmcVhp0QR!?QS;$Sh9Mpx6AwO;gAG(vLPy?*R ziCBd?|C06JMD55e)b*}&@cc+jq1g_3ja(L{Vt!}#Kaa`^I^-$TTOG~v^{j`ZR+@u) zX~v@#Fd6xA)A`VrE<-JFEoy=q_8go zEzY#|1k?hHtvwTUMWNjDgZpqe{)$>qGTXv?>e7*4X*V8+;7pu`wWtL&o1TQ=jkU*-^mj#FKNb|u)cV($)u^qmLrwgKxgT}MO_+<#I1{sb2NzU_ zy3u+c6|MX%YJe-qZo3;e9%I-iEno`jPUfTTpw#*|T6-sIM;cM%eQn1tV;=3_aRClb z49@d5YFuA{ik{^u)WqlQz+YxWQt)^eWDGYDwUvda^D9sTZ7~~AH`0hA$r~zl=CM>tMhgV$3W3e^Hp$6)WdUQij3mb#li4tp9Vjk^! z^BU@rXZF{1JpaX1+R*U~>YHpGM&f4F9oC_C=s0R&XHXOUV1}`JEg;d%K%GAlBXI(1 z!Wo#0+pT>OW0~J|O$px70MxS`Z0&rr&@4tRz>Au2DeC-HsGX>_{(a^V^Aq!oc>%Ss ztLW1+YNn!rZ=u?e1A-^CH9MO<%@ox6nW#sRYv!AUW-&%{+-okf{*|Z&tQo-md#Jof zhbFGJ6a1(Nc369#9Y2V=unD!rADZW^|0-%Hno$dj;E%j^s6DE`A8MX#cUFY1y$DGiJEXXM&nUC{wZp}Z&BBOZ~lxr@4B`BL0#X5zx5h79(99hKI<5T z8lVt$;WX6W?RnN;iCMHaB7e%=XV!lSwcuY+3%P;1z8N)*guG3bk~yS?d_Z0%j}!g9PmO7tb6qPuvVOdy8||B<;OqEbrqE2*ti86Ct8z+y6;Y#|Sj{X|9oj_LbAyZisb z#<(@Q-AApr5g#NQtX+?VM8E5yayylgq=FnIo5(n#@+LVzn#gMM4B1QWCCf=A*+Eny z$P45pZMVucvXgRpZ+;fsU-zuKB*&9 zT3&Z5E67X|L!KkiWG+$J9>k5p{$wk;k32y_rJTwx(vfT=D$kQ{Ej7O2Fp*5Q_Ap#T z-Yv2YkwbE=-3F7%-PT@@uaP7&iA*GmiORzymb^-q5a*ANxz|4{=2#%HLrr+#Os5D> zAhv5!D}PP==%lp4sTmmw>6uv>cc-LLqVm0E<*7xb-bG~#yyc5avl151n>*M4Z~XA+ zeD9(;72Y`|SqbyJ{;cj({JXnf@gM9F=ilFBQ=lMWy(hfkg`ame2F~}&2@e$ZTjdFK VOIhz}eYvvsa^+irU8!xu{sRukk%j;O diff --git a/cms/locale/ja/LC_MESSAGES/djangojs.mo b/cms/locale/ja/LC_MESSAGES/djangojs.mo index 1f0f7bd0ffb4f68cb011d679fc8b002b8a6b44e4..3fa6f586342f53b2702739df900b37e131cd27f0 100644 GIT binary patch delta 514 zcmZXOze^)Q6vsF5$Dt^K-QmGattM-fix3czvrq|&V0GP?EXl}bH}1@8sk7Vovxtjm z1W{1XQ@j&wEDo=<611_jd0O~i_>IaT+=CC__uhQxJ9F1~)U@!>UcYIe8o(DY3_bxH z)M^QQ2g_g*+<*$ml2v9u57b(wiWV#Lf;HGY1gG!3p1sz9l0O8%m~n z6R9*y^=Ep%b@iZ{vs|jgl*b)ubLDy&Hs(59vWaO=NEO}2dZV`ZkCrU5e0(v(W_VPL zKQBD~-F-USreK5g7U>hx2c%a??@_o#;ZF+ADLAC?g7g~cfPxj$SEQ@77?9p2{p&y5 pZwhxP{6oPdGCzb@DM0Ko>2=blq>pM1HXVAObmfB&pLl=3cmZ&Wz_kDX delta 211 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 literal 0 HcmV?d00001 diff --git a/cms/locale/nl/LC_MESSAGES/django.mo b/cms/locale/nl/LC_MESSAGES/django.mo index e188487dde7c59a0d33bb8f65d684730d3169193..ca3ef7dbe6d6bf557e44a65cae12040de6b05dda 100644 GIT binary patch delta 12382 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 YSv89*Jyy|;r*0a`?p2d-$JTcI5B~OA$p8QV diff --git a/cms/locale/nl/LC_MESSAGES/djangojs.mo b/cms/locale/nl/LC_MESSAGES/djangojs.mo index 260f7af04cdac16bbd5583f4987aa01471da607c..79a655e450b5730b55b4d99d8fb5a33808adcea9 100644 GIT binary patch delta 523 zcmYL_PfHv@5XF1ee<(sAx1eC1Jecgvs<7yyETRFCMGyjkTtd5D^t74np6%{Y*o)T$ zPqK*kIdb+d%=O@L>DWb* zML}gzX=4LP&lKc2tCX&XA9m}OV$M`b&E17PI4e7uzrI0zXCvE47Y4KF4J(Rn5|NHK zllEF3V;MSGrcKPN)3omfnKI|bW$H{??V9~T$V>p)($%a_r zb;Xf6v*b$6$kS|7`pU3WG~yrZNy)lLG&VL?)_cJWtF&GE>}ezm(p-9X%Ip;vRaVFL1j^g|$R1f(6A85n?43_vazfXoL90VRr36)N*f6^ctijLEu;+!GhAn!JzE zbh0dyy@{c&fw8WUk%FPAm9d4k0T6KcBo>$Gh7={{73U8Fu=ie~aM(#O17z>8LH3Y6PVT)VH@Ued+>w}|UO^ED4meoFS;T>L z8(+1k6a`-EsJ2eD)?H^^;Hb6L_xHc&2?q7!+wHqr>wlbmNl7-)u;z{<2m>|HpV6WEUSU;BW<&aum!rPiZ@_$+>EX9 zG8~TA;|6>g+v39hmemM@*bYmvt(CH@Gl-~yi%~7yhHdb1%)^&43mXrxtX#~;rML=n z@P1T--ohsM392Dqp(<|3!=11bo{R&r6)weg)Nid*1W!jjcp)-6)=p#)tVfJ*qZ-yE z+p-vSs|%{aQP>$LqDEpFHpQT^9M!-|liq}lNneC1MYa=Bi+192yahX8Cf!qmI-^FS zA2!5AsHs?nYS229u0-|t98|-0nEY!{BYZ3BeRrVheK?2l?@8nU8EWA>*bG0zj`%I= ze(QmjRe*Uo6W5>`@;lUv?m|^~KWdKmp*nQX6RM17p|QYbEK~z7M)l|_9EA6wDt-@Dz8CW(hvFohfi3W2)cLX# zsnWV1sV8OqoyY((j^Z@z&Rf;P0M5V?RDGcwGB6*8nO-BX#d|yL=W!6?)WUK#UGpeZ%~V{=_!6gvrrA1hh1?sYSC7qrf{Q4 zUx@0+4%CqE#0j_y)quCLH}zXT5IF&RGw~`o7CYb+oQTVCGG1fuzh(RoRqhK^LmF{< z+1LZsknyMyn2w!r4XUF_Y>($*stb{wL^QYepjx~SJK_P<&>lvO$PrY9-y7Sra+i?q zkIFv__55~JN3K9MJ}P#(BuBSl3}TzJTh;_o#iIJI3#M9F@NtH6p3!h@4F1JM52H zWBnnYi#epv!~wX+_-9lF|3p34n{jT9b5SF<8g<~TL-n*2H3esy`@2x(Z$&zuvK}O& zp?b^|cm_2zFQFF68>lt%32LOiG=7g7iKgTIq3?#8njWb9p{Nm>ifY(WJQ3HT%AJWF zwf}bz(ZO;ns^a@lL;r|LKZ$DK^QafRfqL=3&HdIB{04SGRn!CZzW%5+F~~R!HMOHr zggiX&=sKytV8uYifTa8xDi#s#i$CdM7{W0lirOQ;ytMMJ%Adyhfw7Y zq3U}QQ(CQuiO4Uo8#XWWE9i@QaXzZYLs1QyW}Jh1;bP3h<*2XUD%5jlqbfQNHKIF= zyG;I_g^a&$JWPg${t4rArr=*q`U6x&U*JIe+N67PJgR2{Pz@Y}n)^wp5m;o>0aUpJ z>OE(nI&#iL#$PusB%=-PKsDq>lfDD>z$2(~kD-SCX_J20+X(IsPZqH z^qZ&#e}o#5uTb?hoa{fBYEDEi?t*%84ywhYO?n14B)#0Y2K9oVNtYU3Ob;=p8;mNq z1vS(coBSQ923?D`_WvFtD)BI?wPQ?2W8HD;IU- zx~T1XlS$u!gGj%FyxQtC)Bho}0y(p+n{Y3_i;bw?y8cwZg*Tykd>g8#dyRiI`7fcS z=G_x%Po$WLT6_x@;48Qmo6oVV z!B~dP@H$ildr&W^MV%W@piaiOF$aIZR+z*1Yg>*m&O|-868mFpF7vMnc9J2VMm_ig zW@D>){)i06?xd%p?iXPjtiZN-Hfj-XGv0_=bPpK!VQbQd(8Cu{4KJC``0JO;#`*qS zUXFV3DO3f|VLN;q+v1m~6SC0)e?)qs^0QITjl%X=h>dU&+PECm@D11kFF-Zm@)QyE z^iE{dti!kl2Q2hg^%m5NwxTN7ZqhqZQ*u3O@!g7=f_qREJcH`MtElHcGJcNQEnlM= zkot~@UfhwTu0_%v^*~?jg*mtwXCZB~ZooYJ%Gj5is(2w5UirFsCs&z z=I@?t9IX9cMr0&6u0yr>Fsf%Cpn7ryHFV$Osn~Lf-{YmmwWuDIpvsk_p4)&NcGebD z1D`T}fSR&KOEs0ue`g|{$tXZQI1M%D3sEl!A-~G3Td^a)i&_KU;&$w?%wN?vV^7i# zV-~)KdS9dE{x6_*IGglP)JU9zr%}IkArV#h7ODqFaS&##@Q3ge)KsiN?ShS{ZFVi% z_($xDA7VGmTW9aHAUB8symU}h^WPnV?X>HH5Hv#`4#j>P02J= z%jcsO-BOdk)}%`@LVgTS#5YhK`8TS8d8_^Brr}AX=dNb_M-nL~V?5r1T7>T#KS%ZG zTVsbc{tt{?R1fB1dSp-)ZbX&8&iEjzgU_MLe~RkBf3O2KT$}QL-*;W>FN#x8FPe;c zk%Q}S19rls-Zs^n>v1eJJb|*MJ=-asEUW9Mro!~S7)g!vBF3PbKH*V$+f5#-GX}Y1K1c3 zp&I%$s@w~xa<3adMV0&B+;3FQ_^an_%KaC0!iJ>#peoElHSiQv4=1Buun^VYdGwCN%L^RZ|poaPgX5)9LA?)Y+bC{1hv1X#?b~Wm3 zuR-;6yGdV%de8l+j{L#ge-iclOQ`pLgj&3*FNvrpjVt_?wnjbJ6Wd@8YJ^5%Pn=-x zuSGpqhMI~v_Q&&3Lwtw1e*o3vr%>;E4%L9Sv6c4!KZxi>|H8JIx!y0>0sD~dgA}x; zq2_Ecw#Fh<`Sqv~*o2znOHdWuWbWUE8maxLwQv|Ul}E6H_J5O@-@@*whV(Y(pcd0$ zbALE$XvZ0+p(>hZ?k`6@@1PnQMvX+JxxW=P)gCs$+m+V-znh49@`UkK%qIOYYREdp z{T}v1HDC~`N25?@`~q|TepJPep?df%W?*mr970{1!rzcyi5)PdkAlv3T^oIl`@4sf zTB|F}1E1ra>6HIRACt#TTGOISht31(*zte9C)tvBT!I6zO9taV%9PnoMzx8LA^sHc zN%#ZCQJ05Rg!Lvp49_)jO~qW|QNj%38krj6%LuuI@ua6=FWp03%QG1N4~hJlP)Ozo z<#IX1FY}|;O5#fiTHU&u5YH#rgqKK%2@7?D>q){zguaBX+yMMuZ%*{F)QDA~eXkM!b1NBh7OWy-s?Bet_g!@6lX{3e{Ui7ome+&7WP58IT z`xa9d^Cv=>%|ir$oK$9P&=Bm+nP+ zu}MFMQ`P^^h+N5yGYP*nH|G$~ARHw#lFr0Vc%kP1HiC}Gwq)j`uCoX_&BhW25OxwCA)G>)euM+WD+#(r z`&c3T7vW(-8D+8vQwXP!9*@66U4sdS3G)c5-})n=g76O|xHb?b@PMwr6Iv19kxudN zK%7r#Ox|=tYg6uIe3kriQ|=0!OrC=}c6GJ)u@;g4G4X3ue;*PLl86%45YHyuPdq`; zwVL!C+(%eT(8uXS^5zp35Oi(Ex3Ci~!_FpO_lgLQ62>V}@7hM0QuY6Ili9W2&8@`G zqQC~iMFd?9u$VBKkRX)!+16J$i0}zv3;CM}b(c+~fUtznknkIVu5!x6agoNq9ibT+ zt&k(%x`1#C;Znj1^8XiOn2YtV79?IF>?P=bzW)Yy6Lt}Fy-#?7u$gck_s0=VBA$b~ z+FA+#mr5!MrCnrFHb4-$0kC!DWHy=yS#Iue$c@?Uc= zM0_(1 zNhP>WBmZPSYTc{(Kc9?K315)85!c~g3A2dbX9|9YUlP_3HWAL|UW%YA4?p#z>3?AS z-o!-@?lmPeBuqE?gNXO3D?|NOnMu5ZSDSbNg-QtjB>fEGDncb`UF&cMVJ`942p(1tLByc~gvF$%VfyNqReNfW>Wr~trj%DCs>fMl;uTKRPJ|PY z(AeG!Lh(c_97u%SXnd62FDsp$9q&D^UsgEaMziB%@>P7CccAAxDLWA=uZTE_kezUf z?SPw%1fv5I_PTI1XeUZSc7;8 zYwzjRCbLChr4x=gMG@-W{rf%{t?5{0I8is3#o*a(H!_i`UUHX1SBv~Ae=20%>#6xz_t%^om z$M2}dfR_IJb)#(Wv+PlA?1XDGP=Qd18wpZL-<)m@I!9fG%1ts>Zj_M@y5&wdn(YnC zJ-d%TXt7W*918^!b}|;R`^9W05(_!OYCCj#IG(7zCpRy%X<9MyKhK|dNhZ7-hPQkUU7BVS;66(!&*R8AlsNmX+k?E45ppBX#JHXJXg^W+R zTgeT&pg9eO;xsDAj0PO7lDyiDgU`?GeHx=|$9`Nq)=x9yUelqwn>#^TmLACM!)))i zp%YMuIw=tWV9>0Y^{{hVCK67dgsEeGlinM{mbWNMCK3!b^~Jow!}qaU z)}(h!fH5cQ)8Xrzl{(R4*Pb+cp|@(pkfmWZR(gt}#l5U`E)_)GXmz=pjN8e0C>Cc$ zMXJ*`B5rXpRfVI+-H4^4+Dz%Nd@kk`R+$5{~<42UdpTVeMz$q~(`x zyEC#&b30KL3MJxsd3j#N$c3%xl3z3&2`8#+A00U(qp5$Ag@Rs_(HAvv*Co8IqyLcZ z;IXPhL8~%c9&&BEQtc)aNmhGhI7kLtF3+BFy2JSvI(GV0RaNDgVtE0#Jip3e7mcqR zn;V`vyeK}Te9_`%-pn!ca&%b5IjxF0`jSQIqQP)w*v${7hch=&9?xf?bGms~jp>sy z+}k&%`>BI-3r@)$G}taE7*#NGU;$V2Sx!8WyC~*F;~X$VfD%UjM;369xOtU7P^*sq%`NmK`F${g?dab5d3Y^Ia z12vR$e(i%&+hjs!MruwtWG92pp-rwGr$*ZiMx99L(B6Yv>bRUf*#DjZ5goP%4e!e}y*EcHH_GUz1puwCxZXS;@%Qov3!Z}FOd zH*)Hgbq(?kPc1kWZ#(VL78I{*oA=7JvpXNUIuH&Wdbo@>GrDG|liu3t*{#Z13FggJ z)!w%01%2lhAE=E)L)LOWum?8>5AFShZ)5HL>Dw}nRk?KLnAS^ZUDdH#YkxcQ){NA0 zhodA}YAvbuo$XXO)}rb}^3Wz`T*ra6B<%3Ri7}_FZp8c#J6~+KC>)B_Fu0{r zw<=zvo^e=}(vx5MVq3FazR^yg)Uo3UuV&Wtw(4-b{o!~I&YIq>w62;wdr7rlK`ATp z;AZcH*(Y~N4_&A%&z{U4t1HU7ST%cC-6GlST|N6Be*Z&dwU^E5nwh^)3*51_g3|+f zXp>{MK#g{pmdCLl3UOg?oCV?9OBVz)yjK=(9pZPQ!mWroRrKT7jyt%M(f{d9Mm!XyLq&^jZ@c8sCN@+} zK8r9Nscp6R{*3X}MeKZjt(YGa>J*d2S}m&9c4k+SrLTRp#F)^SsD*G-u~03 z7F1Q2xv`pR)N;6_c*(-df_mqVjs<`JTlI3C zdV7bLdO6EK$eBZ1E8IBi%8A$5$@GA*_|K*3yd$VBWHy%9ZpAil#EK65jtM&HL9c67 zp7r0q47H?*3A>{+pP-P_Q~s8m=3aUoD!Rc{iT^BK-dkFyifgHUi$R6OgHN zzjZjSz2{e4(PkbirXn17I6Kon7s4xxbIRNZ-*~F74us=nNjpnXod}^oi4zSc?XqMn z?(&l=yY|_YjWas%^Vk0^q=Pl)2Fo~4Us$!Z`HyG1w`TR61uXG0j)rhqvX_;pj+D7} zFp}QCH9EGm3mMvacaFYdFK)*!P5)~s9CQOUOji2v z^IllfzXPWP{~Dne{3O+nq64*6-nVP2J5>2a(+8tDD{I%UZJLo`do|9s=H|ofMnhh+ zqP^bUqNAx}=ZIVHt6d(pe*6?N)n$=z1z+3r&!igrwDj+%NV3T07v~~=KyltOv}J14 Sv2W#n@x#etL3nou2L2x_GE7$h delta 8700 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 KFWY~piu+$yr-1kX diff --git a/cms/locale/pl/LC_MESSAGES/djangojs.mo b/cms/locale/pl/LC_MESSAGES/djangojs.mo index 398077ff234cfa65ee2defc8b175b4f318ca1ba9..141fc6f89da4a042ecf5cd8668ff2d3e5affd7e2 100644 GIT binary patch delta 565 zcmX|-L2J}N6vrpq*3u#f-lT$01P|3sy4@nOD7Dm!xE4iE-d>X-nVQU`nMp%(DR{9x zcqqX`zk&C?duhd!UqHl*U&Dj{>@I!qLsRxeAm8j;@IwlBKik z$J(B8#A!--TENt4 zuaCP9e8mWxPm&&a$9qarWt-Z%56EVJpr*!H$KO99;apkP(x=^~Ce4(~N*fB3P}*i% z<;zdhWQui7RbH5iqsD02wOUsgt>iYnHqpW5x#QVb98q3eO!nb<9plTZ1;T_-oxfSb L&GxyNR6dFSE}f`! delta 232 zcmeyv*}-0aPl#nI0}!wPu?!H~05K~N#{e-16acX^5ElY*AP{c_VjUo6XJlZQ3B)Eq z>r=OmWo7g;IfXJuw8 o*yN@u036aS3jhEB diff --git a/cms/locale/pt_BR/LC_MESSAGES/django.mo b/cms/locale/pt_BR/LC_MESSAGES/django.mo index 0d9228dfb3c41e7b742a0dbbca77dfebaa9ee1b8..274927664a97802ca6fd14883eae7d01a9201715 100644 GIT binary patch delta 12365 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 delta 8324 zcmYk>3tUxI+Q;#Iz$?l{L@-4_K=CLFB6tB6K@?C7B@FS7h=M4fP-bQ)Yf>A#SUW1s zNiBOP9rMz0GJWeU^)<81am;EoOH(s*G)*gW)MkEv_Tn?{PY>U<)?RzMgEHmt}=xT`SA_p7Oy^wOUqrgk|-|3QWLPF&~d$E=EUMR!f|XE%1I! zMh~k0c1**wrXCe#Sy|LaBlkU4J%wg8>_cBXh^_H3G8gM>)C+zE!dVNZM!$KgKgjuA1=L~^k?^|7c4 zOhUbIHnzh>7>_pk;|HjT976R!h5Tb(=0_~HE?bRCQ`4%5%_vn@~@d(p`jW6f_mXC zY>G|doE7<@GSD8Cff&^Nc+_)AsBs3MGB((>kHzNHC!+38N6xKPfkSXv9Qhwi;Q$Rv zeG3kP_NWKmh54vGtw5#r1&qS=*cbO<3%rFo^-bN*8A?TsQ;y2$lc))-M2+(bYC)Sk z6jCYdK&|8|D#bTUhuhekdW-JPVG2T}G#WKfKh#zXL%paFHSrScjSErZzlk~v=Z&{; zD0NRz4`*s6(;{^@2@Ea;#mLji*s7=}ua5F#*+Y0s7%m?1ayuCb|_hp?#<` zbrLx?))i!{JXUB=r(;jl$0!qZ7{{R=D94Vt09#?bXMl_3R~h0)Yka2 z8r55)CLW5)Xh$5P&wmUBt$aG_3@pYDxE|HD`}38)k%qf(fQ%0MX=VKp{P4AuWD)Pzr= zUU(jLrhdX;{LR!`aWHg07(LpHjubRN29h;vI5H=z4%u#NJ+{HasQafe2ZNFvi&3Zj zRqTczqMpBu`X-I+<9u8n!2Z-9Mv`dl=tKTB<8w49aN>vvK>O zeFT-_$59!11(mstsEO{tU_5|Y=?T<0-=X?lMty(WN+$nm@ZmRu3^a!0DC%zHA8S58 zG~+jM7@k0_Fq$uccq~9I#Dn_yE=5gXIVv-+nEQJ$fcnR%2_4e|TEQ99;WBE**HL?? zWvgRzV;c;j-Vv3FcnrnfracFhfnwBzDp7~K7S(SBhTxx3A6L)26!gOVs0bXx*6aNhLp6`qov57wa*C_aK<2Tgj|0e3e zhyl)wV^Nt&GNzmMJX0T!%HT|6jcH$C>Pt`ydB*rWYQifqNT2`LC}>67)qs0Vhoh(m zzd_CXjA_4sdg0F)h__Mw{Q08Sz`>{tgqwOC>V9w3-uFdiZX|lN@_Y)~n*xl*sThfm zqaJ)6m6468Ol&pn@1eGA4{Ab(P^bP&)Iu(xUU(DrTo8WSMJHHNZ~fOViqe>i;WdVXq<1A2zjELj5g_$B+zX z!5OHGcycHx#RaItRA#&nmGZ|i3}3)|aWihjrkPIrR_s9iBW#OjP%FHSn$T_38AxGO zgKz}un{yfRCF-%>p)iStA2AN|n7$5G9crbIpgzCLP%l`8;kX%l;3udBTt~ggZPfwRfSzor%PtwkQGhU@9tgIoJ*hunNmj z&wq)^*i}qMzicPv>8SS%M@@LF3z{HsIS2xrfxp-$;S)CAtZINX73uXPeN za4gH=OV5f&wa-BH`wMD9pP?rBPt@7Dg372*9_hy*)Iy5#$iF&Hra`GJ#THnLn!rP- zL$%!8UyJRjZ$&>mfF1ED>a<@${rf~WmZ`0niJHJ-9E&z;?|;BZyyc;wnTOx)OdtzY zFGR9rJ%n2Ehd3G!p$=JOzB5oN>eDa^_4|Dm>i%NXnOTj>@LQ;U$1nnaMNPodj#1Sy z1vS7()C1E{GkpSsa5d^rvo}#0`2;o4DQt!RMxCKnW1Q5sK~229sYl^3>T#&?=U}2f z|IbrUs`jBCIEiiWdsGH)AW5=@7C0Gt7PUp|P%GMK+>f!;&thwAd5<%0D0Zfvh+1HQ zX|HIgv;U7#&|z4G+S_%gJ>7*t_ysjH&77|sca$I++^EJCH~87#uLkvUiad=GcWY1jjwGVa6@>ffO#WP9qvROroWl{C$Izc(|8x& zHubQH&dQR|O?w8aUnMG2OHkvyjGDk3roP=nL0=@h(H{?@1~`sk*o0q=x*v{8T^uTv zeT{=q3&=9{QKiI3N2|!L=BjVnt3LwV=ijoV${l} zp$5L+++T=#!E)3duQvBLpw7r<)c7Bv#yx@>=NP&@6fRMSz_6*#1p1<0I2bixHfmyp zs0>X+4OodWcpvJJtwbHV&8Uy*0aU*esBzAj`Zd(qxQz|J{{#8f&;Vf=iSek9Q6B2k zP=!kIQq;=V7}uk=ZiA_BF>Xh_c&BkMY5||3GVrV+Aot;xm&EJAI;QdH(%LLJI=s26WS9p3GzkM%p~LY+Tr7Nr5ib5t{(R_jyB z!*!plzeB^%clr6Psego(L>SMEB(73EP54vh)7xldddDO^t zH?G4a#6BX+v}^YICOk;IObj;d(Uflzy6z`3i2&|>tp;=Xn!ekpXAyqX2b+7#@c#&p zPN+WrI!JF3cV3gJxCy1QyBTaZ!4Nkav* zFpR-2;Y^|}Ytfpb%jOI6-+NF`pPs=z5TdCx#L|Ouz1wbZeN8!(a#zYa%@M@=#5`gw?Qf&5Y|69nC^47#hL}U>>g8Z1(dQ48 z-MAV@n0Apzcs}FDByJACA;cP@CG}@wj2%Z_15yrL74O zYZ~@qI+14T&l?XLPip^%^1xOa{z+s|F2ok7OW)JErrZZ@>U}YgNFl~jUqtjEJ|;?N z^C8Yt9z*DwMm?SQJLUgrXyH#btRs^3`JYB1nAlI;d4-!w7c3?IL7XCv6N`zz5j}Z+ zA`wY!qTU5{1>wD>9D)@@3GKsi1`$VmLERHhL06zd!+*UvMEPH)E`B54AT|)q>0gH9 z%yaKi{+Sp;{TenSMiCQ;#%sJOM4M;4jW-%U|GiDaIQ%nln`mP?ze>4)^5?jj$RKq6 zK*Z2K1s4##DEB6ODK}mts1Gug>BcFv{r6)3S5o_bB7_+D-#gY>%K3C|f*%r1DHjq` z%>X=Vb)fuj{9oc>;?66S%Jn-M+R?X`dYozdQEHIZ+;|%6iDE+6ufz=^msmx#r%xKu zp7L^{A8~;gL|Z3pNi<&76at8zL?Tf`B+xI1*g-iJkKi8(&tLelizp{vA}$lUULgF5 zPIO*@orw;Fu6ze;Cngj3(5FA~nrZ(lwl-xEY0CHEEuyKZcXaV>JmV$Yil3-Vz(RKU)*6n_SSf}_qX^HKKAj1aC=~4fA6xy z5MO&|p9S9W$!;I}`M&e)Uj0^izv#Ex<=r+Q+vRPZmgcg{2EJ-f9Ta3|3|eTXrMvCg z^hdqELprUpVA)w3!p zq6W?>8=^w5(sKJ;cFdTHk}7vpxAMBWn$(1Z`Sa)Zs?!q{Gs+(5RaI7(P&2Q3R#|CX zZ9+}L^jRfUGpl=+&Z$kPD=V3kP*XQ0vmn9Ed#YyMS2D9KHL9V-9+@-2`*u#4kN5Kt zAujK8c}ra0u6Gytc%K{XCVOL^^|5`&cJbzqo#<o4H}$-{)>|+2iY? F{{x6~W4HLJJWYcPDofc4zi>-rkB$ zS}jr>i&#oXm)1_fW(zADYq9sg@ViG&eC&ts%)IyJyYs%Td~ELjKEL!qAeO-@xCd51 z4C;6Xw!wSw2>bvyz-3Q}33LGc3BG~n*w0Q0@e=w68bBW`3GoS9KvD89kQO*PEgD!X z&yw%0p=FYBOlh2tv~eUeMNUptM@YFs!Q!#c-{f|Os~eH^Tp4;wGe3{DRFG(Y`(+&Jg$4^@KqMAi|$ z#gLTa>ZpEXJhjfJXEv;kiBTDgWSU2{AVuy0*$+_4FCWD delta 301 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 Zs1Be$!nP_+m&}&Om{|7uaxlRB8 delta 8240 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 diff --git a/cms/locale/sl_SI/LC_MESSAGES/djangojs.mo b/cms/locale/sl_SI/LC_MESSAGES/djangojs.mo index bc8ab1fd7c5df3ea196a13ea22a343901ee56b98..5741043d72978574630057cee748db74f0147252 100644 GIT binary patch delta 504 zcmYk1&r2IY6vt;1qnJyJy;KTR5c|Ygp#?$8I8jp@H!CU0@{QA26v!~cwQ7Dg8qRXLR)J>+&~=^B`ZT(;AveH;FRX$hgW^;Noq|K zoh57>$yAY(Qx(@}e)00%!X-acG?9sFmD{My%rgJKgCc9ZGM>IMaz14hlefzewfrz> z>#IcsUKA94XQVq2gh&r zVdb85zWODV#%bwo+N8Etjy~E5Ln4mo#36xSu_#rcGQU)zxD>>gtjowfanY*D z`xs3p%Q7hgNk=AGBLibyBO?VvQ!8T&Z37_S@<}W%(G4j|%qz}GEXgmjQpnHB%v7++ pO?3b<^pZ0sFJe;T_eso4FHKBOwNfa~i4XRie4HtIvk|i+BLJTUE*<~? diff --git a/cms/locale/sr@latin/LC_MESSAGES/django.mo b/cms/locale/sr@latin/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..b8e7bb31458807383a56ab38965821c959570703 GIT binary patch literal 29144 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 literal 0 HcmV?d00001 diff --git a/cms/locale/sr@latin/LC_MESSAGES/djangojs.mo b/cms/locale/sr@latin/LC_MESSAGES/djangojs.mo new file mode 100644 index 0000000000000000000000000000000000000000..00a1528e4fe190434c8b61ebb92d5b4889f733fa GIT binary patch literal 1304 zcmbVM-A)rh6kZi$vX@?)c)Wl>blTkt2`-fKPe@vP zya2uePk@KFJnt=N9rQbJ0W=_gx#M}SL4SbGfxepXyicHKpfDL9s6AYHw}B$Jw_*ex z>zr&pVve|SPG>MJgPs>PSmjnkQ1#ydCX`r|C$x#L)>V6>*9F+FhX^_fhj#;GV02(TZ zIFisgBSl=#Y|_e z;FgmfmuXSo68uz><4d!a;Jt|ID?3|zD_a}1Sg$XqvZPJ2u2GwdvQ&Uv1!J}#zQjG$FIpn2k<(F!)I$N*=ZC2t6sr5Yi;?l+1Cka$fW91E zpw(euB};Tu?|; literal 0 HcmV?d00001 diff --git a/cms/locale/sv/LC_MESSAGES/django.mo b/cms/locale/sv/LC_MESSAGES/django.mo index 82fed4efdea2b60fd01e5170b1d681bcc192d573..a4242b12c14f9b725e54253e42544a4daeccf5b3 100644 GIT binary patch delta 12332 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 delta 8284 zcmYk>3w+Mk9mnzWBoVieh`1)mO$doxghX5t1c_UMATFgrNQ5L!g6hhnU6oFY^cyq1bk((^ti@=%&o}>**Zg08&-kLP^$CwDLZEDOvDIagGR%1##8k2!#n1q`#A5UT)Mt3r%G0wwAxDeCO zi@JU{_QgxK9vNv&4)p@$yw|Lw5Jr5L#`K_nlSQE`4HcM(&tVZB#%|a##vMo=Hl#itHGun2 z9nQm6xC9f>!DjdlY9Q~SuD^i%GgtYD#g=@;(!a@|pb_1N^l9d!I$Dcbh38Q---$}` zTh@c93>`;h@FP^mpW?mp=pV;<` z=uiDBYDPCu9s9)@!}6NOr~$>JmaG?sVU|5#h{@DzaX4;^BmWx7H5vl(J5+~vu>l5j zac9&7m4UXX48)+$C!p?2MLnkvDq{m|`*>_feJbkwEM(uBGR(%6UC93c3P)*B>Km~U zv_{>r9p(qf&g^Uho4pq~55TyO}~zDUC)wC>^yFLr@(Rq6S`!Dflzg^It>lg)gmlaWHjn zNOyP53Q_O>{isc{1l7R~Bsu0S9EKNBGwDWJ@-PW?-C}HlE3gATjT-1K)PN47_SC1y zwlUX`rSh8AiSC7osMlx^YBLt0ZYafYT#QX|oo#;^wdwwV&G00)#S7RNZ=;sRpV_D$ zgc^8jR7S%wTkn4i18Cz)0ML z8pwXs<~)X)=w}#8|K=uzHrRxBBM75WBTYi3Fb$Q$JX8i|;zX>(x`CmtKZ6?Z1yqM$ zqW09c7>c)Sy(t?*=R?t}wFsx62Mk2AW`-hTGPTHZo2}RaPoU0U#9RzXb)AIT?VGVH zzKgp5D(aiGQ&0DGeGoIKFGZ4Q_VgtG8u1r2DCPe~ZJx%wOG;H2)Y=U|eb?ur2D%KD z;^nA}Y(!;lJ8GbNFcgoXW_lL&oXe=|uA;s_?xvA{HTdz%AcL(DIEs2a^3N>dLnD3- zhu~S%45RrHNWihEiFi@3?+VlaR-rPp(Vjnm&8Z(l4d`Rtpc#B_FSv>t@lDj)Y1+E5 zp|u5uP!C6CA^}@tifzwDWndC&K;@{-U4y!AEr#K*QLn4_Z3^n}2r2_7Z2cT+U|*mf za2@sFU=~mhjzT>k9yO3OYadi<2cWLYL0vZzo8d%MhDzM?UQ< zdf+-+e*u-kO{fR$L}kcl&+kQbcmQ?Z-%tZTh3ey zLb7Fw`Kv@3hu>Jyo&5&6P@k;Y)`??)VHASJBsSp zdy+y+3g=L%{uZ@n0R!FFrX8x@9dj`o*WnYWFO*J$+#jdj)&kUw=OS}4m8jQm2WnvZ zuseQ>$@FhJ4Cb#E8b)IRZb5CT6R44%MLpm$YPa9S2yB>R3_lkp7PS;b*b3*MCbR@& z@t4>I-@rILk6Nk*L-bqYf zhhjS%Ve2K>i27VqM>QCOi;$lW^8#k$Dbx~%<&l3CQu5r?k4C+xvr%hah1%7RVjAv7 zjr@wOU&C(HI}dkfT!7ld3s3`IiF(dzY>bSY&KwB5FpPQ8U_&`ip5FYWJVD=dYudE`TqMj@TBJ>2y?kA!@I9ODQy? zumrUUSE1HyGpd7kQ8%1Gb$khf@O$ip{`u~}V^G)ku=Na7iU*_i%1G>wV=x5QApLmF zCJN1IIE30^qL$8Yj63rVsMjtN zm6356s`tN|g7(02RL84OsoI2^>0W#YkD=CX$XIt~MW}%kqdF`{ZO(-lf=e(MSEDkp z5!LY)TR(t3_5L5Bkb-xxJ0^~^UqF~hy#({nLH?O@e8gc&q5DT^5hhVzfirOrs>AT{ z?rRr`+0=_r8D5WC;+L`R@BhOT!fE&yHpPY$+#ijWsF_W{NSuwKxB^??2GrZI1NA*{ z2(_2aqn7k*)OB}I8E!VwJ>SwAHIe-5h9ny3+w@1hpAKq9r%|s{V3GSxHUjx$$2^Q0 z*c;aU*oyjbjKYhkr3jehEi>@F z;JmG0LCx?M>cM_f-A&mTm8l5Sz++JZN<>}X6E%_ksD8#^3%&o-DCmYN)D4SK5B8#N zd>l1^wWz)E0%|5ZY<(B%{{7Zts0p1y?SYR_Groqp?*?iBH?gbU|A7143lmW{4nYlM zI4Tnbs19bJma5#=7om3jGSqd?qSo{`sE!Y!CU6Edfy=1tuc0y$Za)$qdZjSIWk=8KHui^Gh6=)mJ@BbX9RJb@Jy1EgnCUN zB8hOSUA=1L7>zIETR58RKh!5cg&{ob8=OP5r2Hr@Bc3375~Z}o64xmIl}M&shT1drhaZIsBDKB&mlJ1* zSzNCpi3p`Unb1bh)cV&SU)L8TMK>r(ed?N}|`fDaTRP>(i0=Gf_>9r~M7oF^uwDe4luLI8V$c zbo6jBsa*3I<#>D%hud~BlJK75<33LI!EE9sqA~Sf;{60a-DVnf5AiF?^+y49zDLX? ztUo4F_&G6-XiEE&IMbfrPI)Y$BapUsZo9Yc|J@v=@k8QsB9f>-zN7G(t$cx-h+JDQ z=K=q;<$B_13m{@`!$Hg<`r7(4))UrGwf=*-VHXYmA_h|CuP4(8b?65p&z5_lL%lZ! z6TOJ>)Rz$5iDN`DZGOa;l*bS{W>C)}{z3Vbx)x)e!dfCt@Ba)6p~Mm5-Xp?RI^#^@ zBjN(_3GoQ=cOsGdrxKlr9n?Fcju4z+%VAhX6w^KwXA@nB)6~5Y6m$f;)cx0s_bC6@ z*2OL2H^gs=hFo8QMfSeEl>b9yQ@??M#3*74QGZOfg=l+^ul_{+`=4SPityLO4@3)l z@n*_nDSv>!BL)&Wt`IS_PshbX56UToKjr#kIQ9OvGRr!hw*Mcj|9WbNh%lnx|Ie69 zl=Hbb0N*7VP%b3yw-4Y})1LBA_$Oj1aqrQZ%FTNkT5)X+^)9yU-%<|=;>2oPM@%Ag zd{5ja@`w#YTdwI#w57a?NGHA``qS0{8x!?MC57fhB9Tl~5lLK^OYEVXi6`+Fg!ffG z-Xcng=ZUL?j%SHxL-LPx%f`6H$gwr@8q=d zUC0^kan=pZcbX52Dd>}!+$%Y`NkM+%*ph{1HD#3*i8;l!C7F?_$tfv`$vqQOQzKJ) zWu~TePv&Scvbd%;v9P+hqGn!kZDn<4WaZqlvdDh(OR`nyF|*WJGb}l1WO2ou1;ulC zO3gxN->@mZxZDsw=Yip$_)d+e@HoYz+WU$}CHVQaIX_M4 z?97}v(sy)Xw7(NPWwFmUWuTwaXxdum$h1Sg_0zX_d<%-JJihBQUi3J>o3+ikRTAPj zB~LkjnUn4`E#2gMv-Ft9d1`LD6JLHhc;3OS%7Z>@%c^RevGd0JUY}R!aY8DheElk> idctQ^m&}@Fsw!)0D;CV3Us7!zs;rz}QMT~lHuFD>`o&5B diff --git a/cms/locale/tr/LC_MESSAGES/django.mo b/cms/locale/tr/LC_MESSAGES/django.mo index 59536ed4942625c2b70cb282f4797907ac011160..941918194d5d251246ff335e017df1d18fd59a70 100644 GIT binary patch delta 6884 zcmY+|2Y3`^9>?)XBP1jUp@upk1d@%!cmln zpn`x(5#_|ofgt5PAtHF+%bHL9V@cnyZPwyZ2nz*Ovq={OzL z!E%hob=VM}!)CYxGw?9R<8RoQ{;e3Mts7foGNxlk9BK5UI$nt#a1*M7H?cXsi_FA2 zi}mrM@iJ;a(QTPEHbHgV3ddn8HlcrO9vKZ_1xDfqREN)_mTnhnCEhUQ4^b;}8ui>+ zR0o%^JzDLYj&0OdWnfdxMO`0`U9kj%!^o^6qmI8sHFO>|!wVRNzoBLr#?vatq3%mS zJ(p<8?NHC9nEFiQQL8)V<1MHaT!vcdZS7fq&V}_M722B%s3o#(0<-wY#hXw|`vCUD zrI?BPQ4RfoTB+tq&VZ6p?WCdxo{JiAKh(+%HT4BaL1)B;ROo?;s3k2!HFz&-fD5o2 zK7)Dq9yY;7OhqR$dBd!^ z=7!a%nXSkExYN}CZj4NEuE(La#zwsjX{gsNAN3V-8@50XYDMQ@BrZV?Wzec2qZw{O z&Ez#K#KWiobn4_hkcZmC8&C}oMs++Exz(DCYWN|{#KoA6yRZwMLw&EbVEuJH4TtLe zFAQb)rbAZGI)kYg&xabw#VDML`X(&J(4Jy6<)f%2{uuQ|b{aL1c4?Nym!*}Anpj`d z3JgUJWDF+Izg0}8K2~E4&O_a}7}fC;ro7g;#rO)2;Q9f~!Di{sz=q=>%GIa|yowq4 z9Y$bVmP0F;ggSp#PcoXx?Wof~2^*l#)Xzi>a30pfMHquM#?`1pxe+z<9jNy9pbl9b z>TI0CSiFR4FEWGm*G%IXo+?^l158FWkd1nv7pmd@#v$f0&PH&G3LV*DJ{&N?xxNeaTpenl zhfMtuRDZ|K_2B1ZG{ZCIh9Av^%cviX2#&gzv?YdP8;r;H*by^PUpS*s9af-bem837 zvrPR$)D|p74d6*+0zvCpGU{j>YG#Mb4M(vd+6l1Q60UA>R=nHgT2^* z1`c8$%J1>Rk&lhLJJ(0yjg;@e{(Ap6k{OR@F&zi@a0YT0Y5+4Z0q@6#xB@lc4LA&I zaUott-M4_BNWE^WPy?(*wX+ki!vn~FRuo?vL0&~GkBnw86}4nOR7W$gDb7bGV?BXt z=n(2H_`sCUqD}c1RC|g1W@{pYPy;PT8)u=;z*DH-n$5YazxKS2ifiy~R0k(a`D@g` z{y@#F9^bD%OhkRLEI+RcNkHFy*2k8QthX z&D3YS2lc1Z92|{nu`^!8RBX#%AuVt)YN_u;4SWG=3m!uzYrTe=;IF9XFB>~?GDE-r zBgtqfN-!3Ks4ZA%T#4GE4XCrR6}9&-qXvG^l;1XfhT7u`s4csK8c0H4=a0@|sI8fa zt@QpcBQuwf$YQ#{1|PF;b3S5(@`Dd;4L^D zwSucrTf7n5;8u(cl6i}a9{2!T;y0)*h|YJ)%}@_yp$0bGlt*EE%0ARmFU9-tY1C;? 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 delta 8492 zcmYk<30##`{>Sm>f}p5~ii*34%HoQE3#bU9A}*jLNSY#UXzp5riPLSFY9_6zuG&~R zX1PrkE;rN4F>@UMQKM~I{&Q*5+{=v|TXa6(`}~;cdHLgge&?L$Jm)#*dG5VdeCFBq zuE%?_VT~0I#}bd@w8UTPIL@z>k4LH2aXxC}IKA;>?1r_Y9VZXdFb5yUFg%R4@Fb?- z8C3t4Z5^j34#z$?8dd)k4s;x^v)3v@VjSmT8hT(TzKOxO7wh7FWNyyKs0*IJ+IR-* z;Z^K~o_3B?j;UB5cVGiNVEIuDCO?NgxW03VLIf4<+B;5HOvZSegk5kc7U7%N5gT@J zC(;jfXE~?|j6z*-A~weP*cl(gaC{v#k$vW2tjG18?d*vRV++i{G)%{G)K5Y;&=8EqLhOlUs0me|-j1Ev1uuFjXrSgi zDO&P$)C7j11{#UAaRR2{4Ag|zp_Y8JwQoV)z*`u2$WTjs7&Xp0)Yja?EAJ)N89u$2}G(`S6-S`uZ6Oe6pW??oiN8QMA%)zfw{W|gT z>xNRXmEQk>6g1OGs2P=^92Y1Go5#|*rRx^Obfre|R!HphjieovxS za3v1FS8yO+vi77Tw_h4Ya(!n2g{D}D(Kr`1k*831z6y26Td_VKz=rra>QnkWYEOfb z-3dpaR;m$dMH5gfk%f_%XHG`%7%IxF;zQIOe~Y@4v#5z&Mm=;lQ5V)DtUMCc-W;`6 z?NI0EAdicai|mrK1bNP#SFr&ewf6HVtp5-yn)YD7umtrsyn^v~2sOYB)JJd}?~>l< z2T)&1k0Q^N^A2jl-(x-e5w#^Dd?E0VInmez(@|Spfc$fcd$InS@v~&wf)`LrwF9-J z@1kaW2zBRQq3-w^YM@^*@H#OYO)L_XH#1|+WE??#268XXlcMXl5-YhR7J)AgtodDYy7HT3@P zr=S5V0~LI`p_cM6YM^gXD|E)%uV7R1AI*rq?gZjd<0PYQBo%exVP-z+M()HQoPaTU z|4S(7#6O_!;BnMa{l#2w_1i7qi(0~i=4V#_rR5h<7plTe_><+a{oEVrgxcaB82J7l zY!wC8VH#?Hd8j+M*Xoy`K58FDO<<+vYf$~SpjPU2)RyeAywch~MLiowQ7e0?AM3BB zxI%^Q{5rPBAiitcU>s`TY}5)3N3Bf0)fc1obP8%h^H6WceW*KJhPvQt)Op)c6MP2) zTb|DP>%VlQ12_HhOag2OSJ0X09C1Dzlz}e>8sHG3fa&3%V$lGE9=AkZdA10#L+=}Y= zHMY?EA2E=3n~F}T6Q!R{}a{>VS4)ba`pCI8Gkfx5sc^9t%2xrG|9LAE>Lp5|b) z5Ov-(Y{T`Pg%osx&)j7lPGDQ=&s$!1hL0lHuarePRnm_x07wB;ojO#4i8F4iDlh|O>j zYW!!0vHmKovWgc`Td@(DgYz%!k5R+j|ND(WJ-rX1?qnGA}3G-oieXrCiyLE&&YNAWuyA#T0Ran&Lq^(oH<+%flL~h=hjJnVkb2oM*uS9LZb<|$pLcV95sFCi{k48Q; zog&ov&zkE{E4B>-@BgP1G@~C-1BQ%pmnH&rCtb}jeEd6 zZuM7D_2cS+lzCJ<|RqS*_XsgsTxa4c%?=2`w{)Yh%XhWILKMc*-RquTr5 z;W`-gr8EMgxV|%qLJTgp4y#cEtuuF`?(}{0bJS0*Q>Y35jJiO`X!jYYi<)RlRC^L? zi~5=cIE{P`dNuG73hMX`D!*vnL=7BT;MRwu^5$k+j3$q_JO}k`j5Nzpd%XcQ?t7?} zJA%o0y@2;$h4?~u=69j?b{4AR(>M;dqApx_jQjIB5_O>*RQ){|j^)@G|Ae~ZHK>)` zg_^(z*b|SU&Wk8w{p(X`QsjQw#GyL�HpU7NAzB)Y|7`J@Wfe13h8&%TW_pYxz#( z!`0c3T`>Gk_s05QBKcS^1wC9#Q5`m71Rg;ReA>K-n%Fhe1@wWg_9m$MR@f9fT78x| z6gBZtsByqYF467{KoPhQ2lDLPnuW@RC{+b-5h2X znNyKx!|N=dpaGVnCa}@mhPuPI&3$I2wSQ!Ofx6%+YrkUt+q{k1s?fXKevMJz4KWzX z^_|#2f#pX{B*pS<)P!;^FS7PxbAi=Af*NocY9dcrzS`Q?nw!imsI7iOx!(U%6m+2r zr~#_XAb!p$k1$)J`X!)NCfVxKEYC(wBp3DepeRuLvE#x;U53PcfIiTix92#E|HiOSC1bh=GKTgDy^2 z`b@QcA6ea-W|Emr`-fKcVk&tb%il5^Q@4lmtHd)z8xK9TjMHuKE0kvuor%drDfMw! zef(mDcQKFXPAnz#K2M=*0tA>?z3 zCn&cj{z?oduYuLazpTKATi};-0j{&UGWxzmITqUziNrGUp*RWewSMvB-c}^XiTNaN zV-IXV)FwV5UqhTGlF2iO!<6e2gD4Nc&xsF+nM8ZyBBA3w;vr%l{R)UbtCFK7(TQ9~ zxbA;8g?9p}`)34=X+(QsB313M4xwWj7FxO7jG%rY<(5QiVu02A0%!34lP3`GE64iQ z{s`&X!1_~oPL01gf+&xoV;%g1)!%I=CR!f&x}}_MxoAP37x4?C7Ew;=a+N90jAn;1>`5K(w)d|j|Z9H+Ca$_Q% z_?g&2=$J!Hq&*vpRlzZq=oBdZ?@tZ-lo0OWb=d_&i5NF^GU>3yI%QI~iui$efyg12 z6HgHz6FMU3dp9l)WbU7?H1`{0jbq zh$4;KIlguI@82bq8d;x}l;;z@$X8?d{rveI(T>RXpNM(P(TOd64<+{YA4+^B*#Bb6oM3;;-YlCP}aQvZYf&v|@{Gw1rQXD0bl1|<0(7!c|4ug}`#@fQsm>hYy!=lQm0XVytf z?vj)g-MvRzQi|_ZcGHNvXUvH1J9}!zTnb$$PxmDcNsJg?GN<(3lG3SZ(Tk@SXXW}P z4H@S@IHbzszdAH3$R9D{{UHCjys9Ao&-oXEe3uGhe8UQR`d1c?3-(8jjSuz@7@z6! zZ=NtC$k(-`%(tgxmOpCpZI3T@YPs+2sr`H*)8c&nr``7Fm%irlhs`MUG(BDMcjw$g Z6=!y@bk6Ml+jq Date: Fri, 29 Jun 2012 15:01:55 +0200 Subject: [PATCH 23/24] Updated AUTHORS --- AUTHORS | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/AUTHORS b/AUTHORS index 8e313d6772f..eca3ecfa9b3 100644 --- a/AUTHORS +++ b/AUTHORS @@ -26,6 +26,8 @@ Contributors (in alphabetical order): * Alberto Paro * Alessandro Ronchi * Aleš Kocjančič +* Alexandre Leray +* Alexey Subbotin * Alvin Mites * Andrew Cassidy * Andrew Schoen @@ -42,7 +44,9 @@ Contributors (in alphabetical order): * beshrkayali * Bob Karreman * Bouke Haarsma +* Braden MacDonald * brightwhitefox +* Calvin Cheng * Chanita Siridechkun * Charpentier Johan * Cheng-Chia Tseng @@ -51,7 +55,6 @@ Contributors (in alphabetical order): * Chris Wesseling * Christof Hagedorn * Conrado Bührer -* Daniele Procida * DaNmarner * Darryl Woods * David Jean Louis @@ -63,15 +66,22 @@ Contributors (in alphabetical order): * Egor V. Nazarkin * Ekrem Seren * Erik Allik +* Eugen MechanisM * Evandro Miquelito +* F. Gabriel Gosselin * f4nt * fcurella * Filip Kazimierczak * Frank Bieniek +* Gabe Jackson * Gabriel Hurley * GaretJax +* Geoffrey Hing * George Marshall * Gerard Świderski +* guandalino +* hedberg +* Herbert Poul * homebrew79 * hysia * Iacopo Spalletti @@ -133,6 +143,7 @@ Contributors (in alphabetical order): * mrlundis * MW * neoprolog +* Nickolay V. Shmyrev * Orne Brocaar * padelt * Paolo @@ -153,7 +164,9 @@ Contributors (in alphabetical order): * Rebecca Breu * Remco Wendt * Restless Being +* Robert Clark * Robert Pogorzelski +* Robin Lewis * Rodolfo Carvalho * rtpm * Samuel Lüscher @@ -173,11 +186,13 @@ Contributors (in alphabetical order): * ssteinerX * Stavros Korokithakis * Stephan Jaekel +* Stephen Muss * Steve R. Jones * Steve Steiner * Tanel Külaots * Thomas Parslow * timesong +* Tim Davies * Tino de Bruijn * tiret * Ulrich Petri From 32239cb5ff18e9e29ed5d2a6ffb5d230c61d8db2 Mon Sep 17 00:00:00 2001 From: Jonas Obrist Date: Fri, 29 Jun 2012 15:30:22 +0200 Subject: [PATCH 24/24] 2.3 Final --- cms/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cms/__init__.py b/cms/__init__.py index 5ff0c163073..fb2827e6a3e 100644 --- a/cms/__init__.py +++ b/cms/__init__.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -__version__ = '2.3rc2.post0' +__version__ = '2.3' # patch settings try: