From 2f5b2896593f25b2fa7749a583d894ef7ac6f88d Mon Sep 17 00:00:00 2001 From: Daniele Andreotti Date: Mon, 31 Aug 2020 20:43:21 +0200 Subject: [PATCH 01/10] [chg] changed translations --- Products/Poi/locales/it/LC_MESSAGES/Poi.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Products/Poi/locales/it/LC_MESSAGES/Poi.po b/Products/Poi/locales/it/LC_MESSAGES/Poi.po index 7837c22f..ed95d51f 100644 --- a/Products/Poi/locales/it/LC_MESSAGES/Poi.po +++ b/Products/Poi/locales/it/LC_MESSAGES/Poi.po @@ -214,7 +214,7 @@ msgstr "Se necessario, seleziona un cambio di stato nella richiesta alla quale s #. Default: "Select the area this issue is relevant to." #: ./content/issue.py:103 msgid "Poi_help_issue_area" -msgstr "Selezionare l'area per la quale questa richiesta è rilevante." +msgstr "Selezionare l'area a cui indirizzare la richiesta." #. Default: "Select which person, if any, is assigned to this issue." #: ./content/issue.py:140 @@ -275,7 +275,7 @@ msgstr "La versione di questa richiesta sarà risolta in " #. Default: "Enter a short, descriptive title for the issue. A good title will make it easier for project managers to identify and respond to the issue." #: ./content/issue.py:68 msgid "Poi_help_issue_title" -msgstr "Inserisci un breve titolo descrittivo della richiesta. Un buon titolo renderà più semplice per il project manager identificare e rispondere alla richiesta." +msgstr "Inserisci un breve titolo descrittivo della richiesta. Un buon titolo renderà più semplice per [i gestori] identificare e rispondere alla richiesta." #. Default: "Select the type of issue." #: ./content/issue.py:110 @@ -585,7 +585,7 @@ msgstr "Invia" #: ./browser/templates/poi_tracker_view.pt:122 msgid "Submit new issue" -msgstr "Genera una nuova richiesta" +msgstr "Invia una nuova richiesta" #: ./browser/response.py:421 msgid "Target release" From f1bd6cd805b4eabaf7b7466510c416d0170b2e9b Mon Sep 17 00:00:00 2001 From: Daniele Andreotti Date: Tue, 1 Sep 2020 17:39:28 +0200 Subject: [PATCH 02/10] updated translations --- Products/Poi/browser/response.py | 4 +- Products/Poi/content/issue.py | 2 +- Products/Poi/content/tracker.py | 43 ++--- Products/Poi/locales/Poi.pot | 173 ++++++++++-------- Products/Poi/locales/ca/LC_MESSAGES/Poi.po | 173 ++++++++++-------- Products/Poi/locales/cs/LC_MESSAGES/Poi.po | 173 ++++++++++-------- Products/Poi/locales/da/LC_MESSAGES/Poi.po | 173 ++++++++++-------- Products/Poi/locales/de/LC_MESSAGES/Poi.po | 173 ++++++++++-------- Products/Poi/locales/es/LC_MESSAGES/Poi.po | 173 ++++++++++-------- Products/Poi/locales/fr/LC_MESSAGES/Poi.po | 173 ++++++++++-------- Products/Poi/locales/it/LC_MESSAGES/Poi.po | 173 ++++++++++-------- Products/Poi/locales/ja/LC_MESSAGES/Poi.po | 173 ++++++++++-------- Products/Poi/locales/nl/LC_MESSAGES/Poi.po | 173 ++++++++++-------- Products/Poi/locales/no/LC_MESSAGES/Poi.po | 173 ++++++++++-------- Products/Poi/locales/pl/LC_MESSAGES/Poi.po | 173 ++++++++++-------- Products/Poi/locales/pt/LC_MESSAGES/Poi.po | 173 ++++++++++-------- Products/Poi/locales/pt_BR/LC_MESSAGES/Poi.po | 173 ++++++++++-------- Products/Poi/locales/zh/LC_MESSAGES/Poi.po | 173 ++++++++++-------- Products/Poi/profiles/default/types/Issue.xml | 2 +- .../Poi/profiles/default/types/Tracker.xml | 2 +- 20 files changed, 1423 insertions(+), 1225 deletions(-) diff --git a/Products/Poi/browser/response.py b/Products/Poi/browser/response.py index 74270b19..2e201111 100644 --- a/Products/Poi/browser/response.py +++ b/Products/Poi/browser/response.py @@ -244,8 +244,10 @@ def transitions_for_display(self): transitions.append(dict(value='', label=PMF(u'No change'), checked="checked")) for tdef in wftool.getTransitionsFor(context): + label_value = tdef['title_or_id'] + label_value = PMF(label_value) transitions.append(dict(value=tdef['id'], - label=tdef['title_or_id'], checked='')) + label=label_value, checked='')) return transitions @property diff --git a/Products/Poi/content/issue.py b/Products/Poi/content/issue.py index 033de8d2..e6fd9830 100644 --- a/Products/Poi/content/issue.py +++ b/Products/Poi/content/issue.py @@ -157,7 +157,7 @@ class IIssue(model.Schema): u"resolution is available. Note that your email " u"address will not be displayed to others."), required=False, - defaultFactory=getContactEmail, + #defaultFactory=getContactEmail, ) read_permission(watchers='Poi.ModifyIssueWatchers') diff --git a/Products/Poi/content/tracker.py b/Products/Poi/content/tracker.py index ededa3c4..f9650de1 100644 --- a/Products/Poi/content/tracker.py +++ b/Products/Poi/content/tracker.py @@ -24,39 +24,32 @@ __docformat__ = 'plaintext' +from collections import Counter from time import time -from zope.component import adapts -from zope.component import provideAdapter -from zope.interface import implementer -from zope import schema -from zope.interface import Interface -from zope.interface import Invalid -from zope.interface import directlyProvides -from zope.interface import provider -from zope.schema.interfaces import IContextAwareDefaultFactory -from zope.schema.interfaces import IContextSourceBinder -from zope.schema.vocabulary import SimpleTerm -from zope.schema.vocabulary import SimpleVocabulary from borg.localrole.interfaces import ILocalRoleProvider - -from collections import Counter -from Products.Poi import PoiMessageFactory as _ +from collective.z3cform.datagridfield import DataGridFieldFactory, DictRow from plone import api -from Products.Poi.utils import is_email -from Products.Poi.utils import link_bugs -from Products.Poi.utils import link_repo from plone.app.textfield import RichText from plone.app.z3cform.widget import AjaxSelectFieldWidget -from plone.autoform.directives import widget -from plone.autoform.directives import write_permission, read_permission +from plone.autoform.directives import read_permission, widget, write_permission from plone.dexterity.content import Container from plone.memoize import ram from plone.protect.utils import addTokenToUrl from plone.supermodel import model from plone.z3cform.textlines import TextLinesFieldWidget -from collective.z3cform.datagridfield import DataGridFieldFactory, DictRow +from Products.Poi import PoiMessageFactory as _ +from Products.Poi.utils import is_email, link_bugs, link_repo from z3c.form import validator +from zope import schema +from zope.component import adapts, provideAdapter +from zope.i18n import translate +from zope.interface import (Interface, Invalid, directlyProvides, implementer, + provider) +from zope.schema.interfaces import (IContextAwareDefaultFactory, + IContextSourceBinder) +from zope.schema.vocabulary import SimpleTerm, SimpleVocabulary +from zope.globalrequest import getRequest DEFAULT_SEVERITIES = [ @@ -111,6 +104,7 @@ def default_severity(context): if hasattr(context, 'default_severity'): tracker = context return tracker.default_severity + #return translate(_(DEFAULT_SEVERITIES[0]), context=getRequest()), return DEFAULT_SEVERITIES[0] @@ -125,6 +119,13 @@ def possibleSeverities(context): elif hasattr(context, 'context'): tracker = context.context.getTracker() else: + # DEFAULT_SEVERITIES = [ + # translate(_(u'Critical'), context=getRequest()), + # translate(_(u'Important'), context=getRequest()), + # translate(_(u'Medium'), context=getRequest()), + # translate(_(u'Low'), context=getRequest()), + # ] + return SimpleVocabulary.fromValues(DEFAULT_SEVERITIES) return SimpleVocabulary.fromValues(tracker.available_severities) diff --git a/Products/Poi/locales/Poi.pot b/Products/Poi/locales/Poi.pot index 4da3d665..09b98f54 100644 --- a/Products/Poi/locales/Poi.pot +++ b/Products/Poi/locales/Poi.pot @@ -4,7 +4,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-08-27 12:56+0000\n" +"POT-Creation-Date: 2020-09-01 13:08+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI +ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,6 +17,10 @@ msgstr "" "Preferred-Encodings: utf-8 latin1\n" "Domain: Poi\n" +#: ./profiles/default/types/Tracker.xml +msgid "A Poi Issue Tracker" +msgstr "" + #: ./profiles.zcml:14 msgid "A friendly issue tracker" msgstr "" @@ -31,16 +35,20 @@ msgstr "" msgid "A new response has been given to the issue ${issue_title} in the tracker ${tracker_title} by ${response_author}." msgstr "" +#: ./profiles/default/types/Issue.xml +msgid "An Issue in a Poi Tracker" +msgstr "" + #: ./browser/templates/poi_email_new_response_html.pt:42 #: ./browser/templates/poi_email_new_response_plain.pt:23 msgid "An attachment has been added with id ${id}." msgstr "" -#: ./content/tracker.py:236 +#: ./content/tracker.py:230 msgid "Area" msgstr "" -#: ./browser/response.py:419 +#: ./browser/response.py:421 msgid "Assignee" msgstr "" @@ -48,11 +56,11 @@ msgstr "" msgid "Attachments" msgstr "" -#: ./browser/response.py:503 +#: ./browser/response.py:505 msgid "Changes saved to response id ${response_id}." msgstr "" -#: ./content/tracker.py:63 +#: ./content/tracker.py:56 msgid "Critical" msgstr "" @@ -60,7 +68,7 @@ msgstr "" msgid "Delete" msgstr "" -#: ./content/tracker.py:183 +#: ./content/tracker.py:177 msgid "Description" msgstr "" @@ -72,16 +80,17 @@ msgstr "" msgid "Edit issue" msgstr "" -#: ./content/tracker.py:310 +#: ./content/tracker.py:304 msgid "Enter users who will be responsible for solving the issues. Users also need to be added as Watchers to receive notifications." msgstr "" -#: ./content/tracker.py:64 +#: ./content/tracker.py:57 msgid "Important" msgstr "" #: ./browser/templates/poi_email_new_issue_html.pt:29 #: ./browser/templates/poi_email_resolved_issue_html.pt:32 +#: ./profiles/default/types/Issue.xml msgid "Issue" msgstr "" @@ -96,11 +105,11 @@ msgstr "" msgid "Issue Information" msgstr "" -#: ./content/tracker.py:258 +#: ./content/tracker.py:252 msgid "Issue Type" msgstr "" -#: ./browser/response.py:413 +#: ./browser/response.py:415 msgid "Issue state" msgstr "" @@ -110,19 +119,19 @@ msgstr "" msgid "Issue:" msgstr "" -#: ./content/tracker.py:66 +#: ./content/tracker.py:59 msgid "Low" msgstr "" -#: ./content/tracker.py:65 +#: ./content/tracker.py:58 msgid "Medium" msgstr "" -#: ./browser/response.py:533 +#: ./browser/response.py:535 msgid "No response selected for removal." msgstr "" -#: ./browser/response.py:489 +#: ./browser/response.py:491 msgid "No response selected for saving." msgstr "" @@ -130,7 +139,7 @@ msgstr "" msgid "No response selected." msgstr "" -#: ./browser/response.py:440 +#: ./browser/response.py:442 msgid "No response text added and no issue changes made." msgstr "" @@ -167,32 +176,32 @@ msgid "Poi_automatic_link_repository_help" msgstr "" #. Default: "Enter the issue topics/areas for this tracker." -#: ./content/tracker.py:220 +#: ./content/tracker.py:214 msgid "Poi_help_availableAreas" msgstr "" #. Default: "Enter the issue types for this tracker." -#: ./content/tracker.py:243 +#: ./content/tracker.py:237 msgid "Poi_help_availableIssueTypes" msgstr "" #. Default: "Enter the releases which issues can be assigned to, one per line. If no releases are entered, issues will not be organized by release." -#: ./content/tracker.py:293 +#: ./content/tracker.py:287 msgid "Poi_help_availableReleases" msgstr "" #. Default: "Enter the different type of issue severities that should be available, one per line." -#: ./content/tracker.py:266 +#: ./content/tracker.py:260 msgid "Poi_help_availableSeverities" msgstr "" #. Default: "Select the default severity for new issues." -#: ./content/tracker.py:280 +#: ./content/tracker.py:274 msgid "Poi_help_defaultSeverity" msgstr "" #. Default: "Enter any introductory help text you'd like to display on the tracker front page." -#: ./content/tracker.py:208 +#: ./content/tracker.py:202 msgid "Poi_help_helpText" msgstr "" @@ -202,12 +211,12 @@ msgid "Poi_help_issueTransition" msgstr "" #. Default: "Select the area this issue is relevant to." -#: ./content/issue.py:103 +#: ./content/issue.py:108 msgid "Poi_help_issue_area" msgstr "" #. Default: "Select which person, if any, is assigned to this issue." -#: ./content/issue.py:140 +#: ./content/issue.py:145 msgid "Poi_help_issue_assignee" msgstr "" @@ -217,67 +226,67 @@ msgid "Poi_help_issue_attachment" msgstr "" #. Default: "Please provide an email address where you can be contacted for further information or when a resolution is available. Note that your email address will not be displayed to others." -#: ./content/issue.py:149 +#: ./content/issue.py:154 msgid "Poi_help_issue_contact_email" msgstr "" #. Default: "Please provide further details. This field can create Automatic Links." -#: ./content/issue.py:86 +#: ./content/issue.py:91 msgid "Poi_help_issue_details" msgstr "" #. Default: "Last person to edit or add a Response" -#: ./content/issue.py:229 +#: ./content/issue.py:235 msgid "Poi_help_issue_last_actor" msgstr "" #. Default: "Link related issues." -#: ./content/issue.py:211 +#: ./content/issue.py:217 msgid "Poi_help_issue_related" msgstr "" #. Default: "Select the version the issue was found in." -#: ./content/issue.py:77 +#: ./content/issue.py:82 msgid "Poi_help_issue_release" msgstr "" #. Default: "Select the severity of this issue." -#: ./content/issue.py:119 +#: ./content/issue.py:124 msgid "Poi_help_issue_severity" msgstr "" #. Default: "If applicable, please provide the steps to reproduce the error or identify the issue, one per line. This field can create Automatic Links." -#: ./content/issue.py:94 +#: ./content/issue.py:99 msgid "Poi_help_issue_steps" msgstr "" #. Default: "Tags can be used to add arbitrary categorisation to issues. The list below shows existing tags which you can select, or you can add new ones." -#: ./content/issue.py:186 +#: ./content/issue.py:192 msgid "Poi_help_issue_subject" msgstr "" #. Default: "Release this issue is targetted to be fixed in." -#: ./content/issue.py:129 +#: ./content/issue.py:134 msgid "Poi_help_issue_target_release" msgstr "" #. Default: "Enter a short, descriptive title for the issue. A good title will make it easier for project managers to identify and respond to the issue." -#: ./content/issue.py:68 +#: ./content/issue.py:73 msgid "Poi_help_issue_title" msgstr "" #. Default: "Select the type of issue." -#: ./content/issue.py:110 +#: ./content/issue.py:115 msgid "Poi_help_issue_type" msgstr "" #. Default: "Enter the user ids of members who are watching this issue, one per line. E-mail addresses are allowed too. These persons will receive an email when a response is added to the issue. Members can also add themselves as watchers." -#: ./content/issue.py:164 +#: ./content/issue.py:170 msgid "Poi_help_issue_watchers" msgstr "" #. Default: "If given, and if 'Send notification emails' is selected, an email will be sent to this address each time a new issue or response is posted." -#: ./content/tracker.py:360 +#: ./content/tracker.py:354 msgid "Poi_help_mailingList" msgstr "" @@ -302,27 +311,27 @@ msgid "Poi_help_response" msgstr "" #. Default: "If selected, all tracker assignees above will receive an email for new issues and all issue responses. Issue watchers will receive an email for all issue responses. Issue submitters will receive an email when the issue has been resolved." -#: ./content/tracker.py:344 +#: ./content/tracker.py:338 msgid "Poi_help_sendNotificationEmails" msgstr "" #. Default: "Please enter the URL to the related repository, e.g.: https://github.com/collective/Products.Poi/commit/%(rev)s for Products.Poi." -#: ./content/tracker.py:374 +#: ./content/tracker.py:368 msgid "Poi_help_svnurl" msgstr "" #. Default: "Describe the purpose of this tracker" -#: ./content/tracker.py:199 +#: ./content/tracker.py:193 msgid "Poi_help_tracker_description" msgstr "" #. Default: "Enter a descriptive name for this tracker" -#: ./content/tracker.py:191 +#: ./content/tracker.py:185 msgid "Poi_help_tracker_title" msgstr "" #. Default: "Enter the user ids of members who are watching this tracker, one per line. E-mail addresses are allowed too. These persons will receive an email when an issue or response is added to the tracker. Members can also add themselves as watchers." -#: ./content/tracker.py:325 +#: ./content/tracker.py:319 msgid "Poi_help_tracker_watchers" msgstr "" @@ -332,32 +341,32 @@ msgid "Poi_issues_label" msgstr "" #. Default: "Assignees" -#: ./content/tracker.py:309 +#: ./content/tracker.py:303 msgid "Poi_label_assignees" msgstr "" #. Default: "Areas" -#: ./content/tracker.py:218 +#: ./content/tracker.py:212 msgid "Poi_label_availableAreas" msgstr "" #. Default: "Issue types" -#: ./content/tracker.py:241 +#: ./content/tracker.py:235 msgid "Poi_label_availableIssueTypes" msgstr "" #. Default: "Available releases" -#: ./content/tracker.py:289 +#: ./content/tracker.py:283 msgid "Poi_label_availableReleases" msgstr "" #. Default: "Available severities" -#: ./content/tracker.py:263 +#: ./content/tracker.py:257 msgid "Poi_label_availableSeverities" msgstr "" #. Default: "Default severity" -#: ./content/tracker.py:275 +#: ./content/tracker.py:269 msgid "Poi_label_defaultSeverity" msgstr "" @@ -367,82 +376,82 @@ msgid "Poi_label_issueTransition" msgstr "" #. Default: "Area" -#: ./content/issue.py:102 +#: ./content/issue.py:107 msgid "Poi_label_issue_area" msgstr "" #. Default: "Assignee" -#: ./content/issue.py:139 +#: ./content/issue.py:144 msgid "Poi_label_issue_assignee" msgstr "" #. Default: "Contact Email" -#: ./content/issue.py:148 +#: ./content/issue.py:153 msgid "Poi_label_issue_contact_email" msgstr "" #. Default: "Details" -#: ./content/issue.py:85 +#: ./content/issue.py:90 msgid "Poi_label_issue_details" msgstr "" #. Default: "Leave this field empty" -#: ./content/issue.py:221 +#: ./content/issue.py:227 msgid "Poi_label_issue_empty" msgstr "" #. Default: "Last Actor" -#: ./content/issue.py:227 +#: ./content/issue.py:233 msgid "Poi_label_issue_last_actor" msgstr "" #. Default: "Related Issue(s)" -#: ./content/issue.py:210 +#: ./content/issue.py:216 msgid "Poi_label_issue_related" msgstr "" #. Default: "Release" -#: ./content/issue.py:76 +#: ./content/issue.py:81 msgid "Poi_label_issue_release" msgstr "" #. Default: "Severity" -#: ./content/issue.py:118 +#: ./content/issue.py:123 msgid "Poi_label_issue_severity" msgstr "" #. Default: "Steps To Reproduce" -#: ./content/issue.py:93 +#: ./content/issue.py:98 msgid "Poi_label_issue_steps" msgstr "" #. Default: "Subject" -#: ./content/issue.py:185 +#: ./content/issue.py:191 msgid "Poi_label_issue_subject" msgstr "" #. Default: "Target Release" -#: ./content/issue.py:128 +#: ./content/issue.py:133 msgid "Poi_label_issue_target_release" msgstr "" #. Default: "Title" -#: ./content/issue.py:67 +#: ./content/issue.py:72 msgid "Poi_label_issue_title" msgstr "" #. Default: "Issue Type" -#: ./content/issue.py:109 +#: ./content/issue.py:114 msgid "Poi_label_issue_type" msgstr "" #. Default: "Watchers" -#: ./content/issue.py:163 +#: ./content/issue.py:169 msgid "Poi_label_issue_watchers" msgstr "" #. Default: "Mailing list" -#: ./content/tracker.py:356 +#: ./content/tracker.py:350 msgid "Poi_label_mailingList" msgstr "" @@ -462,17 +471,17 @@ msgid "Poi_label_newTargetRelease" msgstr "" #. Default: "Send notification emails" -#: ./content/tracker.py:340 +#: ./content/tracker.py:334 msgid "Poi_label_sendNotificationEmails" msgstr "" #. Default: "URL to Repository" -#: ./content/tracker.py:372 +#: ./content/tracker.py:366 msgid "Poi_label_svnurl" msgstr "" #. Default: "Watchers" -#: ./content/tracker.py:324 +#: ./content/tracker.py:318 msgid "Poi_label_tracker_watchers" msgstr "" @@ -486,7 +495,7 @@ msgstr "" msgid "Poi_repository_label" msgstr "" -#: ./browser/response.py:555 +#: ./browser/response.py:557 msgid "Removed response id ${response_id}." msgstr "" @@ -501,11 +510,11 @@ msgstr "" msgid "Response Information" msgstr "" -#: ./browser/response.py:493 +#: ./browser/response.py:495 msgid "Response does not exist anymore; perhaps it was removed by another user." msgstr "" -#: ./browser/response.py:548 +#: ./browser/response.py:550 msgid "Response id ${response_id} does not exist so it cannot be removed." msgstr "" @@ -513,7 +522,7 @@ msgstr "" msgid "Response id ${response_id} does not exist." msgstr "" -#: ./browser/response.py:540 +#: ./browser/response.py:542 msgid "Response id ${response_id} is no integer so it cannot be removed." msgstr "" @@ -525,11 +534,11 @@ msgstr "" msgid "Search" msgstr "" -#: ./browser/response.py:418 +#: ./browser/response.py:420 msgid "Severity" msgstr "" -#: ./content/tracker.py:177 +#: ./content/tracker.py:171 msgid "Short Name" msgstr "" @@ -541,7 +550,7 @@ msgstr "" msgid "Submit new issue" msgstr "" -#: ./browser/response.py:421 +#: ./browser/response.py:423 msgid "Target release" msgstr "" @@ -556,20 +565,24 @@ msgstr "" msgid "This is an automated email, please do not reply." msgstr "" -#: ./content/tracker.py:180 +#: ./content/tracker.py:174 msgid "Title" msgstr "" -#: ./browser/response.py:527 +#: ./profiles/default/types/Tracker.xml +msgid "Tracker" +msgstr "" + +#: ./browser/response.py:529 msgid "You are not allowed to delete responses." msgstr "" -#: ./browser/response.py:483 +#: ./browser/response.py:485 msgid "You are not allowed to edit responses." msgstr "" #. Default: "Automatic linking" -#: ./browser/templates/automatic_links_help_view.pt:11 +#: ./browser/templates/automatic_links_help_view.pt:16 msgid "authomatic_linking_label" msgstr "" @@ -579,7 +592,7 @@ msgid "batch_x_items_matching_your_criteria" msgstr "" #. Default: "Description" -#: ./content/tracker.py:198 +#: ./content/tracker.py:192 msgid "description" msgstr "" @@ -594,7 +607,7 @@ msgid "description_no_results_found" msgstr "" #. Default: "Help Text" -#: ./content/tracker.py:207 +#: ./content/tracker.py:201 msgid "help_text" msgstr "" @@ -1045,7 +1058,7 @@ msgid "stop_watching_this" msgstr "" #. Default: "Title" -#: ./content/tracker.py:190 +#: ./content/tracker.py:184 msgid "title" msgstr "" diff --git a/Products/Poi/locales/ca/LC_MESSAGES/Poi.po b/Products/Poi/locales/ca/LC_MESSAGES/Poi.po index 8cdad873..2335d4ea 100644 --- a/Products/Poi/locales/ca/LC_MESSAGES/Poi.po +++ b/Products/Poi/locales/ca/LC_MESSAGES/Poi.po @@ -4,7 +4,7 @@ msgid "" msgstr "" "Project-Id-Version: Products.Poi 2.0\n" -"POT-Creation-Date: 2020-08-27 12:56+0000\n" +"POT-Creation-Date: 2020-09-01 13:08+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI +ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -18,6 +18,10 @@ msgstr "" "Domain: Poi\n" "Language: \n" +#: ./profiles/default/types/Tracker.xml +msgid "A Poi Issue Tracker" +msgstr "" + #: ./profiles.zcml:14 msgid "A friendly issue tracker" msgstr "" @@ -32,16 +36,20 @@ msgstr "" msgid "A new response has been given to the issue ${issue_title} in the tracker ${tracker_title} by ${response_author}." msgstr "" +#: ./profiles/default/types/Issue.xml +msgid "An Issue in a Poi Tracker" +msgstr "" + #: ./browser/templates/poi_email_new_response_html.pt:42 #: ./browser/templates/poi_email_new_response_plain.pt:23 msgid "An attachment has been added with id ${id}." msgstr "" -#: ./content/tracker.py:236 +#: ./content/tracker.py:230 msgid "Area" msgstr "" -#: ./browser/response.py:419 +#: ./browser/response.py:421 msgid "Assignee" msgstr "" @@ -50,11 +58,11 @@ msgid "Attachments" msgstr "" #. Default: "" -#: ./browser/response.py:503 +#: ./browser/response.py:505 msgid "Changes saved to response id ${response_id}." msgstr "" -#: ./content/tracker.py:63 +#: ./content/tracker.py:56 msgid "Critical" msgstr "" @@ -62,7 +70,7 @@ msgstr "" msgid "Delete" msgstr "" -#: ./content/tracker.py:183 +#: ./content/tracker.py:177 msgid "Description" msgstr "" @@ -74,16 +82,17 @@ msgstr "" msgid "Edit issue" msgstr "" -#: ./content/tracker.py:310 +#: ./content/tracker.py:304 msgid "Enter users who will be responsible for solving the issues. Users also need to be added as Watchers to receive notifications." msgstr "" -#: ./content/tracker.py:64 +#: ./content/tracker.py:57 msgid "Important" msgstr "" #: ./browser/templates/poi_email_new_issue_html.pt:29 #: ./browser/templates/poi_email_resolved_issue_html.pt:32 +#: ./profiles/default/types/Issue.xml msgid "Issue" msgstr "" @@ -98,11 +107,11 @@ msgstr "" msgid "Issue Information" msgstr "" -#: ./content/tracker.py:258 +#: ./content/tracker.py:252 msgid "Issue Type" msgstr "" -#: ./browser/response.py:413 +#: ./browser/response.py:415 msgid "Issue state" msgstr "" @@ -112,19 +121,19 @@ msgstr "" msgid "Issue:" msgstr "" -#: ./content/tracker.py:66 +#: ./content/tracker.py:59 msgid "Low" msgstr "" -#: ./content/tracker.py:65 +#: ./content/tracker.py:58 msgid "Medium" msgstr "" -#: ./browser/response.py:533 +#: ./browser/response.py:535 msgid "No response selected for removal." msgstr "" -#: ./browser/response.py:489 +#: ./browser/response.py:491 msgid "No response selected for saving." msgstr "" @@ -132,7 +141,7 @@ msgstr "" msgid "No response selected." msgstr "" -#: ./browser/response.py:440 +#: ./browser/response.py:442 msgid "No response text added and no issue changes made." msgstr "" @@ -169,32 +178,32 @@ msgid "Poi_automatic_link_repository_help" msgstr "" #. Default: "Enter the issue topics/areas for this tracker." -#: ./content/tracker.py:220 +#: ./content/tracker.py:214 msgid "Poi_help_availableAreas" msgstr "" #. Default: "Enter the issue types for this tracker." -#: ./content/tracker.py:243 +#: ./content/tracker.py:237 msgid "Poi_help_availableIssueTypes" msgstr "" #. Default: "Enter the releases which issues can be assigned to, one per line. If no releases are entered, issues will not be organized by release." -#: ./content/tracker.py:293 +#: ./content/tracker.py:287 msgid "Poi_help_availableReleases" msgstr "" #. Default: "Enter the different type of issue severities that should be available, one per line." -#: ./content/tracker.py:266 +#: ./content/tracker.py:260 msgid "Poi_help_availableSeverities" msgstr "" #. Default: "Select the default severity for new issues." -#: ./content/tracker.py:280 +#: ./content/tracker.py:274 msgid "Poi_help_defaultSeverity" msgstr "" #. Default: "Enter any introductory help text you'd like to display on the tracker front page." -#: ./content/tracker.py:208 +#: ./content/tracker.py:202 msgid "Poi_help_helpText" msgstr "" @@ -204,12 +213,12 @@ msgid "Poi_help_issueTransition" msgstr "" #. Default: "Select the area this issue is relevant to." -#: ./content/issue.py:103 +#: ./content/issue.py:108 msgid "Poi_help_issue_area" msgstr "" #. Default: "Select which person, if any, is assigned to this issue." -#: ./content/issue.py:140 +#: ./content/issue.py:145 msgid "Poi_help_issue_assignee" msgstr "" @@ -219,67 +228,67 @@ msgid "Poi_help_issue_attachment" msgstr "" #. Default: "Please provide an email address where you can be contacted for further information or when a resolution is available. Note that your email address will not be displayed to others." -#: ./content/issue.py:149 +#: ./content/issue.py:154 msgid "Poi_help_issue_contact_email" msgstr "" #. Default: "Please provide further details. This field can create Automatic Links." -#: ./content/issue.py:86 +#: ./content/issue.py:91 msgid "Poi_help_issue_details" msgstr "" #. Default: "Last person to edit or add a Response" -#: ./content/issue.py:229 +#: ./content/issue.py:235 msgid "Poi_help_issue_last_actor" msgstr "" #. Default: "Link related issues." -#: ./content/issue.py:211 +#: ./content/issue.py:217 msgid "Poi_help_issue_related" msgstr "" #. Default: "Select the version the issue was found in." -#: ./content/issue.py:77 +#: ./content/issue.py:82 msgid "Poi_help_issue_release" msgstr "" #. Default: "Select the severity of this issue." -#: ./content/issue.py:119 +#: ./content/issue.py:124 msgid "Poi_help_issue_severity" msgstr "" #. Default: "If applicable, please provide the steps to reproduce the error or identify the issue, one per line. This field can create Automatic Links." -#: ./content/issue.py:94 +#: ./content/issue.py:99 msgid "Poi_help_issue_steps" msgstr "" #. Default: "Tags can be used to add arbitrary categorisation to issues. The list below shows existing tags which you can select, or you can add new ones." -#: ./content/issue.py:186 +#: ./content/issue.py:192 msgid "Poi_help_issue_subject" msgstr "" #. Default: "Release this issue is targetted to be fixed in." -#: ./content/issue.py:129 +#: ./content/issue.py:134 msgid "Poi_help_issue_target_release" msgstr "" #. Default: "Enter a short, descriptive title for the issue. A good title will make it easier for project managers to identify and respond to the issue." -#: ./content/issue.py:68 +#: ./content/issue.py:73 msgid "Poi_help_issue_title" msgstr "" #. Default: "Select the type of issue." -#: ./content/issue.py:110 +#: ./content/issue.py:115 msgid "Poi_help_issue_type" msgstr "" #. Default: "Enter the user ids of members who are watching this issue, one per line. E-mail addresses are allowed too. These persons will receive an email when a response is added to the issue. Members can also add themselves as watchers." -#: ./content/issue.py:164 +#: ./content/issue.py:170 msgid "Poi_help_issue_watchers" msgstr "" #. Default: "If given, and if 'Send notification emails' is selected, an email will be sent to this address each time a new issue or response is posted." -#: ./content/tracker.py:360 +#: ./content/tracker.py:354 msgid "Poi_help_mailingList" msgstr "" @@ -304,27 +313,27 @@ msgid "Poi_help_response" msgstr "" #. Default: "If selected, all tracker assignees above will receive an email for new issues and all issue responses. Issue watchers will receive an email for all issue responses. Issue submitters will receive an email when the issue has been resolved." -#: ./content/tracker.py:344 +#: ./content/tracker.py:338 msgid "Poi_help_sendNotificationEmails" msgstr "" #. Default: "Please enter the URL to the related repository, e.g.: https://github.com/collective/Products.Poi/commit/%(rev)s for Products.Poi." -#: ./content/tracker.py:374 +#: ./content/tracker.py:368 msgid "Poi_help_svnurl" msgstr "" #. Default: "Describe the purpose of this tracker" -#: ./content/tracker.py:199 +#: ./content/tracker.py:193 msgid "Poi_help_tracker_description" msgstr "" #. Default: "Enter a descriptive name for this tracker" -#: ./content/tracker.py:191 +#: ./content/tracker.py:185 msgid "Poi_help_tracker_title" msgstr "" #. Default: "Enter the user ids of members who are watching this tracker, one per line. E-mail addresses are allowed too. These persons will receive an email when an issue or response is added to the tracker. Members can also add themselves as watchers." -#: ./content/tracker.py:325 +#: ./content/tracker.py:319 msgid "Poi_help_tracker_watchers" msgstr "" @@ -334,32 +343,32 @@ msgid "Poi_issues_label" msgstr "" #. Default: "Assignees" -#: ./content/tracker.py:309 +#: ./content/tracker.py:303 msgid "Poi_label_assignees" msgstr "" #. Default: "Areas" -#: ./content/tracker.py:218 +#: ./content/tracker.py:212 msgid "Poi_label_availableAreas" msgstr "" #. Default: "Issue types" -#: ./content/tracker.py:241 +#: ./content/tracker.py:235 msgid "Poi_label_availableIssueTypes" msgstr "" #. Default: "Available releases" -#: ./content/tracker.py:289 +#: ./content/tracker.py:283 msgid "Poi_label_availableReleases" msgstr "" #. Default: "Available severities" -#: ./content/tracker.py:263 +#: ./content/tracker.py:257 msgid "Poi_label_availableSeverities" msgstr "" #. Default: "Default severity" -#: ./content/tracker.py:275 +#: ./content/tracker.py:269 msgid "Poi_label_defaultSeverity" msgstr "" @@ -369,82 +378,82 @@ msgid "Poi_label_issueTransition" msgstr "" #. Default: "Area" -#: ./content/issue.py:102 +#: ./content/issue.py:107 msgid "Poi_label_issue_area" msgstr "" #. Default: "Assignee" -#: ./content/issue.py:139 +#: ./content/issue.py:144 msgid "Poi_label_issue_assignee" msgstr "" #. Default: "Contact Email" -#: ./content/issue.py:148 +#: ./content/issue.py:153 msgid "Poi_label_issue_contact_email" msgstr "" #. Default: "Details" -#: ./content/issue.py:85 +#: ./content/issue.py:90 msgid "Poi_label_issue_details" msgstr "" #. Default: "Leave this field empty" -#: ./content/issue.py:221 +#: ./content/issue.py:227 msgid "Poi_label_issue_empty" msgstr "" #. Default: "Last Actor" -#: ./content/issue.py:227 +#: ./content/issue.py:233 msgid "Poi_label_issue_last_actor" msgstr "" #. Default: "Related Issue(s)" -#: ./content/issue.py:210 +#: ./content/issue.py:216 msgid "Poi_label_issue_related" msgstr "" #. Default: "Release" -#: ./content/issue.py:76 +#: ./content/issue.py:81 msgid "Poi_label_issue_release" msgstr "" #. Default: "Severity" -#: ./content/issue.py:118 +#: ./content/issue.py:123 msgid "Poi_label_issue_severity" msgstr "" #. Default: "Steps To Reproduce" -#: ./content/issue.py:93 +#: ./content/issue.py:98 msgid "Poi_label_issue_steps" msgstr "" #. Default: "Subject" -#: ./content/issue.py:185 +#: ./content/issue.py:191 msgid "Poi_label_issue_subject" msgstr "" #. Default: "Target Release" -#: ./content/issue.py:128 +#: ./content/issue.py:133 msgid "Poi_label_issue_target_release" msgstr "" #. Default: "Title" -#: ./content/issue.py:67 +#: ./content/issue.py:72 msgid "Poi_label_issue_title" msgstr "" #. Default: "Issue Type" -#: ./content/issue.py:109 +#: ./content/issue.py:114 msgid "Poi_label_issue_type" msgstr "" #. Default: "Watchers" -#: ./content/issue.py:163 +#: ./content/issue.py:169 msgid "Poi_label_issue_watchers" msgstr "" #. Default: "Mailing list" -#: ./content/tracker.py:356 +#: ./content/tracker.py:350 msgid "Poi_label_mailingList" msgstr "" @@ -464,17 +473,17 @@ msgid "Poi_label_newTargetRelease" msgstr "" #. Default: "Send notification emails" -#: ./content/tracker.py:340 +#: ./content/tracker.py:334 msgid "Poi_label_sendNotificationEmails" msgstr "" #. Default: "URL to Repository" -#: ./content/tracker.py:372 +#: ./content/tracker.py:366 msgid "Poi_label_svnurl" msgstr "" #. Default: "Watchers" -#: ./content/tracker.py:324 +#: ./content/tracker.py:318 msgid "Poi_label_tracker_watchers" msgstr "" @@ -489,7 +498,7 @@ msgid "Poi_repository_label" msgstr "" #. Default: "" -#: ./browser/response.py:555 +#: ./browser/response.py:557 msgid "Removed response id ${response_id}." msgstr "" @@ -504,12 +513,12 @@ msgstr "" msgid "Response Information" msgstr "" -#: ./browser/response.py:493 +#: ./browser/response.py:495 msgid "Response does not exist anymore; perhaps it was removed by another user." msgstr "" #. Default: "" -#: ./browser/response.py:548 +#: ./browser/response.py:550 msgid "Response id ${response_id} does not exist so it cannot be removed." msgstr "" @@ -519,7 +528,7 @@ msgid "Response id ${response_id} does not exist." msgstr "" #. Default: "" -#: ./browser/response.py:540 +#: ./browser/response.py:542 msgid "Response id ${response_id} is no integer so it cannot be removed." msgstr "" @@ -532,11 +541,11 @@ msgstr "" msgid "Search" msgstr "" -#: ./browser/response.py:418 +#: ./browser/response.py:420 msgid "Severity" msgstr "" -#: ./content/tracker.py:177 +#: ./content/tracker.py:171 msgid "Short Name" msgstr "" @@ -548,7 +557,7 @@ msgstr "" msgid "Submit new issue" msgstr "" -#: ./browser/response.py:421 +#: ./browser/response.py:423 msgid "Target release" msgstr "" @@ -563,20 +572,24 @@ msgstr "" msgid "This is an automated email, please do not reply." msgstr "" -#: ./content/tracker.py:180 +#: ./content/tracker.py:174 msgid "Title" msgstr "" -#: ./browser/response.py:527 +#: ./profiles/default/types/Tracker.xml +msgid "Tracker" +msgstr "" + +#: ./browser/response.py:529 msgid "You are not allowed to delete responses." msgstr "" -#: ./browser/response.py:483 +#: ./browser/response.py:485 msgid "You are not allowed to edit responses." msgstr "" #. Default: "Automatic linking" -#: ./browser/templates/automatic_links_help_view.pt:11 +#: ./browser/templates/automatic_links_help_view.pt:16 msgid "authomatic_linking_label" msgstr "" @@ -586,7 +599,7 @@ msgid "batch_x_items_matching_your_criteria" msgstr "" #. Default: "Description" -#: ./content/tracker.py:198 +#: ./content/tracker.py:192 msgid "description" msgstr "" @@ -601,7 +614,7 @@ msgid "description_no_results_found" msgstr "" #. Default: "Help Text" -#: ./content/tracker.py:207 +#: ./content/tracker.py:201 msgid "help_text" msgstr "" @@ -1052,7 +1065,7 @@ msgid "stop_watching_this" msgstr "" #. Default: "Title" -#: ./content/tracker.py:190 +#: ./content/tracker.py:184 msgid "title" msgstr "" diff --git a/Products/Poi/locales/cs/LC_MESSAGES/Poi.po b/Products/Poi/locales/cs/LC_MESSAGES/Poi.po index be9653fe..8bf176ff 100644 --- a/Products/Poi/locales/cs/LC_MESSAGES/Poi.po +++ b/Products/Poi/locales/cs/LC_MESSAGES/Poi.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Poi\n" -"POT-Creation-Date: 2020-08-27 12:56+0000\n" +"POT-Creation-Date: 2020-09-01 13:08+0000\n" "PO-Revision-Date: 2010-10-19 14:38+0100\n" "Last-Translator: Lukas Zdych \n" "Language-Team: DMS4U \n" @@ -17,6 +17,10 @@ msgstr "" "Domain: Poi\n" "Language: \n" +#: ./profiles/default/types/Tracker.xml +msgid "A Poi Issue Tracker" +msgstr "" + #: ./profiles.zcml:14 msgid "A friendly issue tracker" msgstr "" @@ -31,16 +35,20 @@ msgstr "" msgid "A new response has been given to the issue ${issue_title} in the tracker ${tracker_title} by ${response_author}." msgstr "" +#: ./profiles/default/types/Issue.xml +msgid "An Issue in a Poi Tracker" +msgstr "" + #: ./browser/templates/poi_email_new_response_html.pt:42 #: ./browser/templates/poi_email_new_response_plain.pt:23 msgid "An attachment has been added with id ${id}." msgstr "" -#: ./content/tracker.py:236 +#: ./content/tracker.py:230 msgid "Area" msgstr "" -#: ./browser/response.py:419 +#: ./browser/response.py:421 msgid "Assignee" msgstr "" @@ -49,11 +57,11 @@ msgid "Attachments" msgstr "" #. Default: "" -#: ./browser/response.py:503 +#: ./browser/response.py:505 msgid "Changes saved to response id ${response_id}." msgstr "Změny byly uloženy do reakce s id ${response_id}." -#: ./content/tracker.py:63 +#: ./content/tracker.py:56 msgid "Critical" msgstr "" @@ -61,7 +69,7 @@ msgstr "" msgid "Delete" msgstr "Odstranit" -#: ./content/tracker.py:183 +#: ./content/tracker.py:177 msgid "Description" msgstr "" @@ -73,16 +81,17 @@ msgstr "Upravit" msgid "Edit issue" msgstr "Upravit úlohu" -#: ./content/tracker.py:310 +#: ./content/tracker.py:304 msgid "Enter users who will be responsible for solving the issues. Users also need to be added as Watchers to receive notifications." msgstr "" -#: ./content/tracker.py:64 +#: ./content/tracker.py:57 msgid "Important" msgstr "" #: ./browser/templates/poi_email_new_issue_html.pt:29 #: ./browser/templates/poi_email_resolved_issue_html.pt:32 +#: ./profiles/default/types/Issue.xml msgid "Issue" msgstr "" @@ -97,11 +106,11 @@ msgstr "" msgid "Issue Information" msgstr "" -#: ./content/tracker.py:258 +#: ./content/tracker.py:252 msgid "Issue Type" msgstr "" -#: ./browser/response.py:413 +#: ./browser/response.py:415 msgid "Issue state" msgstr "Stav úlohy" @@ -111,19 +120,19 @@ msgstr "Stav úlohy" msgid "Issue:" msgstr "" -#: ./content/tracker.py:66 +#: ./content/tracker.py:59 msgid "Low" msgstr "" -#: ./content/tracker.py:65 +#: ./content/tracker.py:58 msgid "Medium" msgstr "" -#: ./browser/response.py:533 +#: ./browser/response.py:535 msgid "No response selected for removal." msgstr "Nebyly vybrány žádné reakce k odstranění." -#: ./browser/response.py:489 +#: ./browser/response.py:491 msgid "No response selected for saving." msgstr "Nebyly vybrány žádné reakce k uložení." @@ -131,7 +140,7 @@ msgstr "Nebyly vybrány žádné reakce k uložení." msgid "No response selected." msgstr "Nebyla vybrána žádná reakce." -#: ./browser/response.py:440 +#: ./browser/response.py:442 msgid "No response text added and no issue changes made." msgstr "Nebyl zadán žádný text reakce ani provedeny změny úlohy." @@ -169,38 +178,38 @@ msgstr "" # ./content/PoiTracker.py #. Default: "Enter the issue topics/areas for this tracker." -#: ./content/tracker.py:220 +#: ./content/tracker.py:214 msgid "Poi_help_availableAreas" msgstr "Zadejte témata/oblasti pro úlohy v tomto manažeru úloh." # ./content/PoiTracker.py #. Default: "Enter the issue types for this tracker." -#: ./content/tracker.py:243 +#: ./content/tracker.py:237 msgid "Poi_help_availableIssueTypes" msgstr "Zadejte typy úloh pro tento manažer úloh." # ./content/PoiTracker.py #. Default: "Enter the releases which issues can be assigned to, one per line. If no releases are entered, issues will not be organized by release." -#: ./content/tracker.py:293 +#: ./content/tracker.py:287 #, fuzzy msgid "Poi_help_availableReleases" msgstr "Zadejte vydání verzí, ke kterým mohou být úlohy přiřazeny. Každé na samostatný řádek. Pokud nebudou zadána žádná vydání, úlohy podle nich nebudou organizovány." # ./content/PoiTracker.py #. Default: "Enter the different type of issue severities that should be available, one per line." -#: ./content/tracker.py:266 +#: ./content/tracker.py:260 msgid "Poi_help_availableSeverities" msgstr "Zadejte různé stupně důležitosti úloh, každý na samostatný řádek." # ./content/PoiTracker.py #. Default: "Select the default severity for new issues." -#: ./content/tracker.py:280 +#: ./content/tracker.py:274 msgid "Poi_help_defaultSeverity" msgstr "Zvolte výchozí důležitost pro nové úlohy." # ./content/PoiTracker.py #. Default: "Enter any introductory help text you'd like to display on the tracker front page." -#: ./content/tracker.py:208 +#: ./content/tracker.py:202 msgid "Poi_help_helpText" msgstr "Zadejte jakýkoli úvodní text, který bude zobrazen na úvodní stránce manažeru úloh." @@ -211,12 +220,12 @@ msgid "Poi_help_issueTransition" msgstr "Pokud je to vhodné, zvolte změnu stavu úlohy, které se tato reakce týká." #. Default: "Select the area this issue is relevant to." -#: ./content/issue.py:103 +#: ./content/issue.py:108 msgid "Poi_help_issue_area" msgstr "" #. Default: "Select which person, if any, is assigned to this issue." -#: ./content/issue.py:140 +#: ./content/issue.py:145 msgid "Poi_help_issue_assignee" msgstr "" @@ -226,69 +235,69 @@ msgid "Poi_help_issue_attachment" msgstr "" #. Default: "Please provide an email address where you can be contacted for further information or when a resolution is available. Note that your email address will not be displayed to others." -#: ./content/issue.py:149 +#: ./content/issue.py:154 msgid "Poi_help_issue_contact_email" msgstr "" #. Default: "Please provide further details. This field can create Automatic Links." -#: ./content/issue.py:86 +#: ./content/issue.py:91 msgid "Poi_help_issue_details" msgstr "" #. Default: "Last person to edit or add a Response" -#: ./content/issue.py:229 +#: ./content/issue.py:235 msgid "Poi_help_issue_last_actor" msgstr "" #. Default: "Link related issues." -#: ./content/issue.py:211 +#: ./content/issue.py:217 msgid "Poi_help_issue_related" msgstr "" #. Default: "Select the version the issue was found in." -#: ./content/issue.py:77 +#: ./content/issue.py:82 msgid "Poi_help_issue_release" msgstr "" #. Default: "Select the severity of this issue." -#: ./content/issue.py:119 +#: ./content/issue.py:124 msgid "Poi_help_issue_severity" msgstr "" #. Default: "If applicable, please provide the steps to reproduce the error or identify the issue, one per line. This field can create Automatic Links." -#: ./content/issue.py:94 +#: ./content/issue.py:99 msgid "Poi_help_issue_steps" msgstr "" #. Default: "Tags can be used to add arbitrary categorisation to issues. The list below shows existing tags which you can select, or you can add new ones." -#: ./content/issue.py:186 +#: ./content/issue.py:192 msgid "Poi_help_issue_subject" msgstr "" #. Default: "Release this issue is targetted to be fixed in." -#: ./content/issue.py:129 +#: ./content/issue.py:134 msgid "Poi_help_issue_target_release" msgstr "" # ./content/PoiIssue.py #. Default: "Enter a short, descriptive title for the issue. A good title will make it easier for project managers to identify and respond to the issue." -#: ./content/issue.py:68 +#: ./content/issue.py:73 msgid "Poi_help_issue_title" msgstr "Zadejte krátký, ale výstižný nadpis pro tuto úlohu. Dobrý nadpis usnadní správcům projektu rozpoznat a reagovat na tuto úlohu." #. Default: "Select the type of issue." -#: ./content/issue.py:110 +#: ./content/issue.py:115 msgid "Poi_help_issue_type" msgstr "" #. Default: "Enter the user ids of members who are watching this issue, one per line. E-mail addresses are allowed too. These persons will receive an email when a response is added to the issue. Members can also add themselves as watchers." -#: ./content/issue.py:164 +#: ./content/issue.py:170 msgid "Poi_help_issue_watchers" msgstr "" # ./content/PoiTracker.py #. Default: "If given, and if 'Send notification emails' is selected, an email will be sent to this address each time a new issue or response is posted." -#: ./content/tracker.py:360 +#: ./content/tracker.py:354 #, fuzzy msgid "Poi_help_mailingList" msgstr "Pokud je zadáno a pokud je zaškrtnuto i 'Zasílat emailová upozornění', bude na tuto adresu odeslán email při každé nové úloze nebo reakci. Správci zároveň obdrží individuální emaily. Pokud toto není žádoucí změťe je na techniky." @@ -319,31 +328,31 @@ msgstr "Prosíme níže zadejte vaší reakci" # ./content/PoiTracker.py #. Default: "If selected, all tracker assignees above will receive an email for new issues and all issue responses. Issue watchers will receive an email for all issue responses. Issue submitters will receive an email when the issue has been resolved." -#: ./content/tracker.py:344 +#: ./content/tracker.py:338 #, fuzzy msgid "Poi_help_sendNotificationEmails" msgstr "Pokud je zaškrtnuto, správci manažeru úloh obdrží email při každé nové úloze nebo reakci a autoři úloh obdrží email při každé nové reakci, pokud je úloha vyřešena nebo čekající na potvrzení. Technici obdrží email když jim je úloha přiřazena." # ./content/PoiTracker.py #. Default: "Please enter the URL to the related repository, e.g.: https://github.com/collective/Products.Poi/commit/%(rev)s for Products.Poi." -#: ./content/tracker.py:374 +#: ./content/tracker.py:368 #, fuzzy msgid "Poi_help_svnurl" msgstr "Prosíme zadejte Url souvisejícího SVN repositáře, např.: http://dev.plone.org/changeset/%(rev)s/collective pro produkty v Plone collective." #. Default: "Describe the purpose of this tracker" -#: ./content/tracker.py:199 +#: ./content/tracker.py:193 msgid "Poi_help_tracker_description" msgstr "Popište účel tohoto manažeru úloh." # ./content/PoiTracker.py #. Default: "Enter a descriptive name for this tracker" -#: ./content/tracker.py:191 +#: ./content/tracker.py:185 msgid "Poi_help_tracker_title" msgstr "Zadejte výstižné jméno pro tento manažer úloh." #. Default: "Enter the user ids of members who are watching this tracker, one per line. E-mail addresses are allowed too. These persons will receive an email when an issue or response is added to the tracker. Members can also add themselves as watchers." -#: ./content/tracker.py:325 +#: ./content/tracker.py:319 msgid "Poi_help_tracker_watchers" msgstr "" @@ -353,37 +362,37 @@ msgid "Poi_issues_label" msgstr "" #. Default: "Assignees" -#: ./content/tracker.py:309 +#: ./content/tracker.py:303 msgid "Poi_label_assignees" msgstr "" # ./content/PoiTracker.py #. Default: "Areas" -#: ./content/tracker.py:218 +#: ./content/tracker.py:212 msgid "Poi_label_availableAreas" msgstr "Oblasti" # ./content/PoiTracker.py #. Default: "Issue types" -#: ./content/tracker.py:241 +#: ./content/tracker.py:235 msgid "Poi_label_availableIssueTypes" msgstr "Typy úloh" # ./content/PoiTracker.py #. Default: "Available releases" -#: ./content/tracker.py:289 +#: ./content/tracker.py:283 msgid "Poi_label_availableReleases" msgstr "Dostupná vydání" # ./content/PoiTracker.py #. Default: "Available severities" -#: ./content/tracker.py:263 +#: ./content/tracker.py:257 msgid "Poi_label_availableSeverities" msgstr "Dostupné důležitosti" # ./content/PoiTracker.py #. Default: "Default severity" -#: ./content/tracker.py:275 +#: ./content/tracker.py:269 msgid "Poi_label_defaultSeverity" msgstr "Výchozí důležitost" @@ -394,84 +403,84 @@ msgid "Poi_label_issueTransition" msgstr "Změnit stav úlohy" #. Default: "Area" -#: ./content/issue.py:102 +#: ./content/issue.py:107 msgid "Poi_label_issue_area" msgstr "" #. Default: "Assignee" -#: ./content/issue.py:139 +#: ./content/issue.py:144 msgid "Poi_label_issue_assignee" msgstr "" #. Default: "Contact Email" -#: ./content/issue.py:148 +#: ./content/issue.py:153 msgid "Poi_label_issue_contact_email" msgstr "" #. Default: "Details" -#: ./content/issue.py:85 +#: ./content/issue.py:90 msgid "Poi_label_issue_details" msgstr "" #. Default: "Leave this field empty" -#: ./content/issue.py:221 +#: ./content/issue.py:227 msgid "Poi_label_issue_empty" msgstr "" #. Default: "Last Actor" -#: ./content/issue.py:227 +#: ./content/issue.py:233 msgid "Poi_label_issue_last_actor" msgstr "" #. Default: "Related Issue(s)" -#: ./content/issue.py:210 +#: ./content/issue.py:216 msgid "Poi_label_issue_related" msgstr "" #. Default: "Release" -#: ./content/issue.py:76 +#: ./content/issue.py:81 msgid "Poi_label_issue_release" msgstr "" #. Default: "Severity" -#: ./content/issue.py:118 +#: ./content/issue.py:123 msgid "Poi_label_issue_severity" msgstr "" #. Default: "Steps To Reproduce" -#: ./content/issue.py:93 +#: ./content/issue.py:98 msgid "Poi_label_issue_steps" msgstr "" #. Default: "Subject" -#: ./content/issue.py:185 +#: ./content/issue.py:191 msgid "Poi_label_issue_subject" msgstr "" #. Default: "Target Release" -#: ./content/issue.py:128 +#: ./content/issue.py:133 msgid "Poi_label_issue_target_release" msgstr "" # ./content/PoiIssue.py #. Default: "Title" -#: ./content/issue.py:67 +#: ./content/issue.py:72 msgid "Poi_label_issue_title" msgstr "Nadpis" #. Default: "Issue Type" -#: ./content/issue.py:109 +#: ./content/issue.py:114 msgid "Poi_label_issue_type" msgstr "" #. Default: "Watchers" -#: ./content/issue.py:163 +#: ./content/issue.py:169 msgid "Poi_label_issue_watchers" msgstr "" # ./content/PoiTracker.py #. Default: "Mailing list" -#: ./content/tracker.py:356 +#: ./content/tracker.py:350 msgid "Poi_label_mailingList" msgstr "Konference" @@ -495,19 +504,19 @@ msgstr "Změnit cílové vydání" # ./content/PoiTracker.py #. Default: "Send notification emails" -#: ./content/tracker.py:340 +#: ./content/tracker.py:334 msgid "Poi_label_sendNotificationEmails" msgstr "Zasílat emailová upozornění" # ./content/PoiTracker.py #. Default: "URL to Repository" -#: ./content/tracker.py:372 +#: ./content/tracker.py:366 #, fuzzy msgid "Poi_label_svnurl" msgstr "URL SVN repositáře" #. Default: "Watchers" -#: ./content/tracker.py:324 +#: ./content/tracker.py:318 msgid "Poi_label_tracker_watchers" msgstr "" @@ -522,7 +531,7 @@ msgid "Poi_repository_label" msgstr "" #. Default: "" -#: ./browser/response.py:555 +#: ./browser/response.py:557 msgid "Removed response id ${response_id}." msgstr "Reakce s id ${response_id} byla odstraněna." @@ -537,12 +546,12 @@ msgstr "" msgid "Response Information" msgstr "" -#: ./browser/response.py:493 +#: ./browser/response.py:495 msgid "Response does not exist anymore; perhaps it was removed by another user." msgstr "Reakce již neexistuje; je možné, že byla odstraněna jiným uživatelem." #. Default: "" -#: ./browser/response.py:548 +#: ./browser/response.py:550 msgid "Response id ${response_id} does not exist so it cannot be removed." msgstr "Reakce s id ${response_id} neexistuje a nemůže být tedy odstraněna." @@ -552,7 +561,7 @@ msgid "Response id ${response_id} does not exist." msgstr "Reakce s id ${reponse_id} neexistuje." #. Default: "" -#: ./browser/response.py:540 +#: ./browser/response.py:542 msgid "Response id ${response_id} is no integer so it cannot be removed." msgstr "Id reakce ${response_id} není celé číslo, a proto nemůže být odstraněna." @@ -565,11 +574,11 @@ msgstr "Id reakce ${response_id} není celé číslo." msgid "Search" msgstr "Hledat" -#: ./browser/response.py:418 +#: ./browser/response.py:420 msgid "Severity" msgstr "Důležitost" -#: ./content/tracker.py:177 +#: ./content/tracker.py:171 msgid "Short Name" msgstr "" @@ -581,7 +590,7 @@ msgstr "" msgid "Submit new issue" msgstr "Zadat novou úlohu" -#: ./browser/response.py:421 +#: ./browser/response.py:423 msgid "Target release" msgstr "Cílové vydání" @@ -596,20 +605,24 @@ msgstr "" msgid "This is an automated email, please do not reply." msgstr "" -#: ./content/tracker.py:180 +#: ./content/tracker.py:174 msgid "Title" msgstr "" -#: ./browser/response.py:527 +#: ./profiles/default/types/Tracker.xml +msgid "Tracker" +msgstr "" + +#: ./browser/response.py:529 msgid "You are not allowed to delete responses." msgstr "Nejste oprávněni odstraňovat reakce." -#: ./browser/response.py:483 +#: ./browser/response.py:485 msgid "You are not allowed to edit responses." msgstr "Nejste oprávněni upravovat reakce." #. Default: "Automatic linking" -#: ./browser/templates/automatic_links_help_view.pt:11 +#: ./browser/templates/automatic_links_help_view.pt:16 msgid "authomatic_linking_label" msgstr "" @@ -619,7 +632,7 @@ msgid "batch_x_items_matching_your_criteria" msgstr "" #. Default: "Description" -#: ./content/tracker.py:198 +#: ./content/tracker.py:192 msgid "description" msgstr "" @@ -634,7 +647,7 @@ msgid "description_no_results_found" msgstr "" #. Default: "Help Text" -#: ./content/tracker.py:207 +#: ./content/tracker.py:201 msgid "help_text" msgstr "" @@ -1087,7 +1100,7 @@ msgid "stop_watching_this" msgstr "" #. Default: "Title" -#: ./content/tracker.py:190 +#: ./content/tracker.py:184 msgid "title" msgstr "" diff --git a/Products/Poi/locales/da/LC_MESSAGES/Poi.po b/Products/Poi/locales/da/LC_MESSAGES/Poi.po index b4af9263..0085b629 100644 --- a/Products/Poi/locales/da/LC_MESSAGES/Poi.po +++ b/Products/Poi/locales/da/LC_MESSAGES/Poi.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: 1.1.2\n" -"POT-Creation-Date: 2020-08-27 12:56+0000\n" +"POT-Creation-Date: 2020-09-01 13:08+0000\n" "PO-Revision-Date: 2008-12-08 09:42+0100\n" "Last-Translator: Jonas Nielsen \n" "Language-Team: DA\n" @@ -21,6 +21,10 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "Language: \n" +#: ./profiles/default/types/Tracker.xml +msgid "A Poi Issue Tracker" +msgstr "" + #: ./profiles.zcml:14 msgid "A friendly issue tracker" msgstr "" @@ -35,16 +39,20 @@ msgstr "" msgid "A new response has been given to the issue ${issue_title} in the tracker ${tracker_title} by ${response_author}." msgstr "" +#: ./profiles/default/types/Issue.xml +msgid "An Issue in a Poi Tracker" +msgstr "" + #: ./browser/templates/poi_email_new_response_html.pt:42 #: ./browser/templates/poi_email_new_response_plain.pt:23 msgid "An attachment has been added with id ${id}." msgstr "" -#: ./content/tracker.py:236 +#: ./content/tracker.py:230 msgid "Area" msgstr "" -#: ./browser/response.py:419 +#: ./browser/response.py:421 msgid "Assignee" msgstr "" @@ -53,11 +61,11 @@ msgid "Attachments" msgstr "" #. Default: "" -#: ./browser/response.py:503 +#: ./browser/response.py:505 msgid "Changes saved to response id ${response_id}." msgstr "" -#: ./content/tracker.py:63 +#: ./content/tracker.py:56 msgid "Critical" msgstr "" @@ -65,7 +73,7 @@ msgstr "" msgid "Delete" msgstr "Slet" -#: ./content/tracker.py:183 +#: ./content/tracker.py:177 msgid "Description" msgstr "" @@ -77,16 +85,17 @@ msgstr "Rediger" msgid "Edit issue" msgstr "Rediger sag" -#: ./content/tracker.py:310 +#: ./content/tracker.py:304 msgid "Enter users who will be responsible for solving the issues. Users also need to be added as Watchers to receive notifications." msgstr "" -#: ./content/tracker.py:64 +#: ./content/tracker.py:57 msgid "Important" msgstr "" #: ./browser/templates/poi_email_new_issue_html.pt:29 #: ./browser/templates/poi_email_resolved_issue_html.pt:32 +#: ./profiles/default/types/Issue.xml msgid "Issue" msgstr "" @@ -101,11 +110,11 @@ msgstr "" msgid "Issue Information" msgstr "" -#: ./content/tracker.py:258 +#: ./content/tracker.py:252 msgid "Issue Type" msgstr "" -#: ./browser/response.py:413 +#: ./browser/response.py:415 msgid "Issue state" msgstr "" @@ -115,19 +124,19 @@ msgstr "" msgid "Issue:" msgstr "" -#: ./content/tracker.py:66 +#: ./content/tracker.py:59 msgid "Low" msgstr "" -#: ./content/tracker.py:65 +#: ./content/tracker.py:58 msgid "Medium" msgstr "" -#: ./browser/response.py:533 +#: ./browser/response.py:535 msgid "No response selected for removal." msgstr "" -#: ./browser/response.py:489 +#: ./browser/response.py:491 msgid "No response selected for saving." msgstr "" @@ -135,7 +144,7 @@ msgstr "" msgid "No response selected." msgstr "" -#: ./browser/response.py:440 +#: ./browser/response.py:442 msgid "No response text added and no issue changes made." msgstr "" @@ -173,39 +182,39 @@ msgstr "" # ./content/PoiTracker.py #. Default: "Enter the issue topics/areas for this tracker." -#: ./content/tracker.py:220 +#: ./content/tracker.py:214 #, fuzzy msgid "Poi_help_availableAreas" msgstr "Angiv de ønskede sagsområder for denne tracker, ét sagsområde pr. linje. Formatet er: \"Kort navn | Titel | Beskrivelse\"." # ./content/PoiTracker.py #. Default: "Enter the issue types for this tracker." -#: ./content/tracker.py:243 +#: ./content/tracker.py:237 #, fuzzy msgid "Poi_help_availableIssueTypes" msgstr "Angiv sagstyperne for denne tracker, én specification pr. linje. Formatet er: \"Kort navn | Titel | Beskrivelse\"." # ./content/PoiTracker.py #. Default: "Enter the releases which issues can be assigned to, one per line. If no releases are entered, issues will not be organized by release." -#: ./content/tracker.py:293 +#: ./content/tracker.py:287 #, fuzzy msgid "Poi_help_availableReleases" msgstr "Angiv de versioner, som sager kan tilknyttes én specifikation pr. linje. Formatet er: \"Kort navn | Titel | Beskrivelse\"." # ./content/PoiTracker.py #. Default: "Enter the different type of issue severities that should be available, one per line." -#: ./content/tracker.py:266 +#: ./content/tracker.py:260 msgid "Poi_help_availableSeverities" msgstr "Angiv de forskellige alvorlighedsgrader, som skal kunne vælges, én pr. linje." # ./content/PoiTracker.py #. Default: "Select the default severity for new issues." -#: ./content/tracker.py:280 +#: ./content/tracker.py:274 msgid "Poi_help_defaultSeverity" msgstr "Vælg standard-alvorlighedsgraden for nye sager." #. Default: "Enter any introductory help text you'd like to display on the tracker front page." -#: ./content/tracker.py:208 +#: ./content/tracker.py:202 msgid "Poi_help_helpText" msgstr "Skriv en introducerende tekst, som du vil have vist på fejlrapporteringsværktøjets forside." @@ -216,12 +225,12 @@ msgid "Poi_help_issueTransition" msgstr "Vælg hvis muligt en statusændring, som dette svar passer med." #. Default: "Select the area this issue is relevant to." -#: ./content/issue.py:103 +#: ./content/issue.py:108 msgid "Poi_help_issue_area" msgstr "" #. Default: "Select which person, if any, is assigned to this issue." -#: ./content/issue.py:140 +#: ./content/issue.py:145 msgid "Poi_help_issue_assignee" msgstr "" @@ -231,69 +240,69 @@ msgid "Poi_help_issue_attachment" msgstr "" #. Default: "Please provide an email address where you can be contacted for further information or when a resolution is available. Note that your email address will not be displayed to others." -#: ./content/issue.py:149 +#: ./content/issue.py:154 msgid "Poi_help_issue_contact_email" msgstr "" #. Default: "Please provide further details. This field can create Automatic Links." -#: ./content/issue.py:86 +#: ./content/issue.py:91 msgid "Poi_help_issue_details" msgstr "" #. Default: "Last person to edit or add a Response" -#: ./content/issue.py:229 +#: ./content/issue.py:235 msgid "Poi_help_issue_last_actor" msgstr "" #. Default: "Link related issues." -#: ./content/issue.py:211 +#: ./content/issue.py:217 msgid "Poi_help_issue_related" msgstr "" #. Default: "Select the version the issue was found in." -#: ./content/issue.py:77 +#: ./content/issue.py:82 msgid "Poi_help_issue_release" msgstr "" #. Default: "Select the severity of this issue." -#: ./content/issue.py:119 +#: ./content/issue.py:124 msgid "Poi_help_issue_severity" msgstr "" #. Default: "If applicable, please provide the steps to reproduce the error or identify the issue, one per line. This field can create Automatic Links." -#: ./content/issue.py:94 +#: ./content/issue.py:99 msgid "Poi_help_issue_steps" msgstr "" #. Default: "Tags can be used to add arbitrary categorisation to issues. The list below shows existing tags which you can select, or you can add new ones." -#: ./content/issue.py:186 +#: ./content/issue.py:192 msgid "Poi_help_issue_subject" msgstr "" #. Default: "Release this issue is targetted to be fixed in." -#: ./content/issue.py:129 +#: ./content/issue.py:134 msgid "Poi_help_issue_target_release" msgstr "" # ./content/PoiIssue.py #. Default: "Enter a short, descriptive title for the issue. A good title will make it easier for project managers to identify and respond to the issue." -#: ./content/issue.py:68 +#: ./content/issue.py:73 msgid "Poi_help_issue_title" msgstr "Angiv en kort, beskrivende titel. En velvalgt titel vil gøre det nemmere at svare på sagen." #. Default: "Select the type of issue." -#: ./content/issue.py:110 +#: ./content/issue.py:115 msgid "Poi_help_issue_type" msgstr "" #. Default: "Enter the user ids of members who are watching this issue, one per line. E-mail addresses are allowed too. These persons will receive an email when a response is added to the issue. Members can also add themselves as watchers." -#: ./content/issue.py:164 +#: ./content/issue.py:170 msgid "Poi_help_issue_watchers" msgstr "" # ./content/PoiTracker.py #. Default: "If given, and if 'Send notification emails' is selected, an email will be sent to this address each time a new issue or response is posted." -#: ./content/tracker.py:360 +#: ./content/tracker.py:354 #, fuzzy msgid "Poi_help_mailingList" msgstr "Hvis angivet, og hvis \"Send notifikations-e-mails\" er valgt, vil en e-mail blive sendt til den angivne adresse hver gang et ny sag eller svar bliver indsendt. Hvis ingen mailadresse opgives, vil administratorer modtage individuelle e-mails." @@ -323,29 +332,29 @@ msgid "Poi_help_response" msgstr "Angiv dit svar nedenfor." #. Default: "If selected, all tracker assignees above will receive an email for new issues and all issue responses. Issue watchers will receive an email for all issue responses. Issue submitters will receive an email when the issue has been resolved." -#: ./content/tracker.py:344 +#: ./content/tracker.py:338 #, fuzzy msgid "Poi_help_sendNotificationEmails" msgstr "Hvis valgt, vil tracker-administratorer modtage en e-mail, hver gang et ny sag eller svar bliver indsendt, og sagsindsendere vil modtage en e-mail, når der er et nyt svar, og når en sag er blevet løst og afventer bekræftelse." #. Default: "Please enter the URL to the related repository, e.g.: https://github.com/collective/Products.Poi/commit/%(rev)s for Products.Poi." -#: ./content/tracker.py:374 +#: ./content/tracker.py:368 #, fuzzy msgid "Poi_help_svnurl" msgstr "Indtast venligst URL'en til SVN-repositoriet, f.eks. http://dev.plone.org/changeset/%(rev)s/collective hvis det er et produkt i 'The Plone Collective'" #. Default: "Describe the purpose of this tracker" -#: ./content/tracker.py:199 +#: ./content/tracker.py:193 msgid "Poi_help_tracker_description" msgstr "" #. Default: "Enter a descriptive name for this tracker" -#: ./content/tracker.py:191 +#: ./content/tracker.py:185 msgid "Poi_help_tracker_title" msgstr "Indtast et beskrivende navn for denne tracker" #. Default: "Enter the user ids of members who are watching this tracker, one per line. E-mail addresses are allowed too. These persons will receive an email when an issue or response is added to the tracker. Members can also add themselves as watchers." -#: ./content/tracker.py:325 +#: ./content/tracker.py:319 msgid "Poi_help_tracker_watchers" msgstr "" @@ -355,37 +364,37 @@ msgid "Poi_issues_label" msgstr "" #. Default: "Assignees" -#: ./content/tracker.py:309 +#: ./content/tracker.py:303 msgid "Poi_label_assignees" msgstr "" # ./content/PoiTracker.py #. Default: "Areas" -#: ./content/tracker.py:218 +#: ./content/tracker.py:212 msgid "Poi_label_availableAreas" msgstr "Tilgængelige områder" # ./content/PoiTracker.py #. Default: "Issue types" -#: ./content/tracker.py:241 +#: ./content/tracker.py:235 msgid "Poi_label_availableIssueTypes" msgstr "Tilgængelige sagstyper" # ./content/PoiTracker.py #. Default: "Available releases" -#: ./content/tracker.py:289 +#: ./content/tracker.py:283 msgid "Poi_label_availableReleases" msgstr "Tilgængelige versioner" # ./content/PoiTracker.py #. Default: "Available severities" -#: ./content/tracker.py:263 +#: ./content/tracker.py:257 msgid "Poi_label_availableSeverities" msgstr "Tilgængelige alvorlighedsgrader" # ./content/PoiTracker.py #. Default: "Default severity" -#: ./content/tracker.py:275 +#: ./content/tracker.py:269 msgid "Poi_label_defaultSeverity" msgstr "Standard-alvorlighedsgrad" @@ -396,84 +405,84 @@ msgid "Poi_label_issueTransition" msgstr "Skift sagsstatus" #. Default: "Area" -#: ./content/issue.py:102 +#: ./content/issue.py:107 msgid "Poi_label_issue_area" msgstr "" #. Default: "Assignee" -#: ./content/issue.py:139 +#: ./content/issue.py:144 msgid "Poi_label_issue_assignee" msgstr "" #. Default: "Contact Email" -#: ./content/issue.py:148 +#: ./content/issue.py:153 msgid "Poi_label_issue_contact_email" msgstr "" #. Default: "Details" -#: ./content/issue.py:85 +#: ./content/issue.py:90 msgid "Poi_label_issue_details" msgstr "" #. Default: "Leave this field empty" -#: ./content/issue.py:221 +#: ./content/issue.py:227 msgid "Poi_label_issue_empty" msgstr "" #. Default: "Last Actor" -#: ./content/issue.py:227 +#: ./content/issue.py:233 msgid "Poi_label_issue_last_actor" msgstr "" #. Default: "Related Issue(s)" -#: ./content/issue.py:210 +#: ./content/issue.py:216 msgid "Poi_label_issue_related" msgstr "" #. Default: "Release" -#: ./content/issue.py:76 +#: ./content/issue.py:81 msgid "Poi_label_issue_release" msgstr "" #. Default: "Severity" -#: ./content/issue.py:118 +#: ./content/issue.py:123 msgid "Poi_label_issue_severity" msgstr "" #. Default: "Steps To Reproduce" -#: ./content/issue.py:93 +#: ./content/issue.py:98 msgid "Poi_label_issue_steps" msgstr "" #. Default: "Subject" -#: ./content/issue.py:185 +#: ./content/issue.py:191 msgid "Poi_label_issue_subject" msgstr "" #. Default: "Target Release" -#: ./content/issue.py:128 +#: ./content/issue.py:133 msgid "Poi_label_issue_target_release" msgstr "" # ./content/PoiIssue.py #. Default: "Title" -#: ./content/issue.py:67 +#: ./content/issue.py:72 msgid "Poi_label_issue_title" msgstr "Titel" #. Default: "Issue Type" -#: ./content/issue.py:109 +#: ./content/issue.py:114 msgid "Poi_label_issue_type" msgstr "" #. Default: "Watchers" -#: ./content/issue.py:163 +#: ./content/issue.py:169 msgid "Poi_label_issue_watchers" msgstr "" # ./content/PoiTracker.py #. Default: "Mailing list" -#: ./content/tracker.py:356 +#: ./content/tracker.py:350 msgid "Poi_label_mailingList" msgstr "Postliste" @@ -497,18 +506,18 @@ msgstr "Skift målversion" # ./content/PoiTracker.py #. Default: "Send notification emails" -#: ./content/tracker.py:340 +#: ./content/tracker.py:334 msgid "Poi_label_sendNotificationEmails" msgstr "Send notifikations-e-mails" #. Default: "URL to Repository" -#: ./content/tracker.py:372 +#: ./content/tracker.py:366 #, fuzzy msgid "Poi_label_svnurl" msgstr "URL til SVN" #. Default: "Watchers" -#: ./content/tracker.py:324 +#: ./content/tracker.py:318 msgid "Poi_label_tracker_watchers" msgstr "" @@ -523,7 +532,7 @@ msgid "Poi_repository_label" msgstr "" #. Default: "" -#: ./browser/response.py:555 +#: ./browser/response.py:557 msgid "Removed response id ${response_id}." msgstr "" @@ -538,12 +547,12 @@ msgstr "" msgid "Response Information" msgstr "" -#: ./browser/response.py:493 +#: ./browser/response.py:495 msgid "Response does not exist anymore; perhaps it was removed by another user." msgstr "" #. Default: "" -#: ./browser/response.py:548 +#: ./browser/response.py:550 msgid "Response id ${response_id} does not exist so it cannot be removed." msgstr "" @@ -553,7 +562,7 @@ msgid "Response id ${response_id} does not exist." msgstr "" #. Default: "" -#: ./browser/response.py:540 +#: ./browser/response.py:542 msgid "Response id ${response_id} is no integer so it cannot be removed." msgstr "" @@ -566,11 +575,11 @@ msgstr "" msgid "Search" msgstr "Søg" -#: ./browser/response.py:418 +#: ./browser/response.py:420 msgid "Severity" msgstr "" -#: ./content/tracker.py:177 +#: ./content/tracker.py:171 msgid "Short Name" msgstr "" @@ -582,7 +591,7 @@ msgstr "" msgid "Submit new issue" msgstr "Opret ny sag" -#: ./browser/response.py:421 +#: ./browser/response.py:423 msgid "Target release" msgstr "" @@ -597,20 +606,24 @@ msgstr "" msgid "This is an automated email, please do not reply." msgstr "" -#: ./content/tracker.py:180 +#: ./content/tracker.py:174 msgid "Title" msgstr "" -#: ./browser/response.py:527 +#: ./profiles/default/types/Tracker.xml +msgid "Tracker" +msgstr "" + +#: ./browser/response.py:529 msgid "You are not allowed to delete responses." msgstr "" -#: ./browser/response.py:483 +#: ./browser/response.py:485 msgid "You are not allowed to edit responses." msgstr "" #. Default: "Automatic linking" -#: ./browser/templates/automatic_links_help_view.pt:11 +#: ./browser/templates/automatic_links_help_view.pt:16 msgid "authomatic_linking_label" msgstr "" @@ -620,7 +633,7 @@ msgid "batch_x_items_matching_your_criteria" msgstr "" #. Default: "Description" -#: ./content/tracker.py:198 +#: ./content/tracker.py:192 msgid "description" msgstr "" @@ -635,7 +648,7 @@ msgid "description_no_results_found" msgstr "" #. Default: "Help Text" -#: ./content/tracker.py:207 +#: ./content/tracker.py:201 msgid "help_text" msgstr "" @@ -1089,7 +1102,7 @@ msgid "stop_watching_this" msgstr "" #. Default: "Title" -#: ./content/tracker.py:190 +#: ./content/tracker.py:184 msgid "title" msgstr "" diff --git a/Products/Poi/locales/de/LC_MESSAGES/Poi.po b/Products/Poi/locales/de/LC_MESSAGES/Poi.po index fbaed4e6..d0c74181 100644 --- a/Products/Poi/locales/de/LC_MESSAGES/Poi.po +++ b/Products/Poi/locales/de/LC_MESSAGES/Poi.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Poi\n" -"POT-Creation-Date: 2020-08-27 12:56+0000\n" +"POT-Creation-Date: 2020-09-01 13:08+0000\n" "PO-Revision-Date: 2012-05-03 11:27 +0200\n" "Last-Translator: Jens Klein \n" "Language-Team: DE \n" @@ -17,6 +17,10 @@ msgstr "" "Language: \n" "X-Is-Fallback-For: de-at de-li de-lu de-ch de-de\n" +#: ./profiles/default/types/Tracker.xml +msgid "A Poi Issue Tracker" +msgstr "" + #: ./profiles.zcml:14 msgid "A friendly issue tracker" msgstr "" @@ -31,16 +35,20 @@ msgstr "Ein neues Problem wurde im Tracker ${tracker_title} von ${issue_author} msgid "A new response has been given to the issue ${issue_title} in the tracker ${tracker_title} by ${response_author}." msgstr "Es gibt eine neue Antwort zum Problem ${issue_title} im Tracker ${tracker_title} von ${response_author}." +#: ./profiles/default/types/Issue.xml +msgid "An Issue in a Poi Tracker" +msgstr "" + #: ./browser/templates/poi_email_new_response_html.pt:42 #: ./browser/templates/poi_email_new_response_plain.pt:23 msgid "An attachment has been added with id ${id}." msgstr "Ein neuer Anhang mit der Id ${id} wurde hinzugefügt." -#: ./content/tracker.py:236 +#: ./content/tracker.py:230 msgid "Area" msgstr "" -#: ./browser/response.py:419 +#: ./browser/response.py:421 msgid "Assignee" msgstr "" @@ -49,11 +57,11 @@ msgid "Attachments" msgstr "" #. Default: "" -#: ./browser/response.py:503 +#: ./browser/response.py:505 msgid "Changes saved to response id ${response_id}." msgstr "Änderungen an Antwort mit ID ${response_id} wurden gespeichert." -#: ./content/tracker.py:63 +#: ./content/tracker.py:56 msgid "Critical" msgstr "" @@ -61,7 +69,7 @@ msgstr "" msgid "Delete" msgstr "Löschen" -#: ./content/tracker.py:183 +#: ./content/tracker.py:177 msgid "Description" msgstr "" @@ -73,16 +81,17 @@ msgstr "Bearbeiten" msgid "Edit issue" msgstr "Problemstellung bearbeiten" -#: ./content/tracker.py:310 +#: ./content/tracker.py:304 msgid "Enter users who will be responsible for solving the issues. Users also need to be added as Watchers to receive notifications." msgstr "" -#: ./content/tracker.py:64 +#: ./content/tracker.py:57 msgid "Important" msgstr "" #: ./browser/templates/poi_email_new_issue_html.pt:29 #: ./browser/templates/poi_email_resolved_issue_html.pt:32 +#: ./profiles/default/types/Issue.xml msgid "Issue" msgstr "Problem" @@ -97,11 +106,11 @@ msgstr "Problemdetails:" msgid "Issue Information" msgstr "Information zum Problem" -#: ./content/tracker.py:258 +#: ./content/tracker.py:252 msgid "Issue Type" msgstr "" -#: ./browser/response.py:413 +#: ./browser/response.py:415 msgid "Issue state" msgstr "Status der Problemstellung" @@ -111,19 +120,19 @@ msgstr "Status der Problemstellung" msgid "Issue:" msgstr "Problem:" -#: ./content/tracker.py:66 +#: ./content/tracker.py:59 msgid "Low" msgstr "" -#: ./content/tracker.py:65 +#: ./content/tracker.py:58 msgid "Medium" msgstr "" -#: ./browser/response.py:533 +#: ./browser/response.py:535 msgid "No response selected for removal." msgstr "Es wurde keine Antwort zum Löschen ausgewählt." -#: ./browser/response.py:489 +#: ./browser/response.py:491 msgid "No response selected for saving." msgstr "Es wurde keine Antwort zum Speichern ausgewählt." @@ -131,7 +140,7 @@ msgstr "Es wurde keine Antwort zum Speichern ausgewählt." msgid "No response selected." msgstr "Es wurde keine Antwort ausgewählt." -#: ./browser/response.py:440 +#: ./browser/response.py:442 msgid "No response text added and no issue changes made." msgstr "Es wurde kein Antwort-Text hinzugefügt und keine " @@ -169,38 +178,38 @@ msgstr "" # ./content/PoiTracker.py #. Default: "Enter the issue topics/areas for this tracker." -#: ./content/tracker.py:220 +#: ./content/tracker.py:214 msgid "Poi_help_availableAreas" msgstr "Geben Sie für die Problemstellung die passensen Themen/ Bereiche an. Eine pro Zeile. Das Format ist: \"Kurzname | Titel | Beschreibung\"." # ./content/PoiTracker.py #. Default: "Enter the issue types for this tracker." -#: ./content/tracker.py:243 +#: ./content/tracker.py:237 msgid "Poi_help_availableIssueTypes" msgstr "Geben Sie die Arten von Problemstellungen für diesem Tracker an. Eine pro Zeile. Eine pro Zeile. Das Format ist: \"Kurzname | Titel | Beschreibung\"." # ./content/PoiTracker.py #. Default: "Enter the releases which issues can be assigned to, one per line. If no releases are entered, issues will not be organized by release." -#: ./content/tracker.py:293 +#: ./content/tracker.py:287 #, fuzzy msgid "Poi_help_availableReleases" msgstr "Geben Sie die Ausgaben/ Versionen an, die einer einer Problemstellung zugewiesen werden können. Eine pro Zeile. Wird nichts angegeben, so werden die Problemstellungen nicht nach diesem Kriterium organisiert angezeigt." # ./content/PoiTracker.py #. Default: "Enter the different type of issue severities that should be available, one per line." -#: ./content/tracker.py:266 +#: ./content/tracker.py:260 msgid "Poi_help_availableSeverities" msgstr "Geben Sie die verschiedenen Gewichtungen an, die für eine Problemstellungzur Auswahl stehen sollen. Eine pro Zeile." # ./content/PoiTracker.py #. Default: "Select the default severity for new issues." -#: ./content/tracker.py:280 +#: ./content/tracker.py:274 msgid "Poi_help_defaultSeverity" msgstr "Wählen sie eine Gewichtung, die als Vorgabe verwendet werden soll." # ./content/PoiTracker.py #. Default: "Enter any introductory help text you'd like to display on the tracker front page." -#: ./content/tracker.py:208 +#: ./content/tracker.py:202 msgid "Poi_help_helpText" msgstr "Geben Sie einen einführenden Text zur Anzeige auf der Titelseite des Trackers an, wenn Sie dies wünschen." @@ -211,12 +220,12 @@ msgid "Poi_help_issueTransition" msgstr "Ändern Sie des Status der Problemstellung mit dieser Antwort, wenn dies zutreffend ist." #. Default: "Select the area this issue is relevant to." -#: ./content/issue.py:103 +#: ./content/issue.py:108 msgid "Poi_help_issue_area" msgstr "" #. Default: "Select which person, if any, is assigned to this issue." -#: ./content/issue.py:140 +#: ./content/issue.py:145 msgid "Poi_help_issue_assignee" msgstr "" @@ -226,69 +235,69 @@ msgid "Poi_help_issue_attachment" msgstr "" #. Default: "Please provide an email address where you can be contacted for further information or when a resolution is available. Note that your email address will not be displayed to others." -#: ./content/issue.py:149 +#: ./content/issue.py:154 msgid "Poi_help_issue_contact_email" msgstr "" #. Default: "Please provide further details. This field can create Automatic Links." -#: ./content/issue.py:86 +#: ./content/issue.py:91 msgid "Poi_help_issue_details" msgstr "" #. Default: "Last person to edit or add a Response" -#: ./content/issue.py:229 +#: ./content/issue.py:235 msgid "Poi_help_issue_last_actor" msgstr "" #. Default: "Link related issues." -#: ./content/issue.py:211 +#: ./content/issue.py:217 msgid "Poi_help_issue_related" msgstr "" #. Default: "Select the version the issue was found in." -#: ./content/issue.py:77 +#: ./content/issue.py:82 msgid "Poi_help_issue_release" msgstr "" #. Default: "Select the severity of this issue." -#: ./content/issue.py:119 +#: ./content/issue.py:124 msgid "Poi_help_issue_severity" msgstr "" #. Default: "If applicable, please provide the steps to reproduce the error or identify the issue, one per line. This field can create Automatic Links." -#: ./content/issue.py:94 +#: ./content/issue.py:99 msgid "Poi_help_issue_steps" msgstr "" #. Default: "Tags can be used to add arbitrary categorisation to issues. The list below shows existing tags which you can select, or you can add new ones." -#: ./content/issue.py:186 +#: ./content/issue.py:192 msgid "Poi_help_issue_subject" msgstr "" #. Default: "Release this issue is targetted to be fixed in." -#: ./content/issue.py:129 +#: ./content/issue.py:134 msgid "Poi_help_issue_target_release" msgstr "" # ./content/PoiIssue.py #. Default: "Enter a short, descriptive title for the issue. A good title will make it easier for project managers to identify and respond to the issue." -#: ./content/issue.py:68 +#: ./content/issue.py:73 msgid "Poi_help_issue_title" msgstr "Wählen sie einen kurzen, beschreibenden Titel zur Identifikation für diese Problemstellung. Ein guter Titel macht es Projektmanagern leichter zu antworten." #. Default: "Select the type of issue." -#: ./content/issue.py:110 +#: ./content/issue.py:115 msgid "Poi_help_issue_type" msgstr "" #. Default: "Enter the user ids of members who are watching this issue, one per line. E-mail addresses are allowed too. These persons will receive an email when a response is added to the issue. Members can also add themselves as watchers." -#: ./content/issue.py:164 +#: ./content/issue.py:170 msgid "Poi_help_issue_watchers" msgstr "" # ./content/PoiTracker.py #. Default: "If given, and if 'Send notification emails' is selected, an email will be sent to this address each time a new issue or response is posted." -#: ./content/tracker.py:360 +#: ./content/tracker.py:354 #, fuzzy msgid "Poi_help_mailingList" msgstr "Wenn angegeben und 'Sende Benachrichtungs-Mail' ausgewählt wurde, wird eine E-Mail an diese Adresse gesendet sobald eine neue Problemstellung oder eine neue Antwort erstellt wurde, Wenn keine Mailing-Listen-Adresse angegeben wurde, so erhalten die nur Projektmanager eine Benachrichtigung." @@ -319,31 +328,31 @@ msgstr "Bitte geben sie unten ihre Antwort an." # ./content/PoiTracker.py #. Default: "If selected, all tracker assignees above will receive an email for new issues and all issue responses. Issue watchers will receive an email for all issue responses. Issue submitters will receive an email when the issue has been resolved." -#: ./content/tracker.py:344 +#: ./content/tracker.py:338 #, fuzzy msgid "Poi_help_sendNotificationEmails" msgstr "Wenn dies ausgewählt ist erhalten Verwalter des Trackers ein jedes Mal ein E-Mail, wenn eine neue Problemstellung oder eine Antwort geschrieben wurde. Übermittler von Problemstellungen erhalten ein E-Mail, sobald eine Antwort geschrieben wurde, bzw. wenn die Problemstellung gelöst wurde und eine Bestätigung gefordert ist." # ./content/PoiTracker.py #. Default: "Please enter the URL to the related repository, e.g.: https://github.com/collective/Products.Poi/commit/%(rev)s for Products.Poi." -#: ./content/tracker.py:374 +#: ./content/tracker.py:368 #, fuzzy msgid "Poi_help_svnurl" msgstr "Bitte geben Sie die URL zum betreffende Version-Controll-System (SVN, GIT, BZR, ...) an. Dies kann auch auf einen Webansicht wie z.B. Trac zeigen." #. Default: "Describe the purpose of this tracker" -#: ./content/tracker.py:199 +#: ./content/tracker.py:193 msgid "Poi_help_tracker_description" msgstr "Beschreiben Sie den Zweck des Trackers" # ./content/PoiTracker.py #. Default: "Enter a descriptive name for this tracker" -#: ./content/tracker.py:191 +#: ./content/tracker.py:185 msgid "Poi_help_tracker_title" msgstr "Geben Sie einen beschreibenden Namen für diesen Tracker an." #. Default: "Enter the user ids of members who are watching this tracker, one per line. E-mail addresses are allowed too. These persons will receive an email when an issue or response is added to the tracker. Members can also add themselves as watchers." -#: ./content/tracker.py:325 +#: ./content/tracker.py:319 msgid "Poi_help_tracker_watchers" msgstr "Tragen Sie die Benutzer-IDs derjenigen Mitglieder ein, welche diesen Tracker beobachten. Ein Eintrag pro Zeile. E-mail Adressen sind ebenfalls erlaubt. Diese Personen werden eine E-mail erhalten, wenn ein neues Problem oder eine Antwort hinzugefügt werden. Mitglieder können sich auch selbst als Beobachter hinzufügen." @@ -353,37 +362,37 @@ msgid "Poi_issues_label" msgstr "" #. Default: "Assignees" -#: ./content/tracker.py:309 +#: ./content/tracker.py:303 msgid "Poi_label_assignees" msgstr "" # ./content/PoiTracker.py #. Default: "Areas" -#: ./content/tracker.py:218 +#: ./content/tracker.py:212 msgid "Poi_label_availableAreas" msgstr "Bereiche" # ./content/PoiTracker.py #. Default: "Issue types" -#: ./content/tracker.py:241 +#: ./content/tracker.py:235 msgid "Poi_label_availableIssueTypes" msgstr "Arten der Problemstellung" # ./content/PoiTracker.py #. Default: "Available releases" -#: ./content/tracker.py:289 +#: ./content/tracker.py:283 msgid "Poi_label_availableReleases" msgstr "Verfügbare Ausgaben/ Versionen" # ./content/PoiTracker.py #. Default: "Available severities" -#: ./content/tracker.py:263 +#: ./content/tracker.py:257 msgid "Poi_label_availableSeverities" msgstr "Verfügbare Gewichtungen" # ./content/PoiTracker.py #. Default: "Default severity" -#: ./content/tracker.py:275 +#: ./content/tracker.py:269 msgid "Poi_label_defaultSeverity" msgstr "Vorgabe für die Gewichtung" @@ -394,84 +403,84 @@ msgid "Poi_label_issueTransition" msgstr "Ändere Status der Problemstellung" #. Default: "Area" -#: ./content/issue.py:102 +#: ./content/issue.py:107 msgid "Poi_label_issue_area" msgstr "" #. Default: "Assignee" -#: ./content/issue.py:139 +#: ./content/issue.py:144 msgid "Poi_label_issue_assignee" msgstr "" #. Default: "Contact Email" -#: ./content/issue.py:148 +#: ./content/issue.py:153 msgid "Poi_label_issue_contact_email" msgstr "" #. Default: "Details" -#: ./content/issue.py:85 +#: ./content/issue.py:90 msgid "Poi_label_issue_details" msgstr "" #. Default: "Leave this field empty" -#: ./content/issue.py:221 +#: ./content/issue.py:227 msgid "Poi_label_issue_empty" msgstr "" #. Default: "Last Actor" -#: ./content/issue.py:227 +#: ./content/issue.py:233 msgid "Poi_label_issue_last_actor" msgstr "" #. Default: "Related Issue(s)" -#: ./content/issue.py:210 +#: ./content/issue.py:216 msgid "Poi_label_issue_related" msgstr "" #. Default: "Release" -#: ./content/issue.py:76 +#: ./content/issue.py:81 msgid "Poi_label_issue_release" msgstr "" #. Default: "Severity" -#: ./content/issue.py:118 +#: ./content/issue.py:123 msgid "Poi_label_issue_severity" msgstr "" #. Default: "Steps To Reproduce" -#: ./content/issue.py:93 +#: ./content/issue.py:98 msgid "Poi_label_issue_steps" msgstr "" #. Default: "Subject" -#: ./content/issue.py:185 +#: ./content/issue.py:191 msgid "Poi_label_issue_subject" msgstr "" #. Default: "Target Release" -#: ./content/issue.py:128 +#: ./content/issue.py:133 msgid "Poi_label_issue_target_release" msgstr "" # ./content/PoiIssue.py #. Default: "Title" -#: ./content/issue.py:67 +#: ./content/issue.py:72 msgid "Poi_label_issue_title" msgstr "Titel" #. Default: "Issue Type" -#: ./content/issue.py:109 +#: ./content/issue.py:114 msgid "Poi_label_issue_type" msgstr "" #. Default: "Watchers" -#: ./content/issue.py:163 +#: ./content/issue.py:169 msgid "Poi_label_issue_watchers" msgstr "" # ./content/PoiTracker.py #. Default: "Mailing list" -#: ./content/tracker.py:356 +#: ./content/tracker.py:350 msgid "Poi_label_mailingList" msgstr "Mailing-Liste" @@ -495,19 +504,19 @@ msgstr "Ändern der Ausgabe/ Version" # ./content/PoiTracker.py #. Default: "Send notification emails" -#: ./content/tracker.py:340 +#: ./content/tracker.py:334 msgid "Poi_label_sendNotificationEmails" msgstr "Sende Benachrichtigungs E-Mails" # ./content/PoiTracker.py #. Default: "URL to Repository" -#: ./content/tracker.py:372 +#: ./content/tracker.py:366 #, fuzzy msgid "Poi_label_svnurl" msgstr "URL to VCS" #. Default: "Watchers" -#: ./content/tracker.py:324 +#: ./content/tracker.py:318 #, fuzzy msgid "Poi_label_tracker_watchers" msgstr "Beobachter des Trackers" @@ -523,7 +532,7 @@ msgid "Poi_repository_label" msgstr "" #. Default: "" -#: ./browser/response.py:555 +#: ./browser/response.py:557 msgid "Removed response id ${response_id}." msgstr "Antwort mit ID ${response_id} wurde gelöscht." @@ -538,12 +547,12 @@ msgstr "Details zur Antwort" msgid "Response Information" msgstr "Informationen zur Antwort" -#: ./browser/response.py:493 +#: ./browser/response.py:495 msgid "Response does not exist anymore; perhaps it was removed by another user." msgstr "Die Antwort gibt es nicht mehr. Möglicherweise wurde sie von einem anderen Benutzer entfernt?" #. Default: "" -#: ./browser/response.py:548 +#: ./browser/response.py:550 msgid "Response id ${response_id} does not exist so it cannot be removed." msgstr "Antwort mit ID ${response_id} kann nicht gelöscht werden, da sie nicht existiert." @@ -553,7 +562,7 @@ msgid "Response id ${response_id} does not exist." msgstr "Antwort mit ID ${response_id} existiert nicht." #. Default: "" -#: ./browser/response.py:540 +#: ./browser/response.py:542 msgid "Response id ${response_id} is no integer so it cannot be removed." msgstr "Antwort ID ${response_id} ist keine Ganzzahl und kann daher nicht entfernt werden." @@ -566,11 +575,11 @@ msgstr "Antwort ID ${response_id} ist keine Ganzzahl." msgid "Search" msgstr "Suche" -#: ./browser/response.py:418 +#: ./browser/response.py:420 msgid "Severity" msgstr "Gewichtung" -#: ./content/tracker.py:177 +#: ./content/tracker.py:171 msgid "Short Name" msgstr "" @@ -582,7 +591,7 @@ msgstr "" msgid "Submit new issue" msgstr "Problemstellung übermitteln" -#: ./browser/response.py:421 +#: ./browser/response.py:423 msgid "Target release" msgstr "Betroffene Version/ Ausgabe" @@ -597,20 +606,24 @@ msgstr "" msgid "This is an automated email, please do not reply." msgstr "Dies ist ein automatisiertes E-Mail. Bitte nicht Antworten." -#: ./content/tracker.py:180 +#: ./content/tracker.py:174 msgid "Title" msgstr "" -#: ./browser/response.py:527 +#: ./profiles/default/types/Tracker.xml +msgid "Tracker" +msgstr "" + +#: ./browser/response.py:529 msgid "You are not allowed to delete responses." msgstr "Es ist Ihnen nicht erlaubt Antworten zu Löschen." -#: ./browser/response.py:483 +#: ./browser/response.py:485 msgid "You are not allowed to edit responses." msgstr "Es ist Ihnen nicht erlaubt Antworten zu Bearbeiten." #. Default: "Automatic linking" -#: ./browser/templates/automatic_links_help_view.pt:11 +#: ./browser/templates/automatic_links_help_view.pt:16 msgid "authomatic_linking_label" msgstr "" @@ -620,7 +633,7 @@ msgid "batch_x_items_matching_your_criteria" msgstr "" #. Default: "Description" -#: ./content/tracker.py:198 +#: ./content/tracker.py:192 msgid "description" msgstr "" @@ -635,7 +648,7 @@ msgid "description_no_results_found" msgstr "" #. Default: "Help Text" -#: ./content/tracker.py:207 +#: ./content/tracker.py:201 msgid "help_text" msgstr "" @@ -1088,7 +1101,7 @@ msgid "stop_watching_this" msgstr "" #. Default: "Title" -#: ./content/tracker.py:190 +#: ./content/tracker.py:184 msgid "title" msgstr "" diff --git a/Products/Poi/locales/es/LC_MESSAGES/Poi.po b/Products/Poi/locales/es/LC_MESSAGES/Poi.po index 955b5dea..cfc525f0 100644 --- a/Products/Poi/locales/es/LC_MESSAGES/Poi.po +++ b/Products/Poi/locales/es/LC_MESSAGES/Poi.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: poi-es\n" -"POT-Creation-Date: 2020-08-27 12:56+0000\n" +"POT-Creation-Date: 2020-09-01 13:08+0000\n" "PO-Revision-Date: 2009-08-11 13:53-0400\n" "Last-Translator: Leonardo Caballero \n" "Language-Team: Plone Cono Sur \n" @@ -22,6 +22,10 @@ msgstr "" "Language: \n" "X-Is-Fallback-For: es-ar es-bo es-cl es-co es-cr es-do es-ec es-es es-sv es-gt es-hn es-mx es-ni es-pa es-py es-pe es-pr es-us es-uy es-ve\n" +#: ./profiles/default/types/Tracker.xml +msgid "A Poi Issue Tracker" +msgstr "" + #: ./profiles.zcml:14 msgid "A friendly issue tracker" msgstr "" @@ -36,16 +40,20 @@ msgstr "" msgid "A new response has been given to the issue ${issue_title} in the tracker ${tracker_title} by ${response_author}." msgstr "" +#: ./profiles/default/types/Issue.xml +msgid "An Issue in a Poi Tracker" +msgstr "" + #: ./browser/templates/poi_email_new_response_html.pt:42 #: ./browser/templates/poi_email_new_response_plain.pt:23 msgid "An attachment has been added with id ${id}." msgstr "" -#: ./content/tracker.py:236 +#: ./content/tracker.py:230 msgid "Area" msgstr "" -#: ./browser/response.py:419 +#: ./browser/response.py:421 msgid "Assignee" msgstr "" @@ -54,11 +62,11 @@ msgid "Attachments" msgstr "" #. Default: "" -#: ./browser/response.py:503 +#: ./browser/response.py:505 msgid "Changes saved to response id ${response_id}." msgstr "Se han guardado los cambios a la respuesta id ${response_id}." -#: ./content/tracker.py:63 +#: ./content/tracker.py:56 msgid "Critical" msgstr "" @@ -66,7 +74,7 @@ msgstr "" msgid "Delete" msgstr "Borrar" -#: ./content/tracker.py:183 +#: ./content/tracker.py:177 msgid "Description" msgstr "" @@ -78,16 +86,17 @@ msgstr "Editar" msgid "Edit issue" msgstr "Editar incidencia" -#: ./content/tracker.py:310 +#: ./content/tracker.py:304 msgid "Enter users who will be responsible for solving the issues. Users also need to be added as Watchers to receive notifications." msgstr "" -#: ./content/tracker.py:64 +#: ./content/tracker.py:57 msgid "Important" msgstr "" #: ./browser/templates/poi_email_new_issue_html.pt:29 #: ./browser/templates/poi_email_resolved_issue_html.pt:32 +#: ./profiles/default/types/Issue.xml msgid "Issue" msgstr "" @@ -102,11 +111,11 @@ msgstr "" msgid "Issue Information" msgstr "" -#: ./content/tracker.py:258 +#: ./content/tracker.py:252 msgid "Issue Type" msgstr "" -#: ./browser/response.py:413 +#: ./browser/response.py:415 msgid "Issue state" msgstr "Estado de la incidencia" @@ -116,19 +125,19 @@ msgstr "Estado de la incidencia" msgid "Issue:" msgstr "" -#: ./content/tracker.py:66 +#: ./content/tracker.py:59 msgid "Low" msgstr "" -#: ./content/tracker.py:65 +#: ./content/tracker.py:58 msgid "Medium" msgstr "" -#: ./browser/response.py:533 +#: ./browser/response.py:535 msgid "No response selected for removal." msgstr "No hay respuesta seleccionados para su eliminación." -#: ./browser/response.py:489 +#: ./browser/response.py:491 msgid "No response selected for saving." msgstr "No hay respuesta seleccionados para ser guardadas." @@ -136,7 +145,7 @@ msgstr "No hay respuesta seleccionados para ser guardadas." msgid "No response selected." msgstr "No hay respuesta seleccionadas." -#: ./browser/response.py:440 +#: ./browser/response.py:442 msgid "No response text added and no issue changes made." msgstr "No hay respuesta en el texto añadido y no hay incidencia de cambios realizados." @@ -174,40 +183,40 @@ msgstr "" # ./content/PoiTracker.py #. Default: "Enter the issue topics/areas for this tracker." -#: ./content/tracker.py:220 +#: ./content/tracker.py:214 #, fuzzy msgid "Poi_help_availableAreas" msgstr "Indique las categorías de incidencia para este gestor, una por línea. El formato es \"Nombre corto | Título | Descripción\"." # ./content/PoiTracker.py #. Default: "Enter the issue types for this tracker." -#: ./content/tracker.py:243 +#: ./content/tracker.py:237 #, fuzzy msgid "Poi_help_availableIssueTypes" msgstr "Indique los tipos de incidencia para este gestor, uno por línea. El formato es \"Nombre corto | Título | Descripción\"." # ./content/PoiTracker.py #. Default: "Enter the releases which issues can be assigned to, one per line. If no releases are entered, issues will not be organized by release." -#: ./content/tracker.py:293 +#: ./content/tracker.py:287 #, fuzzy msgid "Poi_help_availableReleases" msgstr "Indique a que versiones a las que se pueden asignar incidencias, una por línea. Si no se indicar versiones, las incidencias no se organizarán por versión." # ./content/PoiTracker.py #. Default: "Enter the different type of issue severities that should be available, one per line." -#: ./content/tracker.py:266 +#: ./content/tracker.py:260 msgid "Poi_help_availableSeverities" msgstr "Indique los diferentes tipos de importancia, uno por línea." # ./content/PoiTracker.py #. Default: "Select the default severity for new issues." -#: ./content/tracker.py:280 +#: ./content/tracker.py:274 msgid "Poi_help_defaultSeverity" msgstr "Seleccione el nivel de importancia por defecto." # ./content/PoiTracker.py #. Default: "Enter any introductory help text you'd like to display on the tracker front page." -#: ./content/tracker.py:208 +#: ./content/tracker.py:202 msgid "Poi_help_helpText" msgstr "Introduzca cualquier texto de ayuda introductoria que desea mostrar en la página principal de este gestor." @@ -218,12 +227,12 @@ msgid "Poi_help_issueTransition" msgstr "Selecciones el cambio de estado de la incidencia al que se refiere esta respuesta, si procede." #. Default: "Select the area this issue is relevant to." -#: ./content/issue.py:103 +#: ./content/issue.py:108 msgid "Poi_help_issue_area" msgstr "" #. Default: "Select which person, if any, is assigned to this issue." -#: ./content/issue.py:140 +#: ./content/issue.py:145 msgid "Poi_help_issue_assignee" msgstr "" @@ -233,69 +242,69 @@ msgid "Poi_help_issue_attachment" msgstr "" #. Default: "Please provide an email address where you can be contacted for further information or when a resolution is available. Note that your email address will not be displayed to others." -#: ./content/issue.py:149 +#: ./content/issue.py:154 msgid "Poi_help_issue_contact_email" msgstr "" #. Default: "Please provide further details. This field can create Automatic Links." -#: ./content/issue.py:86 +#: ./content/issue.py:91 msgid "Poi_help_issue_details" msgstr "" #. Default: "Last person to edit or add a Response" -#: ./content/issue.py:229 +#: ./content/issue.py:235 msgid "Poi_help_issue_last_actor" msgstr "" #. Default: "Link related issues." -#: ./content/issue.py:211 +#: ./content/issue.py:217 msgid "Poi_help_issue_related" msgstr "" #. Default: "Select the version the issue was found in." -#: ./content/issue.py:77 +#: ./content/issue.py:82 msgid "Poi_help_issue_release" msgstr "" #. Default: "Select the severity of this issue." -#: ./content/issue.py:119 +#: ./content/issue.py:124 msgid "Poi_help_issue_severity" msgstr "" #. Default: "If applicable, please provide the steps to reproduce the error or identify the issue, one per line. This field can create Automatic Links." -#: ./content/issue.py:94 +#: ./content/issue.py:99 msgid "Poi_help_issue_steps" msgstr "" #. Default: "Tags can be used to add arbitrary categorisation to issues. The list below shows existing tags which you can select, or you can add new ones." -#: ./content/issue.py:186 +#: ./content/issue.py:192 msgid "Poi_help_issue_subject" msgstr "" #. Default: "Release this issue is targetted to be fixed in." -#: ./content/issue.py:129 +#: ./content/issue.py:134 msgid "Poi_help_issue_target_release" msgstr "" # ./content/PoiIssue.py #. Default: "Enter a short, descriptive title for the issue. A good title will make it easier for project managers to identify and respond to the issue." -#: ./content/issue.py:68 +#: ./content/issue.py:73 msgid "Poi_help_issue_title" msgstr "Escriba un título corto y descriptivo de la incidencia. Un buen título hace más fácil para los gestores identificar y responder a las incidencias." #. Default: "Select the type of issue." -#: ./content/issue.py:110 +#: ./content/issue.py:115 msgid "Poi_help_issue_type" msgstr "" #. Default: "Enter the user ids of members who are watching this issue, one per line. E-mail addresses are allowed too. These persons will receive an email when a response is added to the issue. Members can also add themselves as watchers." -#: ./content/issue.py:164 +#: ./content/issue.py:170 msgid "Poi_help_issue_watchers" msgstr "" # ./content/PoiTracker.py #. Default: "If given, and if 'Send notification emails' is selected, an email will be sent to this address each time a new issue or response is posted." -#: ./content/tracker.py:360 +#: ./content/tracker.py:354 #, fuzzy msgid "Poi_help_mailingList" msgstr "Si se indica, y se selecciona \"Enviar notificaciones\", se enviará un mensaje a esta dirección cada vez que se publique una nueva incidencia o respuesta. Si no se indica un dirección, los gestores recibirán mensajes individuales." @@ -326,31 +335,31 @@ msgstr "Escriba su respuesta a continuación" # ./content/PoiTracker.py #. Default: "If selected, all tracker assignees above will receive an email for new issues and all issue responses. Issue watchers will receive an email for all issue responses. Issue submitters will receive an email when the issue has been resolved." -#: ./content/tracker.py:344 +#: ./content/tracker.py:338 #, fuzzy msgid "Poi_help_sendNotificationEmails" msgstr "Si se selecciona, los administradores recibirán un mensaje cada vez que se envíe una nueva incidencia o repuesta, y los que envíen incidencias recibirán un mensaje cuando sean respondidos y cuando se resuelvan las incidencias, esperando confirmación." # ./content/PoiTracker.py #. Default: "Please enter the URL to the related repository, e.g.: https://github.com/collective/Products.Poi/commit/%(rev)s for Products.Poi." -#: ./content/tracker.py:374 +#: ./content/tracker.py:368 #, fuzzy msgid "Poi_help_svnurl" msgstr "Por favor ingrese la ruta hacia el repositorio SVN relacionado, e.j.: http://dev.plone.org/changeset/%(rev)s/collective para productos en el Plone collective." #. Default: "Describe the purpose of this tracker" -#: ./content/tracker.py:199 +#: ./content/tracker.py:193 msgid "Poi_help_tracker_description" msgstr "" # ./content/PoiTracker.py #. Default: "Enter a descriptive name for this tracker" -#: ./content/tracker.py:191 +#: ./content/tracker.py:185 msgid "Poi_help_tracker_title" msgstr "Escriba un nombre para este gestor." #. Default: "Enter the user ids of members who are watching this tracker, one per line. E-mail addresses are allowed too. These persons will receive an email when an issue or response is added to the tracker. Members can also add themselves as watchers." -#: ./content/tracker.py:325 +#: ./content/tracker.py:319 msgid "Poi_help_tracker_watchers" msgstr "" @@ -360,37 +369,37 @@ msgid "Poi_issues_label" msgstr "" #. Default: "Assignees" -#: ./content/tracker.py:309 +#: ./content/tracker.py:303 msgid "Poi_label_assignees" msgstr "" # ./content/PoiTracker.py #. Default: "Areas" -#: ./content/tracker.py:218 +#: ./content/tracker.py:212 msgid "Poi_label_availableAreas" msgstr "Áreas" # ./content/PoiTracker.py #. Default: "Issue types" -#: ./content/tracker.py:241 +#: ./content/tracker.py:235 msgid "Poi_label_availableIssueTypes" msgstr "" # ./content/PoiTracker.py #. Default: "Available releases" -#: ./content/tracker.py:289 +#: ./content/tracker.py:283 msgid "Poi_label_availableReleases" msgstr "Versiones disponibles" # ./content/PoiTracker.py #. Default: "Available severities" -#: ./content/tracker.py:263 +#: ./content/tracker.py:257 msgid "Poi_label_availableSeverities" msgstr "Niveles de importancia" # ./content/PoiTracker.py #. Default: "Default severity" -#: ./content/tracker.py:275 +#: ./content/tracker.py:269 msgid "Poi_label_defaultSeverity" msgstr "Importancia por defecto" @@ -401,84 +410,84 @@ msgid "Poi_label_issueTransition" msgstr "Cambiar el estado de la incidencia" #. Default: "Area" -#: ./content/issue.py:102 +#: ./content/issue.py:107 msgid "Poi_label_issue_area" msgstr "" #. Default: "Assignee" -#: ./content/issue.py:139 +#: ./content/issue.py:144 msgid "Poi_label_issue_assignee" msgstr "" #. Default: "Contact Email" -#: ./content/issue.py:148 +#: ./content/issue.py:153 msgid "Poi_label_issue_contact_email" msgstr "" #. Default: "Details" -#: ./content/issue.py:85 +#: ./content/issue.py:90 msgid "Poi_label_issue_details" msgstr "" #. Default: "Leave this field empty" -#: ./content/issue.py:221 +#: ./content/issue.py:227 msgid "Poi_label_issue_empty" msgstr "" #. Default: "Last Actor" -#: ./content/issue.py:227 +#: ./content/issue.py:233 msgid "Poi_label_issue_last_actor" msgstr "" #. Default: "Related Issue(s)" -#: ./content/issue.py:210 +#: ./content/issue.py:216 msgid "Poi_label_issue_related" msgstr "" #. Default: "Release" -#: ./content/issue.py:76 +#: ./content/issue.py:81 msgid "Poi_label_issue_release" msgstr "" #. Default: "Severity" -#: ./content/issue.py:118 +#: ./content/issue.py:123 msgid "Poi_label_issue_severity" msgstr "" #. Default: "Steps To Reproduce" -#: ./content/issue.py:93 +#: ./content/issue.py:98 msgid "Poi_label_issue_steps" msgstr "" #. Default: "Subject" -#: ./content/issue.py:185 +#: ./content/issue.py:191 msgid "Poi_label_issue_subject" msgstr "" #. Default: "Target Release" -#: ./content/issue.py:128 +#: ./content/issue.py:133 msgid "Poi_label_issue_target_release" msgstr "" # ./content/PoiIssue.py #. Default: "Title" -#: ./content/issue.py:67 +#: ./content/issue.py:72 msgid "Poi_label_issue_title" msgstr "Título" #. Default: "Issue Type" -#: ./content/issue.py:109 +#: ./content/issue.py:114 msgid "Poi_label_issue_type" msgstr "" #. Default: "Watchers" -#: ./content/issue.py:163 +#: ./content/issue.py:169 msgid "Poi_label_issue_watchers" msgstr "" # ./content/PoiTracker.py #. Default: "Mailing list" -#: ./content/tracker.py:356 +#: ./content/tracker.py:350 msgid "Poi_label_mailingList" msgstr "Lista de correo" @@ -502,19 +511,19 @@ msgstr "Cambiar destino de publicación" # ./content/PoiTracker.py #. Default: "Send notification emails" -#: ./content/tracker.py:340 +#: ./content/tracker.py:334 msgid "Poi_label_sendNotificationEmails" msgstr "Enviar notificaciones" # ./content/PoiTracker.py #. Default: "URL to Repository" -#: ./content/tracker.py:372 +#: ./content/tracker.py:366 #, fuzzy msgid "Poi_label_svnurl" msgstr "Ruta del servidor de versiones Subversión (SVN)" #. Default: "Watchers" -#: ./content/tracker.py:324 +#: ./content/tracker.py:318 msgid "Poi_label_tracker_watchers" msgstr "" @@ -529,7 +538,7 @@ msgid "Poi_repository_label" msgstr "" #. Default: "" -#: ./browser/response.py:555 +#: ./browser/response.py:557 msgid "Removed response id ${response_id}." msgstr "Eliminada ID de respuesta" @@ -544,12 +553,12 @@ msgstr "" msgid "Response Information" msgstr "" -#: ./browser/response.py:493 +#: ./browser/response.py:495 msgid "Response does not exist anymore; perhaps it was removed by another user." msgstr "" #. Default: "" -#: ./browser/response.py:548 +#: ./browser/response.py:550 msgid "Response id ${response_id} does not exist so it cannot be removed." msgstr "Respuesta del ID ${response_id} no existe por lo que no se puede quitar." @@ -559,7 +568,7 @@ msgid "Response id ${response_id} does not exist." msgstr "Respuesta del ID ${response_id} no existe." #. Default: "" -#: ./browser/response.py:540 +#: ./browser/response.py:542 msgid "Response id ${response_id} is no integer so it cannot be removed." msgstr "Respuesta del ID ${response_id} no es entero por lo que no se puede quitar." @@ -572,11 +581,11 @@ msgstr "Respuesta del ID ${response_id} no es entero." msgid "Search" msgstr "Búsqueda" -#: ./browser/response.py:418 +#: ./browser/response.py:420 msgid "Severity" msgstr "Severidad" -#: ./content/tracker.py:177 +#: ./content/tracker.py:171 msgid "Short Name" msgstr "" @@ -588,7 +597,7 @@ msgstr "" msgid "Submit new issue" msgstr "Notificar nueva incidencia" -#: ./browser/response.py:421 +#: ./browser/response.py:423 msgid "Target release" msgstr "Destino de publicación" @@ -603,20 +612,24 @@ msgstr "" msgid "This is an automated email, please do not reply." msgstr "" -#: ./content/tracker.py:180 +#: ./content/tracker.py:174 msgid "Title" msgstr "" -#: ./browser/response.py:527 +#: ./profiles/default/types/Tracker.xml +msgid "Tracker" +msgstr "" + +#: ./browser/response.py:529 msgid "You are not allowed to delete responses." msgstr "No está permitido eliminar las respuestas." -#: ./browser/response.py:483 +#: ./browser/response.py:485 msgid "You are not allowed to edit responses." msgstr "No está permitido editar las respuestas." #. Default: "Automatic linking" -#: ./browser/templates/automatic_links_help_view.pt:11 +#: ./browser/templates/automatic_links_help_view.pt:16 msgid "authomatic_linking_label" msgstr "" @@ -626,7 +639,7 @@ msgid "batch_x_items_matching_your_criteria" msgstr "" #. Default: "Description" -#: ./content/tracker.py:198 +#: ./content/tracker.py:192 msgid "description" msgstr "" @@ -641,7 +654,7 @@ msgid "description_no_results_found" msgstr "" #. Default: "Help Text" -#: ./content/tracker.py:207 +#: ./content/tracker.py:201 msgid "help_text" msgstr "" @@ -1094,7 +1107,7 @@ msgid "stop_watching_this" msgstr "" #. Default: "Title" -#: ./content/tracker.py:190 +#: ./content/tracker.py:184 msgid "title" msgstr "" diff --git a/Products/Poi/locales/fr/LC_MESSAGES/Poi.po b/Products/Poi/locales/fr/LC_MESSAGES/Poi.po index 244f843c..ab2de8fc 100644 --- a/Products/Poi/locales/fr/LC_MESSAGES/Poi.po +++ b/Products/Poi/locales/fr/LC_MESSAGES/Poi.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: poi-fr\n" -"POT-Creation-Date: 2020-08-27 12:56+0000\n" +"POT-Creation-Date: 2020-09-01 13:08+0000\n" "PO-Revision-Date: 2008-06-19 18:09+0200\n" "Last-Translator: Kevin Deldycke \n" "Language-Team: French \n" @@ -22,6 +22,10 @@ msgstr "" "X-Is-Fallback-For: fr-be fr-ca fr-lu fr-mc fr-ch fr-fr\n" "X-Generator: KBabel 1.11.4\n" +#: ./profiles/default/types/Tracker.xml +msgid "A Poi Issue Tracker" +msgstr "" + #: ./profiles.zcml:14 msgid "A friendly issue tracker" msgstr "" @@ -36,16 +40,20 @@ msgstr "Un nouveau ticket a été créé dans le gestionnaire ${tracker_title} p msgid "A new response has been given to the issue ${issue_title} in the tracker ${tracker_title} by ${response_author}." msgstr "Une nouvelle réponse a été donnée à propos du ticket ${issue_title} du gestionnaire ${tracker_title} par ${response_author}." +#: ./profiles/default/types/Issue.xml +msgid "An Issue in a Poi Tracker" +msgstr "" + #: ./browser/templates/poi_email_new_response_html.pt:42 #: ./browser/templates/poi_email_new_response_plain.pt:23 msgid "An attachment has been added with id ${id}." msgstr "Une pièce jointe a été ajoutée avec l'identifiant ${id}." -#: ./content/tracker.py:236 +#: ./content/tracker.py:230 msgid "Area" msgstr "" -#: ./browser/response.py:419 +#: ./browser/response.py:421 msgid "Assignee" msgstr "" @@ -54,11 +62,11 @@ msgid "Attachments" msgstr "" #. Default: "" -#: ./browser/response.py:503 +#: ./browser/response.py:505 msgid "Changes saved to response id ${response_id}." msgstr "Les modifications à la réponse ${response_id} sont enregistrées." -#: ./content/tracker.py:63 +#: ./content/tracker.py:56 msgid "Critical" msgstr "" @@ -66,7 +74,7 @@ msgstr "" msgid "Delete" msgstr "Effacer" -#: ./content/tracker.py:183 +#: ./content/tracker.py:177 msgid "Description" msgstr "" @@ -78,16 +86,17 @@ msgstr "Modifier" msgid "Edit issue" msgstr "Modifier le ticket" -#: ./content/tracker.py:310 +#: ./content/tracker.py:304 msgid "Enter users who will be responsible for solving the issues. Users also need to be added as Watchers to receive notifications." msgstr "" -#: ./content/tracker.py:64 +#: ./content/tracker.py:57 msgid "Important" msgstr "" #: ./browser/templates/poi_email_new_issue_html.pt:29 #: ./browser/templates/poi_email_resolved_issue_html.pt:32 +#: ./profiles/default/types/Issue.xml msgid "Issue" msgstr "Ticket" @@ -102,11 +111,11 @@ msgstr "Détails du ticket :" msgid "Issue Information" msgstr "Information sur le ticket" -#: ./content/tracker.py:258 +#: ./content/tracker.py:252 msgid "Issue Type" msgstr "" -#: ./browser/response.py:413 +#: ./browser/response.py:415 msgid "Issue state" msgstr "État du ticket" @@ -116,19 +125,19 @@ msgstr "État du ticket" msgid "Issue:" msgstr "Ticket :" -#: ./content/tracker.py:66 +#: ./content/tracker.py:59 msgid "Low" msgstr "" -#: ./content/tracker.py:65 +#: ./content/tracker.py:58 msgid "Medium" msgstr "" -#: ./browser/response.py:533 +#: ./browser/response.py:535 msgid "No response selected for removal." msgstr "Aucune réponse n'est sélectionnée pour la suppression." -#: ./browser/response.py:489 +#: ./browser/response.py:491 msgid "No response selected for saving." msgstr "Aucune réponse n'est sélectionnée pour la sauvegarde." @@ -136,7 +145,7 @@ msgstr "Aucune réponse n'est sélectionnée pour la sauvegarde." msgid "No response selected." msgstr "Aucune réponse n'est sélectionnée." -#: ./browser/response.py:440 +#: ./browser/response.py:442 msgid "No response text added and no issue changes made." msgstr "Aucun texte de réponse ajouté et aucune modification effectuée." @@ -174,38 +183,38 @@ msgstr "" # ./content/PoiTracker.py #. Default: "Enter the issue topics/areas for this tracker." -#: ./content/tracker.py:220 +#: ./content/tracker.py:214 msgid "Poi_help_availableAreas" msgstr "Entrer les sujets/domaines disponibles dans ce gestionnaire de tickets." # ./content/PoiTracker.py #. Default: "Enter the issue types for this tracker." -#: ./content/tracker.py:243 +#: ./content/tracker.py:237 msgid "Poi_help_availableIssueTypes" msgstr "Entrer les types de tickets pour ce gestionnaire." # ./content/PoiTracker.py #. Default: "Enter the releases which issues can be assigned to, one per line. If no releases are entered, issues will not be organized by release." -#: ./content/tracker.py:293 +#: ./content/tracker.py:287 #, fuzzy msgid "Poi_help_availableReleases" msgstr "Entrer les versions où les tickets peuvent être assignés, une par ligne. Si aucune version n'est entrée, les tickets ne seront pas organisés par version." # ./content/PoiTracker.py #. Default: "Enter the different type of issue severities that should be available, one per line." -#: ./content/tracker.py:266 +#: ./content/tracker.py:260 msgid "Poi_help_availableSeverities" msgstr "Entrer les différents types de criticités des tickets disponibles, un par ligne." # ./content/PoiTracker.py #. Default: "Select the default severity for new issues." -#: ./content/tracker.py:280 +#: ./content/tracker.py:274 msgid "Poi_help_defaultSeverity" msgstr "Sélectionnez une criticité par défaut pour les nouveaux tickets." # ./content/PoiTracker.py #. Default: "Enter any introductory help text you'd like to display on the tracker front page." -#: ./content/tracker.py:208 +#: ./content/tracker.py:202 msgid "Poi_help_helpText" msgstr "Entrer une notice d'emploi de votre gestionnaire de tickets qui sera affiché en page d'accueil de l'outil." @@ -216,12 +225,12 @@ msgid "Poi_help_issueTransition" msgstr "Sélectionnez un changement d'état pour cette réponse, si cela est applicable." #. Default: "Select the area this issue is relevant to." -#: ./content/issue.py:103 +#: ./content/issue.py:108 msgid "Poi_help_issue_area" msgstr "" #. Default: "Select which person, if any, is assigned to this issue." -#: ./content/issue.py:140 +#: ./content/issue.py:145 msgid "Poi_help_issue_assignee" msgstr "" @@ -231,69 +240,69 @@ msgid "Poi_help_issue_attachment" msgstr "" #. Default: "Please provide an email address where you can be contacted for further information or when a resolution is available. Note that your email address will not be displayed to others." -#: ./content/issue.py:149 +#: ./content/issue.py:154 msgid "Poi_help_issue_contact_email" msgstr "" #. Default: "Please provide further details. This field can create Automatic Links." -#: ./content/issue.py:86 +#: ./content/issue.py:91 msgid "Poi_help_issue_details" msgstr "" #. Default: "Last person to edit or add a Response" -#: ./content/issue.py:229 +#: ./content/issue.py:235 msgid "Poi_help_issue_last_actor" msgstr "" #. Default: "Link related issues." -#: ./content/issue.py:211 +#: ./content/issue.py:217 msgid "Poi_help_issue_related" msgstr "" #. Default: "Select the version the issue was found in." -#: ./content/issue.py:77 +#: ./content/issue.py:82 msgid "Poi_help_issue_release" msgstr "" #. Default: "Select the severity of this issue." -#: ./content/issue.py:119 +#: ./content/issue.py:124 msgid "Poi_help_issue_severity" msgstr "" #. Default: "If applicable, please provide the steps to reproduce the error or identify the issue, one per line. This field can create Automatic Links." -#: ./content/issue.py:94 +#: ./content/issue.py:99 msgid "Poi_help_issue_steps" msgstr "" #. Default: "Tags can be used to add arbitrary categorisation to issues. The list below shows existing tags which you can select, or you can add new ones." -#: ./content/issue.py:186 +#: ./content/issue.py:192 msgid "Poi_help_issue_subject" msgstr "" #. Default: "Release this issue is targetted to be fixed in." -#: ./content/issue.py:129 +#: ./content/issue.py:134 msgid "Poi_help_issue_target_release" msgstr "" # ./content/PoiIssue.py #. Default: "Enter a short, descriptive title for the issue. A good title will make it easier for project managers to identify and respond to the issue." -#: ./content/issue.py:68 +#: ./content/issue.py:73 msgid "Poi_help_issue_title" msgstr "Entrer un titre court et descriptif pour ce ticket. Un bon titre rendra plus facile pour les chefs de projets l'identification et pour réponse à ce ticket." #. Default: "Select the type of issue." -#: ./content/issue.py:110 +#: ./content/issue.py:115 msgid "Poi_help_issue_type" msgstr "" #. Default: "Enter the user ids of members who are watching this issue, one per line. E-mail addresses are allowed too. These persons will receive an email when a response is added to the issue. Members can also add themselves as watchers." -#: ./content/issue.py:164 +#: ./content/issue.py:170 msgid "Poi_help_issue_watchers" msgstr "" # ./content/PoiTracker.py #. Default: "If given, and if 'Send notification emails' is selected, an email will be sent to this address each time a new issue or response is posted." -#: ./content/tracker.py:360 +#: ./content/tracker.py:354 #, fuzzy msgid "Poi_help_mailingList" msgstr "Si ce champs est rempli, et si « Envoyer des courriels de notification » est coché, un message sera envoyé à cette adresse chaque fois qu'un nouveau ticket ou une nouvelle réponse sera postée. Si aucune adresse de liste de diffusion n'est donnée, les responsables recevront individuellement les messages." @@ -324,31 +333,31 @@ msgstr "Veuillez saisir votre réponse ci-dessous" # ./content/PoiTracker.py #. Default: "If selected, all tracker assignees above will receive an email for new issues and all issue responses. Issue watchers will receive an email for all issue responses. Issue submitters will receive an email when the issue has been resolved." -#: ./content/tracker.py:344 +#: ./content/tracker.py:338 #, fuzzy msgid "Poi_help_sendNotificationEmails" msgstr "Si coché, les responsables du gestionnaire de tickets recevront un message chaque fois qu'un nouveau ticket ou qu'une nouvelle réponse sera créé, et les rapporteurs de bugs recevront un message lorsqu'il y aura une nouvelle réponse et lorsqu'un ticket aura été résolu, attendant la confirmation. Les techniciens reçoivent un email lorsqu'un bug leur a été assigné." # ./content/PoiTracker.py #. Default: "Please enter the URL to the related repository, e.g.: https://github.com/collective/Products.Poi/commit/%(rev)s for Products.Poi." -#: ./content/tracker.py:374 +#: ./content/tracker.py:368 #, fuzzy msgid "Poi_help_svnurl" msgstr "Merci de saisir l'Url vers le dépôt SVN correspondant au projet, e.g.: http://dev.plone.org/changeset/%(rev)s/collective pour les modules collective de Plone." #. Default: "Describe the purpose of this tracker" -#: ./content/tracker.py:199 +#: ./content/tracker.py:193 msgid "Poi_help_tracker_description" msgstr "Décrire le but de ce gestionnaire de bugs" # ./content/PoiTracker.py #. Default: "Enter a descriptive name for this tracker" -#: ./content/tracker.py:191 +#: ./content/tracker.py:185 msgid "Poi_help_tracker_title" msgstr "Entrer un nom descriptif pour ce gestionnaire." #. Default: "Enter the user ids of members who are watching this tracker, one per line. E-mail addresses are allowed too. These persons will receive an email when an issue or response is added to the tracker. Members can also add themselves as watchers." -#: ./content/tracker.py:325 +#: ./content/tracker.py:319 msgid "Poi_help_tracker_watchers" msgstr "Entrez les identifiants des utilisateurs qui observent ce ticket, un par la ligne. Ces utilisateurs recevront un message lorsqu'une réponse sera ajoutée à ce ticket. Les utilisateurs peuvent également s'ajouter comme observateurs." @@ -358,37 +367,37 @@ msgid "Poi_issues_label" msgstr "" #. Default: "Assignees" -#: ./content/tracker.py:309 +#: ./content/tracker.py:303 msgid "Poi_label_assignees" msgstr "" # ./content/PoiTracker.py #. Default: "Areas" -#: ./content/tracker.py:218 +#: ./content/tracker.py:212 msgid "Poi_label_availableAreas" msgstr "Domaines" # ./content/PoiTracker.py #. Default: "Issue types" -#: ./content/tracker.py:241 +#: ./content/tracker.py:235 msgid "Poi_label_availableIssueTypes" msgstr "Types de ticket" # ./content/PoiTracker.py #. Default: "Available releases" -#: ./content/tracker.py:289 +#: ./content/tracker.py:283 msgid "Poi_label_availableReleases" msgstr "Distributions disponibles" # ./content/PoiTracker.py #. Default: "Available severities" -#: ./content/tracker.py:263 +#: ./content/tracker.py:257 msgid "Poi_label_availableSeverities" msgstr "Sévérités disponibles" # ./content/PoiTracker.py #. Default: "Default severity" -#: ./content/tracker.py:275 +#: ./content/tracker.py:269 msgid "Poi_label_defaultSeverity" msgstr "Criticité par défaut" @@ -399,84 +408,84 @@ msgid "Poi_label_issueTransition" msgstr "Modifier l'état du ticket" #. Default: "Area" -#: ./content/issue.py:102 +#: ./content/issue.py:107 msgid "Poi_label_issue_area" msgstr "" #. Default: "Assignee" -#: ./content/issue.py:139 +#: ./content/issue.py:144 msgid "Poi_label_issue_assignee" msgstr "" #. Default: "Contact Email" -#: ./content/issue.py:148 +#: ./content/issue.py:153 msgid "Poi_label_issue_contact_email" msgstr "" #. Default: "Details" -#: ./content/issue.py:85 +#: ./content/issue.py:90 msgid "Poi_label_issue_details" msgstr "" #. Default: "Leave this field empty" -#: ./content/issue.py:221 +#: ./content/issue.py:227 msgid "Poi_label_issue_empty" msgstr "" #. Default: "Last Actor" -#: ./content/issue.py:227 +#: ./content/issue.py:233 msgid "Poi_label_issue_last_actor" msgstr "" #. Default: "Related Issue(s)" -#: ./content/issue.py:210 +#: ./content/issue.py:216 msgid "Poi_label_issue_related" msgstr "" #. Default: "Release" -#: ./content/issue.py:76 +#: ./content/issue.py:81 msgid "Poi_label_issue_release" msgstr "" #. Default: "Severity" -#: ./content/issue.py:118 +#: ./content/issue.py:123 msgid "Poi_label_issue_severity" msgstr "" #. Default: "Steps To Reproduce" -#: ./content/issue.py:93 +#: ./content/issue.py:98 msgid "Poi_label_issue_steps" msgstr "" #. Default: "Subject" -#: ./content/issue.py:185 +#: ./content/issue.py:191 msgid "Poi_label_issue_subject" msgstr "" #. Default: "Target Release" -#: ./content/issue.py:128 +#: ./content/issue.py:133 msgid "Poi_label_issue_target_release" msgstr "" # ./content/PoiIssue.py #. Default: "Title" -#: ./content/issue.py:67 +#: ./content/issue.py:72 msgid "Poi_label_issue_title" msgstr "Titre" #. Default: "Issue Type" -#: ./content/issue.py:109 +#: ./content/issue.py:114 msgid "Poi_label_issue_type" msgstr "" #. Default: "Watchers" -#: ./content/issue.py:163 +#: ./content/issue.py:169 msgid "Poi_label_issue_watchers" msgstr "" # ./content/PoiTracker.py #. Default: "Mailing list" -#: ./content/tracker.py:356 +#: ./content/tracker.py:350 msgid "Poi_label_mailingList" msgstr "Liste de diffusion" @@ -500,19 +509,19 @@ msgstr "Modifier la distribution voulue" # ./content/PoiTracker.py #. Default: "Send notification emails" -#: ./content/tracker.py:340 +#: ./content/tracker.py:334 msgid "Poi_label_sendNotificationEmails" msgstr "Envoyer des courriels de notification" # ./content/PoiTracker.py #. Default: "URL to Repository" -#: ./content/tracker.py:372 +#: ./content/tracker.py:366 #, fuzzy msgid "Poi_label_svnurl" msgstr "URL du SVN" #. Default: "Watchers" -#: ./content/tracker.py:324 +#: ./content/tracker.py:318 #, fuzzy msgid "Poi_label_tracker_watchers" msgstr "Observateurs du gestionnaire de tickets" @@ -528,7 +537,7 @@ msgid "Poi_repository_label" msgstr "" #. Default: "" -#: ./browser/response.py:555 +#: ./browser/response.py:557 msgid "Removed response id ${response_id}." msgstr "La réponse « ${response_id} » a été supprimé." @@ -543,12 +552,12 @@ msgstr "Détails de la réponse :" msgid "Response Information" msgstr "Informations sur la réponse" -#: ./browser/response.py:493 +#: ./browser/response.py:495 msgid "Response does not exist anymore; perhaps it was removed by another user." msgstr "La réponse n'existe plus; peut être qu'elle a été supprimée par un autre utilisateur." #. Default: "" -#: ./browser/response.py:548 +#: ./browser/response.py:550 msgid "Response id ${response_id} does not exist so it cannot be removed." msgstr "La réponse « ${response_id} » n'existe pas donc n'a pu être effacée." @@ -558,7 +567,7 @@ msgid "Response id ${response_id} does not exist." msgstr "La réponse « ${response_id} » n'existe pas." #. Default: "" -#: ./browser/response.py:540 +#: ./browser/response.py:542 msgid "Response id ${response_id} is no integer so it cannot be removed." msgstr "L'identifiant « ${response_id} » de la réponse n'est pas un entier donc elle n'a pu être effacée." @@ -571,11 +580,11 @@ msgstr "L'identifiant « ${response_id} » de la réponse n'est pas un entier." msgid "Search" msgstr "Rechercher" -#: ./browser/response.py:418 +#: ./browser/response.py:420 msgid "Severity" msgstr "Sévérité" -#: ./content/tracker.py:177 +#: ./content/tracker.py:171 msgid "Short Name" msgstr "" @@ -587,7 +596,7 @@ msgstr "" msgid "Submit new issue" msgstr "Soumettre un nouveau ticket" -#: ./browser/response.py:421 +#: ./browser/response.py:423 msgid "Target release" msgstr "Distribution cible" @@ -602,20 +611,24 @@ msgstr "" msgid "This is an automated email, please do not reply." msgstr "Ceci est un email automatique, merci de ne pas répondre." -#: ./content/tracker.py:180 +#: ./content/tracker.py:174 msgid "Title" msgstr "" -#: ./browser/response.py:527 +#: ./profiles/default/types/Tracker.xml +msgid "Tracker" +msgstr "" + +#: ./browser/response.py:529 msgid "You are not allowed to delete responses." msgstr "Vous n'êtes pas autorisé à effacer des réponses." -#: ./browser/response.py:483 +#: ./browser/response.py:485 msgid "You are not allowed to edit responses." msgstr "Vous n'êtes pas autorisé à modifier des réponses." #. Default: "Automatic linking" -#: ./browser/templates/automatic_links_help_view.pt:11 +#: ./browser/templates/automatic_links_help_view.pt:16 msgid "authomatic_linking_label" msgstr "" @@ -625,7 +638,7 @@ msgid "batch_x_items_matching_your_criteria" msgstr "" #. Default: "Description" -#: ./content/tracker.py:198 +#: ./content/tracker.py:192 msgid "description" msgstr "" @@ -640,7 +653,7 @@ msgid "description_no_results_found" msgstr "" #. Default: "Help Text" -#: ./content/tracker.py:207 +#: ./content/tracker.py:201 msgid "help_text" msgstr "" @@ -1093,7 +1106,7 @@ msgid "stop_watching_this" msgstr "" #. Default: "Title" -#: ./content/tracker.py:190 +#: ./content/tracker.py:184 msgid "title" msgstr "" diff --git a/Products/Poi/locales/it/LC_MESSAGES/Poi.po b/Products/Poi/locales/it/LC_MESSAGES/Poi.po index ed95d51f..c7e68bf5 100644 --- a/Products/Poi/locales/it/LC_MESSAGES/Poi.po +++ b/Products/Poi/locales/it/LC_MESSAGES/Poi.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Poi\n" -"POT-Creation-Date: 2020-08-27 12:56+0000\n" +"POT-Creation-Date: 2020-09-01 13:08+0000\n" "PO-Revision-Date: 2007-03-22 11:28+0100\n" "Last-Translator: Luca Fabbri \n" "Language-Team: Plone Italian Translation Discussion \n" @@ -17,6 +17,10 @@ msgstr "" "Domain: Poi\n" "Language: \n" +#: ./profiles/default/types/Tracker.xml +msgid "A Poi Issue Tracker" +msgstr "Gestore attività" + #: ./profiles.zcml:14 msgid "A friendly issue tracker" msgstr "" @@ -31,16 +35,20 @@ msgstr "Una nuova richiesta è stata inserita nel gestore ${tracker_title} da ${ msgid "A new response has been given to the issue ${issue_title} in the tracker ${tracker_title} by ${response_author}." msgstr "Un nuovo commento è stato inserito nella richiesta ${issue_title} nel gestore ${tracker_title} da ${response_author}." +#: ./profiles/default/types/Issue.xml +msgid "An Issue in a Poi Tracker" +msgstr "Attività del gestore" + #: ./browser/templates/poi_email_new_response_html.pt:42 #: ./browser/templates/poi_email_new_response_plain.pt:23 msgid "An attachment has been added with id ${id}." msgstr "Un allegato è stato aggiunto con id ${id}." -#: ./content/tracker.py:236 +#: ./content/tracker.py:230 msgid "Area" msgstr "" -#: ./browser/response.py:419 +#: ./browser/response.py:421 msgid "Assignee" msgstr "Responsabile" @@ -49,11 +57,11 @@ msgid "Attachments" msgstr "Allegati" #. Default: "" -#: ./browser/response.py:503 +#: ./browser/response.py:505 msgid "Changes saved to response id ${response_id}." msgstr "Modifiche memorizzate nella risposta con id ${response_id}." -#: ./content/tracker.py:63 +#: ./content/tracker.py:56 msgid "Critical" msgstr "Critica" @@ -61,7 +69,7 @@ msgstr "Critica" msgid "Delete" msgstr "Elimina" -#: ./content/tracker.py:183 +#: ./content/tracker.py:177 msgid "Description" msgstr "Descrizione" @@ -73,16 +81,17 @@ msgstr "Modifica" msgid "Edit issue" msgstr "Modifica richiesta" -#: ./content/tracker.py:310 +#: ./content/tracker.py:304 msgid "Enter users who will be responsible for solving the issues. Users also need to be added as Watchers to receive notifications." msgstr "Inserisci gli utenti responsabili della gestione delle atività. Questi utenti devono anche essere aggiunti come Osservatori del gestore dellle atività per poter ricevere le notifiche." -#: ./content/tracker.py:64 +#: ./content/tracker.py:57 msgid "Important" msgstr "Importante" #: ./browser/templates/poi_email_new_issue_html.pt:29 #: ./browser/templates/poi_email_resolved_issue_html.pt:32 +#: ./profiles/default/types/Issue.xml msgid "Issue" msgstr "Richieste" @@ -97,11 +106,11 @@ msgstr "Dettagli richiesta:" msgid "Issue Information" msgstr "Informazioni sulla richiesta" -#: ./content/tracker.py:258 +#: ./content/tracker.py:252 msgid "Issue Type" msgstr "Tipo di richiesta" -#: ./browser/response.py:413 +#: ./browser/response.py:415 msgid "Issue state" msgstr "Stato richiesta" @@ -111,19 +120,19 @@ msgstr "Stato richiesta" msgid "Issue:" msgstr "Richiesta:" -#: ./content/tracker.py:66 +#: ./content/tracker.py:59 msgid "Low" msgstr "Bassa" -#: ./content/tracker.py:65 +#: ./content/tracker.py:58 msgid "Medium" msgstr "Media" -#: ./browser/response.py:533 +#: ./browser/response.py:535 msgid "No response selected for removal." msgstr "Nessuna risposta selezionata per l'eliminazione." -#: ./browser/response.py:489 +#: ./browser/response.py:491 msgid "No response selected for saving." msgstr "Nessuna risposta selezionata per il salvataggio." @@ -131,7 +140,7 @@ msgstr "Nessuna risposta selezionata per il salvataggio." msgid "No response selected." msgstr "Nessuna risposta selezionata." -#: ./browser/response.py:440 +#: ./browser/response.py:442 msgid "No response text added and no issue changes made." msgstr "Nessun testo della risposta aggiunto e nessuna modifica effettuata." @@ -169,19 +178,19 @@ msgstr "Questo campo crea in automatico link al repository impostato nel gestore # ./content/PoiTracker.py #. Default: "Enter the issue topics/areas for this tracker." -#: ./content/tracker.py:220 +#: ./content/tracker.py:214 msgid "Poi_help_availableAreas" msgstr "Inserisci gli argomenti/aree desiderati per questo gestore di richieste" # ./content/PoiTracker.py #. Default: "Enter the issue types for this tracker." -#: ./content/tracker.py:243 +#: ./content/tracker.py:237 msgid "Poi_help_availableIssueTypes" msgstr "Inserisci i tipi di richiesta previsti per questo gestore di richieste" # ./content/PoiTracker.py #. Default: "Enter the releases which issues can be assigned to, one per line. If no releases are entered, issues will not be organized by release." -#: ./content/tracker.py:293 +#: ./content/tracker.py:287 msgid "Poi_help_availableReleases" msgstr "" "Inserisci i rilasci a cui la richiesta può essere assegnata, uno per linea.\n" @@ -189,19 +198,19 @@ msgstr "" # ./content/PoiTracker.py #. Default: "Enter the different type of issue severities that should be available, one per line." -#: ./content/tracker.py:266 +#: ./content/tracker.py:260 msgid "Poi_help_availableSeverities" msgstr "Inserisci i diversi tipi di priorità delle richieste che dovrebbero essere disponibili, uno per linea." # ./content/PoiTracker.py #. Default: "Select the default severity for new issues." -#: ./content/tracker.py:280 +#: ./content/tracker.py:274 msgid "Poi_help_defaultSeverity" msgstr "Seleziona la priorità predefinita da assegnare alle nuove richieste." # ./content/PoiTracker.py #. Default: "Enter any introductory help text you'd like to display on the tracker front page." -#: ./content/tracker.py:208 +#: ./content/tracker.py:202 msgid "Poi_help_helpText" msgstr "Inserisci il testo introduttivo che vorresti visualizzare nella pagina principale del gestore di richieste." @@ -212,12 +221,12 @@ msgid "Poi_help_issueTransition" msgstr "Se necessario, seleziona un cambio di stato nella richiesta alla quale stai rispondendo." #. Default: "Select the area this issue is relevant to." -#: ./content/issue.py:103 +#: ./content/issue.py:108 msgid "Poi_help_issue_area" msgstr "Selezionare l'area a cui indirizzare la richiesta." #. Default: "Select which person, if any, is assigned to this issue." -#: ./content/issue.py:140 +#: ./content/issue.py:145 msgid "Poi_help_issue_assignee" msgstr "Selezionare quale persona è assegnata a questa richiesta." @@ -227,69 +236,69 @@ msgid "Poi_help_issue_attachment" msgstr "E' possibile caricare allegati. Evitare di caricare file di grosse dimensioni" #. Default: "Please provide an email address where you can be contacted for further information or when a resolution is available. Note that your email address will not be displayed to others." -#: ./content/issue.py:149 +#: ./content/issue.py:154 msgid "Poi_help_issue_contact_email" msgstr "Indicare un indirizzo email valido dove poter essere contattati per ulteriori informazioni o quando una soluzione sarà disponibile. Questo indirizzo email può essere diverso da quello personale e se inserito riceverà tutte le notifiche fino alla risoluzione della richiesta." #. Default: "Please provide further details. This field can create Automatic Links." -#: ./content/issue.py:86 +#: ./content/issue.py:91 msgid "Poi_help_issue_details" msgstr "Fornire ulteriori dettagli. Questo campo può creare dei collegamenti automatici." #. Default: "Last person to edit or add a Response" -#: ./content/issue.py:229 +#: ./content/issue.py:235 msgid "Poi_help_issue_last_actor" msgstr "Ultima persona che ha risposto" #. Default: "Link related issues." -#: ./content/issue.py:211 +#: ./content/issue.py:217 msgid "Poi_help_issue_related" msgstr "Link alle richieste correlate." #. Default: "Select the version the issue was found in." -#: ./content/issue.py:77 +#: ./content/issue.py:82 msgid "Poi_help_issue_release" msgstr "Seleziona la versione della richiesta in cui è stata trovata" #. Default: "Select the severity of this issue." -#: ./content/issue.py:119 +#: ./content/issue.py:124 msgid "Poi_help_issue_severity" msgstr "Selezionare la priorità di questa richiesta." #. Default: "If applicable, please provide the steps to reproduce the error or identify the issue, one per line. This field can create Automatic Links." -#: ./content/issue.py:94 +#: ./content/issue.py:99 msgid "Poi_help_issue_steps" msgstr "Se possibile, fornire i dettagli, uno per riga, su come riprodurre l'errore o identificare il problema. Questo campo può creare dei collegamenti automatici." #. Default: "Tags can be used to add arbitrary categorisation to issues. The list below shows existing tags which you can select, or you can add new ones." -#: ./content/issue.py:186 +#: ./content/issue.py:192 msgid "Poi_help_issue_subject" msgstr "Le parole chiave possono essere usate per classificare le richieste. La lista sotto riportata mostra le parole chiave esistenti che si possono utilizzare, oppure se ne possono aggiungere di nuove." #. Default: "Release this issue is targetted to be fixed in." -#: ./content/issue.py:129 +#: ./content/issue.py:134 msgid "Poi_help_issue_target_release" msgstr "La versione di questa richiesta sarà risolta in " # ./content/PoiIssue.py #. Default: "Enter a short, descriptive title for the issue. A good title will make it easier for project managers to identify and respond to the issue." -#: ./content/issue.py:68 +#: ./content/issue.py:73 msgid "Poi_help_issue_title" msgstr "Inserisci un breve titolo descrittivo della richiesta. Un buon titolo renderà più semplice per [i gestori] identificare e rispondere alla richiesta." #. Default: "Select the type of issue." -#: ./content/issue.py:110 +#: ./content/issue.py:115 msgid "Poi_help_issue_type" msgstr "Selezionare il tipo di richiesta." #. Default: "Enter the user ids of members who are watching this issue, one per line. E-mail addresses are allowed too. These persons will receive an email when a response is added to the issue. Members can also add themselves as watchers." -#: ./content/issue.py:164 +#: ./content/issue.py:170 msgid "Poi_help_issue_watchers" msgstr "Inserire gli identificativi degli utenti che devono seguire questa richiesta, uno per riga. Sono ammessi anche indirizzi email. Questi utenti riceveranno un email quando verrà aggiunta una risposta alla richiesta. Gli utenti con ruolo Membro posso aggiungersi loro stessi come Osservatori." # ./content/PoiTracker.py #. Default: "If given, and if 'Send notification emails' is selected, an email will be sent to this address each time a new issue or response is posted." -#: ./content/tracker.py:360 +#: ./content/tracker.py:354 msgid "Poi_help_mailingList" msgstr "" "Se specificato e se \"Invia mail di notifica\" è selezionato, una email sarà inviata a questo indirizzo ogni volta che una nuova richiesta o risposta saranno generate.\n" @@ -322,7 +331,7 @@ msgstr "Per favore inserisci qui sotto la tua risposta." # ./content/PoiTracker.py #. Default: "If selected, all tracker assignees above will receive an email for new issues and all issue responses. Issue watchers will receive an email for all issue responses. Issue submitters will receive an email when the issue has been resolved." -#: ./content/tracker.py:344 +#: ./content/tracker.py:338 msgid "Poi_help_sendNotificationEmails" msgstr "" "Se selezionato, i manager del gestore delle richieste riceveranno una mail ogni volta che una nuova richiesta o risposta saranno generate, e chi ha inviato la richiesta riceverà una email quando sarà presente una nuova risposta o quando una richiesta verrà risolta, in attesa della conferma.\n" @@ -330,23 +339,23 @@ msgstr "" # ./content/PoiTracker.py #. Default: "Please enter the URL to the related repository, e.g.: https://github.com/collective/Products.Poi/commit/%(rev)s for Products.Poi." -#: ./content/tracker.py:374 +#: ./content/tracker.py:368 msgid "Poi_help_svnurl" msgstr "Per favore inserisci l'URL del repository SVN connessi, ad esempio: http://dev.plone.org/changeset/%(rev)s/collective per i prodotti nella collective Plone (SVN)." #. Default: "Describe the purpose of this tracker" -#: ./content/tracker.py:199 +#: ./content/tracker.py:193 msgid "Poi_help_tracker_description" msgstr "Descrivi lo scopo del gestore delle richieste" # ./content/PoiTracker.py #. Default: "Enter a descriptive name for this tracker" -#: ./content/tracker.py:191 +#: ./content/tracker.py:185 msgid "Poi_help_tracker_title" msgstr "Inserisci un nome descrittivo per questo gestore di richieste." #. Default: "Enter the user ids of members who are watching this tracker, one per line. E-mail addresses are allowed too. These persons will receive an email when an issue or response is added to the tracker. Members can also add themselves as watchers." -#: ./content/tracker.py:325 +#: ./content/tracker.py:319 msgid "Poi_help_tracker_watchers" msgstr "" "Inserisci gli id degli utenti che stanno seguendo questa richiesta, uno per riga.\n" @@ -360,37 +369,37 @@ msgid "Poi_issues_label" msgstr "Richieste" #. Default: "Assignees" -#: ./content/tracker.py:309 +#: ./content/tracker.py:303 msgid "Poi_label_assignees" msgstr "Responsabili" # ./content/PoiTracker.py #. Default: "Areas" -#: ./content/tracker.py:218 +#: ./content/tracker.py:212 msgid "Poi_label_availableAreas" msgstr "Aree" # ./content/PoiTracker.py #. Default: "Issue types" -#: ./content/tracker.py:241 +#: ./content/tracker.py:235 msgid "Poi_label_availableIssueTypes" msgstr "Tipi di richiesta" # ./content/PoiTracker.py #. Default: "Available releases" -#: ./content/tracker.py:289 +#: ./content/tracker.py:283 msgid "Poi_label_availableReleases" msgstr "Rilasci disponibili" # ./content/PoiTracker.py #. Default: "Available severities" -#: ./content/tracker.py:263 +#: ./content/tracker.py:257 msgid "Poi_label_availableSeverities" msgstr "Priorità disponibili" # ./content/PoiTracker.py #. Default: "Default severity" -#: ./content/tracker.py:275 +#: ./content/tracker.py:269 msgid "Poi_label_defaultSeverity" msgstr "Priorità predefinita" @@ -401,84 +410,84 @@ msgid "Poi_label_issueTransition" msgstr "Cambia lo stato della richiesta" #. Default: "Area" -#: ./content/issue.py:102 +#: ./content/issue.py:107 msgid "Poi_label_issue_area" msgstr "Seleziona l'area per cui è rilevante questa richiesta" #. Default: "Assignee" -#: ./content/issue.py:139 +#: ./content/issue.py:144 msgid "Poi_label_issue_assignee" msgstr "Responsabile" #. Default: "Contact Email" -#: ./content/issue.py:148 +#: ./content/issue.py:153 msgid "Poi_label_issue_contact_email" msgstr "Contatto Email" #. Default: "Details" -#: ./content/issue.py:85 +#: ./content/issue.py:90 msgid "Poi_label_issue_details" msgstr "Dettagli" #. Default: "Leave this field empty" -#: ./content/issue.py:221 +#: ./content/issue.py:227 msgid "Poi_label_issue_empty" msgstr "Lascia vuoto questo campo" #. Default: "Last Actor" -#: ./content/issue.py:227 +#: ./content/issue.py:233 msgid "Poi_label_issue_last_actor" msgstr "Ultima persona che ha dato una risposta" #. Default: "Related Issue(s)" -#: ./content/issue.py:210 +#: ./content/issue.py:216 msgid "Poi_label_issue_related" msgstr "Richieste correlate" #. Default: "Release" -#: ./content/issue.py:76 +#: ./content/issue.py:81 msgid "Poi_label_issue_release" msgstr "Rilascio" #. Default: "Severity" -#: ./content/issue.py:118 +#: ./content/issue.py:123 msgid "Poi_label_issue_severity" msgstr "Priorità" #. Default: "Steps To Reproduce" -#: ./content/issue.py:93 +#: ./content/issue.py:98 msgid "Poi_label_issue_steps" msgstr "Istruzioni per replicare il problema" #. Default: "Subject" -#: ./content/issue.py:185 +#: ./content/issue.py:191 msgid "Poi_label_issue_subject" msgstr "Parole chiave" #. Default: "Target Release" -#: ./content/issue.py:128 +#: ./content/issue.py:133 msgid "Poi_label_issue_target_release" msgstr "Rilascio previsto" # ./content/PoiIssue.py #. Default: "Title" -#: ./content/issue.py:67 +#: ./content/issue.py:72 msgid "Poi_label_issue_title" msgstr "Titolo" #. Default: "Issue Type" -#: ./content/issue.py:109 +#: ./content/issue.py:114 msgid "Poi_label_issue_type" msgstr "Tipo di richiesta" #. Default: "Watchers" -#: ./content/issue.py:163 +#: ./content/issue.py:169 msgid "Poi_label_issue_watchers" msgstr "Osservatori del gestore di richieste" # ./content/PoiTracker.py #. Default: "Mailing list" -#: ./content/tracker.py:356 +#: ./content/tracker.py:350 msgid "Poi_label_mailingList" msgstr "Mailing list" @@ -502,18 +511,18 @@ msgstr "Cambia la versione di rilascio" # ./content/PoiTracker.py #. Default: "Send notification emails" -#: ./content/tracker.py:340 +#: ./content/tracker.py:334 msgid "Poi_label_sendNotificationEmails" msgstr "Invia mail di notifica" # ./content/PoiTracker.py #. Default: "URL to Repository" -#: ./content/tracker.py:372 +#: ./content/tracker.py:366 msgid "Poi_label_svnurl" msgstr "l'indirizzo del server di versioni di Subversion (SVN)" #. Default: "Watchers" -#: ./content/tracker.py:324 +#: ./content/tracker.py:318 msgid "Poi_label_tracker_watchers" msgstr "Osservatori del gestore di richieste" @@ -528,7 +537,7 @@ msgid "Poi_repository_label" msgstr "Repository" #. Default: "" -#: ./browser/response.py:555 +#: ./browser/response.py:557 msgid "Removed response id ${response_id}." msgstr "Rimossa la risposta con id ${response_id}." @@ -543,12 +552,12 @@ msgstr "Dettagli della risposta:" msgid "Response Information" msgstr "Informazioni sulla risposta" -#: ./browser/response.py:493 +#: ./browser/response.py:495 msgid "Response does not exist anymore; perhaps it was removed by another user." msgstr "La risposta non esiste più; forse è stata eliminata da un altro utente." #. Default: "" -#: ./browser/response.py:548 +#: ./browser/response.py:550 msgid "Response id ${response_id} does not exist so it cannot be removed." msgstr "La risposta con id ${response_id} non esiste quindi non potrà essere rimossa." @@ -558,7 +567,7 @@ msgid "Response id ${response_id} does not exist." msgstr "La risposta con id ${response_id} non esiste." #. Default: "" -#: ./browser/response.py:540 +#: ./browser/response.py:542 msgid "Response id ${response_id} is no integer so it cannot be removed." msgstr "L'id della risposta ${response_id} non è un intero quindi non può essere rimossa." @@ -571,11 +580,11 @@ msgstr "L'id della risposta ${response_id} non è un intero." msgid "Search" msgstr "Ricerca" -#: ./browser/response.py:418 +#: ./browser/response.py:420 msgid "Severity" msgstr "Gravità" -#: ./content/tracker.py:177 +#: ./content/tracker.py:171 msgid "Short Name" msgstr "Nome breve" @@ -587,7 +596,7 @@ msgstr "Invia" msgid "Submit new issue" msgstr "Invia una nuova richiesta" -#: ./browser/response.py:421 +#: ./browser/response.py:423 msgid "Target release" msgstr "Rilascio previsto" @@ -602,20 +611,24 @@ msgstr "La richiesta ${issue_title} in ${tracker_title} è stata risolta da ${re msgid "This is an automated email, please do not reply." msgstr "Questa è una mail generata automaticamente, per favore non rispondere a questo messaggio." -#: ./content/tracker.py:180 +#: ./content/tracker.py:174 msgid "Title" msgstr "Titolo" -#: ./browser/response.py:527 +#: ./profiles/default/types/Tracker.xml +msgid "Tracker" +msgstr "Gestore attività" + +#: ./browser/response.py:529 msgid "You are not allowed to delete responses." msgstr "Non sei autorizzato a cancellare le risposte." -#: ./browser/response.py:483 +#: ./browser/response.py:485 msgid "You are not allowed to edit responses." msgstr "Non sei autorizzato a modificare le risposte." #. Default: "Automatic linking" -#: ./browser/templates/automatic_links_help_view.pt:11 +#: ./browser/templates/automatic_links_help_view.pt:16 msgid "authomatic_linking_label" msgstr "Collegamenti automatici" @@ -625,7 +638,7 @@ msgid "batch_x_items_matching_your_criteria" msgstr "(234 elementi corrispondono)" #. Default: "Description" -#: ./content/tracker.py:198 +#: ./content/tracker.py:192 msgid "description" msgstr "Descrizione" @@ -640,7 +653,7 @@ msgid "description_no_results_found" msgstr "Nessun risultato trovato" #. Default: "Help Text" -#: ./content/tracker.py:207 +#: ./content/tracker.py:201 msgid "help_text" msgstr "Testo introduttivo" @@ -1093,7 +1106,7 @@ msgid "stop_watching_this" msgstr "Non seguire più questo" #. Default: "Title" -#: ./content/tracker.py:190 +#: ./content/tracker.py:184 msgid "title" msgstr "Titolo" diff --git a/Products/Poi/locales/ja/LC_MESSAGES/Poi.po b/Products/Poi/locales/ja/LC_MESSAGES/Poi.po index b9ab7429..5c75cf3d 100644 --- a/Products/Poi/locales/ja/LC_MESSAGES/Poi.po +++ b/Products/Poi/locales/ja/LC_MESSAGES/Poi.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Poi\n" -"POT-Creation-Date: 2020-08-27 12:56+0000\n" +"POT-Creation-Date: 2020-09-01 13:08+0000\n" "PO-Revision-Date: 2006-01-22 18:00+0900\n" "Last-Translator: TANIGUCHI Takaki \n" "Language-Team: LANGUAGE \n" @@ -17,6 +17,10 @@ msgstr "" "Domain: Poi\n" "Language: \n" +#: ./profiles/default/types/Tracker.xml +msgid "A Poi Issue Tracker" +msgstr "" + #: ./profiles.zcml:14 msgid "A friendly issue tracker" msgstr "" @@ -31,16 +35,20 @@ msgstr "" msgid "A new response has been given to the issue ${issue_title} in the tracker ${tracker_title} by ${response_author}." msgstr "" +#: ./profiles/default/types/Issue.xml +msgid "An Issue in a Poi Tracker" +msgstr "" + #: ./browser/templates/poi_email_new_response_html.pt:42 #: ./browser/templates/poi_email_new_response_plain.pt:23 msgid "An attachment has been added with id ${id}." msgstr "" -#: ./content/tracker.py:236 +#: ./content/tracker.py:230 msgid "Area" msgstr "" -#: ./browser/response.py:419 +#: ./browser/response.py:421 msgid "Assignee" msgstr "" @@ -49,11 +57,11 @@ msgid "Attachments" msgstr "" #. Default: "" -#: ./browser/response.py:503 +#: ./browser/response.py:505 msgid "Changes saved to response id ${response_id}." msgstr "" -#: ./content/tracker.py:63 +#: ./content/tracker.py:56 msgid "Critical" msgstr "" @@ -61,7 +69,7 @@ msgstr "" msgid "Delete" msgstr "削除" -#: ./content/tracker.py:183 +#: ./content/tracker.py:177 msgid "Description" msgstr "" @@ -73,16 +81,17 @@ msgstr "編集" msgid "Edit issue" msgstr "" -#: ./content/tracker.py:310 +#: ./content/tracker.py:304 msgid "Enter users who will be responsible for solving the issues. Users also need to be added as Watchers to receive notifications." msgstr "" -#: ./content/tracker.py:64 +#: ./content/tracker.py:57 msgid "Important" msgstr "" #: ./browser/templates/poi_email_new_issue_html.pt:29 #: ./browser/templates/poi_email_resolved_issue_html.pt:32 +#: ./profiles/default/types/Issue.xml msgid "Issue" msgstr "" @@ -97,11 +106,11 @@ msgstr "" msgid "Issue Information" msgstr "" -#: ./content/tracker.py:258 +#: ./content/tracker.py:252 msgid "Issue Type" msgstr "" -#: ./browser/response.py:413 +#: ./browser/response.py:415 msgid "Issue state" msgstr "" @@ -111,19 +120,19 @@ msgstr "" msgid "Issue:" msgstr "" -#: ./content/tracker.py:66 +#: ./content/tracker.py:59 msgid "Low" msgstr "" -#: ./content/tracker.py:65 +#: ./content/tracker.py:58 msgid "Medium" msgstr "" -#: ./browser/response.py:533 +#: ./browser/response.py:535 msgid "No response selected for removal." msgstr "" -#: ./browser/response.py:489 +#: ./browser/response.py:491 msgid "No response selected for saving." msgstr "" @@ -131,7 +140,7 @@ msgstr "" msgid "No response selected." msgstr "" -#: ./browser/response.py:440 +#: ./browser/response.py:442 msgid "No response text added and no issue changes made." msgstr "" @@ -169,40 +178,40 @@ msgstr "" # ./content/PoiTracker.py #. Default: "Enter the issue topics/areas for this tracker." -#: ./content/tracker.py:220 +#: ./content/tracker.py:214 #, fuzzy msgid "Poi_help_availableAreas" msgstr "このトラッカーのトピック/領域を入力して下さい。一行毎に一つの記述です。形式は\"短縮名 | タイトル | 説明\" です。" # ./content/PoiTracker.py #. Default: "Enter the issue types for this tracker." -#: ./content/tracker.py:243 +#: ./content/tracker.py:237 #, fuzzy msgid "Poi_help_availableIssueTypes" msgstr "この課題の種類を入力して下さい。一行毎に一つの記述です。形式は\"短縮名 | タイトル | 説明\" です。" # ./content/PoiTracker.py #. Default: "Enter the releases which issues can be assigned to, one per line. If no releases are entered, issues will not be organized by release." -#: ./content/tracker.py:293 +#: ./content/tracker.py:287 #, fuzzy msgid "Poi_help_availableReleases" msgstr "利用できる課題の重要度を一行毎に入力して下さい。" # ./content/PoiTracker.py #. Default: "Enter the different type of issue severities that should be available, one per line." -#: ./content/tracker.py:266 +#: ./content/tracker.py:260 msgid "Poi_help_availableSeverities" msgstr "一行毎に使用する課題の重要度を入力して下さい。" # ./content/PoiTracker.py #. Default: "Select the default severity for new issues." -#: ./content/tracker.py:280 +#: ./content/tracker.py:274 msgid "Poi_help_defaultSeverity" msgstr "新規の課題のデフォルトの重要度を選択して下さい。" # ./content/PoiTracker.py #. Default: "Enter any introductory help text you'd like to display on the tracker front page." -#: ./content/tracker.py:208 +#: ./content/tracker.py:202 msgid "Poi_help_helpText" msgstr "" @@ -213,12 +222,12 @@ msgid "Poi_help_issueTransition" msgstr "対応によって課題の状態が変更されるならば選択して下さい。" #. Default: "Select the area this issue is relevant to." -#: ./content/issue.py:103 +#: ./content/issue.py:108 msgid "Poi_help_issue_area" msgstr "" #. Default: "Select which person, if any, is assigned to this issue." -#: ./content/issue.py:140 +#: ./content/issue.py:145 msgid "Poi_help_issue_assignee" msgstr "" @@ -228,69 +237,69 @@ msgid "Poi_help_issue_attachment" msgstr "" #. Default: "Please provide an email address where you can be contacted for further information or when a resolution is available. Note that your email address will not be displayed to others." -#: ./content/issue.py:149 +#: ./content/issue.py:154 msgid "Poi_help_issue_contact_email" msgstr "" #. Default: "Please provide further details. This field can create Automatic Links." -#: ./content/issue.py:86 +#: ./content/issue.py:91 msgid "Poi_help_issue_details" msgstr "" #. Default: "Last person to edit or add a Response" -#: ./content/issue.py:229 +#: ./content/issue.py:235 msgid "Poi_help_issue_last_actor" msgstr "" #. Default: "Link related issues." -#: ./content/issue.py:211 +#: ./content/issue.py:217 msgid "Poi_help_issue_related" msgstr "" #. Default: "Select the version the issue was found in." -#: ./content/issue.py:77 +#: ./content/issue.py:82 msgid "Poi_help_issue_release" msgstr "" #. Default: "Select the severity of this issue." -#: ./content/issue.py:119 +#: ./content/issue.py:124 msgid "Poi_help_issue_severity" msgstr "" #. Default: "If applicable, please provide the steps to reproduce the error or identify the issue, one per line. This field can create Automatic Links." -#: ./content/issue.py:94 +#: ./content/issue.py:99 msgid "Poi_help_issue_steps" msgstr "" #. Default: "Tags can be used to add arbitrary categorisation to issues. The list below shows existing tags which you can select, or you can add new ones." -#: ./content/issue.py:186 +#: ./content/issue.py:192 msgid "Poi_help_issue_subject" msgstr "" #. Default: "Release this issue is targetted to be fixed in." -#: ./content/issue.py:129 +#: ./content/issue.py:134 msgid "Poi_help_issue_target_release" msgstr "" # ./content/PoiIssue.py #. Default: "Enter a short, descriptive title for the issue. A good title will make it easier for project managers to identify and respond to the issue." -#: ./content/issue.py:68 +#: ./content/issue.py:73 msgid "Poi_help_issue_title" msgstr "短く説明的な課題のタイトルを入力して下さい。良いタイトルはプロジェクトとマネージャーの課題への認識と対応を用意にします。" #. Default: "Select the type of issue." -#: ./content/issue.py:110 +#: ./content/issue.py:115 msgid "Poi_help_issue_type" msgstr "" #. Default: "Enter the user ids of members who are watching this issue, one per line. E-mail addresses are allowed too. These persons will receive an email when a response is added to the issue. Members can also add themselves as watchers." -#: ./content/issue.py:164 +#: ./content/issue.py:170 msgid "Poi_help_issue_watchers" msgstr "" # ./content/PoiTracker.py #. Default: "If given, and if 'Send notification emails' is selected, an email will be sent to this address each time a new issue or response is posted." -#: ./content/tracker.py:360 +#: ./content/tracker.py:354 #, fuzzy msgid "Poi_help_mailingList" msgstr "もし与えられて,「通知メールを送る」が選択されていれば,新しい課題と対応が追加されるごとに電子メールが送信されます。メイリングリストのアドレスが指定されなければ,マネージャーは独立した電子メールを受け取ります。" @@ -321,30 +330,30 @@ msgstr "対応を入力して下さい" # ./content/PoiTracker.py #. Default: "If selected, all tracker assignees above will receive an email for new issues and all issue responses. Issue watchers will receive an email for all issue responses. Issue submitters will receive an email when the issue has been resolved." -#: ./content/tracker.py:344 +#: ./content/tracker.py:338 #, fuzzy msgid "Poi_help_sendNotificationEmails" msgstr "もし選択されたなら,トラッカーマネージャーは新しい課題か対応が送られる毎に電子メールを受け取ります。課題の提出者は新しい対応がされたときと,課題が解決したときに確認を待つために電子メールを受け取ります。" # ./content/PoiTracker.py #. Default: "Please enter the URL to the related repository, e.g.: https://github.com/collective/Products.Poi/commit/%(rev)s for Products.Poi." -#: ./content/tracker.py:374 +#: ./content/tracker.py:368 msgid "Poi_help_svnurl" msgstr "" #. Default: "Describe the purpose of this tracker" -#: ./content/tracker.py:199 +#: ./content/tracker.py:193 msgid "Poi_help_tracker_description" msgstr "" # ./content/PoiTracker.py #. Default: "Enter a descriptive name for this tracker" -#: ./content/tracker.py:191 +#: ./content/tracker.py:185 msgid "Poi_help_tracker_title" msgstr "このトラッカーの名称を入力して下さい。" #. Default: "Enter the user ids of members who are watching this tracker, one per line. E-mail addresses are allowed too. These persons will receive an email when an issue or response is added to the tracker. Members can also add themselves as watchers." -#: ./content/tracker.py:325 +#: ./content/tracker.py:319 msgid "Poi_help_tracker_watchers" msgstr "" @@ -354,37 +363,37 @@ msgid "Poi_issues_label" msgstr "" #. Default: "Assignees" -#: ./content/tracker.py:309 +#: ./content/tracker.py:303 msgid "Poi_label_assignees" msgstr "" # ./content/PoiTracker.py #. Default: "Areas" -#: ./content/tracker.py:218 +#: ./content/tracker.py:212 msgid "Poi_label_availableAreas" msgstr "領域" # ./content/PoiTracker.py #. Default: "Issue types" -#: ./content/tracker.py:241 +#: ./content/tracker.py:235 msgid "Poi_label_availableIssueTypes" msgstr "課題の種別" # ./content/PoiTracker.py #. Default: "Available releases" -#: ./content/tracker.py:289 +#: ./content/tracker.py:283 msgid "Poi_label_availableReleases" msgstr "利用可能なリリース" # ./content/PoiTracker.py #. Default: "Available severities" -#: ./content/tracker.py:263 +#: ./content/tracker.py:257 msgid "Poi_label_availableSeverities" msgstr "利用可能な重要度" # ./content/PoiTracker.py #. Default: "Default severity" -#: ./content/tracker.py:275 +#: ./content/tracker.py:269 msgid "Poi_label_defaultSeverity" msgstr "デフォルトの重要度" @@ -395,84 +404,84 @@ msgid "Poi_label_issueTransition" msgstr "課題の状態の変更" #. Default: "Area" -#: ./content/issue.py:102 +#: ./content/issue.py:107 msgid "Poi_label_issue_area" msgstr "" #. Default: "Assignee" -#: ./content/issue.py:139 +#: ./content/issue.py:144 msgid "Poi_label_issue_assignee" msgstr "" #. Default: "Contact Email" -#: ./content/issue.py:148 +#: ./content/issue.py:153 msgid "Poi_label_issue_contact_email" msgstr "" #. Default: "Details" -#: ./content/issue.py:85 +#: ./content/issue.py:90 msgid "Poi_label_issue_details" msgstr "" #. Default: "Leave this field empty" -#: ./content/issue.py:221 +#: ./content/issue.py:227 msgid "Poi_label_issue_empty" msgstr "" #. Default: "Last Actor" -#: ./content/issue.py:227 +#: ./content/issue.py:233 msgid "Poi_label_issue_last_actor" msgstr "" #. Default: "Related Issue(s)" -#: ./content/issue.py:210 +#: ./content/issue.py:216 msgid "Poi_label_issue_related" msgstr "" #. Default: "Release" -#: ./content/issue.py:76 +#: ./content/issue.py:81 msgid "Poi_label_issue_release" msgstr "" #. Default: "Severity" -#: ./content/issue.py:118 +#: ./content/issue.py:123 msgid "Poi_label_issue_severity" msgstr "" #. Default: "Steps To Reproduce" -#: ./content/issue.py:93 +#: ./content/issue.py:98 msgid "Poi_label_issue_steps" msgstr "" #. Default: "Subject" -#: ./content/issue.py:185 +#: ./content/issue.py:191 msgid "Poi_label_issue_subject" msgstr "" #. Default: "Target Release" -#: ./content/issue.py:128 +#: ./content/issue.py:133 msgid "Poi_label_issue_target_release" msgstr "" # ./content/PoiIssue.py #. Default: "Title" -#: ./content/issue.py:67 +#: ./content/issue.py:72 msgid "Poi_label_issue_title" msgstr "タイトル" #. Default: "Issue Type" -#: ./content/issue.py:109 +#: ./content/issue.py:114 msgid "Poi_label_issue_type" msgstr "" #. Default: "Watchers" -#: ./content/issue.py:163 +#: ./content/issue.py:169 msgid "Poi_label_issue_watchers" msgstr "" # ./content/PoiTracker.py #. Default: "Mailing list" -#: ./content/tracker.py:356 +#: ./content/tracker.py:350 msgid "Poi_label_mailingList" msgstr "メーリングリスト" @@ -496,18 +505,18 @@ msgstr "" # ./content/PoiTracker.py #. Default: "Send notification emails" -#: ./content/tracker.py:340 +#: ./content/tracker.py:334 msgid "Poi_label_sendNotificationEmails" msgstr "通知メールを送る" # ./content/PoiTracker.py #. Default: "URL to Repository" -#: ./content/tracker.py:372 +#: ./content/tracker.py:366 msgid "Poi_label_svnurl" msgstr "" #. Default: "Watchers" -#: ./content/tracker.py:324 +#: ./content/tracker.py:318 msgid "Poi_label_tracker_watchers" msgstr "" @@ -522,7 +531,7 @@ msgid "Poi_repository_label" msgstr "" #. Default: "" -#: ./browser/response.py:555 +#: ./browser/response.py:557 msgid "Removed response id ${response_id}." msgstr "" @@ -537,12 +546,12 @@ msgstr "" msgid "Response Information" msgstr "" -#: ./browser/response.py:493 +#: ./browser/response.py:495 msgid "Response does not exist anymore; perhaps it was removed by another user." msgstr "" #. Default: "" -#: ./browser/response.py:548 +#: ./browser/response.py:550 msgid "Response id ${response_id} does not exist so it cannot be removed." msgstr "" @@ -552,7 +561,7 @@ msgid "Response id ${response_id} does not exist." msgstr "" #. Default: "" -#: ./browser/response.py:540 +#: ./browser/response.py:542 msgid "Response id ${response_id} is no integer so it cannot be removed." msgstr "" @@ -565,11 +574,11 @@ msgstr "" msgid "Search" msgstr "" -#: ./browser/response.py:418 +#: ./browser/response.py:420 msgid "Severity" msgstr "" -#: ./content/tracker.py:177 +#: ./content/tracker.py:171 msgid "Short Name" msgstr "" @@ -581,7 +590,7 @@ msgstr "" msgid "Submit new issue" msgstr "新しい課題の提出" -#: ./browser/response.py:421 +#: ./browser/response.py:423 msgid "Target release" msgstr "" @@ -596,20 +605,24 @@ msgstr "" msgid "This is an automated email, please do not reply." msgstr "" -#: ./content/tracker.py:180 +#: ./content/tracker.py:174 msgid "Title" msgstr "" -#: ./browser/response.py:527 +#: ./profiles/default/types/Tracker.xml +msgid "Tracker" +msgstr "" + +#: ./browser/response.py:529 msgid "You are not allowed to delete responses." msgstr "" -#: ./browser/response.py:483 +#: ./browser/response.py:485 msgid "You are not allowed to edit responses." msgstr "" #. Default: "Automatic linking" -#: ./browser/templates/automatic_links_help_view.pt:11 +#: ./browser/templates/automatic_links_help_view.pt:16 msgid "authomatic_linking_label" msgstr "" @@ -619,7 +632,7 @@ msgid "batch_x_items_matching_your_criteria" msgstr "" #. Default: "Description" -#: ./content/tracker.py:198 +#: ./content/tracker.py:192 msgid "description" msgstr "" @@ -634,7 +647,7 @@ msgid "description_no_results_found" msgstr "" #. Default: "Help Text" -#: ./content/tracker.py:207 +#: ./content/tracker.py:201 msgid "help_text" msgstr "" @@ -1094,7 +1107,7 @@ msgid "stop_watching_this" msgstr "" #. Default: "Title" -#: ./content/tracker.py:190 +#: ./content/tracker.py:184 msgid "title" msgstr "" diff --git a/Products/Poi/locales/nl/LC_MESSAGES/Poi.po b/Products/Poi/locales/nl/LC_MESSAGES/Poi.po index af98c7bd..38d66b2a 100644 --- a/Products/Poi/locales/nl/LC_MESSAGES/Poi.po +++ b/Products/Poi/locales/nl/LC_MESSAGES/Poi.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: Poi\n" -"POT-Creation-Date: 2020-08-27 12:56+0000\n" +"POT-Creation-Date: 2020-09-01 13:08+0000\n" "PO-Revision-Date: 2015-11-12 -2:28+0100\n" "Last-Translator: Maurits van Rees \n" "Language-Team: Plone Nederlands \n" @@ -20,6 +20,10 @@ msgstr "" "Language: \n" "X-Is-Fallback-For: nl-be nl-nl\n" +#: ./profiles/default/types/Tracker.xml +msgid "A Poi Issue Tracker" +msgstr "" + #: ./profiles.zcml:14 msgid "A friendly issue tracker" msgstr "" @@ -34,16 +38,20 @@ msgstr "Een nieuwe issue is ingediend in de ${tracker_title} tracker door ${issu msgid "A new response has been given to the issue ${issue_title} in the tracker ${tracker_title} by ${response_author}." msgstr "Er is een nieuwe reactie gegeven op het issue ${issue_title} in de tracker ${tracker_title} door ${response_author}." +#: ./profiles/default/types/Issue.xml +msgid "An Issue in a Poi Tracker" +msgstr "" + #: ./browser/templates/poi_email_new_response_html.pt:42 #: ./browser/templates/poi_email_new_response_plain.pt:23 msgid "An attachment has been added with id ${id}." msgstr "Een bijlage is toegevoegd met id ${id}" -#: ./content/tracker.py:236 +#: ./content/tracker.py:230 msgid "Area" msgstr "" -#: ./browser/response.py:419 +#: ./browser/response.py:421 msgid "Assignee" msgstr "" @@ -52,11 +60,11 @@ msgid "Attachments" msgstr "" #. Default: "" -#: ./browser/response.py:503 +#: ./browser/response.py:505 msgid "Changes saved to response id ${response_id}." msgstr "Wijzigingen opgeslagen voor reactie met id ${response_id}." -#: ./content/tracker.py:63 +#: ./content/tracker.py:56 msgid "Critical" msgstr "" @@ -64,7 +72,7 @@ msgstr "" msgid "Delete" msgstr "Verwijder" -#: ./content/tracker.py:183 +#: ./content/tracker.py:177 msgid "Description" msgstr "" @@ -76,16 +84,17 @@ msgstr "Bewerk" msgid "Edit issue" msgstr "Bewerk issue" -#: ./content/tracker.py:310 +#: ./content/tracker.py:304 msgid "Enter users who will be responsible for solving the issues. Users also need to be added as Watchers to receive notifications." msgstr "" -#: ./content/tracker.py:64 +#: ./content/tracker.py:57 msgid "Important" msgstr "" #: ./browser/templates/poi_email_new_issue_html.pt:29 #: ./browser/templates/poi_email_resolved_issue_html.pt:32 +#: ./profiles/default/types/Issue.xml msgid "Issue" msgstr "Issue" @@ -100,11 +109,11 @@ msgstr "Details van het issue:" msgid "Issue Information" msgstr "Informatie over de reactie" -#: ./content/tracker.py:258 +#: ./content/tracker.py:252 msgid "Issue Type" msgstr "" -#: ./browser/response.py:413 +#: ./browser/response.py:415 msgid "Issue state" msgstr "Issue status" @@ -114,19 +123,19 @@ msgstr "Issue status" msgid "Issue:" msgstr "Issue:" -#: ./content/tracker.py:66 +#: ./content/tracker.py:59 msgid "Low" msgstr "" -#: ./content/tracker.py:65 +#: ./content/tracker.py:58 msgid "Medium" msgstr "" -#: ./browser/response.py:533 +#: ./browser/response.py:535 msgid "No response selected for removal." msgstr "Geen reactie geselecteerd om te verwijderen." -#: ./browser/response.py:489 +#: ./browser/response.py:491 msgid "No response selected for saving." msgstr "Geen reactie geselecteerd om op te slaan." @@ -134,7 +143,7 @@ msgstr "Geen reactie geselecteerd om op te slaan." msgid "No response selected." msgstr "Geen reactie geselecteerd." -#: ./browser/response.py:440 +#: ./browser/response.py:442 msgid "No response text added and no issue changes made." msgstr "Geen tekst toegevoegd in deze reactie en geen wijzigingen aan de issue gemaakt." @@ -172,38 +181,38 @@ msgstr "" # ./content/PoiTracker.py #. Default: "Enter the issue topics/areas for this tracker." -#: ./content/tracker.py:220 +#: ./content/tracker.py:214 msgid "Poi_help_availableAreas" msgstr "Geef de issue onderwerpen/gebieden op voor deze tracker." # ./content/PoiTracker.py #. Default: "Enter the issue types for this tracker." -#: ./content/tracker.py:243 +#: ./content/tracker.py:237 msgid "Poi_help_availableIssueTypes" msgstr "Geef de issue types op voor deze tracker." # ./content/PoiTracker.py #. Default: "Enter the releases which issues can be assigned to, one per line. If no releases are entered, issues will not be organized by release." -#: ./content/tracker.py:293 +#: ./content/tracker.py:287 #, fuzzy msgid "Poi_help_availableReleases" msgstr "Geef op aan welke releases de issues gekoppeld kunnen worden, één per regel. Als er geen releases zijn ingevoerd, kunnen de issues niet per release gecategorizeerd worden" # ./content/PoiTracker.py #. Default: "Enter the different type of issue severities that should be available, one per line." -#: ./content/tracker.py:266 +#: ./content/tracker.py:260 msgid "Poi_help_availableSeverities" msgstr "Geef de verschillende types van issue prioriteiten op die beschikbaar moeten zijn, één per regel" # ./content/PoiTracker.py #. Default: "Select the default severity for new issues." -#: ./content/tracker.py:280 +#: ./content/tracker.py:274 msgid "Poi_help_defaultSeverity" msgstr "Kies de standaard prioriteit voor nieuwe issues" # ./content/PoiTracker.py #. Default: "Enter any introductory help text you'd like to display on the tracker front page." -#: ./content/tracker.py:208 +#: ./content/tracker.py:202 msgid "Poi_help_helpText" msgstr "Geef een introductie helptekst op die getoond wordt op de tracker front page." @@ -214,12 +223,12 @@ msgid "Poi_help_issueTransition" msgstr "Selecteer een verandering van status van de issue waar deze response op toepassing van is." #. Default: "Select the area this issue is relevant to." -#: ./content/issue.py:103 +#: ./content/issue.py:108 msgid "Poi_help_issue_area" msgstr "" #. Default: "Select which person, if any, is assigned to this issue." -#: ./content/issue.py:140 +#: ./content/issue.py:145 msgid "Poi_help_issue_assignee" msgstr "" @@ -229,69 +238,69 @@ msgid "Poi_help_issue_attachment" msgstr "" #. Default: "Please provide an email address where you can be contacted for further information or when a resolution is available. Note that your email address will not be displayed to others." -#: ./content/issue.py:149 +#: ./content/issue.py:154 msgid "Poi_help_issue_contact_email" msgstr "" #. Default: "Please provide further details. This field can create Automatic Links." -#: ./content/issue.py:86 +#: ./content/issue.py:91 msgid "Poi_help_issue_details" msgstr "" #. Default: "Last person to edit or add a Response" -#: ./content/issue.py:229 +#: ./content/issue.py:235 msgid "Poi_help_issue_last_actor" msgstr "" #. Default: "Link related issues." -#: ./content/issue.py:211 +#: ./content/issue.py:217 msgid "Poi_help_issue_related" msgstr "" #. Default: "Select the version the issue was found in." -#: ./content/issue.py:77 +#: ./content/issue.py:82 msgid "Poi_help_issue_release" msgstr "" #. Default: "Select the severity of this issue." -#: ./content/issue.py:119 +#: ./content/issue.py:124 msgid "Poi_help_issue_severity" msgstr "" #. Default: "If applicable, please provide the steps to reproduce the error or identify the issue, one per line. This field can create Automatic Links." -#: ./content/issue.py:94 +#: ./content/issue.py:99 msgid "Poi_help_issue_steps" msgstr "" #. Default: "Tags can be used to add arbitrary categorisation to issues. The list below shows existing tags which you can select, or you can add new ones." -#: ./content/issue.py:186 +#: ./content/issue.py:192 msgid "Poi_help_issue_subject" msgstr "" #. Default: "Release this issue is targetted to be fixed in." -#: ./content/issue.py:129 +#: ./content/issue.py:134 msgid "Poi_help_issue_target_release" msgstr "" # ./content/PoiIssue.py #. Default: "Enter a short, descriptive title for the issue. A good title will make it easier for project managers to identify and respond to the issue." -#: ./content/issue.py:68 +#: ./content/issue.py:73 msgid "Poi_help_issue_title" msgstr "Geef een korte omschrijvende titel op voor de issue. Een goede titel maakt het makkelijker project managers om een probleem te begrijpen en te reageren op een issue." #. Default: "Select the type of issue." -#: ./content/issue.py:110 +#: ./content/issue.py:115 msgid "Poi_help_issue_type" msgstr "" #. Default: "Enter the user ids of members who are watching this issue, one per line. E-mail addresses are allowed too. These persons will receive an email when a response is added to the issue. Members can also add themselves as watchers." -#: ./content/issue.py:164 +#: ./content/issue.py:170 msgid "Poi_help_issue_watchers" msgstr "" # ./content/PoiTracker.py #. Default: "If given, and if 'Send notification emails' is selected, an email will be sent to this address each time a new issue or response is posted." -#: ./content/tracker.py:360 +#: ./content/tracker.py:354 #, fuzzy msgid "Poi_help_mailingList" msgstr "Indien opgegeven en 'Stuur notificatie e-mails' is geselecteerd, wordt er een e-mail gestuurd naar dit adres zodra er een nieuwe issue of reactie geplaatst wordt. Trackermanagers ontvangen ook individueel een e-mail. Als dit niet gewenst is, kan het beter zijn van een trackermanager een technicus te maken." @@ -322,31 +331,31 @@ msgstr "Geef aub hieronder uw reactie." # ./content/PoiTracker.py #. Default: "If selected, all tracker assignees above will receive an email for new issues and all issue responses. Issue watchers will receive an email for all issue responses. Issue submitters will receive an email when the issue has been resolved." -#: ./content/tracker.py:344 +#: ./content/tracker.py:338 #, fuzzy msgid "Poi_help_sendNotificationEmails" msgstr "Indien geselecteerd, krijgen tracker managers een e-mail elke keer als een nieuwe issue of reactie is geplaatst. Issue toevoegers ontvangen een e-mail als er een nieuwe reactie is geplaatst of een issue is opgelost. Technici krijgen een e-mail als een issue aan hen is toegekend." # ./content/PoiTracker.py #. Default: "Please enter the URL to the related repository, e.g.: https://github.com/collective/Products.Poi/commit/%(rev)s for Products.Poi." -#: ./content/tracker.py:374 +#: ./content/tracker.py:368 #, fuzzy msgid "Poi_help_svnurl" msgstr "Vul alstublieft de url in naar de relevante SVN repository, bijvoorbeeld http://dev.plone.org/changeset/%(rev)s/collective voor producten in de Plone collective." #. Default: "Describe the purpose of this tracker" -#: ./content/tracker.py:199 +#: ./content/tracker.py:193 msgid "Poi_help_tracker_description" msgstr "Beschrijf het doel van deze tracker" # ./content/PoiTracker.py #. Default: "Enter a descriptive name for this tracker" -#: ./content/tracker.py:191 +#: ./content/tracker.py:185 msgid "Poi_help_tracker_title" msgstr "Geef een omschrijvende naam op voor deze tracker" #. Default: "Enter the user ids of members who are watching this tracker, one per line. E-mail addresses are allowed too. These persons will receive an email when an issue or response is added to the tracker. Members can also add themselves as watchers." -#: ./content/tracker.py:325 +#: ./content/tracker.py:319 msgid "Poi_help_tracker_watchers" msgstr "Geef de gebruikersnamen van leden op die deze tracker volgen, één per regel. E-mailadressen zijn ook toegestaan. Deze leden krijgen een e-mail als er een issue of reactie is geplaatst in deze tracker. Leden kunnen zichzelf toevoegen als volgers." @@ -356,37 +365,37 @@ msgid "Poi_issues_label" msgstr "" #. Default: "Assignees" -#: ./content/tracker.py:309 +#: ./content/tracker.py:303 msgid "Poi_label_assignees" msgstr "" # ./content/PoiTracker.py #. Default: "Areas" -#: ./content/tracker.py:218 +#: ./content/tracker.py:212 msgid "Poi_label_availableAreas" msgstr "Gebieden" # ./content/PoiTracker.py #. Default: "Issue types" -#: ./content/tracker.py:241 +#: ./content/tracker.py:235 msgid "Poi_label_availableIssueTypes" msgstr "Issue types" # ./content/PoiTracker.py #. Default: "Available releases" -#: ./content/tracker.py:289 +#: ./content/tracker.py:283 msgid "Poi_label_availableReleases" msgstr "Beschikbare releases" # ./content/PoiTracker.py #. Default: "Available severities" -#: ./content/tracker.py:263 +#: ./content/tracker.py:257 msgid "Poi_label_availableSeverities" msgstr "Beschikbare prioriteiten" # ./content/PoiTracker.py #. Default: "Default severity" -#: ./content/tracker.py:275 +#: ./content/tracker.py:269 msgid "Poi_label_defaultSeverity" msgstr "Standaard prioriteit" @@ -397,84 +406,84 @@ msgid "Poi_label_issueTransition" msgstr "Verander issue status" #. Default: "Area" -#: ./content/issue.py:102 +#: ./content/issue.py:107 msgid "Poi_label_issue_area" msgstr "" #. Default: "Assignee" -#: ./content/issue.py:139 +#: ./content/issue.py:144 msgid "Poi_label_issue_assignee" msgstr "" #. Default: "Contact Email" -#: ./content/issue.py:148 +#: ./content/issue.py:153 msgid "Poi_label_issue_contact_email" msgstr "" #. Default: "Details" -#: ./content/issue.py:85 +#: ./content/issue.py:90 msgid "Poi_label_issue_details" msgstr "" #. Default: "Leave this field empty" -#: ./content/issue.py:221 +#: ./content/issue.py:227 msgid "Poi_label_issue_empty" msgstr "" #. Default: "Last Actor" -#: ./content/issue.py:227 +#: ./content/issue.py:233 msgid "Poi_label_issue_last_actor" msgstr "" #. Default: "Related Issue(s)" -#: ./content/issue.py:210 +#: ./content/issue.py:216 msgid "Poi_label_issue_related" msgstr "" #. Default: "Release" -#: ./content/issue.py:76 +#: ./content/issue.py:81 msgid "Poi_label_issue_release" msgstr "" #. Default: "Severity" -#: ./content/issue.py:118 +#: ./content/issue.py:123 msgid "Poi_label_issue_severity" msgstr "" #. Default: "Steps To Reproduce" -#: ./content/issue.py:93 +#: ./content/issue.py:98 msgid "Poi_label_issue_steps" msgstr "" #. Default: "Subject" -#: ./content/issue.py:185 +#: ./content/issue.py:191 msgid "Poi_label_issue_subject" msgstr "" #. Default: "Target Release" -#: ./content/issue.py:128 +#: ./content/issue.py:133 msgid "Poi_label_issue_target_release" msgstr "" # ./content/PoiIssue.py #. Default: "Title" -#: ./content/issue.py:67 +#: ./content/issue.py:72 msgid "Poi_label_issue_title" msgstr "Titel" #. Default: "Issue Type" -#: ./content/issue.py:109 +#: ./content/issue.py:114 msgid "Poi_label_issue_type" msgstr "" #. Default: "Watchers" -#: ./content/issue.py:163 +#: ./content/issue.py:169 msgid "Poi_label_issue_watchers" msgstr "" # ./content/PoiTracker.py #. Default: "Mailing list" -#: ./content/tracker.py:356 +#: ./content/tracker.py:350 msgid "Poi_label_mailingList" msgstr "Mailinglijst" @@ -498,19 +507,19 @@ msgstr "Verander doelrelease" # ./content/PoiTracker.py #. Default: "Send notification emails" -#: ./content/tracker.py:340 +#: ./content/tracker.py:334 msgid "Poi_label_sendNotificationEmails" msgstr "Stuur notificatie e-mails" # ./content/PoiTracker.py #. Default: "URL to Repository" -#: ./content/tracker.py:372 +#: ./content/tracker.py:366 #, fuzzy msgid "Poi_label_svnurl" msgstr "Url naar subversion" #. Default: "Watchers" -#: ./content/tracker.py:324 +#: ./content/tracker.py:318 #, fuzzy msgid "Poi_label_tracker_watchers" msgstr "Tracker volgers" @@ -526,7 +535,7 @@ msgid "Poi_repository_label" msgstr "" #. Default: "" -#: ./browser/response.py:555 +#: ./browser/response.py:557 msgid "Removed response id ${response_id}." msgstr "Reactie met id ${response_id} verwijderd." @@ -541,12 +550,12 @@ msgstr "Details van reactie" msgid "Response Information" msgstr "Informatie over de reactie" -#: ./browser/response.py:493 +#: ./browser/response.py:495 msgid "Response does not exist anymore; perhaps it was removed by another user." msgstr "Reactie bestaat niet meer; misschien is deze verwijderd door een andere gebruiker." #. Default: "" -#: ./browser/response.py:548 +#: ./browser/response.py:550 msgid "Response id ${response_id} does not exist so it cannot be removed." msgstr "Reactie met id ${response_id} bestaat niet en kan dus niet verwijderd worden." @@ -556,7 +565,7 @@ msgid "Response id ${response_id} does not exist." msgstr "Reactie met id ${response_id} bestaat niet." #. Default: "" -#: ./browser/response.py:540 +#: ./browser/response.py:542 msgid "Response id ${response_id} is no integer so it cannot be removed." msgstr "Reactie met id ${response_id} is geen geheel getal en kan dus niet verwijderd worden." @@ -569,11 +578,11 @@ msgstr "Reactie met id ${response_id} is geen geheel getal." msgid "Search" msgstr "Zoeken" -#: ./browser/response.py:418 +#: ./browser/response.py:420 msgid "Severity" msgstr "Prioriteit" -#: ./content/tracker.py:177 +#: ./content/tracker.py:171 msgid "Short Name" msgstr "" @@ -585,7 +594,7 @@ msgstr "" msgid "Submit new issue" msgstr "Voeg nieuwe issue toe" -#: ./browser/response.py:421 +#: ./browser/response.py:423 msgid "Target release" msgstr "Doelrelease" @@ -600,20 +609,24 @@ msgstr "" msgid "This is an automated email, please do not reply." msgstr "Dit is een automatische e-mail, gelieven niet de e-mail te beantwoorden." -#: ./content/tracker.py:180 +#: ./content/tracker.py:174 msgid "Title" msgstr "" -#: ./browser/response.py:527 +#: ./profiles/default/types/Tracker.xml +msgid "Tracker" +msgstr "" + +#: ./browser/response.py:529 msgid "You are not allowed to delete responses." msgstr "U mag geen reacties verwijderen." -#: ./browser/response.py:483 +#: ./browser/response.py:485 msgid "You are not allowed to edit responses." msgstr "U mag geen reacties bewerken." #. Default: "Automatic linking" -#: ./browser/templates/automatic_links_help_view.pt:11 +#: ./browser/templates/automatic_links_help_view.pt:16 msgid "authomatic_linking_label" msgstr "" @@ -623,7 +636,7 @@ msgid "batch_x_items_matching_your_criteria" msgstr "" #. Default: "Description" -#: ./content/tracker.py:198 +#: ./content/tracker.py:192 msgid "description" msgstr "" @@ -638,7 +651,7 @@ msgid "description_no_results_found" msgstr "" #. Default: "Help Text" -#: ./content/tracker.py:207 +#: ./content/tracker.py:201 msgid "help_text" msgstr "" @@ -1091,7 +1104,7 @@ msgid "stop_watching_this" msgstr "" #. Default: "Title" -#: ./content/tracker.py:190 +#: ./content/tracker.py:184 msgid "title" msgstr "" diff --git a/Products/Poi/locales/no/LC_MESSAGES/Poi.po b/Products/Poi/locales/no/LC_MESSAGES/Poi.po index 8a3eabeb..b30b7c26 100644 --- a/Products/Poi/locales/no/LC_MESSAGES/Poi.po +++ b/Products/Poi/locales/no/LC_MESSAGES/Poi.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Poi\n" -"POT-Creation-Date: 2020-08-27 12:56+0000\n" +"POT-Creation-Date: 2020-09-01 13:08+0000\n" "PO-Revision-Date: 2007-05-06 17:00+0000\n" "Last-Translator: Espen Moe-Nilssen \n" "Language-Team: None \n" @@ -18,6 +18,10 @@ msgstr "" "Language: \n" "X-Is-Fallback-For: nb nb-no no-bok\n" +#: ./profiles/default/types/Tracker.xml +msgid "A Poi Issue Tracker" +msgstr "" + #: ./profiles.zcml:14 msgid "A friendly issue tracker" msgstr "" @@ -32,16 +36,20 @@ msgstr "" msgid "A new response has been given to the issue ${issue_title} in the tracker ${tracker_title} by ${response_author}." msgstr "" +#: ./profiles/default/types/Issue.xml +msgid "An Issue in a Poi Tracker" +msgstr "" + #: ./browser/templates/poi_email_new_response_html.pt:42 #: ./browser/templates/poi_email_new_response_plain.pt:23 msgid "An attachment has been added with id ${id}." msgstr "" -#: ./content/tracker.py:236 +#: ./content/tracker.py:230 msgid "Area" msgstr "" -#: ./browser/response.py:419 +#: ./browser/response.py:421 msgid "Assignee" msgstr "" @@ -50,11 +58,11 @@ msgid "Attachments" msgstr "" #. Default: "" -#: ./browser/response.py:503 +#: ./browser/response.py:505 msgid "Changes saved to response id ${response_id}." msgstr "" -#: ./content/tracker.py:63 +#: ./content/tracker.py:56 msgid "Critical" msgstr "" @@ -62,7 +70,7 @@ msgstr "" msgid "Delete" msgstr "Slett" -#: ./content/tracker.py:183 +#: ./content/tracker.py:177 msgid "Description" msgstr "" @@ -74,16 +82,17 @@ msgstr "Rediger" msgid "Edit issue" msgstr "" -#: ./content/tracker.py:310 +#: ./content/tracker.py:304 msgid "Enter users who will be responsible for solving the issues. Users also need to be added as Watchers to receive notifications." msgstr "" -#: ./content/tracker.py:64 +#: ./content/tracker.py:57 msgid "Important" msgstr "" #: ./browser/templates/poi_email_new_issue_html.pt:29 #: ./browser/templates/poi_email_resolved_issue_html.pt:32 +#: ./profiles/default/types/Issue.xml msgid "Issue" msgstr "" @@ -98,11 +107,11 @@ msgstr "" msgid "Issue Information" msgstr "" -#: ./content/tracker.py:258 +#: ./content/tracker.py:252 msgid "Issue Type" msgstr "" -#: ./browser/response.py:413 +#: ./browser/response.py:415 msgid "Issue state" msgstr "" @@ -112,19 +121,19 @@ msgstr "" msgid "Issue:" msgstr "" -#: ./content/tracker.py:66 +#: ./content/tracker.py:59 msgid "Low" msgstr "" -#: ./content/tracker.py:65 +#: ./content/tracker.py:58 msgid "Medium" msgstr "" -#: ./browser/response.py:533 +#: ./browser/response.py:535 msgid "No response selected for removal." msgstr "" -#: ./browser/response.py:489 +#: ./browser/response.py:491 msgid "No response selected for saving." msgstr "" @@ -132,7 +141,7 @@ msgstr "" msgid "No response selected." msgstr "" -#: ./browser/response.py:440 +#: ./browser/response.py:442 msgid "No response text added and no issue changes made." msgstr "" @@ -170,39 +179,39 @@ msgstr "" # ./content/PoiTracker.py #. Default: "Enter the issue topics/areas for this tracker." -#: ./content/tracker.py:220 +#: ./content/tracker.py:214 #, fuzzy msgid "Poi_help_availableAreas" msgstr "Skriv emnet/omr�det, en p� hver linje. Formatet er \"Kort navn | Tittel | Beskrivelse\"." # ./content/PoiTracker.py #. Default: "Enter the issue types for this tracker." -#: ./content/tracker.py:243 +#: ./content/tracker.py:237 #, fuzzy msgid "Poi_help_availableIssueTypes" msgstr " Skriv emne-typene, en p� hver linje. Formatet er \"Kort navn | Tittel | Beskrivelse\"." # ./content/PoiTracker.py #. Default: "Enter the releases which issues can be assigned to, one per line. If no releases are entered, issues will not be organized by release." -#: ./content/tracker.py:293 +#: ./content/tracker.py:287 msgid "Poi_help_availableReleases" msgstr "" # ./content/PoiTracker.py #. Default: "Enter the different type of issue severities that should be available, one per line." -#: ./content/tracker.py:266 +#: ./content/tracker.py:260 msgid "Poi_help_availableSeverities" msgstr "Beskriv de forskjellige 'alvorlighetsgrader' som skal v�re tilgjengelig, en p� hver linje." # ./content/PoiTracker.py #. Default: "Select the default severity for new issues." -#: ./content/tracker.py:280 +#: ./content/tracker.py:274 msgid "Poi_help_defaultSeverity" msgstr "'Default alvorlighetsgrad' for nye emner." # ./content/PoiTracker.py #. Default: "Enter any introductory help text you'd like to display on the tracker front page." -#: ./content/tracker.py:208 +#: ./content/tracker.py:202 msgid "Poi_help_helpText" msgstr "" @@ -213,12 +222,12 @@ msgid "Poi_help_issueTransition" msgstr "Velg en forandring i tilstanden for emnet dette er et svar p�, hvis mulig." #. Default: "Select the area this issue is relevant to." -#: ./content/issue.py:103 +#: ./content/issue.py:108 msgid "Poi_help_issue_area" msgstr "" #. Default: "Select which person, if any, is assigned to this issue." -#: ./content/issue.py:140 +#: ./content/issue.py:145 msgid "Poi_help_issue_assignee" msgstr "" @@ -228,69 +237,69 @@ msgid "Poi_help_issue_attachment" msgstr "" #. Default: "Please provide an email address where you can be contacted for further information or when a resolution is available. Note that your email address will not be displayed to others." -#: ./content/issue.py:149 +#: ./content/issue.py:154 msgid "Poi_help_issue_contact_email" msgstr "" #. Default: "Please provide further details. This field can create Automatic Links." -#: ./content/issue.py:86 +#: ./content/issue.py:91 msgid "Poi_help_issue_details" msgstr "" #. Default: "Last person to edit or add a Response" -#: ./content/issue.py:229 +#: ./content/issue.py:235 msgid "Poi_help_issue_last_actor" msgstr "" #. Default: "Link related issues." -#: ./content/issue.py:211 +#: ./content/issue.py:217 msgid "Poi_help_issue_related" msgstr "" #. Default: "Select the version the issue was found in." -#: ./content/issue.py:77 +#: ./content/issue.py:82 msgid "Poi_help_issue_release" msgstr "" #. Default: "Select the severity of this issue." -#: ./content/issue.py:119 +#: ./content/issue.py:124 msgid "Poi_help_issue_severity" msgstr "" #. Default: "If applicable, please provide the steps to reproduce the error or identify the issue, one per line. This field can create Automatic Links." -#: ./content/issue.py:94 +#: ./content/issue.py:99 msgid "Poi_help_issue_steps" msgstr "" #. Default: "Tags can be used to add arbitrary categorisation to issues. The list below shows existing tags which you can select, or you can add new ones." -#: ./content/issue.py:186 +#: ./content/issue.py:192 msgid "Poi_help_issue_subject" msgstr "" #. Default: "Release this issue is targetted to be fixed in." -#: ./content/issue.py:129 +#: ./content/issue.py:134 msgid "Poi_help_issue_target_release" msgstr "" # ./content/PoiIssue.py #. Default: "Enter a short, descriptive title for the issue. A good title will make it easier for project managers to identify and respond to the issue." -#: ./content/issue.py:68 +#: ./content/issue.py:73 msgid "Poi_help_issue_title" msgstr "Velg en kort, forklarende tittel for emnet. En god tittel vil gj�re det enklere � identifisere og svare p� emnet." #. Default: "Select the type of issue." -#: ./content/issue.py:110 +#: ./content/issue.py:115 msgid "Poi_help_issue_type" msgstr "" #. Default: "Enter the user ids of members who are watching this issue, one per line. E-mail addresses are allowed too. These persons will receive an email when a response is added to the issue. Members can also add themselves as watchers." -#: ./content/issue.py:164 +#: ./content/issue.py:170 msgid "Poi_help_issue_watchers" msgstr "" # ./content/PoiTracker.py #. Default: "If given, and if 'Send notification emails' is selected, an email will be sent to this address each time a new issue or response is posted." -#: ./content/tracker.py:360 +#: ./content/tracker.py:354 #, fuzzy msgid "Poi_help_mailingList" msgstr "Hvis gitt, og hvis \"Send bekreftelses-epost\" vil en e-post bli sent til denne adressen hver hver gang et nytt emne eller svar blir opprettet. Hvis ingen mailing-liste er gitt, vil managere motta individuelle e-poster." @@ -321,30 +330,30 @@ msgstr "Vennligst skriv inn ditt svar nedenfor" # ./content/PoiTracker.py #. Default: "If selected, all tracker assignees above will receive an email for new issues and all issue responses. Issue watchers will receive an email for all issue responses. Issue submitters will receive an email when the issue has been resolved." -#: ./content/tracker.py:344 +#: ./content/tracker.py:338 #, fuzzy msgid "Poi_help_sendNotificationEmails" msgstr "Hvis valgt, vil managere motta e-post hver gang et nytt emne eller svar blir opprettet, og emnedeltakerne vil motta en e-post hver gang det er svar e.l.." # ./content/PoiTracker.py #. Default: "Please enter the URL to the related repository, e.g.: https://github.com/collective/Products.Poi/commit/%(rev)s for Products.Poi." -#: ./content/tracker.py:374 +#: ./content/tracker.py:368 msgid "Poi_help_svnurl" msgstr "" #. Default: "Describe the purpose of this tracker" -#: ./content/tracker.py:199 +#: ./content/tracker.py:193 msgid "Poi_help_tracker_description" msgstr "" # ./content/PoiTracker.py #. Default: "Enter a descriptive name for this tracker" -#: ./content/tracker.py:191 +#: ./content/tracker.py:185 msgid "Poi_help_tracker_title" msgstr "Skriv et passende navn for denne 'sporeren'." #. Default: "Enter the user ids of members who are watching this tracker, one per line. E-mail addresses are allowed too. These persons will receive an email when an issue or response is added to the tracker. Members can also add themselves as watchers." -#: ./content/tracker.py:325 +#: ./content/tracker.py:319 msgid "Poi_help_tracker_watchers" msgstr "" @@ -354,37 +363,37 @@ msgid "Poi_issues_label" msgstr "" #. Default: "Assignees" -#: ./content/tracker.py:309 +#: ./content/tracker.py:303 msgid "Poi_label_assignees" msgstr "" # ./content/PoiTracker.py #. Default: "Areas" -#: ./content/tracker.py:218 +#: ./content/tracker.py:212 msgid "Poi_label_availableAreas" msgstr "Omr�der" # ./content/PoiTracker.py #. Default: "Issue types" -#: ./content/tracker.py:241 +#: ./content/tracker.py:235 msgid "Poi_label_availableIssueTypes" msgstr "Enmetype" # ./content/PoiTracker.py #. Default: "Available releases" -#: ./content/tracker.py:289 +#: ./content/tracker.py:283 msgid "Poi_label_availableReleases" msgstr "Available releases" # ./content/PoiTracker.py #. Default: "Available severities" -#: ./content/tracker.py:263 +#: ./content/tracker.py:257 msgid "Poi_label_availableSeverities" msgstr "Tilgjengelige 'alvorlighetsgrader'" # ./content/PoiTracker.py #. Default: "Default severity" -#: ./content/tracker.py:275 +#: ./content/tracker.py:269 msgid "Poi_label_defaultSeverity" msgstr "'Default alvorlighetsgrad'" @@ -395,84 +404,84 @@ msgid "Poi_label_issueTransition" msgstr "Forandre emne-tilstand" #. Default: "Area" -#: ./content/issue.py:102 +#: ./content/issue.py:107 msgid "Poi_label_issue_area" msgstr "" #. Default: "Assignee" -#: ./content/issue.py:139 +#: ./content/issue.py:144 msgid "Poi_label_issue_assignee" msgstr "" #. Default: "Contact Email" -#: ./content/issue.py:148 +#: ./content/issue.py:153 msgid "Poi_label_issue_contact_email" msgstr "" #. Default: "Details" -#: ./content/issue.py:85 +#: ./content/issue.py:90 msgid "Poi_label_issue_details" msgstr "" #. Default: "Leave this field empty" -#: ./content/issue.py:221 +#: ./content/issue.py:227 msgid "Poi_label_issue_empty" msgstr "" #. Default: "Last Actor" -#: ./content/issue.py:227 +#: ./content/issue.py:233 msgid "Poi_label_issue_last_actor" msgstr "" #. Default: "Related Issue(s)" -#: ./content/issue.py:210 +#: ./content/issue.py:216 msgid "Poi_label_issue_related" msgstr "" #. Default: "Release" -#: ./content/issue.py:76 +#: ./content/issue.py:81 msgid "Poi_label_issue_release" msgstr "" #. Default: "Severity" -#: ./content/issue.py:118 +#: ./content/issue.py:123 msgid "Poi_label_issue_severity" msgstr "" #. Default: "Steps To Reproduce" -#: ./content/issue.py:93 +#: ./content/issue.py:98 msgid "Poi_label_issue_steps" msgstr "" #. Default: "Subject" -#: ./content/issue.py:185 +#: ./content/issue.py:191 msgid "Poi_label_issue_subject" msgstr "" #. Default: "Target Release" -#: ./content/issue.py:128 +#: ./content/issue.py:133 msgid "Poi_label_issue_target_release" msgstr "" # ./content/PoiIssue.py #. Default: "Title" -#: ./content/issue.py:67 +#: ./content/issue.py:72 msgid "Poi_label_issue_title" msgstr "Tittel" #. Default: "Issue Type" -#: ./content/issue.py:109 +#: ./content/issue.py:114 msgid "Poi_label_issue_type" msgstr "" #. Default: "Watchers" -#: ./content/issue.py:163 +#: ./content/issue.py:169 msgid "Poi_label_issue_watchers" msgstr "" # ./content/PoiTracker.py #. Default: "Mailing list" -#: ./content/tracker.py:356 +#: ./content/tracker.py:350 msgid "Poi_label_mailingList" msgstr "Mailing-liste" @@ -496,18 +505,18 @@ msgstr "" # ./content/PoiTracker.py #. Default: "Send notification emails" -#: ./content/tracker.py:340 +#: ./content/tracker.py:334 msgid "Poi_label_sendNotificationEmails" msgstr "Send bekreftelses-e-post" # ./content/PoiTracker.py #. Default: "URL to Repository" -#: ./content/tracker.py:372 +#: ./content/tracker.py:366 msgid "Poi_label_svnurl" msgstr "" #. Default: "Watchers" -#: ./content/tracker.py:324 +#: ./content/tracker.py:318 msgid "Poi_label_tracker_watchers" msgstr "" @@ -522,7 +531,7 @@ msgid "Poi_repository_label" msgstr "" #. Default: "" -#: ./browser/response.py:555 +#: ./browser/response.py:557 msgid "Removed response id ${response_id}." msgstr "" @@ -537,12 +546,12 @@ msgstr "" msgid "Response Information" msgstr "" -#: ./browser/response.py:493 +#: ./browser/response.py:495 msgid "Response does not exist anymore; perhaps it was removed by another user." msgstr "" #. Default: "" -#: ./browser/response.py:548 +#: ./browser/response.py:550 msgid "Response id ${response_id} does not exist so it cannot be removed." msgstr "" @@ -552,7 +561,7 @@ msgid "Response id ${response_id} does not exist." msgstr "" #. Default: "" -#: ./browser/response.py:540 +#: ./browser/response.py:542 msgid "Response id ${response_id} is no integer so it cannot be removed." msgstr "" @@ -565,11 +574,11 @@ msgstr "" msgid "Search" msgstr "" -#: ./browser/response.py:418 +#: ./browser/response.py:420 msgid "Severity" msgstr "" -#: ./content/tracker.py:177 +#: ./content/tracker.py:171 msgid "Short Name" msgstr "" @@ -581,7 +590,7 @@ msgstr "" msgid "Submit new issue" msgstr "Opprett nytt emne" -#: ./browser/response.py:421 +#: ./browser/response.py:423 msgid "Target release" msgstr "" @@ -596,20 +605,24 @@ msgstr "" msgid "This is an automated email, please do not reply." msgstr "" -#: ./content/tracker.py:180 +#: ./content/tracker.py:174 msgid "Title" msgstr "" -#: ./browser/response.py:527 +#: ./profiles/default/types/Tracker.xml +msgid "Tracker" +msgstr "" + +#: ./browser/response.py:529 msgid "You are not allowed to delete responses." msgstr "" -#: ./browser/response.py:483 +#: ./browser/response.py:485 msgid "You are not allowed to edit responses." msgstr "" #. Default: "Automatic linking" -#: ./browser/templates/automatic_links_help_view.pt:11 +#: ./browser/templates/automatic_links_help_view.pt:16 msgid "authomatic_linking_label" msgstr "" @@ -619,7 +632,7 @@ msgid "batch_x_items_matching_your_criteria" msgstr "" #. Default: "Description" -#: ./content/tracker.py:198 +#: ./content/tracker.py:192 msgid "description" msgstr "" @@ -634,7 +647,7 @@ msgid "description_no_results_found" msgstr "" #. Default: "Help Text" -#: ./content/tracker.py:207 +#: ./content/tracker.py:201 msgid "help_text" msgstr "" @@ -1094,7 +1107,7 @@ msgid "stop_watching_this" msgstr "" #. Default: "Title" -#: ./content/tracker.py:190 +#: ./content/tracker.py:184 msgid "title" msgstr "" diff --git a/Products/Poi/locales/pl/LC_MESSAGES/Poi.po b/Products/Poi/locales/pl/LC_MESSAGES/Poi.po index fa96bc00..275f61a3 100644 --- a/Products/Poi/locales/pl/LC_MESSAGES/Poi.po +++ b/Products/Poi/locales/pl/LC_MESSAGES/Poi.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Poi\n" -"POT-Creation-Date: 2020-08-27 12:56+0000\n" +"POT-Creation-Date: 2020-09-01 13:08+0000\n" "PO-Revision-Date: 2010-01-24 15:00+0010\n" "Last-Translator: STX Next \n" "Language-Team: STX Next \n" @@ -16,6 +16,10 @@ msgstr "" "Domain: Poi\n" "Language: \n" +#: ./profiles/default/types/Tracker.xml +msgid "A Poi Issue Tracker" +msgstr "" + #: ./profiles.zcml:14 msgid "A friendly issue tracker" msgstr "" @@ -30,16 +34,20 @@ msgstr "" msgid "A new response has been given to the issue ${issue_title} in the tracker ${tracker_title} by ${response_author}." msgstr "" +#: ./profiles/default/types/Issue.xml +msgid "An Issue in a Poi Tracker" +msgstr "" + #: ./browser/templates/poi_email_new_response_html.pt:42 #: ./browser/templates/poi_email_new_response_plain.pt:23 msgid "An attachment has been added with id ${id}." msgstr "" -#: ./content/tracker.py:236 +#: ./content/tracker.py:230 msgid "Area" msgstr "" -#: ./browser/response.py:419 +#: ./browser/response.py:421 msgid "Assignee" msgstr "" @@ -48,11 +56,11 @@ msgid "Attachments" msgstr "" #. Default: "" -#: ./browser/response.py:503 +#: ./browser/response.py:505 msgid "Changes saved to response id ${response_id}." msgstr "Zamiany zostały zapisane dla odpowiedzi o id ${response_id}." -#: ./content/tracker.py:63 +#: ./content/tracker.py:56 msgid "Critical" msgstr "" @@ -60,7 +68,7 @@ msgstr "" msgid "Delete" msgstr "Usuń" -#: ./content/tracker.py:183 +#: ./content/tracker.py:177 msgid "Description" msgstr "" @@ -72,16 +80,17 @@ msgstr "Edytuj" msgid "Edit issue" msgstr "Edytuj zgłoszenie" -#: ./content/tracker.py:310 +#: ./content/tracker.py:304 msgid "Enter users who will be responsible for solving the issues. Users also need to be added as Watchers to receive notifications." msgstr "" -#: ./content/tracker.py:64 +#: ./content/tracker.py:57 msgid "Important" msgstr "" #: ./browser/templates/poi_email_new_issue_html.pt:29 #: ./browser/templates/poi_email_resolved_issue_html.pt:32 +#: ./profiles/default/types/Issue.xml msgid "Issue" msgstr "" @@ -96,11 +105,11 @@ msgstr "" msgid "Issue Information" msgstr "" -#: ./content/tracker.py:258 +#: ./content/tracker.py:252 msgid "Issue Type" msgstr "" -#: ./browser/response.py:413 +#: ./browser/response.py:415 msgid "Issue state" msgstr "Status zgłoszenia" @@ -110,19 +119,19 @@ msgstr "Status zgłoszenia" msgid "Issue:" msgstr "" -#: ./content/tracker.py:66 +#: ./content/tracker.py:59 msgid "Low" msgstr "" -#: ./content/tracker.py:65 +#: ./content/tracker.py:58 msgid "Medium" msgstr "" -#: ./browser/response.py:533 +#: ./browser/response.py:535 msgid "No response selected for removal." msgstr "Brak zaznaczonych odpowiedzi do usunięcia." -#: ./browser/response.py:489 +#: ./browser/response.py:491 msgid "No response selected for saving." msgstr "Brak zaznaczonych odpowiedzi do zapisania." @@ -130,7 +139,7 @@ msgstr "Brak zaznaczonych odpowiedzi do zapisania." msgid "No response selected." msgstr "Nie zaznaczyłeś odpowiedzi." -#: ./browser/response.py:440 +#: ./browser/response.py:442 msgid "No response text added and no issue changes made." msgstr "Nie dodano tekstu ani zgłoszenie nie zostało zmienione." @@ -168,40 +177,40 @@ msgstr "" # ./content/PoiTracker.py #. Default: "Enter the issue topics/areas for this tracker." -#: ./content/tracker.py:220 +#: ./content/tracker.py:214 #, fuzzy msgid "Poi_help_availableAreas" msgstr "Pozwala na ustawienie obszarów dostępnych w Systemie Zgłoszeniowym. Jeden wpis na linię w formacie \"Skrót | Tytuł | Opis\"." # ./content/PoiTracker.py #. Default: "Enter the issue types for this tracker." -#: ./content/tracker.py:243 +#: ./content/tracker.py:237 #, fuzzy msgid "Poi_help_availableIssueTypes" msgstr "Pozwala na ustawienie typów zgłoszeń dostępnych w Systemie Zgłoszeniowym. Jeden wpis na linię w formacie \"Skrót | Tytuł | Opis\"." # ./content/PoiTracker.py #. Default: "Enter the releases which issues can be assigned to, one per line. If no releases are entered, issues will not be organized by release." -#: ./content/tracker.py:293 +#: ./content/tracker.py:287 #, fuzzy msgid "Poi_help_availableReleases" msgstr "Pozwala na ustawienie wydań dostępnych w Systemie Zgłoszeniowym. Jeden wpis na linię. W przypadku gdy pole jest puste, nie będzie możliwości grupowania zgłoszeń po wydaniach." # ./content/PoiTracker.py #. Default: "Enter the different type of issue severities that should be available, one per line." -#: ./content/tracker.py:266 +#: ./content/tracker.py:260 msgid "Poi_help_availableSeverities" msgstr "Pozwala na ustawienie dostępnych priorytetów. Jeden wpis na linię." # ./content/PoiTracker.py #. Default: "Select the default severity for new issues." -#: ./content/tracker.py:280 +#: ./content/tracker.py:274 msgid "Poi_help_defaultSeverity" msgstr "Domyślny priorytet dla nowego zgłoszenia." # ./content/PoiTracker.py #. Default: "Enter any introductory help text you'd like to display on the tracker front page." -#: ./content/tracker.py:208 +#: ./content/tracker.py:202 msgid "Poi_help_helpText" msgstr "Tekst pomocy, którą chcesz wyświetlić na stronie głównej Systemu Zgłoszeniowego." @@ -211,12 +220,12 @@ msgid "Poi_help_issueTransition" msgstr "Wybierz zmianę stanu zgłoszenia." #. Default: "Select the area this issue is relevant to." -#: ./content/issue.py:103 +#: ./content/issue.py:108 msgid "Poi_help_issue_area" msgstr "" #. Default: "Select which person, if any, is assigned to this issue." -#: ./content/issue.py:140 +#: ./content/issue.py:145 msgid "Poi_help_issue_assignee" msgstr "" @@ -226,69 +235,69 @@ msgid "Poi_help_issue_attachment" msgstr "" #. Default: "Please provide an email address where you can be contacted for further information or when a resolution is available. Note that your email address will not be displayed to others." -#: ./content/issue.py:149 +#: ./content/issue.py:154 msgid "Poi_help_issue_contact_email" msgstr "" #. Default: "Please provide further details. This field can create Automatic Links." -#: ./content/issue.py:86 +#: ./content/issue.py:91 msgid "Poi_help_issue_details" msgstr "" #. Default: "Last person to edit or add a Response" -#: ./content/issue.py:229 +#: ./content/issue.py:235 msgid "Poi_help_issue_last_actor" msgstr "" #. Default: "Link related issues." -#: ./content/issue.py:211 +#: ./content/issue.py:217 msgid "Poi_help_issue_related" msgstr "" #. Default: "Select the version the issue was found in." -#: ./content/issue.py:77 +#: ./content/issue.py:82 msgid "Poi_help_issue_release" msgstr "" #. Default: "Select the severity of this issue." -#: ./content/issue.py:119 +#: ./content/issue.py:124 msgid "Poi_help_issue_severity" msgstr "" #. Default: "If applicable, please provide the steps to reproduce the error or identify the issue, one per line. This field can create Automatic Links." -#: ./content/issue.py:94 +#: ./content/issue.py:99 msgid "Poi_help_issue_steps" msgstr "" #. Default: "Tags can be used to add arbitrary categorisation to issues. The list below shows existing tags which you can select, or you can add new ones." -#: ./content/issue.py:186 +#: ./content/issue.py:192 msgid "Poi_help_issue_subject" msgstr "" #. Default: "Release this issue is targetted to be fixed in." -#: ./content/issue.py:129 +#: ./content/issue.py:134 msgid "Poi_help_issue_target_release" msgstr "" # ./content/PoiIssue.py #. Default: "Enter a short, descriptive title for the issue. A good title will make it easier for project managers to identify and respond to the issue." -#: ./content/issue.py:68 +#: ./content/issue.py:73 msgid "Poi_help_issue_title" msgstr "Krótki opisowy tytuł ułatwi ocenę i reakcję na problem." #. Default: "Select the type of issue." -#: ./content/issue.py:110 +#: ./content/issue.py:115 msgid "Poi_help_issue_type" msgstr "" #. Default: "Enter the user ids of members who are watching this issue, one per line. E-mail addresses are allowed too. These persons will receive an email when a response is added to the issue. Members can also add themselves as watchers." -#: ./content/issue.py:164 +#: ./content/issue.py:170 msgid "Poi_help_issue_watchers" msgstr "" # ./content/PoiTracker.py #. Default: "If given, and if 'Send notification emails' is selected, an email will be sent to this address each time a new issue or response is posted." -#: ./content/tracker.py:360 +#: ./content/tracker.py:354 #, fuzzy msgid "Poi_help_mailingList" msgstr "Ustawienie tego pola oraz zaznaczenie opcji \"Powiadomienia e-mail\" spowoduje wysłanie na wskazany adres powiadomień o nowych zgłoszeniach i odpowiedziach do nich. Jeżeli adres nie zostanie ustawiony, powiadomienia będą wysyłane do każdej z osób oddzielnie." @@ -315,31 +324,31 @@ msgstr "Wpisz odpowiedź poniżej" # ./content/PoiTracker.py #. Default: "If selected, all tracker assignees above will receive an email for new issues and all issue responses. Issue watchers will receive an email for all issue responses. Issue submitters will receive an email when the issue has been resolved." -#: ./content/tracker.py:344 +#: ./content/tracker.py:338 #, fuzzy msgid "Poi_help_sendNotificationEmails" msgstr "Opcja aktywuje wysyłanie powiadomień. Osoby odpowiedzialne dostaną wiadomość e-mail o dodaniu nowego zgłoszenia lub odpowiedzi. Osoba zgłaszająca otrzyma powiadomienie o dodaniu nowej odpowiedz lub o zamknięciu zgłoszenia." # ./content/PoiTracker.py #. Default: "Please enter the URL to the related repository, e.g.: https://github.com/collective/Products.Poi/commit/%(rev)s for Products.Poi." -#: ./content/tracker.py:374 +#: ./content/tracker.py:368 #, fuzzy msgid "Poi_help_svnurl" msgstr "Powiązane repozytorium SVN, np. http://dev.plone.org/changeset/%(rev)s/collective dla produktów z repozytorium Plone collective." #. Default: "Describe the purpose of this tracker" -#: ./content/tracker.py:199 +#: ./content/tracker.py:193 msgid "Poi_help_tracker_description" msgstr "" # ./content/PoiTracker.py #. Default: "Enter a descriptive name for this tracker" -#: ./content/tracker.py:191 +#: ./content/tracker.py:185 msgid "Poi_help_tracker_title" msgstr "Opisowa nazwa Systemu Zgłoszeniowego" #. Default: "Enter the user ids of members who are watching this tracker, one per line. E-mail addresses are allowed too. These persons will receive an email when an issue or response is added to the tracker. Members can also add themselves as watchers." -#: ./content/tracker.py:325 +#: ./content/tracker.py:319 msgid "Poi_help_tracker_watchers" msgstr "" @@ -349,37 +358,37 @@ msgid "Poi_issues_label" msgstr "" #. Default: "Assignees" -#: ./content/tracker.py:309 +#: ./content/tracker.py:303 msgid "Poi_label_assignees" msgstr "" # ./content/PoiTracker.py #. Default: "Areas" -#: ./content/tracker.py:218 +#: ./content/tracker.py:212 msgid "Poi_label_availableAreas" msgstr "Dostępne obszary" # ./content/PoiTracker.py #. Default: "Issue types" -#: ./content/tracker.py:241 +#: ./content/tracker.py:235 msgid "Poi_label_availableIssueTypes" msgstr "Dostępne typy zgłoszeń" # ./content/PoiTracker.py #. Default: "Available releases" -#: ./content/tracker.py:289 +#: ./content/tracker.py:283 msgid "Poi_label_availableReleases" msgstr "Dostępne wydania" # ./content/PoiTracker.py #. Default: "Available severities" -#: ./content/tracker.py:263 +#: ./content/tracker.py:257 msgid "Poi_label_availableSeverities" msgstr "Dostępne priorytety" # ./content/PoiTracker.py #. Default: "Default severity" -#: ./content/tracker.py:275 +#: ./content/tracker.py:269 msgid "Poi_label_defaultSeverity" msgstr "Domyślny priorytet" @@ -389,84 +398,84 @@ msgid "Poi_label_issueTransition" msgstr "Zamień stan zgłoszenia" #. Default: "Area" -#: ./content/issue.py:102 +#: ./content/issue.py:107 msgid "Poi_label_issue_area" msgstr "" #. Default: "Assignee" -#: ./content/issue.py:139 +#: ./content/issue.py:144 msgid "Poi_label_issue_assignee" msgstr "" #. Default: "Contact Email" -#: ./content/issue.py:148 +#: ./content/issue.py:153 msgid "Poi_label_issue_contact_email" msgstr "" #. Default: "Details" -#: ./content/issue.py:85 +#: ./content/issue.py:90 msgid "Poi_label_issue_details" msgstr "" #. Default: "Leave this field empty" -#: ./content/issue.py:221 +#: ./content/issue.py:227 msgid "Poi_label_issue_empty" msgstr "" #. Default: "Last Actor" -#: ./content/issue.py:227 +#: ./content/issue.py:233 msgid "Poi_label_issue_last_actor" msgstr "" #. Default: "Related Issue(s)" -#: ./content/issue.py:210 +#: ./content/issue.py:216 msgid "Poi_label_issue_related" msgstr "" #. Default: "Release" -#: ./content/issue.py:76 +#: ./content/issue.py:81 msgid "Poi_label_issue_release" msgstr "" #. Default: "Severity" -#: ./content/issue.py:118 +#: ./content/issue.py:123 msgid "Poi_label_issue_severity" msgstr "" #. Default: "Steps To Reproduce" -#: ./content/issue.py:93 +#: ./content/issue.py:98 msgid "Poi_label_issue_steps" msgstr "" #. Default: "Subject" -#: ./content/issue.py:185 +#: ./content/issue.py:191 msgid "Poi_label_issue_subject" msgstr "" #. Default: "Target Release" -#: ./content/issue.py:128 +#: ./content/issue.py:133 msgid "Poi_label_issue_target_release" msgstr "" # ./content/PoiIssue.py #. Default: "Title" -#: ./content/issue.py:67 +#: ./content/issue.py:72 msgid "Poi_label_issue_title" msgstr "Tytuł" #. Default: "Issue Type" -#: ./content/issue.py:109 +#: ./content/issue.py:114 msgid "Poi_label_issue_type" msgstr "" #. Default: "Watchers" -#: ./content/issue.py:163 +#: ./content/issue.py:169 msgid "Poi_label_issue_watchers" msgstr "" # ./content/PoiTracker.py #. Default: "Mailing list" -#: ./content/tracker.py:356 +#: ./content/tracker.py:350 msgid "Poi_label_mailingList" msgstr "Lista mailingowa" @@ -487,19 +496,19 @@ msgstr "Zmień docelowe wydanie" # ./content/PoiTracker.py #. Default: "Send notification emails" -#: ./content/tracker.py:340 +#: ./content/tracker.py:334 msgid "Poi_label_sendNotificationEmails" msgstr "Powiadomienia e-mail" # ./content/PoiTracker.py #. Default: "URL to Repository" -#: ./content/tracker.py:372 +#: ./content/tracker.py:366 #, fuzzy msgid "Poi_label_svnurl" msgstr "URL do SVN" #. Default: "Watchers" -#: ./content/tracker.py:324 +#: ./content/tracker.py:318 msgid "Poi_label_tracker_watchers" msgstr "" @@ -514,7 +523,7 @@ msgid "Poi_repository_label" msgstr "" #. Default: "" -#: ./browser/response.py:555 +#: ./browser/response.py:557 msgid "Removed response id ${response_id}." msgstr "Odpowiedź o id ${response_id} została usunięta." @@ -529,12 +538,12 @@ msgstr "" msgid "Response Information" msgstr "" -#: ./browser/response.py:493 +#: ./browser/response.py:495 msgid "Response does not exist anymore; perhaps it was removed by another user." msgstr "" #. Default: "" -#: ./browser/response.py:548 +#: ./browser/response.py:550 msgid "Response id ${response_id} does not exist so it cannot be removed." msgstr "Odpowiedź o id ${response_id} nie istnieje dlatego nie może być usunięte." @@ -544,7 +553,7 @@ msgid "Response id ${response_id} does not exist." msgstr "Odpowiedź o id ${response_id} nie istnieje." #. Default: "" -#: ./browser/response.py:540 +#: ./browser/response.py:542 msgid "Response id ${response_id} is no integer so it cannot be removed." msgstr "Id ${response_id} nie jest liczbą całkowitą, dlatego nie jest możliwe usunięcie odpowiedzi." @@ -557,11 +566,11 @@ msgstr "Id ${response_id} nie jest liczbą całkowitą." msgid "Search" msgstr "Szukaj" -#: ./browser/response.py:418 +#: ./browser/response.py:420 msgid "Severity" msgstr "Priorytet" -#: ./content/tracker.py:177 +#: ./content/tracker.py:171 msgid "Short Name" msgstr "" @@ -573,7 +582,7 @@ msgstr "" msgid "Submit new issue" msgstr "Zgłoś błąd" -#: ./browser/response.py:421 +#: ./browser/response.py:423 msgid "Target release" msgstr "Docelowe wydanie" @@ -588,20 +597,24 @@ msgstr "" msgid "This is an automated email, please do not reply." msgstr "" -#: ./content/tracker.py:180 +#: ./content/tracker.py:174 msgid "Title" msgstr "" -#: ./browser/response.py:527 +#: ./profiles/default/types/Tracker.xml +msgid "Tracker" +msgstr "" + +#: ./browser/response.py:529 msgid "You are not allowed to delete responses." msgstr "Nie masz uprawnień do usuwania odpowiedzi." -#: ./browser/response.py:483 +#: ./browser/response.py:485 msgid "You are not allowed to edit responses." msgstr "Nie masz uprawnień do edytowania odpowiedzi." #. Default: "Automatic linking" -#: ./browser/templates/automatic_links_help_view.pt:11 +#: ./browser/templates/automatic_links_help_view.pt:16 msgid "authomatic_linking_label" msgstr "" @@ -611,7 +624,7 @@ msgid "batch_x_items_matching_your_criteria" msgstr "" #. Default: "Description" -#: ./content/tracker.py:198 +#: ./content/tracker.py:192 msgid "description" msgstr "" @@ -626,7 +639,7 @@ msgid "description_no_results_found" msgstr "" #. Default: "Help Text" -#: ./content/tracker.py:207 +#: ./content/tracker.py:201 msgid "help_text" msgstr "" @@ -1079,7 +1092,7 @@ msgid "stop_watching_this" msgstr "" #. Default: "Title" -#: ./content/tracker.py:190 +#: ./content/tracker.py:184 msgid "title" msgstr "" diff --git a/Products/Poi/locales/pt/LC_MESSAGES/Poi.po b/Products/Poi/locales/pt/LC_MESSAGES/Poi.po index 4ee79302..120c26a5 100644 --- a/Products/Poi/locales/pt/LC_MESSAGES/Poi.po +++ b/Products/Poi/locales/pt/LC_MESSAGES/Poi.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Poi 1.1.2\n" -"POT-Creation-Date: 2020-08-27 12:56+0000\n" +"POT-Creation-Date: 2020-09-01 13:08+0000\n" "PO-Revision-Date: 2008-11-19 17:32-0000\n" "Last-Translator: Nuno Cruz \n" "Language-Team: NWEB \n" @@ -20,6 +20,10 @@ msgstr "" "X-Poedit-Country: PORTUGAL\n" "X-Is-Fallback-For: pt-pt\n" +#: ./profiles/default/types/Tracker.xml +msgid "A Poi Issue Tracker" +msgstr "" + #: ./profiles.zcml:14 msgid "A friendly issue tracker" msgstr "" @@ -34,16 +38,20 @@ msgstr "" msgid "A new response has been given to the issue ${issue_title} in the tracker ${tracker_title} by ${response_author}." msgstr "" +#: ./profiles/default/types/Issue.xml +msgid "An Issue in a Poi Tracker" +msgstr "" + #: ./browser/templates/poi_email_new_response_html.pt:42 #: ./browser/templates/poi_email_new_response_plain.pt:23 msgid "An attachment has been added with id ${id}." msgstr "" -#: ./content/tracker.py:236 +#: ./content/tracker.py:230 msgid "Area" msgstr "" -#: ./browser/response.py:419 +#: ./browser/response.py:421 msgid "Assignee" msgstr "" @@ -52,11 +60,11 @@ msgid "Attachments" msgstr "" #. Default: "" -#: ./browser/response.py:503 +#: ./browser/response.py:505 msgid "Changes saved to response id ${response_id}." msgstr "" -#: ./content/tracker.py:63 +#: ./content/tracker.py:56 msgid "Critical" msgstr "" @@ -64,7 +72,7 @@ msgstr "" msgid "Delete" msgstr "Apagar" -#: ./content/tracker.py:183 +#: ./content/tracker.py:177 msgid "Description" msgstr "" @@ -76,16 +84,17 @@ msgstr "Editar" msgid "Edit issue" msgstr "Editar ocorrência" -#: ./content/tracker.py:310 +#: ./content/tracker.py:304 msgid "Enter users who will be responsible for solving the issues. Users also need to be added as Watchers to receive notifications." msgstr "" -#: ./content/tracker.py:64 +#: ./content/tracker.py:57 msgid "Important" msgstr "" #: ./browser/templates/poi_email_new_issue_html.pt:29 #: ./browser/templates/poi_email_resolved_issue_html.pt:32 +#: ./profiles/default/types/Issue.xml msgid "Issue" msgstr "" @@ -100,11 +109,11 @@ msgstr "" msgid "Issue Information" msgstr "" -#: ./content/tracker.py:258 +#: ./content/tracker.py:252 msgid "Issue Type" msgstr "" -#: ./browser/response.py:413 +#: ./browser/response.py:415 msgid "Issue state" msgstr "" @@ -114,19 +123,19 @@ msgstr "" msgid "Issue:" msgstr "" -#: ./content/tracker.py:66 +#: ./content/tracker.py:59 msgid "Low" msgstr "" -#: ./content/tracker.py:65 +#: ./content/tracker.py:58 msgid "Medium" msgstr "" -#: ./browser/response.py:533 +#: ./browser/response.py:535 msgid "No response selected for removal." msgstr "" -#: ./browser/response.py:489 +#: ./browser/response.py:491 msgid "No response selected for saving." msgstr "" @@ -134,7 +143,7 @@ msgstr "" msgid "No response selected." msgstr "" -#: ./browser/response.py:440 +#: ./browser/response.py:442 msgid "No response text added and no issue changes made." msgstr "" @@ -171,36 +180,36 @@ msgid "Poi_automatic_link_repository_help" msgstr "" #. Default: "Enter the issue topics/areas for this tracker." -#: ./content/tracker.py:220 +#: ./content/tracker.py:214 #, fuzzy msgid "Poi_help_availableAreas" msgstr "Indique os tópicos/áreas de ocorrências para este gestor (uma especificação por linha). O formato é \"Nome Curto | Título | Descrição\". " #. Default: "Enter the issue types for this tracker." -#: ./content/tracker.py:243 +#: ./content/tracker.py:237 #, fuzzy msgid "Poi_help_availableIssueTypes" msgstr "Indique os tipos de ocorrências para este gestor (uma especificação por linha). O formato é \"Nome Curto | Título | Descrição\". " #. Default: "Enter the releases which issues can be assigned to, one per line. If no releases are entered, issues will not be organized by release." -#: ./content/tracker.py:293 +#: ./content/tracker.py:287 #, fuzzy msgid "Poi_help_availableReleases" msgstr "Indique as versões as quais as ocorrências podem ser relacionadas, uma por linha. Se nenhuma versão for informada, as ocorrência não serão organizadas por versão." #. Default: "Enter the different type of issue severities that should be available, one per line." -#: ./content/tracker.py:266 +#: ./content/tracker.py:260 msgid "Poi_help_availableSeverities" msgstr "Indique os valores distintos possíveis para a gravidade das ocorrências (um por linha)." #. Default: "Select the default severity for new issues." -#: ./content/tracker.py:280 +#: ./content/tracker.py:274 msgid "Poi_help_defaultSeverity" msgstr "Selecione a gravidade padrão para novas ocorrências." # ./content/PoiTracker.py #. Default: "Enter any introductory help text you'd like to display on the tracker front page." -#: ./content/tracker.py:208 +#: ./content/tracker.py:202 msgid "Poi_help_helpText" msgstr "Escreva um texto explicativo que será mostrado na página do gestor." @@ -210,12 +219,12 @@ msgid "Poi_help_issueTransition" msgstr "Altere o estado da ocorrência a que esta resposta se refere, se aplicável." #. Default: "Select the area this issue is relevant to." -#: ./content/issue.py:103 +#: ./content/issue.py:108 msgid "Poi_help_issue_area" msgstr "" #. Default: "Select which person, if any, is assigned to this issue." -#: ./content/issue.py:140 +#: ./content/issue.py:145 msgid "Poi_help_issue_assignee" msgstr "" @@ -225,67 +234,67 @@ msgid "Poi_help_issue_attachment" msgstr "" #. Default: "Please provide an email address where you can be contacted for further information or when a resolution is available. Note that your email address will not be displayed to others." -#: ./content/issue.py:149 +#: ./content/issue.py:154 msgid "Poi_help_issue_contact_email" msgstr "" #. Default: "Please provide further details. This field can create Automatic Links." -#: ./content/issue.py:86 +#: ./content/issue.py:91 msgid "Poi_help_issue_details" msgstr "" #. Default: "Last person to edit or add a Response" -#: ./content/issue.py:229 +#: ./content/issue.py:235 msgid "Poi_help_issue_last_actor" msgstr "" #. Default: "Link related issues." -#: ./content/issue.py:211 +#: ./content/issue.py:217 msgid "Poi_help_issue_related" msgstr "" #. Default: "Select the version the issue was found in." -#: ./content/issue.py:77 +#: ./content/issue.py:82 msgid "Poi_help_issue_release" msgstr "" #. Default: "Select the severity of this issue." -#: ./content/issue.py:119 +#: ./content/issue.py:124 msgid "Poi_help_issue_severity" msgstr "" #. Default: "If applicable, please provide the steps to reproduce the error or identify the issue, one per line. This field can create Automatic Links." -#: ./content/issue.py:94 +#: ./content/issue.py:99 msgid "Poi_help_issue_steps" msgstr "" #. Default: "Tags can be used to add arbitrary categorisation to issues. The list below shows existing tags which you can select, or you can add new ones." -#: ./content/issue.py:186 +#: ./content/issue.py:192 msgid "Poi_help_issue_subject" msgstr "" #. Default: "Release this issue is targetted to be fixed in." -#: ./content/issue.py:129 +#: ./content/issue.py:134 msgid "Poi_help_issue_target_release" msgstr "" #. Default: "Enter a short, descriptive title for the issue. A good title will make it easier for project managers to identify and respond to the issue." -#: ./content/issue.py:68 +#: ./content/issue.py:73 msgid "Poi_help_issue_title" msgstr "Indique um título curto e descritivo para a ocorrência. Um bom título facilitará a identificação e resposta da ocorrência pelo responsável do projecto." #. Default: "Select the type of issue." -#: ./content/issue.py:110 +#: ./content/issue.py:115 msgid "Poi_help_issue_type" msgstr "" #. Default: "Enter the user ids of members who are watching this issue, one per line. E-mail addresses are allowed too. These persons will receive an email when a response is added to the issue. Members can also add themselves as watchers." -#: ./content/issue.py:164 +#: ./content/issue.py:170 msgid "Poi_help_issue_watchers" msgstr "" #. Default: "If given, and if 'Send notification emails' is selected, an email will be sent to this address each time a new issue or response is posted." -#: ./content/tracker.py:360 +#: ./content/tracker.py:354 #, fuzzy msgid "Poi_help_mailingList" msgstr "Se preenchido, e se \"Enviar emails de notificação\" estiver selecionado, um email será enviado para este endereço cada vez que uma nova ocorrência ou resposta for criada. Se não for indicado uma lista de distribuição, os responsáveis receberão emails individuais." @@ -314,29 +323,29 @@ msgid "Poi_help_response" msgstr "Por favor, dê a sua resposta." #. Default: "If selected, all tracker assignees above will receive an email for new issues and all issue responses. Issue watchers will receive an email for all issue responses. Issue submitters will receive an email when the issue has been resolved." -#: ./content/tracker.py:344 +#: ./content/tracker.py:338 #, fuzzy msgid "Poi_help_sendNotificationEmails" msgstr "Se seleccionado, gestores de ocorrências receberão um email cada vez que uma nova ocorrência ou resposta for criada. Os autores de ocorrências receberão uma mensagem quando tiverem uma nova resposta ou quando uma ocorrência for resolvida e estiver a aguardar confirmação." # ./content/PoiTracker.py #. Default: "Please enter the URL to the related repository, e.g.: https://github.com/collective/Products.Poi/commit/%(rev)s for Products.Poi." -#: ./content/tracker.py:374 +#: ./content/tracker.py:368 msgid "Poi_help_svnurl" msgstr "" #. Default: "Describe the purpose of this tracker" -#: ./content/tracker.py:199 +#: ./content/tracker.py:193 msgid "Poi_help_tracker_description" msgstr "" #. Default: "Enter a descriptive name for this tracker" -#: ./content/tracker.py:191 +#: ./content/tracker.py:185 msgid "Poi_help_tracker_title" msgstr "Indique um nome descritivo para este gestor." #. Default: "Enter the user ids of members who are watching this tracker, one per line. E-mail addresses are allowed too. These persons will receive an email when an issue or response is added to the tracker. Members can also add themselves as watchers." -#: ./content/tracker.py:325 +#: ./content/tracker.py:319 msgid "Poi_help_tracker_watchers" msgstr "" @@ -346,32 +355,32 @@ msgid "Poi_issues_label" msgstr "" #. Default: "Assignees" -#: ./content/tracker.py:309 +#: ./content/tracker.py:303 msgid "Poi_label_assignees" msgstr "" #. Default: "Areas" -#: ./content/tracker.py:218 +#: ./content/tracker.py:212 msgid "Poi_label_availableAreas" msgstr "Áreas" #. Default: "Issue types" -#: ./content/tracker.py:241 +#: ./content/tracker.py:235 msgid "Poi_label_availableIssueTypes" msgstr "Tipos de ocorrência" #. Default: "Available releases" -#: ./content/tracker.py:289 +#: ./content/tracker.py:283 msgid "Poi_label_availableReleases" msgstr "Versões disponíveis" #. Default: "Available severities" -#: ./content/tracker.py:263 +#: ./content/tracker.py:257 msgid "Poi_label_availableSeverities" msgstr "Gravidades disponíveis" #. Default: "Default severity" -#: ./content/tracker.py:275 +#: ./content/tracker.py:269 msgid "Poi_label_defaultSeverity" msgstr "Gravidade padrão" @@ -381,82 +390,82 @@ msgid "Poi_label_issueTransition" msgstr "Alteração do estado da ocorrência" #. Default: "Area" -#: ./content/issue.py:102 +#: ./content/issue.py:107 msgid "Poi_label_issue_area" msgstr "" #. Default: "Assignee" -#: ./content/issue.py:139 +#: ./content/issue.py:144 msgid "Poi_label_issue_assignee" msgstr "" #. Default: "Contact Email" -#: ./content/issue.py:148 +#: ./content/issue.py:153 msgid "Poi_label_issue_contact_email" msgstr "" #. Default: "Details" -#: ./content/issue.py:85 +#: ./content/issue.py:90 msgid "Poi_label_issue_details" msgstr "" #. Default: "Leave this field empty" -#: ./content/issue.py:221 +#: ./content/issue.py:227 msgid "Poi_label_issue_empty" msgstr "" #. Default: "Last Actor" -#: ./content/issue.py:227 +#: ./content/issue.py:233 msgid "Poi_label_issue_last_actor" msgstr "" #. Default: "Related Issue(s)" -#: ./content/issue.py:210 +#: ./content/issue.py:216 msgid "Poi_label_issue_related" msgstr "" #. Default: "Release" -#: ./content/issue.py:76 +#: ./content/issue.py:81 msgid "Poi_label_issue_release" msgstr "" #. Default: "Severity" -#: ./content/issue.py:118 +#: ./content/issue.py:123 msgid "Poi_label_issue_severity" msgstr "" #. Default: "Steps To Reproduce" -#: ./content/issue.py:93 +#: ./content/issue.py:98 msgid "Poi_label_issue_steps" msgstr "" #. Default: "Subject" -#: ./content/issue.py:185 +#: ./content/issue.py:191 msgid "Poi_label_issue_subject" msgstr "" #. Default: "Target Release" -#: ./content/issue.py:128 +#: ./content/issue.py:133 msgid "Poi_label_issue_target_release" msgstr "" #. Default: "Title" -#: ./content/issue.py:67 +#: ./content/issue.py:72 msgid "Poi_label_issue_title" msgstr "Título" #. Default: "Issue Type" -#: ./content/issue.py:109 +#: ./content/issue.py:114 msgid "Poi_label_issue_type" msgstr "" #. Default: "Watchers" -#: ./content/issue.py:163 +#: ./content/issue.py:169 msgid "Poi_label_issue_watchers" msgstr "" #. Default: "Mailing list" -#: ./content/tracker.py:356 +#: ./content/tracker.py:350 msgid "Poi_label_mailingList" msgstr "Lista de e-mails" @@ -479,18 +488,18 @@ msgid "Poi_label_newTargetRelease" msgstr "Alterar a versão alvo" #. Default: "Send notification emails" -#: ./content/tracker.py:340 +#: ./content/tracker.py:334 msgid "Poi_label_sendNotificationEmails" msgstr "Notificar por e-mails" # ./content/PoiTracker.py #. Default: "URL to Repository" -#: ./content/tracker.py:372 +#: ./content/tracker.py:366 msgid "Poi_label_svnurl" msgstr "" #. Default: "Watchers" -#: ./content/tracker.py:324 +#: ./content/tracker.py:318 msgid "Poi_label_tracker_watchers" msgstr "" @@ -505,7 +514,7 @@ msgid "Poi_repository_label" msgstr "" #. Default: "" -#: ./browser/response.py:555 +#: ./browser/response.py:557 msgid "Removed response id ${response_id}." msgstr "" @@ -520,12 +529,12 @@ msgstr "" msgid "Response Information" msgstr "" -#: ./browser/response.py:493 +#: ./browser/response.py:495 msgid "Response does not exist anymore; perhaps it was removed by another user." msgstr "" #. Default: "" -#: ./browser/response.py:548 +#: ./browser/response.py:550 msgid "Response id ${response_id} does not exist so it cannot be removed." msgstr "" @@ -535,7 +544,7 @@ msgid "Response id ${response_id} does not exist." msgstr "" #. Default: "" -#: ./browser/response.py:540 +#: ./browser/response.py:542 msgid "Response id ${response_id} is no integer so it cannot be removed." msgstr "" @@ -548,11 +557,11 @@ msgstr "" msgid "Search" msgstr "Pesquisar" -#: ./browser/response.py:418 +#: ./browser/response.py:420 msgid "Severity" msgstr "" -#: ./content/tracker.py:177 +#: ./content/tracker.py:171 msgid "Short Name" msgstr "" @@ -564,7 +573,7 @@ msgstr "" msgid "Submit new issue" msgstr "Submeter nova ocorrência " -#: ./browser/response.py:421 +#: ./browser/response.py:423 msgid "Target release" msgstr "" @@ -579,20 +588,24 @@ msgstr "" msgid "This is an automated email, please do not reply." msgstr "" -#: ./content/tracker.py:180 +#: ./content/tracker.py:174 msgid "Title" msgstr "" -#: ./browser/response.py:527 +#: ./profiles/default/types/Tracker.xml +msgid "Tracker" +msgstr "" + +#: ./browser/response.py:529 msgid "You are not allowed to delete responses." msgstr "" -#: ./browser/response.py:483 +#: ./browser/response.py:485 msgid "You are not allowed to edit responses." msgstr "" #. Default: "Automatic linking" -#: ./browser/templates/automatic_links_help_view.pt:11 +#: ./browser/templates/automatic_links_help_view.pt:16 msgid "authomatic_linking_label" msgstr "" @@ -602,7 +615,7 @@ msgid "batch_x_items_matching_your_criteria" msgstr "" #. Default: "Description" -#: ./content/tracker.py:198 +#: ./content/tracker.py:192 msgid "description" msgstr "" @@ -617,7 +630,7 @@ msgid "description_no_results_found" msgstr "" #. Default: "Help Text" -#: ./content/tracker.py:207 +#: ./content/tracker.py:201 msgid "help_text" msgstr "" @@ -1070,7 +1083,7 @@ msgid "stop_watching_this" msgstr "" #. Default: "Title" -#: ./content/tracker.py:190 +#: ./content/tracker.py:184 msgid "title" msgstr "" diff --git a/Products/Poi/locales/pt_BR/LC_MESSAGES/Poi.po b/Products/Poi/locales/pt_BR/LC_MESSAGES/Poi.po index dca8263a..1a6a6bc0 100644 --- a/Products/Poi/locales/pt_BR/LC_MESSAGES/Poi.po +++ b/Products/Poi/locales/pt_BR/LC_MESSAGES/Poi.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: poi-pt-br\n" -"POT-Creation-Date: 2020-08-27 12:56+0000\n" +"POT-Creation-Date: 2020-09-01 13:08+0000\n" "PO-Revision-Date: 2012-04-09 13:59-0300\n" "Last-Translator: Gustavo Lepri \n" "Language-Team: Simples Consultoria \n" @@ -20,6 +20,10 @@ msgstr "" "Domain: Poi\n" "Language: \n" +#: ./profiles/default/types/Tracker.xml +msgid "A Poi Issue Tracker" +msgstr "" + #: ./profiles.zcml:14 msgid "A friendly issue tracker" msgstr "" @@ -34,16 +38,20 @@ msgstr "" msgid "A new response has been given to the issue ${issue_title} in the tracker ${tracker_title} by ${response_author}." msgstr "" +#: ./profiles/default/types/Issue.xml +msgid "An Issue in a Poi Tracker" +msgstr "" + #: ./browser/templates/poi_email_new_response_html.pt:42 #: ./browser/templates/poi_email_new_response_plain.pt:23 msgid "An attachment has been added with id ${id}." msgstr "" -#: ./content/tracker.py:236 +#: ./content/tracker.py:230 msgid "Area" msgstr "" -#: ./browser/response.py:419 +#: ./browser/response.py:421 msgid "Assignee" msgstr "" @@ -52,11 +60,11 @@ msgid "Attachments" msgstr "" #. Default: "" -#: ./browser/response.py:503 +#: ./browser/response.py:505 msgid "Changes saved to response id ${response_id}." msgstr "Alterações salvas para a resposta com id ${response_id}" -#: ./content/tracker.py:63 +#: ./content/tracker.py:56 msgid "Critical" msgstr "" @@ -64,7 +72,7 @@ msgstr "" msgid "Delete" msgstr "Apagar" -#: ./content/tracker.py:183 +#: ./content/tracker.py:177 msgid "Description" msgstr "" @@ -76,16 +84,17 @@ msgstr "Editar" msgid "Edit issue" msgstr "Editar ocorrência" -#: ./content/tracker.py:310 +#: ./content/tracker.py:304 msgid "Enter users who will be responsible for solving the issues. Users also need to be added as Watchers to receive notifications." msgstr "" -#: ./content/tracker.py:64 +#: ./content/tracker.py:57 msgid "Important" msgstr "" #: ./browser/templates/poi_email_new_issue_html.pt:29 #: ./browser/templates/poi_email_resolved_issue_html.pt:32 +#: ./profiles/default/types/Issue.xml msgid "Issue" msgstr "" @@ -100,11 +109,11 @@ msgstr "" msgid "Issue Information" msgstr "" -#: ./content/tracker.py:258 +#: ./content/tracker.py:252 msgid "Issue Type" msgstr "" -#: ./browser/response.py:413 +#: ./browser/response.py:415 msgid "Issue state" msgstr "Estado da ocorrência" @@ -114,19 +123,19 @@ msgstr "Estado da ocorrência" msgid "Issue:" msgstr "" -#: ./content/tracker.py:66 +#: ./content/tracker.py:59 msgid "Low" msgstr "" -#: ./content/tracker.py:65 +#: ./content/tracker.py:58 msgid "Medium" msgstr "" -#: ./browser/response.py:533 +#: ./browser/response.py:535 msgid "No response selected for removal." msgstr "Nenhuma resposta selecionada para remoção." -#: ./browser/response.py:489 +#: ./browser/response.py:491 msgid "No response selected for saving." msgstr "Nenhuma resposta selecionada para salvamento." @@ -134,7 +143,7 @@ msgstr "Nenhuma resposta selecionada para salvamento." msgid "No response selected." msgstr "Nenhuma resposta selecionada." -#: ./browser/response.py:440 +#: ./browser/response.py:442 msgid "No response text added and no issue changes made." msgstr "Não foi adicionado um texto à resposta e nenhuma alteração foi realizada na ocorrência." @@ -171,36 +180,36 @@ msgid "Poi_automatic_link_repository_help" msgstr "" #. Default: "Enter the issue topics/areas for this tracker." -#: ./content/tracker.py:220 +#: ./content/tracker.py:214 #, fuzzy msgid "Poi_help_availableAreas" msgstr "Informe os tópicos/áreas de ocorrências para este gerenciador, uma especificação por linha. O formato é \"NomeCurto | Título | Descrição\". " #. Default: "Enter the issue types for this tracker." -#: ./content/tracker.py:243 +#: ./content/tracker.py:237 #, fuzzy msgid "Poi_help_availableIssueTypes" msgstr "Informe os tipos de ocorrências para este gerenciador, uma especificação por linha. O formato é \"NomeCurto | Título | Descrição\". " #. Default: "Enter the releases which issues can be assigned to, one per line. If no releases are entered, issues will not be organized by release." -#: ./content/tracker.py:293 +#: ./content/tracker.py:287 #, fuzzy msgid "Poi_help_availableReleases" msgstr "Informe as versões as quais as ocorrências podem ser relacionadas, uma por linha. Se nenhuma versão for informada, as ocorrência não serão organizadas por versão." #. Default: "Enter the different type of issue severities that should be available, one per line." -#: ./content/tracker.py:266 +#: ./content/tracker.py:260 msgid "Poi_help_availableSeverities" msgstr "Informe os valores distintos possíveis para a gravidade das ocorrências, um por linha." #. Default: "Select the default severity for new issues." -#: ./content/tracker.py:280 +#: ./content/tracker.py:274 msgid "Poi_help_defaultSeverity" msgstr "Selecione a gravidade padrão para novas ocorrências." # ./content/PoiTracker.py #. Default: "Enter any introductory help text you'd like to display on the tracker front page." -#: ./content/tracker.py:208 +#: ./content/tracker.py:202 msgid "Poi_help_helpText" msgstr "Digite uma mensagem introdutória a ser exibida na página inicial do gerenciador de ocorrências." @@ -210,12 +219,12 @@ msgid "Poi_help_issueTransition" msgstr "Selecione a troca de situação da ocorrência a que esta resposta se refere, se aplicável." #. Default: "Select the area this issue is relevant to." -#: ./content/issue.py:103 +#: ./content/issue.py:108 msgid "Poi_help_issue_area" msgstr "" #. Default: "Select which person, if any, is assigned to this issue." -#: ./content/issue.py:140 +#: ./content/issue.py:145 msgid "Poi_help_issue_assignee" msgstr "" @@ -225,67 +234,67 @@ msgid "Poi_help_issue_attachment" msgstr "" #. Default: "Please provide an email address where you can be contacted for further information or when a resolution is available. Note that your email address will not be displayed to others." -#: ./content/issue.py:149 +#: ./content/issue.py:154 msgid "Poi_help_issue_contact_email" msgstr "" #. Default: "Please provide further details. This field can create Automatic Links." -#: ./content/issue.py:86 +#: ./content/issue.py:91 msgid "Poi_help_issue_details" msgstr "" #. Default: "Last person to edit or add a Response" -#: ./content/issue.py:229 +#: ./content/issue.py:235 msgid "Poi_help_issue_last_actor" msgstr "" #. Default: "Link related issues." -#: ./content/issue.py:211 +#: ./content/issue.py:217 msgid "Poi_help_issue_related" msgstr "" #. Default: "Select the version the issue was found in." -#: ./content/issue.py:77 +#: ./content/issue.py:82 msgid "Poi_help_issue_release" msgstr "" #. Default: "Select the severity of this issue." -#: ./content/issue.py:119 +#: ./content/issue.py:124 msgid "Poi_help_issue_severity" msgstr "" #. Default: "If applicable, please provide the steps to reproduce the error or identify the issue, one per line. This field can create Automatic Links." -#: ./content/issue.py:94 +#: ./content/issue.py:99 msgid "Poi_help_issue_steps" msgstr "" #. Default: "Tags can be used to add arbitrary categorisation to issues. The list below shows existing tags which you can select, or you can add new ones." -#: ./content/issue.py:186 +#: ./content/issue.py:192 msgid "Poi_help_issue_subject" msgstr "" #. Default: "Release this issue is targetted to be fixed in." -#: ./content/issue.py:129 +#: ./content/issue.py:134 msgid "Poi_help_issue_target_release" msgstr "" #. Default: "Enter a short, descriptive title for the issue. A good title will make it easier for project managers to identify and respond to the issue." -#: ./content/issue.py:68 +#: ./content/issue.py:73 msgid "Poi_help_issue_title" msgstr "Informe um título curto e descritivo para a ocorrência. Um bom título facilitará a identificação e resposta da ocorrência pelo responsável pelo projeto." #. Default: "Select the type of issue." -#: ./content/issue.py:110 +#: ./content/issue.py:115 msgid "Poi_help_issue_type" msgstr "" #. Default: "Enter the user ids of members who are watching this issue, one per line. E-mail addresses are allowed too. These persons will receive an email when a response is added to the issue. Members can also add themselves as watchers." -#: ./content/issue.py:164 +#: ./content/issue.py:170 msgid "Poi_help_issue_watchers" msgstr "" #. Default: "If given, and if 'Send notification emails' is selected, an email will be sent to this address each time a new issue or response is posted." -#: ./content/tracker.py:360 +#: ./content/tracker.py:354 #, fuzzy msgid "Poi_help_mailingList" msgstr "Se informado, e se \"Enviar emails de notificação\" estiver selecionado, um email será enviado para este endereço cada vez que uma nova ocorrência ou resposta for criada. Se não for informado um endereço de lista, os responsáveis receberão emails individuais." @@ -314,30 +323,30 @@ msgid "Poi_help_response" msgstr "Por favor, informe a sua resposta abaixo." #. Default: "If selected, all tracker assignees above will receive an email for new issues and all issue responses. Issue watchers will receive an email for all issue responses. Issue submitters will receive an email when the issue has been resolved." -#: ./content/tracker.py:344 +#: ./content/tracker.py:338 #, fuzzy msgid "Poi_help_sendNotificationEmails" msgstr "Se selecionado, gerentes de ocorrências receberão um email a cada vez que uma nova ocorrência ou resposta for criada, e os criadores de ocorrências receberão uma mensagem quando tiver uma nova resposta e quando uma ocorrência for resolvida e estiver aguardando confirmação." # ./content/PoiTracker.py #. Default: "Please enter the URL to the related repository, e.g.: https://github.com/collective/Products.Poi/commit/%(rev)s for Products.Poi." -#: ./content/tracker.py:374 +#: ./content/tracker.py:368 #, fuzzy msgid "Poi_help_svnurl" msgstr "Por favor informe a URL do repositório SVN relativo a este gerenciador. ex.http://dev.plone.org/changeset/%(rev)s/collective para produtos no collective do Plone." #. Default: "Describe the purpose of this tracker" -#: ./content/tracker.py:199 +#: ./content/tracker.py:193 msgid "Poi_help_tracker_description" msgstr "Descreva o propósito desta ocorrência" #. Default: "Enter a descriptive name for this tracker" -#: ./content/tracker.py:191 +#: ./content/tracker.py:185 msgid "Poi_help_tracker_title" msgstr "Informe um nome que descreva este gerenciador." #. Default: "Enter the user ids of members who are watching this tracker, one per line. E-mail addresses are allowed too. These persons will receive an email when an issue or response is added to the tracker. Members can also add themselves as watchers." -#: ./content/tracker.py:325 +#: ./content/tracker.py:319 msgid "Poi_help_tracker_watchers" msgstr "" @@ -347,32 +356,32 @@ msgid "Poi_issues_label" msgstr "" #. Default: "Assignees" -#: ./content/tracker.py:309 +#: ./content/tracker.py:303 msgid "Poi_label_assignees" msgstr "" #. Default: "Areas" -#: ./content/tracker.py:218 +#: ./content/tracker.py:212 msgid "Poi_label_availableAreas" msgstr "Áreas" #. Default: "Issue types" -#: ./content/tracker.py:241 +#: ./content/tracker.py:235 msgid "Poi_label_availableIssueTypes" msgstr "Tipos de Ocorrências" #. Default: "Available releases" -#: ./content/tracker.py:289 +#: ./content/tracker.py:283 msgid "Poi_label_availableReleases" msgstr "Versões Disponíveis" #. Default: "Available severities" -#: ./content/tracker.py:263 +#: ./content/tracker.py:257 msgid "Poi_label_availableSeverities" msgstr "Gravidades Disponíveis" #. Default: "Default severity" -#: ./content/tracker.py:275 +#: ./content/tracker.py:269 msgid "Poi_label_defaultSeverity" msgstr "Gravidade Padrão" @@ -382,82 +391,82 @@ msgid "Poi_label_issueTransition" msgstr "Troca da Situação da Ocorrência" #. Default: "Area" -#: ./content/issue.py:102 +#: ./content/issue.py:107 msgid "Poi_label_issue_area" msgstr "" #. Default: "Assignee" -#: ./content/issue.py:139 +#: ./content/issue.py:144 msgid "Poi_label_issue_assignee" msgstr "" #. Default: "Contact Email" -#: ./content/issue.py:148 +#: ./content/issue.py:153 msgid "Poi_label_issue_contact_email" msgstr "" #. Default: "Details" -#: ./content/issue.py:85 +#: ./content/issue.py:90 msgid "Poi_label_issue_details" msgstr "" #. Default: "Leave this field empty" -#: ./content/issue.py:221 +#: ./content/issue.py:227 msgid "Poi_label_issue_empty" msgstr "" #. Default: "Last Actor" -#: ./content/issue.py:227 +#: ./content/issue.py:233 msgid "Poi_label_issue_last_actor" msgstr "" #. Default: "Related Issue(s)" -#: ./content/issue.py:210 +#: ./content/issue.py:216 msgid "Poi_label_issue_related" msgstr "" #. Default: "Release" -#: ./content/issue.py:76 +#: ./content/issue.py:81 msgid "Poi_label_issue_release" msgstr "" #. Default: "Severity" -#: ./content/issue.py:118 +#: ./content/issue.py:123 msgid "Poi_label_issue_severity" msgstr "" #. Default: "Steps To Reproduce" -#: ./content/issue.py:93 +#: ./content/issue.py:98 msgid "Poi_label_issue_steps" msgstr "" #. Default: "Subject" -#: ./content/issue.py:185 +#: ./content/issue.py:191 msgid "Poi_label_issue_subject" msgstr "" #. Default: "Target Release" -#: ./content/issue.py:128 +#: ./content/issue.py:133 msgid "Poi_label_issue_target_release" msgstr "" #. Default: "Title" -#: ./content/issue.py:67 +#: ./content/issue.py:72 msgid "Poi_label_issue_title" msgstr "Título" #. Default: "Issue Type" -#: ./content/issue.py:109 +#: ./content/issue.py:114 msgid "Poi_label_issue_type" msgstr "" #. Default: "Watchers" -#: ./content/issue.py:163 +#: ./content/issue.py:169 msgid "Poi_label_issue_watchers" msgstr "" #. Default: "Mailing list" -#: ./content/tracker.py:356 +#: ./content/tracker.py:350 msgid "Poi_label_mailingList" msgstr "Lista de Emails" @@ -480,19 +489,19 @@ msgid "Poi_label_newTargetRelease" msgstr "Alterar a versão" #. Default: "Send notification emails" -#: ./content/tracker.py:340 +#: ./content/tracker.py:334 msgid "Poi_label_sendNotificationEmails" msgstr "Notificar por Emails" # ./content/PoiTracker.py #. Default: "URL to Repository" -#: ./content/tracker.py:372 +#: ./content/tracker.py:366 #, fuzzy msgid "Poi_label_svnurl" msgstr "URL para o SVN" #. Default: "Watchers" -#: ./content/tracker.py:324 +#: ./content/tracker.py:318 msgid "Poi_label_tracker_watchers" msgstr "" @@ -507,7 +516,7 @@ msgid "Poi_repository_label" msgstr "" #. Default: "" -#: ./browser/response.py:555 +#: ./browser/response.py:557 msgid "Removed response id ${response_id}." msgstr "Removida a resposta com id ${response_id}" @@ -522,12 +531,12 @@ msgstr "" msgid "Response Information" msgstr "" -#: ./browser/response.py:493 +#: ./browser/response.py:495 msgid "Response does not exist anymore; perhaps it was removed by another user." msgstr "A resposta não existe mais; talvez ela foi removida por outro usuário." #. Default: "" -#: ./browser/response.py:548 +#: ./browser/response.py:550 msgid "Response id ${response_id} does not exist so it cannot be removed." msgstr "A resposta com id ${response_id} não existe, portanto não poderia ser removida." @@ -537,7 +546,7 @@ msgid "Response id ${response_id} does not exist." msgstr "Resposta com id ${response_id} não existe." #. Default: "" -#: ./browser/response.py:540 +#: ./browser/response.py:542 msgid "Response id ${response_id} is no integer so it cannot be removed." msgstr "O id ${response_id} da resposta não é um número inteiro, portanto não pode ser removido;" @@ -550,11 +559,11 @@ msgstr "Id de resposta ${response_id} não é um número inteiro." msgid "Search" msgstr "Buscar" -#: ./browser/response.py:418 +#: ./browser/response.py:420 msgid "Severity" msgstr "Severidade" -#: ./content/tracker.py:177 +#: ./content/tracker.py:171 msgid "Short Name" msgstr "" @@ -566,7 +575,7 @@ msgstr "" msgid "Submit new issue" msgstr "Submeter nova ocorrência " -#: ./browser/response.py:421 +#: ./browser/response.py:423 msgid "Target release" msgstr "Versão" @@ -581,20 +590,24 @@ msgstr "" msgid "This is an automated email, please do not reply." msgstr "" -#: ./content/tracker.py:180 +#: ./content/tracker.py:174 msgid "Title" msgstr "" -#: ./browser/response.py:527 +#: ./profiles/default/types/Tracker.xml +msgid "Tracker" +msgstr "" + +#: ./browser/response.py:529 msgid "You are not allowed to delete responses." msgstr "Você não pode apagar respostas." -#: ./browser/response.py:483 +#: ./browser/response.py:485 msgid "You are not allowed to edit responses." msgstr "Você não pode editar respostas." #. Default: "Automatic linking" -#: ./browser/templates/automatic_links_help_view.pt:11 +#: ./browser/templates/automatic_links_help_view.pt:16 msgid "authomatic_linking_label" msgstr "" @@ -604,7 +617,7 @@ msgid "batch_x_items_matching_your_criteria" msgstr "" #. Default: "Description" -#: ./content/tracker.py:198 +#: ./content/tracker.py:192 msgid "description" msgstr "" @@ -619,7 +632,7 @@ msgid "description_no_results_found" msgstr "" #. Default: "Help Text" -#: ./content/tracker.py:207 +#: ./content/tracker.py:201 msgid "help_text" msgstr "" @@ -1072,7 +1085,7 @@ msgid "stop_watching_this" msgstr "" #. Default: "Title" -#: ./content/tracker.py:190 +#: ./content/tracker.py:184 msgid "title" msgstr "" diff --git a/Products/Poi/locales/zh/LC_MESSAGES/Poi.po b/Products/Poi/locales/zh/LC_MESSAGES/Poi.po index 1ff65930..e4e5c702 100644 --- a/Products/Poi/locales/zh/LC_MESSAGES/Poi.po +++ b/Products/Poi/locales/zh/LC_MESSAGES/Poi.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Poi\n" -"POT-Creation-Date: 2020-08-27 12:56+0000\n" +"POT-Creation-Date: 2020-09-01 13:08+0000\n" "PO-Revision-Date: 2005-12-26 03:19 +0000\n" "Last-Translator: Junyong Pan \n" "Language-Team: LANGUAGE \n" @@ -18,6 +18,10 @@ msgstr "" "Language: \n" "X-Is-Fallback-For: zh-cn zh-hk zh-mo zh-sg\n" +#: ./profiles/default/types/Tracker.xml +msgid "A Poi Issue Tracker" +msgstr "" + #: ./profiles.zcml:14 msgid "A friendly issue tracker" msgstr "" @@ -32,16 +36,20 @@ msgstr "" msgid "A new response has been given to the issue ${issue_title} in the tracker ${tracker_title} by ${response_author}." msgstr "" +#: ./profiles/default/types/Issue.xml +msgid "An Issue in a Poi Tracker" +msgstr "" + #: ./browser/templates/poi_email_new_response_html.pt:42 #: ./browser/templates/poi_email_new_response_plain.pt:23 msgid "An attachment has been added with id ${id}." msgstr "" -#: ./content/tracker.py:236 +#: ./content/tracker.py:230 msgid "Area" msgstr "" -#: ./browser/response.py:419 +#: ./browser/response.py:421 msgid "Assignee" msgstr "" @@ -50,11 +58,11 @@ msgid "Attachments" msgstr "" #. Default: "" -#: ./browser/response.py:503 +#: ./browser/response.py:505 msgid "Changes saved to response id ${response_id}." msgstr "" -#: ./content/tracker.py:63 +#: ./content/tracker.py:56 msgid "Critical" msgstr "" @@ -62,7 +70,7 @@ msgstr "" msgid "Delete" msgstr "删除" -#: ./content/tracker.py:183 +#: ./content/tracker.py:177 msgid "Description" msgstr "" @@ -74,16 +82,17 @@ msgstr "编辑" msgid "Edit issue" msgstr "" -#: ./content/tracker.py:310 +#: ./content/tracker.py:304 msgid "Enter users who will be responsible for solving the issues. Users also need to be added as Watchers to receive notifications." msgstr "" -#: ./content/tracker.py:64 +#: ./content/tracker.py:57 msgid "Important" msgstr "" #: ./browser/templates/poi_email_new_issue_html.pt:29 #: ./browser/templates/poi_email_resolved_issue_html.pt:32 +#: ./profiles/default/types/Issue.xml msgid "Issue" msgstr "" @@ -98,11 +107,11 @@ msgstr "" msgid "Issue Information" msgstr "" -#: ./content/tracker.py:258 +#: ./content/tracker.py:252 msgid "Issue Type" msgstr "" -#: ./browser/response.py:413 +#: ./browser/response.py:415 msgid "Issue state" msgstr "" @@ -112,19 +121,19 @@ msgstr "" msgid "Issue:" msgstr "" -#: ./content/tracker.py:66 +#: ./content/tracker.py:59 msgid "Low" msgstr "" -#: ./content/tracker.py:65 +#: ./content/tracker.py:58 msgid "Medium" msgstr "" -#: ./browser/response.py:533 +#: ./browser/response.py:535 msgid "No response selected for removal." msgstr "" -#: ./browser/response.py:489 +#: ./browser/response.py:491 msgid "No response selected for saving." msgstr "" @@ -132,7 +141,7 @@ msgstr "" msgid "No response selected." msgstr "" -#: ./browser/response.py:440 +#: ./browser/response.py:442 msgid "No response text added and no issue changes made." msgstr "" @@ -170,40 +179,40 @@ msgstr "" # ./content/PoiTracker.py #. Default: "Enter the issue topics/areas for this tracker." -#: ./content/tracker.py:220 +#: ./content/tracker.py:214 #, fuzzy msgid "Poi_help_availableAreas" msgstr "输入跟踪器中问题的主题或者领域,每行输入一个。格式是“代号 | 标题 | 描述”。" # ./content/PoiTracker.py #. Default: "Enter the issue types for this tracker." -#: ./content/tracker.py:243 +#: ./content/tracker.py:237 #, fuzzy msgid "Poi_help_availableIssueTypes" msgstr "输入这个跟踪器的问题类型,每行输入一个。格式是“代号 | 标题 | 描述”。" # ./content/PoiTracker.py #. Default: "Enter the releases which issues can be assigned to, one per line. If no releases are entered, issues will not be organized by release." -#: ./content/tracker.py:293 +#: ./content/tracker.py:287 #, fuzzy msgid "Poi_help_availableReleases" msgstr "输入问题可分配的版本号,每行一个。如果没有发行版本,问题就不会按照版本组织。" # ./content/PoiTracker.py #. Default: "Enter the different type of issue severities that should be available, one per line." -#: ./content/tracker.py:266 +#: ./content/tracker.py:260 msgid "Poi_help_availableSeverities" msgstr "输入不同类型的问题可选严重性,每行一个。" # ./content/PoiTracker.py #. Default: "Select the default severity for new issues." -#: ./content/tracker.py:280 +#: ./content/tracker.py:274 msgid "Poi_help_defaultSeverity" msgstr "选择问题的默认严重性" # ./content/PoiTracker.py #. Default: "Enter any introductory help text you'd like to display on the tracker front page." -#: ./content/tracker.py:208 +#: ./content/tracker.py:202 msgid "Poi_help_helpText" msgstr "" @@ -214,12 +223,12 @@ msgid "Poi_help_issueTransition" msgstr "如果可以,选择答复问题的状态改变" #. Default: "Select the area this issue is relevant to." -#: ./content/issue.py:103 +#: ./content/issue.py:108 msgid "Poi_help_issue_area" msgstr "" #. Default: "Select which person, if any, is assigned to this issue." -#: ./content/issue.py:140 +#: ./content/issue.py:145 msgid "Poi_help_issue_assignee" msgstr "" @@ -229,69 +238,69 @@ msgid "Poi_help_issue_attachment" msgstr "" #. Default: "Please provide an email address where you can be contacted for further information or when a resolution is available. Note that your email address will not be displayed to others." -#: ./content/issue.py:149 +#: ./content/issue.py:154 msgid "Poi_help_issue_contact_email" msgstr "" #. Default: "Please provide further details. This field can create Automatic Links." -#: ./content/issue.py:86 +#: ./content/issue.py:91 msgid "Poi_help_issue_details" msgstr "" #. Default: "Last person to edit or add a Response" -#: ./content/issue.py:229 +#: ./content/issue.py:235 msgid "Poi_help_issue_last_actor" msgstr "" #. Default: "Link related issues." -#: ./content/issue.py:211 +#: ./content/issue.py:217 msgid "Poi_help_issue_related" msgstr "" #. Default: "Select the version the issue was found in." -#: ./content/issue.py:77 +#: ./content/issue.py:82 msgid "Poi_help_issue_release" msgstr "" #. Default: "Select the severity of this issue." -#: ./content/issue.py:119 +#: ./content/issue.py:124 msgid "Poi_help_issue_severity" msgstr "" #. Default: "If applicable, please provide the steps to reproduce the error or identify the issue, one per line. This field can create Automatic Links." -#: ./content/issue.py:94 +#: ./content/issue.py:99 msgid "Poi_help_issue_steps" msgstr "" #. Default: "Tags can be used to add arbitrary categorisation to issues. The list below shows existing tags which you can select, or you can add new ones." -#: ./content/issue.py:186 +#: ./content/issue.py:192 msgid "Poi_help_issue_subject" msgstr "" #. Default: "Release this issue is targetted to be fixed in." -#: ./content/issue.py:129 +#: ./content/issue.py:134 msgid "Poi_help_issue_target_release" msgstr "" # ./content/PoiIssue.py #. Default: "Enter a short, descriptive title for the issue. A good title will make it easier for project managers to identify and respond to the issue." -#: ./content/issue.py:68 +#: ./content/issue.py:73 msgid "Poi_help_issue_title" msgstr "为这个问题输入一个简短的、描述性的标题。一个好的标题将让项目管理人员更好的识别和答复这个问题。" #. Default: "Select the type of issue." -#: ./content/issue.py:110 +#: ./content/issue.py:115 msgid "Poi_help_issue_type" msgstr "" #. Default: "Enter the user ids of members who are watching this issue, one per line. E-mail addresses are allowed too. These persons will receive an email when a response is added to the issue. Members can also add themselves as watchers." -#: ./content/issue.py:164 +#: ./content/issue.py:170 msgid "Poi_help_issue_watchers" msgstr "" # ./content/PoiTracker.py #. Default: "If given, and if 'Send notification emails' is selected, an email will be sent to this address each time a new issue or response is posted." -#: ./content/tracker.py:360 +#: ./content/tracker.py:354 #, fuzzy msgid "Poi_help_mailingList" msgstr "如果提供,而且如果“发送通知邮件”选中,每次张贴新的问题或者答复时,都将有一个通知邮件发送到这个地址。如果没有提供邮件地址,就只有管理人员收到邮件。" @@ -322,30 +331,30 @@ msgstr "请在下面填写答复" # ./content/PoiTracker.py #. Default: "If selected, all tracker assignees above will receive an email for new issues and all issue responses. Issue watchers will receive an email for all issue responses. Issue submitters will receive an email when the issue has been resolved." -#: ./content/tracker.py:344 +#: ./content/tracker.py:338 #, fuzzy msgid "Poi_help_sendNotificationEmails" msgstr "如果选中,一旦张贴新的问题或者答复,管理人员将收到一个通知邮件;问题的提交人将在有新的答复,或问题解决、等待确认的时候收到通知邮件。" # ./content/PoiTracker.py #. Default: "Please enter the URL to the related repository, e.g.: https://github.com/collective/Products.Poi/commit/%(rev)s for Products.Poi." -#: ./content/tracker.py:374 +#: ./content/tracker.py:368 msgid "Poi_help_svnurl" msgstr "" #. Default: "Describe the purpose of this tracker" -#: ./content/tracker.py:199 +#: ./content/tracker.py:193 msgid "Poi_help_tracker_description" msgstr "" # ./content/PoiTracker.py #. Default: "Enter a descriptive name for this tracker" -#: ./content/tracker.py:191 +#: ./content/tracker.py:185 msgid "Poi_help_tracker_title" msgstr "给跟踪器输入一个描述名" #. Default: "Enter the user ids of members who are watching this tracker, one per line. E-mail addresses are allowed too. These persons will receive an email when an issue or response is added to the tracker. Members can also add themselves as watchers." -#: ./content/tracker.py:325 +#: ./content/tracker.py:319 msgid "Poi_help_tracker_watchers" msgstr "" @@ -355,37 +364,37 @@ msgid "Poi_issues_label" msgstr "" #. Default: "Assignees" -#: ./content/tracker.py:309 +#: ./content/tracker.py:303 msgid "Poi_label_assignees" msgstr "" # ./content/PoiTracker.py #. Default: "Areas" -#: ./content/tracker.py:218 +#: ./content/tracker.py:212 msgid "Poi_label_availableAreas" msgstr "领域" # ./content/PoiTracker.py #. Default: "Issue types" -#: ./content/tracker.py:241 +#: ./content/tracker.py:235 msgid "Poi_label_availableIssueTypes" msgstr "问题类型" # ./content/PoiTracker.py #. Default: "Available releases" -#: ./content/tracker.py:289 +#: ./content/tracker.py:283 msgid "Poi_label_availableReleases" msgstr "可用的版本" # ./content/PoiTracker.py #. Default: "Available severities" -#: ./content/tracker.py:263 +#: ./content/tracker.py:257 msgid "Poi_label_availableSeverities" msgstr "可用的严重性" # ./content/PoiTracker.py #. Default: "Default severity" -#: ./content/tracker.py:275 +#: ./content/tracker.py:269 msgid "Poi_label_defaultSeverity" msgstr "默认严重性" @@ -396,84 +405,84 @@ msgid "Poi_label_issueTransition" msgstr "改变问题状态" #. Default: "Area" -#: ./content/issue.py:102 +#: ./content/issue.py:107 msgid "Poi_label_issue_area" msgstr "" #. Default: "Assignee" -#: ./content/issue.py:139 +#: ./content/issue.py:144 msgid "Poi_label_issue_assignee" msgstr "" #. Default: "Contact Email" -#: ./content/issue.py:148 +#: ./content/issue.py:153 msgid "Poi_label_issue_contact_email" msgstr "" #. Default: "Details" -#: ./content/issue.py:85 +#: ./content/issue.py:90 msgid "Poi_label_issue_details" msgstr "" #. Default: "Leave this field empty" -#: ./content/issue.py:221 +#: ./content/issue.py:227 msgid "Poi_label_issue_empty" msgstr "" #. Default: "Last Actor" -#: ./content/issue.py:227 +#: ./content/issue.py:233 msgid "Poi_label_issue_last_actor" msgstr "" #. Default: "Related Issue(s)" -#: ./content/issue.py:210 +#: ./content/issue.py:216 msgid "Poi_label_issue_related" msgstr "" #. Default: "Release" -#: ./content/issue.py:76 +#: ./content/issue.py:81 msgid "Poi_label_issue_release" msgstr "" #. Default: "Severity" -#: ./content/issue.py:118 +#: ./content/issue.py:123 msgid "Poi_label_issue_severity" msgstr "" #. Default: "Steps To Reproduce" -#: ./content/issue.py:93 +#: ./content/issue.py:98 msgid "Poi_label_issue_steps" msgstr "" #. Default: "Subject" -#: ./content/issue.py:185 +#: ./content/issue.py:191 msgid "Poi_label_issue_subject" msgstr "" #. Default: "Target Release" -#: ./content/issue.py:128 +#: ./content/issue.py:133 msgid "Poi_label_issue_target_release" msgstr "" # ./content/PoiIssue.py #. Default: "Title" -#: ./content/issue.py:67 +#: ./content/issue.py:72 msgid "Poi_label_issue_title" msgstr "标题" #. Default: "Issue Type" -#: ./content/issue.py:109 +#: ./content/issue.py:114 msgid "Poi_label_issue_type" msgstr "" #. Default: "Watchers" -#: ./content/issue.py:163 +#: ./content/issue.py:169 msgid "Poi_label_issue_watchers" msgstr "" # ./content/PoiTracker.py #. Default: "Mailing list" -#: ./content/tracker.py:356 +#: ./content/tracker.py:350 msgid "Poi_label_mailingList" msgstr "邮件列表" @@ -497,18 +506,18 @@ msgstr "" # ./content/PoiTracker.py #. Default: "Send notification emails" -#: ./content/tracker.py:340 +#: ./content/tracker.py:334 msgid "Poi_label_sendNotificationEmails" msgstr "发送一个通知邮件" # ./content/PoiTracker.py #. Default: "URL to Repository" -#: ./content/tracker.py:372 +#: ./content/tracker.py:366 msgid "Poi_label_svnurl" msgstr "" #. Default: "Watchers" -#: ./content/tracker.py:324 +#: ./content/tracker.py:318 msgid "Poi_label_tracker_watchers" msgstr "" @@ -523,7 +532,7 @@ msgid "Poi_repository_label" msgstr "" #. Default: "" -#: ./browser/response.py:555 +#: ./browser/response.py:557 msgid "Removed response id ${response_id}." msgstr "" @@ -538,12 +547,12 @@ msgstr "" msgid "Response Information" msgstr "" -#: ./browser/response.py:493 +#: ./browser/response.py:495 msgid "Response does not exist anymore; perhaps it was removed by another user." msgstr "" #. Default: "" -#: ./browser/response.py:548 +#: ./browser/response.py:550 msgid "Response id ${response_id} does not exist so it cannot be removed." msgstr "" @@ -553,7 +562,7 @@ msgid "Response id ${response_id} does not exist." msgstr "" #. Default: "" -#: ./browser/response.py:540 +#: ./browser/response.py:542 msgid "Response id ${response_id} is no integer so it cannot be removed." msgstr "" @@ -566,11 +575,11 @@ msgstr "" msgid "Search" msgstr "" -#: ./browser/response.py:418 +#: ./browser/response.py:420 msgid "Severity" msgstr "" -#: ./content/tracker.py:177 +#: ./content/tracker.py:171 msgid "Short Name" msgstr "" @@ -582,7 +591,7 @@ msgstr "" msgid "Submit new issue" msgstr "提交新的问题(提案)" -#: ./browser/response.py:421 +#: ./browser/response.py:423 msgid "Target release" msgstr "" @@ -597,20 +606,24 @@ msgstr "" msgid "This is an automated email, please do not reply." msgstr "" -#: ./content/tracker.py:180 +#: ./content/tracker.py:174 msgid "Title" msgstr "" -#: ./browser/response.py:527 +#: ./profiles/default/types/Tracker.xml +msgid "Tracker" +msgstr "" + +#: ./browser/response.py:529 msgid "You are not allowed to delete responses." msgstr "" -#: ./browser/response.py:483 +#: ./browser/response.py:485 msgid "You are not allowed to edit responses." msgstr "" #. Default: "Automatic linking" -#: ./browser/templates/automatic_links_help_view.pt:11 +#: ./browser/templates/automatic_links_help_view.pt:16 msgid "authomatic_linking_label" msgstr "" @@ -620,7 +633,7 @@ msgid "batch_x_items_matching_your_criteria" msgstr "" #. Default: "Description" -#: ./content/tracker.py:198 +#: ./content/tracker.py:192 msgid "description" msgstr "" @@ -635,7 +648,7 @@ msgid "description_no_results_found" msgstr "" #. Default: "Help Text" -#: ./content/tracker.py:207 +#: ./content/tracker.py:201 msgid "help_text" msgstr "" @@ -1095,7 +1108,7 @@ msgid "stop_watching_this" msgstr "" #. Default: "Title" -#: ./content/tracker.py:190 +#: ./content/tracker.py:184 msgid "title" msgstr "" diff --git a/Products/Poi/profiles/default/types/Issue.xml b/Products/Poi/profiles/default/types/Issue.xml index 7c724243..a074abef 100644 --- a/Products/Poi/profiles/default/types/Issue.xml +++ b/Products/Poi/profiles/default/types/Issue.xml @@ -1,7 +1,7 @@ + i18n:domain="Poi"> Issue diff --git a/Products/Poi/profiles/default/types/Tracker.xml b/Products/Poi/profiles/default/types/Tracker.xml index ab42103c..4105875b 100644 --- a/Products/Poi/profiles/default/types/Tracker.xml +++ b/Products/Poi/profiles/default/types/Tracker.xml @@ -1,7 +1,7 @@ + i18n:domain="Poi"> Tracker From d3c397ee02b313f9953d1ad241c0238c391e82c9 Mon Sep 17 00:00:00 2001 From: Daniele Andreotti Date: Tue, 1 Sep 2020 21:54:16 +0200 Subject: [PATCH 03/10] updated translations --- Products/Poi/locales/Poi.pot | 64 +++++++++---------- Products/Poi/locales/ca/LC_MESSAGES/Poi.po | 64 +++++++++---------- Products/Poi/locales/cs/LC_MESSAGES/Poi.po | 64 +++++++++---------- Products/Poi/locales/da/LC_MESSAGES/Poi.po | 64 +++++++++---------- Products/Poi/locales/de/LC_MESSAGES/Poi.po | 64 +++++++++---------- Products/Poi/locales/es/LC_MESSAGES/Poi.po | 64 +++++++++---------- Products/Poi/locales/fr/LC_MESSAGES/Poi.po | 64 +++++++++---------- Products/Poi/locales/it/LC_MESSAGES/Poi.po | 64 +++++++++---------- Products/Poi/locales/ja/LC_MESSAGES/Poi.po | 64 +++++++++---------- Products/Poi/locales/nl/LC_MESSAGES/Poi.po | 64 +++++++++---------- Products/Poi/locales/no/LC_MESSAGES/Poi.po | 64 +++++++++---------- Products/Poi/locales/pl/LC_MESSAGES/Poi.po | 64 +++++++++---------- Products/Poi/locales/pt/LC_MESSAGES/Poi.po | 64 +++++++++---------- Products/Poi/locales/pt_BR/LC_MESSAGES/Poi.po | 64 +++++++++---------- Products/Poi/locales/zh/LC_MESSAGES/Poi.po | 64 +++++++++---------- 15 files changed, 480 insertions(+), 480 deletions(-) diff --git a/Products/Poi/locales/Poi.pot b/Products/Poi/locales/Poi.pot index 09b98f54..ee337bfc 100644 --- a/Products/Poi/locales/Poi.pot +++ b/Products/Poi/locales/Poi.pot @@ -4,7 +4,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2020-09-01 13:08+0000\n" +"POT-Creation-Date: 2020-09-01 18:55+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI +ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -44,7 +44,7 @@ msgstr "" msgid "An attachment has been added with id ${id}." msgstr "" -#: ./content/tracker.py:230 +#: ./content/tracker.py:237 msgid "Area" msgstr "" @@ -68,7 +68,7 @@ msgstr "" msgid "Delete" msgstr "" -#: ./content/tracker.py:177 +#: ./content/tracker.py:184 msgid "Description" msgstr "" @@ -80,7 +80,7 @@ msgstr "" msgid "Edit issue" msgstr "" -#: ./content/tracker.py:304 +#: ./content/tracker.py:311 msgid "Enter users who will be responsible for solving the issues. Users also need to be added as Watchers to receive notifications." msgstr "" @@ -105,7 +105,7 @@ msgstr "" msgid "Issue Information" msgstr "" -#: ./content/tracker.py:252 +#: ./content/tracker.py:259 msgid "Issue Type" msgstr "" @@ -176,32 +176,32 @@ msgid "Poi_automatic_link_repository_help" msgstr "" #. Default: "Enter the issue topics/areas for this tracker." -#: ./content/tracker.py:214 +#: ./content/tracker.py:221 msgid "Poi_help_availableAreas" msgstr "" #. Default: "Enter the issue types for this tracker." -#: ./content/tracker.py:237 +#: ./content/tracker.py:244 msgid "Poi_help_availableIssueTypes" msgstr "" #. Default: "Enter the releases which issues can be assigned to, one per line. If no releases are entered, issues will not be organized by release." -#: ./content/tracker.py:287 +#: ./content/tracker.py:294 msgid "Poi_help_availableReleases" msgstr "" #. Default: "Enter the different type of issue severities that should be available, one per line." -#: ./content/tracker.py:260 +#: ./content/tracker.py:267 msgid "Poi_help_availableSeverities" msgstr "" #. Default: "Select the default severity for new issues." -#: ./content/tracker.py:274 +#: ./content/tracker.py:281 msgid "Poi_help_defaultSeverity" msgstr "" #. Default: "Enter any introductory help text you'd like to display on the tracker front page." -#: ./content/tracker.py:202 +#: ./content/tracker.py:209 msgid "Poi_help_helpText" msgstr "" @@ -286,7 +286,7 @@ msgid "Poi_help_issue_watchers" msgstr "" #. Default: "If given, and if 'Send notification emails' is selected, an email will be sent to this address each time a new issue or response is posted." -#: ./content/tracker.py:354 +#: ./content/tracker.py:361 msgid "Poi_help_mailingList" msgstr "" @@ -311,27 +311,27 @@ msgid "Poi_help_response" msgstr "" #. Default: "If selected, all tracker assignees above will receive an email for new issues and all issue responses. Issue watchers will receive an email for all issue responses. Issue submitters will receive an email when the issue has been resolved." -#: ./content/tracker.py:338 +#: ./content/tracker.py:345 msgid "Poi_help_sendNotificationEmails" msgstr "" #. Default: "Please enter the URL to the related repository, e.g.: https://github.com/collective/Products.Poi/commit/%(rev)s for Products.Poi." -#: ./content/tracker.py:368 +#: ./content/tracker.py:375 msgid "Poi_help_svnurl" msgstr "" #. Default: "Describe the purpose of this tracker" -#: ./content/tracker.py:193 +#: ./content/tracker.py:200 msgid "Poi_help_tracker_description" msgstr "" #. Default: "Enter a descriptive name for this tracker" -#: ./content/tracker.py:185 +#: ./content/tracker.py:192 msgid "Poi_help_tracker_title" msgstr "" #. Default: "Enter the user ids of members who are watching this tracker, one per line. E-mail addresses are allowed too. These persons will receive an email when an issue or response is added to the tracker. Members can also add themselves as watchers." -#: ./content/tracker.py:319 +#: ./content/tracker.py:326 msgid "Poi_help_tracker_watchers" msgstr "" @@ -341,32 +341,32 @@ msgid "Poi_issues_label" msgstr "" #. Default: "Assignees" -#: ./content/tracker.py:303 +#: ./content/tracker.py:310 msgid "Poi_label_assignees" msgstr "" #. Default: "Areas" -#: ./content/tracker.py:212 +#: ./content/tracker.py:219 msgid "Poi_label_availableAreas" msgstr "" #. Default: "Issue types" -#: ./content/tracker.py:235 +#: ./content/tracker.py:242 msgid "Poi_label_availableIssueTypes" msgstr "" #. Default: "Available releases" -#: ./content/tracker.py:283 +#: ./content/tracker.py:290 msgid "Poi_label_availableReleases" msgstr "" #. Default: "Available severities" -#: ./content/tracker.py:257 +#: ./content/tracker.py:264 msgid "Poi_label_availableSeverities" msgstr "" #. Default: "Default severity" -#: ./content/tracker.py:269 +#: ./content/tracker.py:276 msgid "Poi_label_defaultSeverity" msgstr "" @@ -451,7 +451,7 @@ msgid "Poi_label_issue_watchers" msgstr "" #. Default: "Mailing list" -#: ./content/tracker.py:350 +#: ./content/tracker.py:357 msgid "Poi_label_mailingList" msgstr "" @@ -471,17 +471,17 @@ msgid "Poi_label_newTargetRelease" msgstr "" #. Default: "Send notification emails" -#: ./content/tracker.py:334 +#: ./content/tracker.py:341 msgid "Poi_label_sendNotificationEmails" msgstr "" #. Default: "URL to Repository" -#: ./content/tracker.py:366 +#: ./content/tracker.py:373 msgid "Poi_label_svnurl" msgstr "" #. Default: "Watchers" -#: ./content/tracker.py:318 +#: ./content/tracker.py:325 msgid "Poi_label_tracker_watchers" msgstr "" @@ -538,7 +538,7 @@ msgstr "" msgid "Severity" msgstr "" -#: ./content/tracker.py:171 +#: ./content/tracker.py:178 msgid "Short Name" msgstr "" @@ -565,7 +565,7 @@ msgstr "" msgid "This is an automated email, please do not reply." msgstr "" -#: ./content/tracker.py:174 +#: ./content/tracker.py:181 msgid "Title" msgstr "" @@ -592,7 +592,7 @@ msgid "batch_x_items_matching_your_criteria" msgstr "" #. Default: "Description" -#: ./content/tracker.py:192 +#: ./content/tracker.py:199 msgid "description" msgstr "" @@ -607,7 +607,7 @@ msgid "description_no_results_found" msgstr "" #. Default: "Help Text" -#: ./content/tracker.py:201 +#: ./content/tracker.py:208 msgid "help_text" msgstr "" @@ -1058,7 +1058,7 @@ msgid "stop_watching_this" msgstr "" #. Default: "Title" -#: ./content/tracker.py:184 +#: ./content/tracker.py:191 msgid "title" msgstr "" diff --git a/Products/Poi/locales/ca/LC_MESSAGES/Poi.po b/Products/Poi/locales/ca/LC_MESSAGES/Poi.po index 2335d4ea..5a2b4c1f 100644 --- a/Products/Poi/locales/ca/LC_MESSAGES/Poi.po +++ b/Products/Poi/locales/ca/LC_MESSAGES/Poi.po @@ -4,7 +4,7 @@ msgid "" msgstr "" "Project-Id-Version: Products.Poi 2.0\n" -"POT-Creation-Date: 2020-09-01 13:08+0000\n" +"POT-Creation-Date: 2020-09-01 18:55+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI +ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -45,7 +45,7 @@ msgstr "" msgid "An attachment has been added with id ${id}." msgstr "" -#: ./content/tracker.py:230 +#: ./content/tracker.py:237 msgid "Area" msgstr "" @@ -70,7 +70,7 @@ msgstr "" msgid "Delete" msgstr "" -#: ./content/tracker.py:177 +#: ./content/tracker.py:184 msgid "Description" msgstr "" @@ -82,7 +82,7 @@ msgstr "" msgid "Edit issue" msgstr "" -#: ./content/tracker.py:304 +#: ./content/tracker.py:311 msgid "Enter users who will be responsible for solving the issues. Users also need to be added as Watchers to receive notifications." msgstr "" @@ -107,7 +107,7 @@ msgstr "" msgid "Issue Information" msgstr "" -#: ./content/tracker.py:252 +#: ./content/tracker.py:259 msgid "Issue Type" msgstr "" @@ -178,32 +178,32 @@ msgid "Poi_automatic_link_repository_help" msgstr "" #. Default: "Enter the issue topics/areas for this tracker." -#: ./content/tracker.py:214 +#: ./content/tracker.py:221 msgid "Poi_help_availableAreas" msgstr "" #. Default: "Enter the issue types for this tracker." -#: ./content/tracker.py:237 +#: ./content/tracker.py:244 msgid "Poi_help_availableIssueTypes" msgstr "" #. Default: "Enter the releases which issues can be assigned to, one per line. If no releases are entered, issues will not be organized by release." -#: ./content/tracker.py:287 +#: ./content/tracker.py:294 msgid "Poi_help_availableReleases" msgstr "" #. Default: "Enter the different type of issue severities that should be available, one per line." -#: ./content/tracker.py:260 +#: ./content/tracker.py:267 msgid "Poi_help_availableSeverities" msgstr "" #. Default: "Select the default severity for new issues." -#: ./content/tracker.py:274 +#: ./content/tracker.py:281 msgid "Poi_help_defaultSeverity" msgstr "" #. Default: "Enter any introductory help text you'd like to display on the tracker front page." -#: ./content/tracker.py:202 +#: ./content/tracker.py:209 msgid "Poi_help_helpText" msgstr "" @@ -288,7 +288,7 @@ msgid "Poi_help_issue_watchers" msgstr "" #. Default: "If given, and if 'Send notification emails' is selected, an email will be sent to this address each time a new issue or response is posted." -#: ./content/tracker.py:354 +#: ./content/tracker.py:361 msgid "Poi_help_mailingList" msgstr "" @@ -313,27 +313,27 @@ msgid "Poi_help_response" msgstr "" #. Default: "If selected, all tracker assignees above will receive an email for new issues and all issue responses. Issue watchers will receive an email for all issue responses. Issue submitters will receive an email when the issue has been resolved." -#: ./content/tracker.py:338 +#: ./content/tracker.py:345 msgid "Poi_help_sendNotificationEmails" msgstr "" #. Default: "Please enter the URL to the related repository, e.g.: https://github.com/collective/Products.Poi/commit/%(rev)s for Products.Poi." -#: ./content/tracker.py:368 +#: ./content/tracker.py:375 msgid "Poi_help_svnurl" msgstr "" #. Default: "Describe the purpose of this tracker" -#: ./content/tracker.py:193 +#: ./content/tracker.py:200 msgid "Poi_help_tracker_description" msgstr "" #. Default: "Enter a descriptive name for this tracker" -#: ./content/tracker.py:185 +#: ./content/tracker.py:192 msgid "Poi_help_tracker_title" msgstr "" #. Default: "Enter the user ids of members who are watching this tracker, one per line. E-mail addresses are allowed too. These persons will receive an email when an issue or response is added to the tracker. Members can also add themselves as watchers." -#: ./content/tracker.py:319 +#: ./content/tracker.py:326 msgid "Poi_help_tracker_watchers" msgstr "" @@ -343,32 +343,32 @@ msgid "Poi_issues_label" msgstr "" #. Default: "Assignees" -#: ./content/tracker.py:303 +#: ./content/tracker.py:310 msgid "Poi_label_assignees" msgstr "" #. Default: "Areas" -#: ./content/tracker.py:212 +#: ./content/tracker.py:219 msgid "Poi_label_availableAreas" msgstr "" #. Default: "Issue types" -#: ./content/tracker.py:235 +#: ./content/tracker.py:242 msgid "Poi_label_availableIssueTypes" msgstr "" #. Default: "Available releases" -#: ./content/tracker.py:283 +#: ./content/tracker.py:290 msgid "Poi_label_availableReleases" msgstr "" #. Default: "Available severities" -#: ./content/tracker.py:257 +#: ./content/tracker.py:264 msgid "Poi_label_availableSeverities" msgstr "" #. Default: "Default severity" -#: ./content/tracker.py:269 +#: ./content/tracker.py:276 msgid "Poi_label_defaultSeverity" msgstr "" @@ -453,7 +453,7 @@ msgid "Poi_label_issue_watchers" msgstr "" #. Default: "Mailing list" -#: ./content/tracker.py:350 +#: ./content/tracker.py:357 msgid "Poi_label_mailingList" msgstr "" @@ -473,17 +473,17 @@ msgid "Poi_label_newTargetRelease" msgstr "" #. Default: "Send notification emails" -#: ./content/tracker.py:334 +#: ./content/tracker.py:341 msgid "Poi_label_sendNotificationEmails" msgstr "" #. Default: "URL to Repository" -#: ./content/tracker.py:366 +#: ./content/tracker.py:373 msgid "Poi_label_svnurl" msgstr "" #. Default: "Watchers" -#: ./content/tracker.py:318 +#: ./content/tracker.py:325 msgid "Poi_label_tracker_watchers" msgstr "" @@ -545,7 +545,7 @@ msgstr "" msgid "Severity" msgstr "" -#: ./content/tracker.py:171 +#: ./content/tracker.py:178 msgid "Short Name" msgstr "" @@ -572,7 +572,7 @@ msgstr "" msgid "This is an automated email, please do not reply." msgstr "" -#: ./content/tracker.py:174 +#: ./content/tracker.py:181 msgid "Title" msgstr "" @@ -599,7 +599,7 @@ msgid "batch_x_items_matching_your_criteria" msgstr "" #. Default: "Description" -#: ./content/tracker.py:192 +#: ./content/tracker.py:199 msgid "description" msgstr "" @@ -614,7 +614,7 @@ msgid "description_no_results_found" msgstr "" #. Default: "Help Text" -#: ./content/tracker.py:201 +#: ./content/tracker.py:208 msgid "help_text" msgstr "" @@ -1065,7 +1065,7 @@ msgid "stop_watching_this" msgstr "" #. Default: "Title" -#: ./content/tracker.py:184 +#: ./content/tracker.py:191 msgid "title" msgstr "" diff --git a/Products/Poi/locales/cs/LC_MESSAGES/Poi.po b/Products/Poi/locales/cs/LC_MESSAGES/Poi.po index 8bf176ff..878faa7e 100644 --- a/Products/Poi/locales/cs/LC_MESSAGES/Poi.po +++ b/Products/Poi/locales/cs/LC_MESSAGES/Poi.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Poi\n" -"POT-Creation-Date: 2020-09-01 13:08+0000\n" +"POT-Creation-Date: 2020-09-01 18:55+0000\n" "PO-Revision-Date: 2010-10-19 14:38+0100\n" "Last-Translator: Lukas Zdych \n" "Language-Team: DMS4U \n" @@ -44,7 +44,7 @@ msgstr "" msgid "An attachment has been added with id ${id}." msgstr "" -#: ./content/tracker.py:230 +#: ./content/tracker.py:237 msgid "Area" msgstr "" @@ -69,7 +69,7 @@ msgstr "" msgid "Delete" msgstr "Odstranit" -#: ./content/tracker.py:177 +#: ./content/tracker.py:184 msgid "Description" msgstr "" @@ -81,7 +81,7 @@ msgstr "Upravit" msgid "Edit issue" msgstr "Upravit úlohu" -#: ./content/tracker.py:304 +#: ./content/tracker.py:311 msgid "Enter users who will be responsible for solving the issues. Users also need to be added as Watchers to receive notifications." msgstr "" @@ -106,7 +106,7 @@ msgstr "" msgid "Issue Information" msgstr "" -#: ./content/tracker.py:252 +#: ./content/tracker.py:259 msgid "Issue Type" msgstr "" @@ -178,38 +178,38 @@ msgstr "" # ./content/PoiTracker.py #. Default: "Enter the issue topics/areas for this tracker." -#: ./content/tracker.py:214 +#: ./content/tracker.py:221 msgid "Poi_help_availableAreas" msgstr "Zadejte témata/oblasti pro úlohy v tomto manažeru úloh." # ./content/PoiTracker.py #. Default: "Enter the issue types for this tracker." -#: ./content/tracker.py:237 +#: ./content/tracker.py:244 msgid "Poi_help_availableIssueTypes" msgstr "Zadejte typy úloh pro tento manažer úloh." # ./content/PoiTracker.py #. Default: "Enter the releases which issues can be assigned to, one per line. If no releases are entered, issues will not be organized by release." -#: ./content/tracker.py:287 +#: ./content/tracker.py:294 #, fuzzy msgid "Poi_help_availableReleases" msgstr "Zadejte vydání verzí, ke kterým mohou být úlohy přiřazeny. Každé na samostatný řádek. Pokud nebudou zadána žádná vydání, úlohy podle nich nebudou organizovány." # ./content/PoiTracker.py #. Default: "Enter the different type of issue severities that should be available, one per line." -#: ./content/tracker.py:260 +#: ./content/tracker.py:267 msgid "Poi_help_availableSeverities" msgstr "Zadejte různé stupně důležitosti úloh, každý na samostatný řádek." # ./content/PoiTracker.py #. Default: "Select the default severity for new issues." -#: ./content/tracker.py:274 +#: ./content/tracker.py:281 msgid "Poi_help_defaultSeverity" msgstr "Zvolte výchozí důležitost pro nové úlohy." # ./content/PoiTracker.py #. Default: "Enter any introductory help text you'd like to display on the tracker front page." -#: ./content/tracker.py:202 +#: ./content/tracker.py:209 msgid "Poi_help_helpText" msgstr "Zadejte jakýkoli úvodní text, který bude zobrazen na úvodní stránce manažeru úloh." @@ -297,7 +297,7 @@ msgstr "" # ./content/PoiTracker.py #. Default: "If given, and if 'Send notification emails' is selected, an email will be sent to this address each time a new issue or response is posted." -#: ./content/tracker.py:354 +#: ./content/tracker.py:361 #, fuzzy msgid "Poi_help_mailingList" msgstr "Pokud je zadáno a pokud je zaškrtnuto i 'Zasílat emailová upozornění', bude na tuto adresu odeslán email při každé nové úloze nebo reakci. Správci zároveň obdrží individuální emaily. Pokud toto není žádoucí změťe je na techniky." @@ -328,31 +328,31 @@ msgstr "Prosíme níže zadejte vaší reakci" # ./content/PoiTracker.py #. Default: "If selected, all tracker assignees above will receive an email for new issues and all issue responses. Issue watchers will receive an email for all issue responses. Issue submitters will receive an email when the issue has been resolved." -#: ./content/tracker.py:338 +#: ./content/tracker.py:345 #, fuzzy msgid "Poi_help_sendNotificationEmails" msgstr "Pokud je zaškrtnuto, správci manažeru úloh obdrží email při každé nové úloze nebo reakci a autoři úloh obdrží email při každé nové reakci, pokud je úloha vyřešena nebo čekající na potvrzení. Technici obdrží email když jim je úloha přiřazena." # ./content/PoiTracker.py #. Default: "Please enter the URL to the related repository, e.g.: https://github.com/collective/Products.Poi/commit/%(rev)s for Products.Poi." -#: ./content/tracker.py:368 +#: ./content/tracker.py:375 #, fuzzy msgid "Poi_help_svnurl" msgstr "Prosíme zadejte Url souvisejícího SVN repositáře, např.: http://dev.plone.org/changeset/%(rev)s/collective pro produkty v Plone collective." #. Default: "Describe the purpose of this tracker" -#: ./content/tracker.py:193 +#: ./content/tracker.py:200 msgid "Poi_help_tracker_description" msgstr "Popište účel tohoto manažeru úloh." # ./content/PoiTracker.py #. Default: "Enter a descriptive name for this tracker" -#: ./content/tracker.py:185 +#: ./content/tracker.py:192 msgid "Poi_help_tracker_title" msgstr "Zadejte výstižné jméno pro tento manažer úloh." #. Default: "Enter the user ids of members who are watching this tracker, one per line. E-mail addresses are allowed too. These persons will receive an email when an issue or response is added to the tracker. Members can also add themselves as watchers." -#: ./content/tracker.py:319 +#: ./content/tracker.py:326 msgid "Poi_help_tracker_watchers" msgstr "" @@ -362,37 +362,37 @@ msgid "Poi_issues_label" msgstr "" #. Default: "Assignees" -#: ./content/tracker.py:303 +#: ./content/tracker.py:310 msgid "Poi_label_assignees" msgstr "" # ./content/PoiTracker.py #. Default: "Areas" -#: ./content/tracker.py:212 +#: ./content/tracker.py:219 msgid "Poi_label_availableAreas" msgstr "Oblasti" # ./content/PoiTracker.py #. Default: "Issue types" -#: ./content/tracker.py:235 +#: ./content/tracker.py:242 msgid "Poi_label_availableIssueTypes" msgstr "Typy úloh" # ./content/PoiTracker.py #. Default: "Available releases" -#: ./content/tracker.py:283 +#: ./content/tracker.py:290 msgid "Poi_label_availableReleases" msgstr "Dostupná vydání" # ./content/PoiTracker.py #. Default: "Available severities" -#: ./content/tracker.py:257 +#: ./content/tracker.py:264 msgid "Poi_label_availableSeverities" msgstr "Dostupné důležitosti" # ./content/PoiTracker.py #. Default: "Default severity" -#: ./content/tracker.py:269 +#: ./content/tracker.py:276 msgid "Poi_label_defaultSeverity" msgstr "Výchozí důležitost" @@ -480,7 +480,7 @@ msgstr "" # ./content/PoiTracker.py #. Default: "Mailing list" -#: ./content/tracker.py:350 +#: ./content/tracker.py:357 msgid "Poi_label_mailingList" msgstr "Konference" @@ -504,19 +504,19 @@ msgstr "Změnit cílové vydání" # ./content/PoiTracker.py #. Default: "Send notification emails" -#: ./content/tracker.py:334 +#: ./content/tracker.py:341 msgid "Poi_label_sendNotificationEmails" msgstr "Zasílat emailová upozornění" # ./content/PoiTracker.py #. Default: "URL to Repository" -#: ./content/tracker.py:366 +#: ./content/tracker.py:373 #, fuzzy msgid "Poi_label_svnurl" msgstr "URL SVN repositáře" #. Default: "Watchers" -#: ./content/tracker.py:318 +#: ./content/tracker.py:325 msgid "Poi_label_tracker_watchers" msgstr "" @@ -578,7 +578,7 @@ msgstr "Hledat" msgid "Severity" msgstr "Důležitost" -#: ./content/tracker.py:171 +#: ./content/tracker.py:178 msgid "Short Name" msgstr "" @@ -605,7 +605,7 @@ msgstr "" msgid "This is an automated email, please do not reply." msgstr "" -#: ./content/tracker.py:174 +#: ./content/tracker.py:181 msgid "Title" msgstr "" @@ -632,7 +632,7 @@ msgid "batch_x_items_matching_your_criteria" msgstr "" #. Default: "Description" -#: ./content/tracker.py:192 +#: ./content/tracker.py:199 msgid "description" msgstr "" @@ -647,7 +647,7 @@ msgid "description_no_results_found" msgstr "" #. Default: "Help Text" -#: ./content/tracker.py:201 +#: ./content/tracker.py:208 msgid "help_text" msgstr "" @@ -1100,7 +1100,7 @@ msgid "stop_watching_this" msgstr "" #. Default: "Title" -#: ./content/tracker.py:184 +#: ./content/tracker.py:191 msgid "title" msgstr "" diff --git a/Products/Poi/locales/da/LC_MESSAGES/Poi.po b/Products/Poi/locales/da/LC_MESSAGES/Poi.po index 0085b629..a638d504 100644 --- a/Products/Poi/locales/da/LC_MESSAGES/Poi.po +++ b/Products/Poi/locales/da/LC_MESSAGES/Poi.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: 1.1.2\n" -"POT-Creation-Date: 2020-09-01 13:08+0000\n" +"POT-Creation-Date: 2020-09-01 18:55+0000\n" "PO-Revision-Date: 2008-12-08 09:42+0100\n" "Last-Translator: Jonas Nielsen \n" "Language-Team: DA\n" @@ -48,7 +48,7 @@ msgstr "" msgid "An attachment has been added with id ${id}." msgstr "" -#: ./content/tracker.py:230 +#: ./content/tracker.py:237 msgid "Area" msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Delete" msgstr "Slet" -#: ./content/tracker.py:177 +#: ./content/tracker.py:184 msgid "Description" msgstr "" @@ -85,7 +85,7 @@ msgstr "Rediger" msgid "Edit issue" msgstr "Rediger sag" -#: ./content/tracker.py:304 +#: ./content/tracker.py:311 msgid "Enter users who will be responsible for solving the issues. Users also need to be added as Watchers to receive notifications." msgstr "" @@ -110,7 +110,7 @@ msgstr "" msgid "Issue Information" msgstr "" -#: ./content/tracker.py:252 +#: ./content/tracker.py:259 msgid "Issue Type" msgstr "" @@ -182,39 +182,39 @@ msgstr "" # ./content/PoiTracker.py #. Default: "Enter the issue topics/areas for this tracker." -#: ./content/tracker.py:214 +#: ./content/tracker.py:221 #, fuzzy msgid "Poi_help_availableAreas" msgstr "Angiv de ønskede sagsområder for denne tracker, ét sagsområde pr. linje. Formatet er: \"Kort navn | Titel | Beskrivelse\"." # ./content/PoiTracker.py #. Default: "Enter the issue types for this tracker." -#: ./content/tracker.py:237 +#: ./content/tracker.py:244 #, fuzzy msgid "Poi_help_availableIssueTypes" msgstr "Angiv sagstyperne for denne tracker, én specification pr. linje. Formatet er: \"Kort navn | Titel | Beskrivelse\"." # ./content/PoiTracker.py #. Default: "Enter the releases which issues can be assigned to, one per line. If no releases are entered, issues will not be organized by release." -#: ./content/tracker.py:287 +#: ./content/tracker.py:294 #, fuzzy msgid "Poi_help_availableReleases" msgstr "Angiv de versioner, som sager kan tilknyttes én specifikation pr. linje. Formatet er: \"Kort navn | Titel | Beskrivelse\"." # ./content/PoiTracker.py #. Default: "Enter the different type of issue severities that should be available, one per line." -#: ./content/tracker.py:260 +#: ./content/tracker.py:267 msgid "Poi_help_availableSeverities" msgstr "Angiv de forskellige alvorlighedsgrader, som skal kunne vælges, én pr. linje." # ./content/PoiTracker.py #. Default: "Select the default severity for new issues." -#: ./content/tracker.py:274 +#: ./content/tracker.py:281 msgid "Poi_help_defaultSeverity" msgstr "Vælg standard-alvorlighedsgraden for nye sager." #. Default: "Enter any introductory help text you'd like to display on the tracker front page." -#: ./content/tracker.py:202 +#: ./content/tracker.py:209 msgid "Poi_help_helpText" msgstr "Skriv en introducerende tekst, som du vil have vist på fejlrapporteringsværktøjets forside." @@ -302,7 +302,7 @@ msgstr "" # ./content/PoiTracker.py #. Default: "If given, and if 'Send notification emails' is selected, an email will be sent to this address each time a new issue or response is posted." -#: ./content/tracker.py:354 +#: ./content/tracker.py:361 #, fuzzy msgid "Poi_help_mailingList" msgstr "Hvis angivet, og hvis \"Send notifikations-e-mails\" er valgt, vil en e-mail blive sendt til den angivne adresse hver gang et ny sag eller svar bliver indsendt. Hvis ingen mailadresse opgives, vil administratorer modtage individuelle e-mails." @@ -332,29 +332,29 @@ msgid "Poi_help_response" msgstr "Angiv dit svar nedenfor." #. Default: "If selected, all tracker assignees above will receive an email for new issues and all issue responses. Issue watchers will receive an email for all issue responses. Issue submitters will receive an email when the issue has been resolved." -#: ./content/tracker.py:338 +#: ./content/tracker.py:345 #, fuzzy msgid "Poi_help_sendNotificationEmails" msgstr "Hvis valgt, vil tracker-administratorer modtage en e-mail, hver gang et ny sag eller svar bliver indsendt, og sagsindsendere vil modtage en e-mail, når der er et nyt svar, og når en sag er blevet løst og afventer bekræftelse." #. Default: "Please enter the URL to the related repository, e.g.: https://github.com/collective/Products.Poi/commit/%(rev)s for Products.Poi." -#: ./content/tracker.py:368 +#: ./content/tracker.py:375 #, fuzzy msgid "Poi_help_svnurl" msgstr "Indtast venligst URL'en til SVN-repositoriet, f.eks. http://dev.plone.org/changeset/%(rev)s/collective hvis det er et produkt i 'The Plone Collective'" #. Default: "Describe the purpose of this tracker" -#: ./content/tracker.py:193 +#: ./content/tracker.py:200 msgid "Poi_help_tracker_description" msgstr "" #. Default: "Enter a descriptive name for this tracker" -#: ./content/tracker.py:185 +#: ./content/tracker.py:192 msgid "Poi_help_tracker_title" msgstr "Indtast et beskrivende navn for denne tracker" #. Default: "Enter the user ids of members who are watching this tracker, one per line. E-mail addresses are allowed too. These persons will receive an email when an issue or response is added to the tracker. Members can also add themselves as watchers." -#: ./content/tracker.py:319 +#: ./content/tracker.py:326 msgid "Poi_help_tracker_watchers" msgstr "" @@ -364,37 +364,37 @@ msgid "Poi_issues_label" msgstr "" #. Default: "Assignees" -#: ./content/tracker.py:303 +#: ./content/tracker.py:310 msgid "Poi_label_assignees" msgstr "" # ./content/PoiTracker.py #. Default: "Areas" -#: ./content/tracker.py:212 +#: ./content/tracker.py:219 msgid "Poi_label_availableAreas" msgstr "Tilgængelige områder" # ./content/PoiTracker.py #. Default: "Issue types" -#: ./content/tracker.py:235 +#: ./content/tracker.py:242 msgid "Poi_label_availableIssueTypes" msgstr "Tilgængelige sagstyper" # ./content/PoiTracker.py #. Default: "Available releases" -#: ./content/tracker.py:283 +#: ./content/tracker.py:290 msgid "Poi_label_availableReleases" msgstr "Tilgængelige versioner" # ./content/PoiTracker.py #. Default: "Available severities" -#: ./content/tracker.py:257 +#: ./content/tracker.py:264 msgid "Poi_label_availableSeverities" msgstr "Tilgængelige alvorlighedsgrader" # ./content/PoiTracker.py #. Default: "Default severity" -#: ./content/tracker.py:269 +#: ./content/tracker.py:276 msgid "Poi_label_defaultSeverity" msgstr "Standard-alvorlighedsgrad" @@ -482,7 +482,7 @@ msgstr "" # ./content/PoiTracker.py #. Default: "Mailing list" -#: ./content/tracker.py:350 +#: ./content/tracker.py:357 msgid "Poi_label_mailingList" msgstr "Postliste" @@ -506,18 +506,18 @@ msgstr "Skift målversion" # ./content/PoiTracker.py #. Default: "Send notification emails" -#: ./content/tracker.py:334 +#: ./content/tracker.py:341 msgid "Poi_label_sendNotificationEmails" msgstr "Send notifikations-e-mails" #. Default: "URL to Repository" -#: ./content/tracker.py:366 +#: ./content/tracker.py:373 #, fuzzy msgid "Poi_label_svnurl" msgstr "URL til SVN" #. Default: "Watchers" -#: ./content/tracker.py:318 +#: ./content/tracker.py:325 msgid "Poi_label_tracker_watchers" msgstr "" @@ -579,7 +579,7 @@ msgstr "Søg" msgid "Severity" msgstr "" -#: ./content/tracker.py:171 +#: ./content/tracker.py:178 msgid "Short Name" msgstr "" @@ -606,7 +606,7 @@ msgstr "" msgid "This is an automated email, please do not reply." msgstr "" -#: ./content/tracker.py:174 +#: ./content/tracker.py:181 msgid "Title" msgstr "" @@ -633,7 +633,7 @@ msgid "batch_x_items_matching_your_criteria" msgstr "" #. Default: "Description" -#: ./content/tracker.py:192 +#: ./content/tracker.py:199 msgid "description" msgstr "" @@ -648,7 +648,7 @@ msgid "description_no_results_found" msgstr "" #. Default: "Help Text" -#: ./content/tracker.py:201 +#: ./content/tracker.py:208 msgid "help_text" msgstr "" @@ -1102,7 +1102,7 @@ msgid "stop_watching_this" msgstr "" #. Default: "Title" -#: ./content/tracker.py:184 +#: ./content/tracker.py:191 msgid "title" msgstr "" diff --git a/Products/Poi/locales/de/LC_MESSAGES/Poi.po b/Products/Poi/locales/de/LC_MESSAGES/Poi.po index d0c74181..e2c2f12d 100644 --- a/Products/Poi/locales/de/LC_MESSAGES/Poi.po +++ b/Products/Poi/locales/de/LC_MESSAGES/Poi.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Poi\n" -"POT-Creation-Date: 2020-09-01 13:08+0000\n" +"POT-Creation-Date: 2020-09-01 18:55+0000\n" "PO-Revision-Date: 2012-05-03 11:27 +0200\n" "Last-Translator: Jens Klein \n" "Language-Team: DE \n" @@ -44,7 +44,7 @@ msgstr "" msgid "An attachment has been added with id ${id}." msgstr "Ein neuer Anhang mit der Id ${id} wurde hinzugefügt." -#: ./content/tracker.py:230 +#: ./content/tracker.py:237 msgid "Area" msgstr "" @@ -69,7 +69,7 @@ msgstr "" msgid "Delete" msgstr "Löschen" -#: ./content/tracker.py:177 +#: ./content/tracker.py:184 msgid "Description" msgstr "" @@ -81,7 +81,7 @@ msgstr "Bearbeiten" msgid "Edit issue" msgstr "Problemstellung bearbeiten" -#: ./content/tracker.py:304 +#: ./content/tracker.py:311 msgid "Enter users who will be responsible for solving the issues. Users also need to be added as Watchers to receive notifications." msgstr "" @@ -106,7 +106,7 @@ msgstr "Problemdetails:" msgid "Issue Information" msgstr "Information zum Problem" -#: ./content/tracker.py:252 +#: ./content/tracker.py:259 msgid "Issue Type" msgstr "" @@ -178,38 +178,38 @@ msgstr "" # ./content/PoiTracker.py #. Default: "Enter the issue topics/areas for this tracker." -#: ./content/tracker.py:214 +#: ./content/tracker.py:221 msgid "Poi_help_availableAreas" msgstr "Geben Sie für die Problemstellung die passensen Themen/ Bereiche an. Eine pro Zeile. Das Format ist: \"Kurzname | Titel | Beschreibung\"." # ./content/PoiTracker.py #. Default: "Enter the issue types for this tracker." -#: ./content/tracker.py:237 +#: ./content/tracker.py:244 msgid "Poi_help_availableIssueTypes" msgstr "Geben Sie die Arten von Problemstellungen für diesem Tracker an. Eine pro Zeile. Eine pro Zeile. Das Format ist: \"Kurzname | Titel | Beschreibung\"." # ./content/PoiTracker.py #. Default: "Enter the releases which issues can be assigned to, one per line. If no releases are entered, issues will not be organized by release." -#: ./content/tracker.py:287 +#: ./content/tracker.py:294 #, fuzzy msgid "Poi_help_availableReleases" msgstr "Geben Sie die Ausgaben/ Versionen an, die einer einer Problemstellung zugewiesen werden können. Eine pro Zeile. Wird nichts angegeben, so werden die Problemstellungen nicht nach diesem Kriterium organisiert angezeigt." # ./content/PoiTracker.py #. Default: "Enter the different type of issue severities that should be available, one per line." -#: ./content/tracker.py:260 +#: ./content/tracker.py:267 msgid "Poi_help_availableSeverities" msgstr "Geben Sie die verschiedenen Gewichtungen an, die für eine Problemstellungzur Auswahl stehen sollen. Eine pro Zeile." # ./content/PoiTracker.py #. Default: "Select the default severity for new issues." -#: ./content/tracker.py:274 +#: ./content/tracker.py:281 msgid "Poi_help_defaultSeverity" msgstr "Wählen sie eine Gewichtung, die als Vorgabe verwendet werden soll." # ./content/PoiTracker.py #. Default: "Enter any introductory help text you'd like to display on the tracker front page." -#: ./content/tracker.py:202 +#: ./content/tracker.py:209 msgid "Poi_help_helpText" msgstr "Geben Sie einen einführenden Text zur Anzeige auf der Titelseite des Trackers an, wenn Sie dies wünschen." @@ -297,7 +297,7 @@ msgstr "" # ./content/PoiTracker.py #. Default: "If given, and if 'Send notification emails' is selected, an email will be sent to this address each time a new issue or response is posted." -#: ./content/tracker.py:354 +#: ./content/tracker.py:361 #, fuzzy msgid "Poi_help_mailingList" msgstr "Wenn angegeben und 'Sende Benachrichtungs-Mail' ausgewählt wurde, wird eine E-Mail an diese Adresse gesendet sobald eine neue Problemstellung oder eine neue Antwort erstellt wurde, Wenn keine Mailing-Listen-Adresse angegeben wurde, so erhalten die nur Projektmanager eine Benachrichtigung." @@ -328,31 +328,31 @@ msgstr "Bitte geben sie unten ihre Antwort an." # ./content/PoiTracker.py #. Default: "If selected, all tracker assignees above will receive an email for new issues and all issue responses. Issue watchers will receive an email for all issue responses. Issue submitters will receive an email when the issue has been resolved." -#: ./content/tracker.py:338 +#: ./content/tracker.py:345 #, fuzzy msgid "Poi_help_sendNotificationEmails" msgstr "Wenn dies ausgewählt ist erhalten Verwalter des Trackers ein jedes Mal ein E-Mail, wenn eine neue Problemstellung oder eine Antwort geschrieben wurde. Übermittler von Problemstellungen erhalten ein E-Mail, sobald eine Antwort geschrieben wurde, bzw. wenn die Problemstellung gelöst wurde und eine Bestätigung gefordert ist." # ./content/PoiTracker.py #. Default: "Please enter the URL to the related repository, e.g.: https://github.com/collective/Products.Poi/commit/%(rev)s for Products.Poi." -#: ./content/tracker.py:368 +#: ./content/tracker.py:375 #, fuzzy msgid "Poi_help_svnurl" msgstr "Bitte geben Sie die URL zum betreffende Version-Controll-System (SVN, GIT, BZR, ...) an. Dies kann auch auf einen Webansicht wie z.B. Trac zeigen." #. Default: "Describe the purpose of this tracker" -#: ./content/tracker.py:193 +#: ./content/tracker.py:200 msgid "Poi_help_tracker_description" msgstr "Beschreiben Sie den Zweck des Trackers" # ./content/PoiTracker.py #. Default: "Enter a descriptive name for this tracker" -#: ./content/tracker.py:185 +#: ./content/tracker.py:192 msgid "Poi_help_tracker_title" msgstr "Geben Sie einen beschreibenden Namen für diesen Tracker an." #. Default: "Enter the user ids of members who are watching this tracker, one per line. E-mail addresses are allowed too. These persons will receive an email when an issue or response is added to the tracker. Members can also add themselves as watchers." -#: ./content/tracker.py:319 +#: ./content/tracker.py:326 msgid "Poi_help_tracker_watchers" msgstr "Tragen Sie die Benutzer-IDs derjenigen Mitglieder ein, welche diesen Tracker beobachten. Ein Eintrag pro Zeile. E-mail Adressen sind ebenfalls erlaubt. Diese Personen werden eine E-mail erhalten, wenn ein neues Problem oder eine Antwort hinzugefügt werden. Mitglieder können sich auch selbst als Beobachter hinzufügen." @@ -362,37 +362,37 @@ msgid "Poi_issues_label" msgstr "" #. Default: "Assignees" -#: ./content/tracker.py:303 +#: ./content/tracker.py:310 msgid "Poi_label_assignees" msgstr "" # ./content/PoiTracker.py #. Default: "Areas" -#: ./content/tracker.py:212 +#: ./content/tracker.py:219 msgid "Poi_label_availableAreas" msgstr "Bereiche" # ./content/PoiTracker.py #. Default: "Issue types" -#: ./content/tracker.py:235 +#: ./content/tracker.py:242 msgid "Poi_label_availableIssueTypes" msgstr "Arten der Problemstellung" # ./content/PoiTracker.py #. Default: "Available releases" -#: ./content/tracker.py:283 +#: ./content/tracker.py:290 msgid "Poi_label_availableReleases" msgstr "Verfügbare Ausgaben/ Versionen" # ./content/PoiTracker.py #. Default: "Available severities" -#: ./content/tracker.py:257 +#: ./content/tracker.py:264 msgid "Poi_label_availableSeverities" msgstr "Verfügbare Gewichtungen" # ./content/PoiTracker.py #. Default: "Default severity" -#: ./content/tracker.py:269 +#: ./content/tracker.py:276 msgid "Poi_label_defaultSeverity" msgstr "Vorgabe für die Gewichtung" @@ -480,7 +480,7 @@ msgstr "" # ./content/PoiTracker.py #. Default: "Mailing list" -#: ./content/tracker.py:350 +#: ./content/tracker.py:357 msgid "Poi_label_mailingList" msgstr "Mailing-Liste" @@ -504,19 +504,19 @@ msgstr "Ändern der Ausgabe/ Version" # ./content/PoiTracker.py #. Default: "Send notification emails" -#: ./content/tracker.py:334 +#: ./content/tracker.py:341 msgid "Poi_label_sendNotificationEmails" msgstr "Sende Benachrichtigungs E-Mails" # ./content/PoiTracker.py #. Default: "URL to Repository" -#: ./content/tracker.py:366 +#: ./content/tracker.py:373 #, fuzzy msgid "Poi_label_svnurl" msgstr "URL to VCS" #. Default: "Watchers" -#: ./content/tracker.py:318 +#: ./content/tracker.py:325 #, fuzzy msgid "Poi_label_tracker_watchers" msgstr "Beobachter des Trackers" @@ -579,7 +579,7 @@ msgstr "Suche" msgid "Severity" msgstr "Gewichtung" -#: ./content/tracker.py:171 +#: ./content/tracker.py:178 msgid "Short Name" msgstr "" @@ -606,7 +606,7 @@ msgstr "" msgid "This is an automated email, please do not reply." msgstr "Dies ist ein automatisiertes E-Mail. Bitte nicht Antworten." -#: ./content/tracker.py:174 +#: ./content/tracker.py:181 msgid "Title" msgstr "" @@ -633,7 +633,7 @@ msgid "batch_x_items_matching_your_criteria" msgstr "" #. Default: "Description" -#: ./content/tracker.py:192 +#: ./content/tracker.py:199 msgid "description" msgstr "" @@ -648,7 +648,7 @@ msgid "description_no_results_found" msgstr "" #. Default: "Help Text" -#: ./content/tracker.py:201 +#: ./content/tracker.py:208 msgid "help_text" msgstr "" @@ -1101,7 +1101,7 @@ msgid "stop_watching_this" msgstr "" #. Default: "Title" -#: ./content/tracker.py:184 +#: ./content/tracker.py:191 msgid "title" msgstr "" diff --git a/Products/Poi/locales/es/LC_MESSAGES/Poi.po b/Products/Poi/locales/es/LC_MESSAGES/Poi.po index cfc525f0..15a35624 100644 --- a/Products/Poi/locales/es/LC_MESSAGES/Poi.po +++ b/Products/Poi/locales/es/LC_MESSAGES/Poi.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: poi-es\n" -"POT-Creation-Date: 2020-09-01 13:08+0000\n" +"POT-Creation-Date: 2020-09-01 18:55+0000\n" "PO-Revision-Date: 2009-08-11 13:53-0400\n" "Last-Translator: Leonardo Caballero \n" "Language-Team: Plone Cono Sur \n" @@ -49,7 +49,7 @@ msgstr "" msgid "An attachment has been added with id ${id}." msgstr "" -#: ./content/tracker.py:230 +#: ./content/tracker.py:237 msgid "Area" msgstr "" @@ -74,7 +74,7 @@ msgstr "" msgid "Delete" msgstr "Borrar" -#: ./content/tracker.py:177 +#: ./content/tracker.py:184 msgid "Description" msgstr "" @@ -86,7 +86,7 @@ msgstr "Editar" msgid "Edit issue" msgstr "Editar incidencia" -#: ./content/tracker.py:304 +#: ./content/tracker.py:311 msgid "Enter users who will be responsible for solving the issues. Users also need to be added as Watchers to receive notifications." msgstr "" @@ -111,7 +111,7 @@ msgstr "" msgid "Issue Information" msgstr "" -#: ./content/tracker.py:252 +#: ./content/tracker.py:259 msgid "Issue Type" msgstr "" @@ -183,40 +183,40 @@ msgstr "" # ./content/PoiTracker.py #. Default: "Enter the issue topics/areas for this tracker." -#: ./content/tracker.py:214 +#: ./content/tracker.py:221 #, fuzzy msgid "Poi_help_availableAreas" msgstr "Indique las categorías de incidencia para este gestor, una por línea. El formato es \"Nombre corto | Título | Descripción\"." # ./content/PoiTracker.py #. Default: "Enter the issue types for this tracker." -#: ./content/tracker.py:237 +#: ./content/tracker.py:244 #, fuzzy msgid "Poi_help_availableIssueTypes" msgstr "Indique los tipos de incidencia para este gestor, uno por línea. El formato es \"Nombre corto | Título | Descripción\"." # ./content/PoiTracker.py #. Default: "Enter the releases which issues can be assigned to, one per line. If no releases are entered, issues will not be organized by release." -#: ./content/tracker.py:287 +#: ./content/tracker.py:294 #, fuzzy msgid "Poi_help_availableReleases" msgstr "Indique a que versiones a las que se pueden asignar incidencias, una por línea. Si no se indicar versiones, las incidencias no se organizarán por versión." # ./content/PoiTracker.py #. Default: "Enter the different type of issue severities that should be available, one per line." -#: ./content/tracker.py:260 +#: ./content/tracker.py:267 msgid "Poi_help_availableSeverities" msgstr "Indique los diferentes tipos de importancia, uno por línea." # ./content/PoiTracker.py #. Default: "Select the default severity for new issues." -#: ./content/tracker.py:274 +#: ./content/tracker.py:281 msgid "Poi_help_defaultSeverity" msgstr "Seleccione el nivel de importancia por defecto." # ./content/PoiTracker.py #. Default: "Enter any introductory help text you'd like to display on the tracker front page." -#: ./content/tracker.py:202 +#: ./content/tracker.py:209 msgid "Poi_help_helpText" msgstr "Introduzca cualquier texto de ayuda introductoria que desea mostrar en la página principal de este gestor." @@ -304,7 +304,7 @@ msgstr "" # ./content/PoiTracker.py #. Default: "If given, and if 'Send notification emails' is selected, an email will be sent to this address each time a new issue or response is posted." -#: ./content/tracker.py:354 +#: ./content/tracker.py:361 #, fuzzy msgid "Poi_help_mailingList" msgstr "Si se indica, y se selecciona \"Enviar notificaciones\", se enviará un mensaje a esta dirección cada vez que se publique una nueva incidencia o respuesta. Si no se indica un dirección, los gestores recibirán mensajes individuales." @@ -335,31 +335,31 @@ msgstr "Escriba su respuesta a continuación" # ./content/PoiTracker.py #. Default: "If selected, all tracker assignees above will receive an email for new issues and all issue responses. Issue watchers will receive an email for all issue responses. Issue submitters will receive an email when the issue has been resolved." -#: ./content/tracker.py:338 +#: ./content/tracker.py:345 #, fuzzy msgid "Poi_help_sendNotificationEmails" msgstr "Si se selecciona, los administradores recibirán un mensaje cada vez que se envíe una nueva incidencia o repuesta, y los que envíen incidencias recibirán un mensaje cuando sean respondidos y cuando se resuelvan las incidencias, esperando confirmación." # ./content/PoiTracker.py #. Default: "Please enter the URL to the related repository, e.g.: https://github.com/collective/Products.Poi/commit/%(rev)s for Products.Poi." -#: ./content/tracker.py:368 +#: ./content/tracker.py:375 #, fuzzy msgid "Poi_help_svnurl" msgstr "Por favor ingrese la ruta hacia el repositorio SVN relacionado, e.j.: http://dev.plone.org/changeset/%(rev)s/collective para productos en el Plone collective." #. Default: "Describe the purpose of this tracker" -#: ./content/tracker.py:193 +#: ./content/tracker.py:200 msgid "Poi_help_tracker_description" msgstr "" # ./content/PoiTracker.py #. Default: "Enter a descriptive name for this tracker" -#: ./content/tracker.py:185 +#: ./content/tracker.py:192 msgid "Poi_help_tracker_title" msgstr "Escriba un nombre para este gestor." #. Default: "Enter the user ids of members who are watching this tracker, one per line. E-mail addresses are allowed too. These persons will receive an email when an issue or response is added to the tracker. Members can also add themselves as watchers." -#: ./content/tracker.py:319 +#: ./content/tracker.py:326 msgid "Poi_help_tracker_watchers" msgstr "" @@ -369,37 +369,37 @@ msgid "Poi_issues_label" msgstr "" #. Default: "Assignees" -#: ./content/tracker.py:303 +#: ./content/tracker.py:310 msgid "Poi_label_assignees" msgstr "" # ./content/PoiTracker.py #. Default: "Areas" -#: ./content/tracker.py:212 +#: ./content/tracker.py:219 msgid "Poi_label_availableAreas" msgstr "Áreas" # ./content/PoiTracker.py #. Default: "Issue types" -#: ./content/tracker.py:235 +#: ./content/tracker.py:242 msgid "Poi_label_availableIssueTypes" msgstr "" # ./content/PoiTracker.py #. Default: "Available releases" -#: ./content/tracker.py:283 +#: ./content/tracker.py:290 msgid "Poi_label_availableReleases" msgstr "Versiones disponibles" # ./content/PoiTracker.py #. Default: "Available severities" -#: ./content/tracker.py:257 +#: ./content/tracker.py:264 msgid "Poi_label_availableSeverities" msgstr "Niveles de importancia" # ./content/PoiTracker.py #. Default: "Default severity" -#: ./content/tracker.py:269 +#: ./content/tracker.py:276 msgid "Poi_label_defaultSeverity" msgstr "Importancia por defecto" @@ -487,7 +487,7 @@ msgstr "" # ./content/PoiTracker.py #. Default: "Mailing list" -#: ./content/tracker.py:350 +#: ./content/tracker.py:357 msgid "Poi_label_mailingList" msgstr "Lista de correo" @@ -511,19 +511,19 @@ msgstr "Cambiar destino de publicación" # ./content/PoiTracker.py #. Default: "Send notification emails" -#: ./content/tracker.py:334 +#: ./content/tracker.py:341 msgid "Poi_label_sendNotificationEmails" msgstr "Enviar notificaciones" # ./content/PoiTracker.py #. Default: "URL to Repository" -#: ./content/tracker.py:366 +#: ./content/tracker.py:373 #, fuzzy msgid "Poi_label_svnurl" msgstr "Ruta del servidor de versiones Subversión (SVN)" #. Default: "Watchers" -#: ./content/tracker.py:318 +#: ./content/tracker.py:325 msgid "Poi_label_tracker_watchers" msgstr "" @@ -585,7 +585,7 @@ msgstr "Búsqueda" msgid "Severity" msgstr "Severidad" -#: ./content/tracker.py:171 +#: ./content/tracker.py:178 msgid "Short Name" msgstr "" @@ -612,7 +612,7 @@ msgstr "" msgid "This is an automated email, please do not reply." msgstr "" -#: ./content/tracker.py:174 +#: ./content/tracker.py:181 msgid "Title" msgstr "" @@ -639,7 +639,7 @@ msgid "batch_x_items_matching_your_criteria" msgstr "" #. Default: "Description" -#: ./content/tracker.py:192 +#: ./content/tracker.py:199 msgid "description" msgstr "" @@ -654,7 +654,7 @@ msgid "description_no_results_found" msgstr "" #. Default: "Help Text" -#: ./content/tracker.py:201 +#: ./content/tracker.py:208 msgid "help_text" msgstr "" @@ -1107,7 +1107,7 @@ msgid "stop_watching_this" msgstr "" #. Default: "Title" -#: ./content/tracker.py:184 +#: ./content/tracker.py:191 msgid "title" msgstr "" diff --git a/Products/Poi/locales/fr/LC_MESSAGES/Poi.po b/Products/Poi/locales/fr/LC_MESSAGES/Poi.po index ab2de8fc..5344a64d 100644 --- a/Products/Poi/locales/fr/LC_MESSAGES/Poi.po +++ b/Products/Poi/locales/fr/LC_MESSAGES/Poi.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: poi-fr\n" -"POT-Creation-Date: 2020-09-01 13:08+0000\n" +"POT-Creation-Date: 2020-09-01 18:55+0000\n" "PO-Revision-Date: 2008-06-19 18:09+0200\n" "Last-Translator: Kevin Deldycke \n" "Language-Team: French \n" @@ -49,7 +49,7 @@ msgstr "" msgid "An attachment has been added with id ${id}." msgstr "Une pièce jointe a été ajoutée avec l'identifiant ${id}." -#: ./content/tracker.py:230 +#: ./content/tracker.py:237 msgid "Area" msgstr "" @@ -74,7 +74,7 @@ msgstr "" msgid "Delete" msgstr "Effacer" -#: ./content/tracker.py:177 +#: ./content/tracker.py:184 msgid "Description" msgstr "" @@ -86,7 +86,7 @@ msgstr "Modifier" msgid "Edit issue" msgstr "Modifier le ticket" -#: ./content/tracker.py:304 +#: ./content/tracker.py:311 msgid "Enter users who will be responsible for solving the issues. Users also need to be added as Watchers to receive notifications." msgstr "" @@ -111,7 +111,7 @@ msgstr "Détails du ticket :" msgid "Issue Information" msgstr "Information sur le ticket" -#: ./content/tracker.py:252 +#: ./content/tracker.py:259 msgid "Issue Type" msgstr "" @@ -183,38 +183,38 @@ msgstr "" # ./content/PoiTracker.py #. Default: "Enter the issue topics/areas for this tracker." -#: ./content/tracker.py:214 +#: ./content/tracker.py:221 msgid "Poi_help_availableAreas" msgstr "Entrer les sujets/domaines disponibles dans ce gestionnaire de tickets." # ./content/PoiTracker.py #. Default: "Enter the issue types for this tracker." -#: ./content/tracker.py:237 +#: ./content/tracker.py:244 msgid "Poi_help_availableIssueTypes" msgstr "Entrer les types de tickets pour ce gestionnaire." # ./content/PoiTracker.py #. Default: "Enter the releases which issues can be assigned to, one per line. If no releases are entered, issues will not be organized by release." -#: ./content/tracker.py:287 +#: ./content/tracker.py:294 #, fuzzy msgid "Poi_help_availableReleases" msgstr "Entrer les versions où les tickets peuvent être assignés, une par ligne. Si aucune version n'est entrée, les tickets ne seront pas organisés par version." # ./content/PoiTracker.py #. Default: "Enter the different type of issue severities that should be available, one per line." -#: ./content/tracker.py:260 +#: ./content/tracker.py:267 msgid "Poi_help_availableSeverities" msgstr "Entrer les différents types de criticités des tickets disponibles, un par ligne." # ./content/PoiTracker.py #. Default: "Select the default severity for new issues." -#: ./content/tracker.py:274 +#: ./content/tracker.py:281 msgid "Poi_help_defaultSeverity" msgstr "Sélectionnez une criticité par défaut pour les nouveaux tickets." # ./content/PoiTracker.py #. Default: "Enter any introductory help text you'd like to display on the tracker front page." -#: ./content/tracker.py:202 +#: ./content/tracker.py:209 msgid "Poi_help_helpText" msgstr "Entrer une notice d'emploi de votre gestionnaire de tickets qui sera affiché en page d'accueil de l'outil." @@ -302,7 +302,7 @@ msgstr "" # ./content/PoiTracker.py #. Default: "If given, and if 'Send notification emails' is selected, an email will be sent to this address each time a new issue or response is posted." -#: ./content/tracker.py:354 +#: ./content/tracker.py:361 #, fuzzy msgid "Poi_help_mailingList" msgstr "Si ce champs est rempli, et si « Envoyer des courriels de notification » est coché, un message sera envoyé à cette adresse chaque fois qu'un nouveau ticket ou une nouvelle réponse sera postée. Si aucune adresse de liste de diffusion n'est donnée, les responsables recevront individuellement les messages." @@ -333,31 +333,31 @@ msgstr "Veuillez saisir votre réponse ci-dessous" # ./content/PoiTracker.py #. Default: "If selected, all tracker assignees above will receive an email for new issues and all issue responses. Issue watchers will receive an email for all issue responses. Issue submitters will receive an email when the issue has been resolved." -#: ./content/tracker.py:338 +#: ./content/tracker.py:345 #, fuzzy msgid "Poi_help_sendNotificationEmails" msgstr "Si coché, les responsables du gestionnaire de tickets recevront un message chaque fois qu'un nouveau ticket ou qu'une nouvelle réponse sera créé, et les rapporteurs de bugs recevront un message lorsqu'il y aura une nouvelle réponse et lorsqu'un ticket aura été résolu, attendant la confirmation. Les techniciens reçoivent un email lorsqu'un bug leur a été assigné." # ./content/PoiTracker.py #. Default: "Please enter the URL to the related repository, e.g.: https://github.com/collective/Products.Poi/commit/%(rev)s for Products.Poi." -#: ./content/tracker.py:368 +#: ./content/tracker.py:375 #, fuzzy msgid "Poi_help_svnurl" msgstr "Merci de saisir l'Url vers le dépôt SVN correspondant au projet, e.g.: http://dev.plone.org/changeset/%(rev)s/collective pour les modules collective de Plone." #. Default: "Describe the purpose of this tracker" -#: ./content/tracker.py:193 +#: ./content/tracker.py:200 msgid "Poi_help_tracker_description" msgstr "Décrire le but de ce gestionnaire de bugs" # ./content/PoiTracker.py #. Default: "Enter a descriptive name for this tracker" -#: ./content/tracker.py:185 +#: ./content/tracker.py:192 msgid "Poi_help_tracker_title" msgstr "Entrer un nom descriptif pour ce gestionnaire." #. Default: "Enter the user ids of members who are watching this tracker, one per line. E-mail addresses are allowed too. These persons will receive an email when an issue or response is added to the tracker. Members can also add themselves as watchers." -#: ./content/tracker.py:319 +#: ./content/tracker.py:326 msgid "Poi_help_tracker_watchers" msgstr "Entrez les identifiants des utilisateurs qui observent ce ticket, un par la ligne. Ces utilisateurs recevront un message lorsqu'une réponse sera ajoutée à ce ticket. Les utilisateurs peuvent également s'ajouter comme observateurs." @@ -367,37 +367,37 @@ msgid "Poi_issues_label" msgstr "" #. Default: "Assignees" -#: ./content/tracker.py:303 +#: ./content/tracker.py:310 msgid "Poi_label_assignees" msgstr "" # ./content/PoiTracker.py #. Default: "Areas" -#: ./content/tracker.py:212 +#: ./content/tracker.py:219 msgid "Poi_label_availableAreas" msgstr "Domaines" # ./content/PoiTracker.py #. Default: "Issue types" -#: ./content/tracker.py:235 +#: ./content/tracker.py:242 msgid "Poi_label_availableIssueTypes" msgstr "Types de ticket" # ./content/PoiTracker.py #. Default: "Available releases" -#: ./content/tracker.py:283 +#: ./content/tracker.py:290 msgid "Poi_label_availableReleases" msgstr "Distributions disponibles" # ./content/PoiTracker.py #. Default: "Available severities" -#: ./content/tracker.py:257 +#: ./content/tracker.py:264 msgid "Poi_label_availableSeverities" msgstr "Sévérités disponibles" # ./content/PoiTracker.py #. Default: "Default severity" -#: ./content/tracker.py:269 +#: ./content/tracker.py:276 msgid "Poi_label_defaultSeverity" msgstr "Criticité par défaut" @@ -485,7 +485,7 @@ msgstr "" # ./content/PoiTracker.py #. Default: "Mailing list" -#: ./content/tracker.py:350 +#: ./content/tracker.py:357 msgid "Poi_label_mailingList" msgstr "Liste de diffusion" @@ -509,19 +509,19 @@ msgstr "Modifier la distribution voulue" # ./content/PoiTracker.py #. Default: "Send notification emails" -#: ./content/tracker.py:334 +#: ./content/tracker.py:341 msgid "Poi_label_sendNotificationEmails" msgstr "Envoyer des courriels de notification" # ./content/PoiTracker.py #. Default: "URL to Repository" -#: ./content/tracker.py:366 +#: ./content/tracker.py:373 #, fuzzy msgid "Poi_label_svnurl" msgstr "URL du SVN" #. Default: "Watchers" -#: ./content/tracker.py:318 +#: ./content/tracker.py:325 #, fuzzy msgid "Poi_label_tracker_watchers" msgstr "Observateurs du gestionnaire de tickets" @@ -584,7 +584,7 @@ msgstr "Rechercher" msgid "Severity" msgstr "Sévérité" -#: ./content/tracker.py:171 +#: ./content/tracker.py:178 msgid "Short Name" msgstr "" @@ -611,7 +611,7 @@ msgstr "" msgid "This is an automated email, please do not reply." msgstr "Ceci est un email automatique, merci de ne pas répondre." -#: ./content/tracker.py:174 +#: ./content/tracker.py:181 msgid "Title" msgstr "" @@ -638,7 +638,7 @@ msgid "batch_x_items_matching_your_criteria" msgstr "" #. Default: "Description" -#: ./content/tracker.py:192 +#: ./content/tracker.py:199 msgid "description" msgstr "" @@ -653,7 +653,7 @@ msgid "description_no_results_found" msgstr "" #. Default: "Help Text" -#: ./content/tracker.py:201 +#: ./content/tracker.py:208 msgid "help_text" msgstr "" @@ -1106,7 +1106,7 @@ msgid "stop_watching_this" msgstr "" #. Default: "Title" -#: ./content/tracker.py:184 +#: ./content/tracker.py:191 msgid "title" msgstr "" diff --git a/Products/Poi/locales/it/LC_MESSAGES/Poi.po b/Products/Poi/locales/it/LC_MESSAGES/Poi.po index c7e68bf5..6a59f410 100644 --- a/Products/Poi/locales/it/LC_MESSAGES/Poi.po +++ b/Products/Poi/locales/it/LC_MESSAGES/Poi.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Poi\n" -"POT-Creation-Date: 2020-09-01 13:08+0000\n" +"POT-Creation-Date: 2020-09-01 18:55+0000\n" "PO-Revision-Date: 2007-03-22 11:28+0100\n" "Last-Translator: Luca Fabbri \n" "Language-Team: Plone Italian Translation Discussion \n" @@ -44,7 +44,7 @@ msgstr "Attività del gestore" msgid "An attachment has been added with id ${id}." msgstr "Un allegato è stato aggiunto con id ${id}." -#: ./content/tracker.py:230 +#: ./content/tracker.py:237 msgid "Area" msgstr "" @@ -69,7 +69,7 @@ msgstr "Critica" msgid "Delete" msgstr "Elimina" -#: ./content/tracker.py:177 +#: ./content/tracker.py:184 msgid "Description" msgstr "Descrizione" @@ -81,7 +81,7 @@ msgstr "Modifica" msgid "Edit issue" msgstr "Modifica richiesta" -#: ./content/tracker.py:304 +#: ./content/tracker.py:311 msgid "Enter users who will be responsible for solving the issues. Users also need to be added as Watchers to receive notifications." msgstr "Inserisci gli utenti responsabili della gestione delle atività. Questi utenti devono anche essere aggiunti come Osservatori del gestore dellle atività per poter ricevere le notifiche." @@ -106,7 +106,7 @@ msgstr "Dettagli richiesta:" msgid "Issue Information" msgstr "Informazioni sulla richiesta" -#: ./content/tracker.py:252 +#: ./content/tracker.py:259 msgid "Issue Type" msgstr "Tipo di richiesta" @@ -178,19 +178,19 @@ msgstr "Questo campo crea in automatico link al repository impostato nel gestore # ./content/PoiTracker.py #. Default: "Enter the issue topics/areas for this tracker." -#: ./content/tracker.py:214 +#: ./content/tracker.py:221 msgid "Poi_help_availableAreas" msgstr "Inserisci gli argomenti/aree desiderati per questo gestore di richieste" # ./content/PoiTracker.py #. Default: "Enter the issue types for this tracker." -#: ./content/tracker.py:237 +#: ./content/tracker.py:244 msgid "Poi_help_availableIssueTypes" msgstr "Inserisci i tipi di richiesta previsti per questo gestore di richieste" # ./content/PoiTracker.py #. Default: "Enter the releases which issues can be assigned to, one per line. If no releases are entered, issues will not be organized by release." -#: ./content/tracker.py:287 +#: ./content/tracker.py:294 msgid "Poi_help_availableReleases" msgstr "" "Inserisci i rilasci a cui la richiesta può essere assegnata, uno per linea.\n" @@ -198,19 +198,19 @@ msgstr "" # ./content/PoiTracker.py #. Default: "Enter the different type of issue severities that should be available, one per line." -#: ./content/tracker.py:260 +#: ./content/tracker.py:267 msgid "Poi_help_availableSeverities" msgstr "Inserisci i diversi tipi di priorità delle richieste che dovrebbero essere disponibili, uno per linea." # ./content/PoiTracker.py #. Default: "Select the default severity for new issues." -#: ./content/tracker.py:274 +#: ./content/tracker.py:281 msgid "Poi_help_defaultSeverity" msgstr "Seleziona la priorità predefinita da assegnare alle nuove richieste." # ./content/PoiTracker.py #. Default: "Enter any introductory help text you'd like to display on the tracker front page." -#: ./content/tracker.py:202 +#: ./content/tracker.py:209 msgid "Poi_help_helpText" msgstr "Inserisci il testo introduttivo che vorresti visualizzare nella pagina principale del gestore di richieste." @@ -298,7 +298,7 @@ msgstr "Inserire gli identificativi degli utenti che devono seguire questa richi # ./content/PoiTracker.py #. Default: "If given, and if 'Send notification emails' is selected, an email will be sent to this address each time a new issue or response is posted." -#: ./content/tracker.py:354 +#: ./content/tracker.py:361 msgid "Poi_help_mailingList" msgstr "" "Se specificato e se \"Invia mail di notifica\" è selezionato, una email sarà inviata a questo indirizzo ogni volta che una nuova richiesta o risposta saranno generate.\n" @@ -331,7 +331,7 @@ msgstr "Per favore inserisci qui sotto la tua risposta." # ./content/PoiTracker.py #. Default: "If selected, all tracker assignees above will receive an email for new issues and all issue responses. Issue watchers will receive an email for all issue responses. Issue submitters will receive an email when the issue has been resolved." -#: ./content/tracker.py:338 +#: ./content/tracker.py:345 msgid "Poi_help_sendNotificationEmails" msgstr "" "Se selezionato, i manager del gestore delle richieste riceveranno una mail ogni volta che una nuova richiesta o risposta saranno generate, e chi ha inviato la richiesta riceverà una email quando sarà presente una nuova risposta o quando una richiesta verrà risolta, in attesa della conferma.\n" @@ -339,23 +339,23 @@ msgstr "" # ./content/PoiTracker.py #. Default: "Please enter the URL to the related repository, e.g.: https://github.com/collective/Products.Poi/commit/%(rev)s for Products.Poi." -#: ./content/tracker.py:368 +#: ./content/tracker.py:375 msgid "Poi_help_svnurl" msgstr "Per favore inserisci l'URL del repository SVN connessi, ad esempio: http://dev.plone.org/changeset/%(rev)s/collective per i prodotti nella collective Plone (SVN)." #. Default: "Describe the purpose of this tracker" -#: ./content/tracker.py:193 +#: ./content/tracker.py:200 msgid "Poi_help_tracker_description" msgstr "Descrivi lo scopo del gestore delle richieste" # ./content/PoiTracker.py #. Default: "Enter a descriptive name for this tracker" -#: ./content/tracker.py:185 +#: ./content/tracker.py:192 msgid "Poi_help_tracker_title" msgstr "Inserisci un nome descrittivo per questo gestore di richieste." #. Default: "Enter the user ids of members who are watching this tracker, one per line. E-mail addresses are allowed too. These persons will receive an email when an issue or response is added to the tracker. Members can also add themselves as watchers." -#: ./content/tracker.py:319 +#: ./content/tracker.py:326 msgid "Poi_help_tracker_watchers" msgstr "" "Inserisci gli id degli utenti che stanno seguendo questa richiesta, uno per riga.\n" @@ -369,37 +369,37 @@ msgid "Poi_issues_label" msgstr "Richieste" #. Default: "Assignees" -#: ./content/tracker.py:303 +#: ./content/tracker.py:310 msgid "Poi_label_assignees" msgstr "Responsabili" # ./content/PoiTracker.py #. Default: "Areas" -#: ./content/tracker.py:212 +#: ./content/tracker.py:219 msgid "Poi_label_availableAreas" msgstr "Aree" # ./content/PoiTracker.py #. Default: "Issue types" -#: ./content/tracker.py:235 +#: ./content/tracker.py:242 msgid "Poi_label_availableIssueTypes" msgstr "Tipi di richiesta" # ./content/PoiTracker.py #. Default: "Available releases" -#: ./content/tracker.py:283 +#: ./content/tracker.py:290 msgid "Poi_label_availableReleases" msgstr "Rilasci disponibili" # ./content/PoiTracker.py #. Default: "Available severities" -#: ./content/tracker.py:257 +#: ./content/tracker.py:264 msgid "Poi_label_availableSeverities" msgstr "Priorità disponibili" # ./content/PoiTracker.py #. Default: "Default severity" -#: ./content/tracker.py:269 +#: ./content/tracker.py:276 msgid "Poi_label_defaultSeverity" msgstr "Priorità predefinita" @@ -487,7 +487,7 @@ msgstr "Osservatori del gestore di richieste" # ./content/PoiTracker.py #. Default: "Mailing list" -#: ./content/tracker.py:350 +#: ./content/tracker.py:357 msgid "Poi_label_mailingList" msgstr "Mailing list" @@ -511,18 +511,18 @@ msgstr "Cambia la versione di rilascio" # ./content/PoiTracker.py #. Default: "Send notification emails" -#: ./content/tracker.py:334 +#: ./content/tracker.py:341 msgid "Poi_label_sendNotificationEmails" msgstr "Invia mail di notifica" # ./content/PoiTracker.py #. Default: "URL to Repository" -#: ./content/tracker.py:366 +#: ./content/tracker.py:373 msgid "Poi_label_svnurl" msgstr "l'indirizzo del server di versioni di Subversion (SVN)" #. Default: "Watchers" -#: ./content/tracker.py:318 +#: ./content/tracker.py:325 msgid "Poi_label_tracker_watchers" msgstr "Osservatori del gestore di richieste" @@ -584,7 +584,7 @@ msgstr "Ricerca" msgid "Severity" msgstr "Gravità" -#: ./content/tracker.py:171 +#: ./content/tracker.py:178 msgid "Short Name" msgstr "Nome breve" @@ -611,7 +611,7 @@ msgstr "La richiesta ${issue_title} in ${tracker_title} è stata risolta da ${re msgid "This is an automated email, please do not reply." msgstr "Questa è una mail generata automaticamente, per favore non rispondere a questo messaggio." -#: ./content/tracker.py:174 +#: ./content/tracker.py:181 msgid "Title" msgstr "Titolo" @@ -638,7 +638,7 @@ msgid "batch_x_items_matching_your_criteria" msgstr "(234 elementi corrispondono)" #. Default: "Description" -#: ./content/tracker.py:192 +#: ./content/tracker.py:199 msgid "description" msgstr "Descrizione" @@ -653,7 +653,7 @@ msgid "description_no_results_found" msgstr "Nessun risultato trovato" #. Default: "Help Text" -#: ./content/tracker.py:201 +#: ./content/tracker.py:208 msgid "help_text" msgstr "Testo introduttivo" @@ -1106,7 +1106,7 @@ msgid "stop_watching_this" msgstr "Non seguire più questo" #. Default: "Title" -#: ./content/tracker.py:184 +#: ./content/tracker.py:191 msgid "title" msgstr "Titolo" diff --git a/Products/Poi/locales/ja/LC_MESSAGES/Poi.po b/Products/Poi/locales/ja/LC_MESSAGES/Poi.po index 5c75cf3d..9bbd50b8 100644 --- a/Products/Poi/locales/ja/LC_MESSAGES/Poi.po +++ b/Products/Poi/locales/ja/LC_MESSAGES/Poi.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Poi\n" -"POT-Creation-Date: 2020-09-01 13:08+0000\n" +"POT-Creation-Date: 2020-09-01 18:55+0000\n" "PO-Revision-Date: 2006-01-22 18:00+0900\n" "Last-Translator: TANIGUCHI Takaki \n" "Language-Team: LANGUAGE \n" @@ -44,7 +44,7 @@ msgstr "" msgid "An attachment has been added with id ${id}." msgstr "" -#: ./content/tracker.py:230 +#: ./content/tracker.py:237 msgid "Area" msgstr "" @@ -69,7 +69,7 @@ msgstr "" msgid "Delete" msgstr "削除" -#: ./content/tracker.py:177 +#: ./content/tracker.py:184 msgid "Description" msgstr "" @@ -81,7 +81,7 @@ msgstr "編集" msgid "Edit issue" msgstr "" -#: ./content/tracker.py:304 +#: ./content/tracker.py:311 msgid "Enter users who will be responsible for solving the issues. Users also need to be added as Watchers to receive notifications." msgstr "" @@ -106,7 +106,7 @@ msgstr "" msgid "Issue Information" msgstr "" -#: ./content/tracker.py:252 +#: ./content/tracker.py:259 msgid "Issue Type" msgstr "" @@ -178,40 +178,40 @@ msgstr "" # ./content/PoiTracker.py #. Default: "Enter the issue topics/areas for this tracker." -#: ./content/tracker.py:214 +#: ./content/tracker.py:221 #, fuzzy msgid "Poi_help_availableAreas" msgstr "このトラッカーのトピック/領域を入力して下さい。一行毎に一つの記述です。形式は\"短縮名 | タイトル | 説明\" です。" # ./content/PoiTracker.py #. Default: "Enter the issue types for this tracker." -#: ./content/tracker.py:237 +#: ./content/tracker.py:244 #, fuzzy msgid "Poi_help_availableIssueTypes" msgstr "この課題の種類を入力して下さい。一行毎に一つの記述です。形式は\"短縮名 | タイトル | 説明\" です。" # ./content/PoiTracker.py #. Default: "Enter the releases which issues can be assigned to, one per line. If no releases are entered, issues will not be organized by release." -#: ./content/tracker.py:287 +#: ./content/tracker.py:294 #, fuzzy msgid "Poi_help_availableReleases" msgstr "利用できる課題の重要度を一行毎に入力して下さい。" # ./content/PoiTracker.py #. Default: "Enter the different type of issue severities that should be available, one per line." -#: ./content/tracker.py:260 +#: ./content/tracker.py:267 msgid "Poi_help_availableSeverities" msgstr "一行毎に使用する課題の重要度を入力して下さい。" # ./content/PoiTracker.py #. Default: "Select the default severity for new issues." -#: ./content/tracker.py:274 +#: ./content/tracker.py:281 msgid "Poi_help_defaultSeverity" msgstr "新規の課題のデフォルトの重要度を選択して下さい。" # ./content/PoiTracker.py #. Default: "Enter any introductory help text you'd like to display on the tracker front page." -#: ./content/tracker.py:202 +#: ./content/tracker.py:209 msgid "Poi_help_helpText" msgstr "" @@ -299,7 +299,7 @@ msgstr "" # ./content/PoiTracker.py #. Default: "If given, and if 'Send notification emails' is selected, an email will be sent to this address each time a new issue or response is posted." -#: ./content/tracker.py:354 +#: ./content/tracker.py:361 #, fuzzy msgid "Poi_help_mailingList" msgstr "もし与えられて,「通知メールを送る」が選択されていれば,新しい課題と対応が追加されるごとに電子メールが送信されます。メイリングリストのアドレスが指定されなければ,マネージャーは独立した電子メールを受け取ります。" @@ -330,30 +330,30 @@ msgstr "対応を入力して下さい" # ./content/PoiTracker.py #. Default: "If selected, all tracker assignees above will receive an email for new issues and all issue responses. Issue watchers will receive an email for all issue responses. Issue submitters will receive an email when the issue has been resolved." -#: ./content/tracker.py:338 +#: ./content/tracker.py:345 #, fuzzy msgid "Poi_help_sendNotificationEmails" msgstr "もし選択されたなら,トラッカーマネージャーは新しい課題か対応が送られる毎に電子メールを受け取ります。課題の提出者は新しい対応がされたときと,課題が解決したときに確認を待つために電子メールを受け取ります。" # ./content/PoiTracker.py #. Default: "Please enter the URL to the related repository, e.g.: https://github.com/collective/Products.Poi/commit/%(rev)s for Products.Poi." -#: ./content/tracker.py:368 +#: ./content/tracker.py:375 msgid "Poi_help_svnurl" msgstr "" #. Default: "Describe the purpose of this tracker" -#: ./content/tracker.py:193 +#: ./content/tracker.py:200 msgid "Poi_help_tracker_description" msgstr "" # ./content/PoiTracker.py #. Default: "Enter a descriptive name for this tracker" -#: ./content/tracker.py:185 +#: ./content/tracker.py:192 msgid "Poi_help_tracker_title" msgstr "このトラッカーの名称を入力して下さい。" #. Default: "Enter the user ids of members who are watching this tracker, one per line. E-mail addresses are allowed too. These persons will receive an email when an issue or response is added to the tracker. Members can also add themselves as watchers." -#: ./content/tracker.py:319 +#: ./content/tracker.py:326 msgid "Poi_help_tracker_watchers" msgstr "" @@ -363,37 +363,37 @@ msgid "Poi_issues_label" msgstr "" #. Default: "Assignees" -#: ./content/tracker.py:303 +#: ./content/tracker.py:310 msgid "Poi_label_assignees" msgstr "" # ./content/PoiTracker.py #. Default: "Areas" -#: ./content/tracker.py:212 +#: ./content/tracker.py:219 msgid "Poi_label_availableAreas" msgstr "領域" # ./content/PoiTracker.py #. Default: "Issue types" -#: ./content/tracker.py:235 +#: ./content/tracker.py:242 msgid "Poi_label_availableIssueTypes" msgstr "課題の種別" # ./content/PoiTracker.py #. Default: "Available releases" -#: ./content/tracker.py:283 +#: ./content/tracker.py:290 msgid "Poi_label_availableReleases" msgstr "利用可能なリリース" # ./content/PoiTracker.py #. Default: "Available severities" -#: ./content/tracker.py:257 +#: ./content/tracker.py:264 msgid "Poi_label_availableSeverities" msgstr "利用可能な重要度" # ./content/PoiTracker.py #. Default: "Default severity" -#: ./content/tracker.py:269 +#: ./content/tracker.py:276 msgid "Poi_label_defaultSeverity" msgstr "デフォルトの重要度" @@ -481,7 +481,7 @@ msgstr "" # ./content/PoiTracker.py #. Default: "Mailing list" -#: ./content/tracker.py:350 +#: ./content/tracker.py:357 msgid "Poi_label_mailingList" msgstr "メーリングリスト" @@ -505,18 +505,18 @@ msgstr "" # ./content/PoiTracker.py #. Default: "Send notification emails" -#: ./content/tracker.py:334 +#: ./content/tracker.py:341 msgid "Poi_label_sendNotificationEmails" msgstr "通知メールを送る" # ./content/PoiTracker.py #. Default: "URL to Repository" -#: ./content/tracker.py:366 +#: ./content/tracker.py:373 msgid "Poi_label_svnurl" msgstr "" #. Default: "Watchers" -#: ./content/tracker.py:318 +#: ./content/tracker.py:325 msgid "Poi_label_tracker_watchers" msgstr "" @@ -578,7 +578,7 @@ msgstr "" msgid "Severity" msgstr "" -#: ./content/tracker.py:171 +#: ./content/tracker.py:178 msgid "Short Name" msgstr "" @@ -605,7 +605,7 @@ msgstr "" msgid "This is an automated email, please do not reply." msgstr "" -#: ./content/tracker.py:174 +#: ./content/tracker.py:181 msgid "Title" msgstr "" @@ -632,7 +632,7 @@ msgid "batch_x_items_matching_your_criteria" msgstr "" #. Default: "Description" -#: ./content/tracker.py:192 +#: ./content/tracker.py:199 msgid "description" msgstr "" @@ -647,7 +647,7 @@ msgid "description_no_results_found" msgstr "" #. Default: "Help Text" -#: ./content/tracker.py:201 +#: ./content/tracker.py:208 msgid "help_text" msgstr "" @@ -1107,7 +1107,7 @@ msgid "stop_watching_this" msgstr "" #. Default: "Title" -#: ./content/tracker.py:184 +#: ./content/tracker.py:191 msgid "title" msgstr "" diff --git a/Products/Poi/locales/nl/LC_MESSAGES/Poi.po b/Products/Poi/locales/nl/LC_MESSAGES/Poi.po index 38d66b2a..c6ea8b88 100644 --- a/Products/Poi/locales/nl/LC_MESSAGES/Poi.po +++ b/Products/Poi/locales/nl/LC_MESSAGES/Poi.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: Poi\n" -"POT-Creation-Date: 2020-09-01 13:08+0000\n" +"POT-Creation-Date: 2020-09-01 18:55+0000\n" "PO-Revision-Date: 2015-11-12 -2:28+0100\n" "Last-Translator: Maurits van Rees \n" "Language-Team: Plone Nederlands \n" @@ -47,7 +47,7 @@ msgstr "" msgid "An attachment has been added with id ${id}." msgstr "Een bijlage is toegevoegd met id ${id}" -#: ./content/tracker.py:230 +#: ./content/tracker.py:237 msgid "Area" msgstr "" @@ -72,7 +72,7 @@ msgstr "" msgid "Delete" msgstr "Verwijder" -#: ./content/tracker.py:177 +#: ./content/tracker.py:184 msgid "Description" msgstr "" @@ -84,7 +84,7 @@ msgstr "Bewerk" msgid "Edit issue" msgstr "Bewerk issue" -#: ./content/tracker.py:304 +#: ./content/tracker.py:311 msgid "Enter users who will be responsible for solving the issues. Users also need to be added as Watchers to receive notifications." msgstr "" @@ -109,7 +109,7 @@ msgstr "Details van het issue:" msgid "Issue Information" msgstr "Informatie over de reactie" -#: ./content/tracker.py:252 +#: ./content/tracker.py:259 msgid "Issue Type" msgstr "" @@ -181,38 +181,38 @@ msgstr "" # ./content/PoiTracker.py #. Default: "Enter the issue topics/areas for this tracker." -#: ./content/tracker.py:214 +#: ./content/tracker.py:221 msgid "Poi_help_availableAreas" msgstr "Geef de issue onderwerpen/gebieden op voor deze tracker." # ./content/PoiTracker.py #. Default: "Enter the issue types for this tracker." -#: ./content/tracker.py:237 +#: ./content/tracker.py:244 msgid "Poi_help_availableIssueTypes" msgstr "Geef de issue types op voor deze tracker." # ./content/PoiTracker.py #. Default: "Enter the releases which issues can be assigned to, one per line. If no releases are entered, issues will not be organized by release." -#: ./content/tracker.py:287 +#: ./content/tracker.py:294 #, fuzzy msgid "Poi_help_availableReleases" msgstr "Geef op aan welke releases de issues gekoppeld kunnen worden, één per regel. Als er geen releases zijn ingevoerd, kunnen de issues niet per release gecategorizeerd worden" # ./content/PoiTracker.py #. Default: "Enter the different type of issue severities that should be available, one per line." -#: ./content/tracker.py:260 +#: ./content/tracker.py:267 msgid "Poi_help_availableSeverities" msgstr "Geef de verschillende types van issue prioriteiten op die beschikbaar moeten zijn, één per regel" # ./content/PoiTracker.py #. Default: "Select the default severity for new issues." -#: ./content/tracker.py:274 +#: ./content/tracker.py:281 msgid "Poi_help_defaultSeverity" msgstr "Kies de standaard prioriteit voor nieuwe issues" # ./content/PoiTracker.py #. Default: "Enter any introductory help text you'd like to display on the tracker front page." -#: ./content/tracker.py:202 +#: ./content/tracker.py:209 msgid "Poi_help_helpText" msgstr "Geef een introductie helptekst op die getoond wordt op de tracker front page." @@ -300,7 +300,7 @@ msgstr "" # ./content/PoiTracker.py #. Default: "If given, and if 'Send notification emails' is selected, an email will be sent to this address each time a new issue or response is posted." -#: ./content/tracker.py:354 +#: ./content/tracker.py:361 #, fuzzy msgid "Poi_help_mailingList" msgstr "Indien opgegeven en 'Stuur notificatie e-mails' is geselecteerd, wordt er een e-mail gestuurd naar dit adres zodra er een nieuwe issue of reactie geplaatst wordt. Trackermanagers ontvangen ook individueel een e-mail. Als dit niet gewenst is, kan het beter zijn van een trackermanager een technicus te maken." @@ -331,31 +331,31 @@ msgstr "Geef aub hieronder uw reactie." # ./content/PoiTracker.py #. Default: "If selected, all tracker assignees above will receive an email for new issues and all issue responses. Issue watchers will receive an email for all issue responses. Issue submitters will receive an email when the issue has been resolved." -#: ./content/tracker.py:338 +#: ./content/tracker.py:345 #, fuzzy msgid "Poi_help_sendNotificationEmails" msgstr "Indien geselecteerd, krijgen tracker managers een e-mail elke keer als een nieuwe issue of reactie is geplaatst. Issue toevoegers ontvangen een e-mail als er een nieuwe reactie is geplaatst of een issue is opgelost. Technici krijgen een e-mail als een issue aan hen is toegekend." # ./content/PoiTracker.py #. Default: "Please enter the URL to the related repository, e.g.: https://github.com/collective/Products.Poi/commit/%(rev)s for Products.Poi." -#: ./content/tracker.py:368 +#: ./content/tracker.py:375 #, fuzzy msgid "Poi_help_svnurl" msgstr "Vul alstublieft de url in naar de relevante SVN repository, bijvoorbeeld http://dev.plone.org/changeset/%(rev)s/collective voor producten in de Plone collective." #. Default: "Describe the purpose of this tracker" -#: ./content/tracker.py:193 +#: ./content/tracker.py:200 msgid "Poi_help_tracker_description" msgstr "Beschrijf het doel van deze tracker" # ./content/PoiTracker.py #. Default: "Enter a descriptive name for this tracker" -#: ./content/tracker.py:185 +#: ./content/tracker.py:192 msgid "Poi_help_tracker_title" msgstr "Geef een omschrijvende naam op voor deze tracker" #. Default: "Enter the user ids of members who are watching this tracker, one per line. E-mail addresses are allowed too. These persons will receive an email when an issue or response is added to the tracker. Members can also add themselves as watchers." -#: ./content/tracker.py:319 +#: ./content/tracker.py:326 msgid "Poi_help_tracker_watchers" msgstr "Geef de gebruikersnamen van leden op die deze tracker volgen, één per regel. E-mailadressen zijn ook toegestaan. Deze leden krijgen een e-mail als er een issue of reactie is geplaatst in deze tracker. Leden kunnen zichzelf toevoegen als volgers." @@ -365,37 +365,37 @@ msgid "Poi_issues_label" msgstr "" #. Default: "Assignees" -#: ./content/tracker.py:303 +#: ./content/tracker.py:310 msgid "Poi_label_assignees" msgstr "" # ./content/PoiTracker.py #. Default: "Areas" -#: ./content/tracker.py:212 +#: ./content/tracker.py:219 msgid "Poi_label_availableAreas" msgstr "Gebieden" # ./content/PoiTracker.py #. Default: "Issue types" -#: ./content/tracker.py:235 +#: ./content/tracker.py:242 msgid "Poi_label_availableIssueTypes" msgstr "Issue types" # ./content/PoiTracker.py #. Default: "Available releases" -#: ./content/tracker.py:283 +#: ./content/tracker.py:290 msgid "Poi_label_availableReleases" msgstr "Beschikbare releases" # ./content/PoiTracker.py #. Default: "Available severities" -#: ./content/tracker.py:257 +#: ./content/tracker.py:264 msgid "Poi_label_availableSeverities" msgstr "Beschikbare prioriteiten" # ./content/PoiTracker.py #. Default: "Default severity" -#: ./content/tracker.py:269 +#: ./content/tracker.py:276 msgid "Poi_label_defaultSeverity" msgstr "Standaard prioriteit" @@ -483,7 +483,7 @@ msgstr "" # ./content/PoiTracker.py #. Default: "Mailing list" -#: ./content/tracker.py:350 +#: ./content/tracker.py:357 msgid "Poi_label_mailingList" msgstr "Mailinglijst" @@ -507,19 +507,19 @@ msgstr "Verander doelrelease" # ./content/PoiTracker.py #. Default: "Send notification emails" -#: ./content/tracker.py:334 +#: ./content/tracker.py:341 msgid "Poi_label_sendNotificationEmails" msgstr "Stuur notificatie e-mails" # ./content/PoiTracker.py #. Default: "URL to Repository" -#: ./content/tracker.py:366 +#: ./content/tracker.py:373 #, fuzzy msgid "Poi_label_svnurl" msgstr "Url naar subversion" #. Default: "Watchers" -#: ./content/tracker.py:318 +#: ./content/tracker.py:325 #, fuzzy msgid "Poi_label_tracker_watchers" msgstr "Tracker volgers" @@ -582,7 +582,7 @@ msgstr "Zoeken" msgid "Severity" msgstr "Prioriteit" -#: ./content/tracker.py:171 +#: ./content/tracker.py:178 msgid "Short Name" msgstr "" @@ -609,7 +609,7 @@ msgstr "" msgid "This is an automated email, please do not reply." msgstr "Dit is een automatische e-mail, gelieven niet de e-mail te beantwoorden." -#: ./content/tracker.py:174 +#: ./content/tracker.py:181 msgid "Title" msgstr "" @@ -636,7 +636,7 @@ msgid "batch_x_items_matching_your_criteria" msgstr "" #. Default: "Description" -#: ./content/tracker.py:192 +#: ./content/tracker.py:199 msgid "description" msgstr "" @@ -651,7 +651,7 @@ msgid "description_no_results_found" msgstr "" #. Default: "Help Text" -#: ./content/tracker.py:201 +#: ./content/tracker.py:208 msgid "help_text" msgstr "" @@ -1104,7 +1104,7 @@ msgid "stop_watching_this" msgstr "" #. Default: "Title" -#: ./content/tracker.py:184 +#: ./content/tracker.py:191 msgid "title" msgstr "" diff --git a/Products/Poi/locales/no/LC_MESSAGES/Poi.po b/Products/Poi/locales/no/LC_MESSAGES/Poi.po index b30b7c26..3e14cda4 100644 --- a/Products/Poi/locales/no/LC_MESSAGES/Poi.po +++ b/Products/Poi/locales/no/LC_MESSAGES/Poi.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Poi\n" -"POT-Creation-Date: 2020-09-01 13:08+0000\n" +"POT-Creation-Date: 2020-09-01 18:55+0000\n" "PO-Revision-Date: 2007-05-06 17:00+0000\n" "Last-Translator: Espen Moe-Nilssen \n" "Language-Team: None \n" @@ -45,7 +45,7 @@ msgstr "" msgid "An attachment has been added with id ${id}." msgstr "" -#: ./content/tracker.py:230 +#: ./content/tracker.py:237 msgid "Area" msgstr "" @@ -70,7 +70,7 @@ msgstr "" msgid "Delete" msgstr "Slett" -#: ./content/tracker.py:177 +#: ./content/tracker.py:184 msgid "Description" msgstr "" @@ -82,7 +82,7 @@ msgstr "Rediger" msgid "Edit issue" msgstr "" -#: ./content/tracker.py:304 +#: ./content/tracker.py:311 msgid "Enter users who will be responsible for solving the issues. Users also need to be added as Watchers to receive notifications." msgstr "" @@ -107,7 +107,7 @@ msgstr "" msgid "Issue Information" msgstr "" -#: ./content/tracker.py:252 +#: ./content/tracker.py:259 msgid "Issue Type" msgstr "" @@ -179,39 +179,39 @@ msgstr "" # ./content/PoiTracker.py #. Default: "Enter the issue topics/areas for this tracker." -#: ./content/tracker.py:214 +#: ./content/tracker.py:221 #, fuzzy msgid "Poi_help_availableAreas" msgstr "Skriv emnet/omr�det, en p� hver linje. Formatet er \"Kort navn | Tittel | Beskrivelse\"." # ./content/PoiTracker.py #. Default: "Enter the issue types for this tracker." -#: ./content/tracker.py:237 +#: ./content/tracker.py:244 #, fuzzy msgid "Poi_help_availableIssueTypes" msgstr " Skriv emne-typene, en p� hver linje. Formatet er \"Kort navn | Tittel | Beskrivelse\"." # ./content/PoiTracker.py #. Default: "Enter the releases which issues can be assigned to, one per line. If no releases are entered, issues will not be organized by release." -#: ./content/tracker.py:287 +#: ./content/tracker.py:294 msgid "Poi_help_availableReleases" msgstr "" # ./content/PoiTracker.py #. Default: "Enter the different type of issue severities that should be available, one per line." -#: ./content/tracker.py:260 +#: ./content/tracker.py:267 msgid "Poi_help_availableSeverities" msgstr "Beskriv de forskjellige 'alvorlighetsgrader' som skal v�re tilgjengelig, en p� hver linje." # ./content/PoiTracker.py #. Default: "Select the default severity for new issues." -#: ./content/tracker.py:274 +#: ./content/tracker.py:281 msgid "Poi_help_defaultSeverity" msgstr "'Default alvorlighetsgrad' for nye emner." # ./content/PoiTracker.py #. Default: "Enter any introductory help text you'd like to display on the tracker front page." -#: ./content/tracker.py:202 +#: ./content/tracker.py:209 msgid "Poi_help_helpText" msgstr "" @@ -299,7 +299,7 @@ msgstr "" # ./content/PoiTracker.py #. Default: "If given, and if 'Send notification emails' is selected, an email will be sent to this address each time a new issue or response is posted." -#: ./content/tracker.py:354 +#: ./content/tracker.py:361 #, fuzzy msgid "Poi_help_mailingList" msgstr "Hvis gitt, og hvis \"Send bekreftelses-epost\" vil en e-post bli sent til denne adressen hver hver gang et nytt emne eller svar blir opprettet. Hvis ingen mailing-liste er gitt, vil managere motta individuelle e-poster." @@ -330,30 +330,30 @@ msgstr "Vennligst skriv inn ditt svar nedenfor" # ./content/PoiTracker.py #. Default: "If selected, all tracker assignees above will receive an email for new issues and all issue responses. Issue watchers will receive an email for all issue responses. Issue submitters will receive an email when the issue has been resolved." -#: ./content/tracker.py:338 +#: ./content/tracker.py:345 #, fuzzy msgid "Poi_help_sendNotificationEmails" msgstr "Hvis valgt, vil managere motta e-post hver gang et nytt emne eller svar blir opprettet, og emnedeltakerne vil motta en e-post hver gang det er svar e.l.." # ./content/PoiTracker.py #. Default: "Please enter the URL to the related repository, e.g.: https://github.com/collective/Products.Poi/commit/%(rev)s for Products.Poi." -#: ./content/tracker.py:368 +#: ./content/tracker.py:375 msgid "Poi_help_svnurl" msgstr "" #. Default: "Describe the purpose of this tracker" -#: ./content/tracker.py:193 +#: ./content/tracker.py:200 msgid "Poi_help_tracker_description" msgstr "" # ./content/PoiTracker.py #. Default: "Enter a descriptive name for this tracker" -#: ./content/tracker.py:185 +#: ./content/tracker.py:192 msgid "Poi_help_tracker_title" msgstr "Skriv et passende navn for denne 'sporeren'." #. Default: "Enter the user ids of members who are watching this tracker, one per line. E-mail addresses are allowed too. These persons will receive an email when an issue or response is added to the tracker. Members can also add themselves as watchers." -#: ./content/tracker.py:319 +#: ./content/tracker.py:326 msgid "Poi_help_tracker_watchers" msgstr "" @@ -363,37 +363,37 @@ msgid "Poi_issues_label" msgstr "" #. Default: "Assignees" -#: ./content/tracker.py:303 +#: ./content/tracker.py:310 msgid "Poi_label_assignees" msgstr "" # ./content/PoiTracker.py #. Default: "Areas" -#: ./content/tracker.py:212 +#: ./content/tracker.py:219 msgid "Poi_label_availableAreas" msgstr "Omr�der" # ./content/PoiTracker.py #. Default: "Issue types" -#: ./content/tracker.py:235 +#: ./content/tracker.py:242 msgid "Poi_label_availableIssueTypes" msgstr "Enmetype" # ./content/PoiTracker.py #. Default: "Available releases" -#: ./content/tracker.py:283 +#: ./content/tracker.py:290 msgid "Poi_label_availableReleases" msgstr "Available releases" # ./content/PoiTracker.py #. Default: "Available severities" -#: ./content/tracker.py:257 +#: ./content/tracker.py:264 msgid "Poi_label_availableSeverities" msgstr "Tilgjengelige 'alvorlighetsgrader'" # ./content/PoiTracker.py #. Default: "Default severity" -#: ./content/tracker.py:269 +#: ./content/tracker.py:276 msgid "Poi_label_defaultSeverity" msgstr "'Default alvorlighetsgrad'" @@ -481,7 +481,7 @@ msgstr "" # ./content/PoiTracker.py #. Default: "Mailing list" -#: ./content/tracker.py:350 +#: ./content/tracker.py:357 msgid "Poi_label_mailingList" msgstr "Mailing-liste" @@ -505,18 +505,18 @@ msgstr "" # ./content/PoiTracker.py #. Default: "Send notification emails" -#: ./content/tracker.py:334 +#: ./content/tracker.py:341 msgid "Poi_label_sendNotificationEmails" msgstr "Send bekreftelses-e-post" # ./content/PoiTracker.py #. Default: "URL to Repository" -#: ./content/tracker.py:366 +#: ./content/tracker.py:373 msgid "Poi_label_svnurl" msgstr "" #. Default: "Watchers" -#: ./content/tracker.py:318 +#: ./content/tracker.py:325 msgid "Poi_label_tracker_watchers" msgstr "" @@ -578,7 +578,7 @@ msgstr "" msgid "Severity" msgstr "" -#: ./content/tracker.py:171 +#: ./content/tracker.py:178 msgid "Short Name" msgstr "" @@ -605,7 +605,7 @@ msgstr "" msgid "This is an automated email, please do not reply." msgstr "" -#: ./content/tracker.py:174 +#: ./content/tracker.py:181 msgid "Title" msgstr "" @@ -632,7 +632,7 @@ msgid "batch_x_items_matching_your_criteria" msgstr "" #. Default: "Description" -#: ./content/tracker.py:192 +#: ./content/tracker.py:199 msgid "description" msgstr "" @@ -647,7 +647,7 @@ msgid "description_no_results_found" msgstr "" #. Default: "Help Text" -#: ./content/tracker.py:201 +#: ./content/tracker.py:208 msgid "help_text" msgstr "" @@ -1107,7 +1107,7 @@ msgid "stop_watching_this" msgstr "" #. Default: "Title" -#: ./content/tracker.py:184 +#: ./content/tracker.py:191 msgid "title" msgstr "" diff --git a/Products/Poi/locales/pl/LC_MESSAGES/Poi.po b/Products/Poi/locales/pl/LC_MESSAGES/Poi.po index 275f61a3..95321dc6 100644 --- a/Products/Poi/locales/pl/LC_MESSAGES/Poi.po +++ b/Products/Poi/locales/pl/LC_MESSAGES/Poi.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Poi\n" -"POT-Creation-Date: 2020-09-01 13:08+0000\n" +"POT-Creation-Date: 2020-09-01 18:55+0000\n" "PO-Revision-Date: 2010-01-24 15:00+0010\n" "Last-Translator: STX Next \n" "Language-Team: STX Next \n" @@ -43,7 +43,7 @@ msgstr "" msgid "An attachment has been added with id ${id}." msgstr "" -#: ./content/tracker.py:230 +#: ./content/tracker.py:237 msgid "Area" msgstr "" @@ -68,7 +68,7 @@ msgstr "" msgid "Delete" msgstr "Usuń" -#: ./content/tracker.py:177 +#: ./content/tracker.py:184 msgid "Description" msgstr "" @@ -80,7 +80,7 @@ msgstr "Edytuj" msgid "Edit issue" msgstr "Edytuj zgłoszenie" -#: ./content/tracker.py:304 +#: ./content/tracker.py:311 msgid "Enter users who will be responsible for solving the issues. Users also need to be added as Watchers to receive notifications." msgstr "" @@ -105,7 +105,7 @@ msgstr "" msgid "Issue Information" msgstr "" -#: ./content/tracker.py:252 +#: ./content/tracker.py:259 msgid "Issue Type" msgstr "" @@ -177,40 +177,40 @@ msgstr "" # ./content/PoiTracker.py #. Default: "Enter the issue topics/areas for this tracker." -#: ./content/tracker.py:214 +#: ./content/tracker.py:221 #, fuzzy msgid "Poi_help_availableAreas" msgstr "Pozwala na ustawienie obszarów dostępnych w Systemie Zgłoszeniowym. Jeden wpis na linię w formacie \"Skrót | Tytuł | Opis\"." # ./content/PoiTracker.py #. Default: "Enter the issue types for this tracker." -#: ./content/tracker.py:237 +#: ./content/tracker.py:244 #, fuzzy msgid "Poi_help_availableIssueTypes" msgstr "Pozwala na ustawienie typów zgłoszeń dostępnych w Systemie Zgłoszeniowym. Jeden wpis na linię w formacie \"Skrót | Tytuł | Opis\"." # ./content/PoiTracker.py #. Default: "Enter the releases which issues can be assigned to, one per line. If no releases are entered, issues will not be organized by release." -#: ./content/tracker.py:287 +#: ./content/tracker.py:294 #, fuzzy msgid "Poi_help_availableReleases" msgstr "Pozwala na ustawienie wydań dostępnych w Systemie Zgłoszeniowym. Jeden wpis na linię. W przypadku gdy pole jest puste, nie będzie możliwości grupowania zgłoszeń po wydaniach." # ./content/PoiTracker.py #. Default: "Enter the different type of issue severities that should be available, one per line." -#: ./content/tracker.py:260 +#: ./content/tracker.py:267 msgid "Poi_help_availableSeverities" msgstr "Pozwala na ustawienie dostępnych priorytetów. Jeden wpis na linię." # ./content/PoiTracker.py #. Default: "Select the default severity for new issues." -#: ./content/tracker.py:274 +#: ./content/tracker.py:281 msgid "Poi_help_defaultSeverity" msgstr "Domyślny priorytet dla nowego zgłoszenia." # ./content/PoiTracker.py #. Default: "Enter any introductory help text you'd like to display on the tracker front page." -#: ./content/tracker.py:202 +#: ./content/tracker.py:209 msgid "Poi_help_helpText" msgstr "Tekst pomocy, którą chcesz wyświetlić na stronie głównej Systemu Zgłoszeniowego." @@ -297,7 +297,7 @@ msgstr "" # ./content/PoiTracker.py #. Default: "If given, and if 'Send notification emails' is selected, an email will be sent to this address each time a new issue or response is posted." -#: ./content/tracker.py:354 +#: ./content/tracker.py:361 #, fuzzy msgid "Poi_help_mailingList" msgstr "Ustawienie tego pola oraz zaznaczenie opcji \"Powiadomienia e-mail\" spowoduje wysłanie na wskazany adres powiadomień o nowych zgłoszeniach i odpowiedziach do nich. Jeżeli adres nie zostanie ustawiony, powiadomienia będą wysyłane do każdej z osób oddzielnie." @@ -324,31 +324,31 @@ msgstr "Wpisz odpowiedź poniżej" # ./content/PoiTracker.py #. Default: "If selected, all tracker assignees above will receive an email for new issues and all issue responses. Issue watchers will receive an email for all issue responses. Issue submitters will receive an email when the issue has been resolved." -#: ./content/tracker.py:338 +#: ./content/tracker.py:345 #, fuzzy msgid "Poi_help_sendNotificationEmails" msgstr "Opcja aktywuje wysyłanie powiadomień. Osoby odpowiedzialne dostaną wiadomość e-mail o dodaniu nowego zgłoszenia lub odpowiedzi. Osoba zgłaszająca otrzyma powiadomienie o dodaniu nowej odpowiedz lub o zamknięciu zgłoszenia." # ./content/PoiTracker.py #. Default: "Please enter the URL to the related repository, e.g.: https://github.com/collective/Products.Poi/commit/%(rev)s for Products.Poi." -#: ./content/tracker.py:368 +#: ./content/tracker.py:375 #, fuzzy msgid "Poi_help_svnurl" msgstr "Powiązane repozytorium SVN, np. http://dev.plone.org/changeset/%(rev)s/collective dla produktów z repozytorium Plone collective." #. Default: "Describe the purpose of this tracker" -#: ./content/tracker.py:193 +#: ./content/tracker.py:200 msgid "Poi_help_tracker_description" msgstr "" # ./content/PoiTracker.py #. Default: "Enter a descriptive name for this tracker" -#: ./content/tracker.py:185 +#: ./content/tracker.py:192 msgid "Poi_help_tracker_title" msgstr "Opisowa nazwa Systemu Zgłoszeniowego" #. Default: "Enter the user ids of members who are watching this tracker, one per line. E-mail addresses are allowed too. These persons will receive an email when an issue or response is added to the tracker. Members can also add themselves as watchers." -#: ./content/tracker.py:319 +#: ./content/tracker.py:326 msgid "Poi_help_tracker_watchers" msgstr "" @@ -358,37 +358,37 @@ msgid "Poi_issues_label" msgstr "" #. Default: "Assignees" -#: ./content/tracker.py:303 +#: ./content/tracker.py:310 msgid "Poi_label_assignees" msgstr "" # ./content/PoiTracker.py #. Default: "Areas" -#: ./content/tracker.py:212 +#: ./content/tracker.py:219 msgid "Poi_label_availableAreas" msgstr "Dostępne obszary" # ./content/PoiTracker.py #. Default: "Issue types" -#: ./content/tracker.py:235 +#: ./content/tracker.py:242 msgid "Poi_label_availableIssueTypes" msgstr "Dostępne typy zgłoszeń" # ./content/PoiTracker.py #. Default: "Available releases" -#: ./content/tracker.py:283 +#: ./content/tracker.py:290 msgid "Poi_label_availableReleases" msgstr "Dostępne wydania" # ./content/PoiTracker.py #. Default: "Available severities" -#: ./content/tracker.py:257 +#: ./content/tracker.py:264 msgid "Poi_label_availableSeverities" msgstr "Dostępne priorytety" # ./content/PoiTracker.py #. Default: "Default severity" -#: ./content/tracker.py:269 +#: ./content/tracker.py:276 msgid "Poi_label_defaultSeverity" msgstr "Domyślny priorytet" @@ -475,7 +475,7 @@ msgstr "" # ./content/PoiTracker.py #. Default: "Mailing list" -#: ./content/tracker.py:350 +#: ./content/tracker.py:357 msgid "Poi_label_mailingList" msgstr "Lista mailingowa" @@ -496,19 +496,19 @@ msgstr "Zmień docelowe wydanie" # ./content/PoiTracker.py #. Default: "Send notification emails" -#: ./content/tracker.py:334 +#: ./content/tracker.py:341 msgid "Poi_label_sendNotificationEmails" msgstr "Powiadomienia e-mail" # ./content/PoiTracker.py #. Default: "URL to Repository" -#: ./content/tracker.py:366 +#: ./content/tracker.py:373 #, fuzzy msgid "Poi_label_svnurl" msgstr "URL do SVN" #. Default: "Watchers" -#: ./content/tracker.py:318 +#: ./content/tracker.py:325 msgid "Poi_label_tracker_watchers" msgstr "" @@ -570,7 +570,7 @@ msgstr "Szukaj" msgid "Severity" msgstr "Priorytet" -#: ./content/tracker.py:171 +#: ./content/tracker.py:178 msgid "Short Name" msgstr "" @@ -597,7 +597,7 @@ msgstr "" msgid "This is an automated email, please do not reply." msgstr "" -#: ./content/tracker.py:174 +#: ./content/tracker.py:181 msgid "Title" msgstr "" @@ -624,7 +624,7 @@ msgid "batch_x_items_matching_your_criteria" msgstr "" #. Default: "Description" -#: ./content/tracker.py:192 +#: ./content/tracker.py:199 msgid "description" msgstr "" @@ -639,7 +639,7 @@ msgid "description_no_results_found" msgstr "" #. Default: "Help Text" -#: ./content/tracker.py:201 +#: ./content/tracker.py:208 msgid "help_text" msgstr "" @@ -1092,7 +1092,7 @@ msgid "stop_watching_this" msgstr "" #. Default: "Title" -#: ./content/tracker.py:184 +#: ./content/tracker.py:191 msgid "title" msgstr "" diff --git a/Products/Poi/locales/pt/LC_MESSAGES/Poi.po b/Products/Poi/locales/pt/LC_MESSAGES/Poi.po index 120c26a5..0ebc083a 100644 --- a/Products/Poi/locales/pt/LC_MESSAGES/Poi.po +++ b/Products/Poi/locales/pt/LC_MESSAGES/Poi.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Poi 1.1.2\n" -"POT-Creation-Date: 2020-09-01 13:08+0000\n" +"POT-Creation-Date: 2020-09-01 18:55+0000\n" "PO-Revision-Date: 2008-11-19 17:32-0000\n" "Last-Translator: Nuno Cruz \n" "Language-Team: NWEB \n" @@ -47,7 +47,7 @@ msgstr "" msgid "An attachment has been added with id ${id}." msgstr "" -#: ./content/tracker.py:230 +#: ./content/tracker.py:237 msgid "Area" msgstr "" @@ -72,7 +72,7 @@ msgstr "" msgid "Delete" msgstr "Apagar" -#: ./content/tracker.py:177 +#: ./content/tracker.py:184 msgid "Description" msgstr "" @@ -84,7 +84,7 @@ msgstr "Editar" msgid "Edit issue" msgstr "Editar ocorrência" -#: ./content/tracker.py:304 +#: ./content/tracker.py:311 msgid "Enter users who will be responsible for solving the issues. Users also need to be added as Watchers to receive notifications." msgstr "" @@ -109,7 +109,7 @@ msgstr "" msgid "Issue Information" msgstr "" -#: ./content/tracker.py:252 +#: ./content/tracker.py:259 msgid "Issue Type" msgstr "" @@ -180,36 +180,36 @@ msgid "Poi_automatic_link_repository_help" msgstr "" #. Default: "Enter the issue topics/areas for this tracker." -#: ./content/tracker.py:214 +#: ./content/tracker.py:221 #, fuzzy msgid "Poi_help_availableAreas" msgstr "Indique os tópicos/áreas de ocorrências para este gestor (uma especificação por linha). O formato é \"Nome Curto | Título | Descrição\". " #. Default: "Enter the issue types for this tracker." -#: ./content/tracker.py:237 +#: ./content/tracker.py:244 #, fuzzy msgid "Poi_help_availableIssueTypes" msgstr "Indique os tipos de ocorrências para este gestor (uma especificação por linha). O formato é \"Nome Curto | Título | Descrição\". " #. Default: "Enter the releases which issues can be assigned to, one per line. If no releases are entered, issues will not be organized by release." -#: ./content/tracker.py:287 +#: ./content/tracker.py:294 #, fuzzy msgid "Poi_help_availableReleases" msgstr "Indique as versões as quais as ocorrências podem ser relacionadas, uma por linha. Se nenhuma versão for informada, as ocorrência não serão organizadas por versão." #. Default: "Enter the different type of issue severities that should be available, one per line." -#: ./content/tracker.py:260 +#: ./content/tracker.py:267 msgid "Poi_help_availableSeverities" msgstr "Indique os valores distintos possíveis para a gravidade das ocorrências (um por linha)." #. Default: "Select the default severity for new issues." -#: ./content/tracker.py:274 +#: ./content/tracker.py:281 msgid "Poi_help_defaultSeverity" msgstr "Selecione a gravidade padrão para novas ocorrências." # ./content/PoiTracker.py #. Default: "Enter any introductory help text you'd like to display on the tracker front page." -#: ./content/tracker.py:202 +#: ./content/tracker.py:209 msgid "Poi_help_helpText" msgstr "Escreva um texto explicativo que será mostrado na página do gestor." @@ -294,7 +294,7 @@ msgid "Poi_help_issue_watchers" msgstr "" #. Default: "If given, and if 'Send notification emails' is selected, an email will be sent to this address each time a new issue or response is posted." -#: ./content/tracker.py:354 +#: ./content/tracker.py:361 #, fuzzy msgid "Poi_help_mailingList" msgstr "Se preenchido, e se \"Enviar emails de notificação\" estiver selecionado, um email será enviado para este endereço cada vez que uma nova ocorrência ou resposta for criada. Se não for indicado uma lista de distribuição, os responsáveis receberão emails individuais." @@ -323,29 +323,29 @@ msgid "Poi_help_response" msgstr "Por favor, dê a sua resposta." #. Default: "If selected, all tracker assignees above will receive an email for new issues and all issue responses. Issue watchers will receive an email for all issue responses. Issue submitters will receive an email when the issue has been resolved." -#: ./content/tracker.py:338 +#: ./content/tracker.py:345 #, fuzzy msgid "Poi_help_sendNotificationEmails" msgstr "Se seleccionado, gestores de ocorrências receberão um email cada vez que uma nova ocorrência ou resposta for criada. Os autores de ocorrências receberão uma mensagem quando tiverem uma nova resposta ou quando uma ocorrência for resolvida e estiver a aguardar confirmação." # ./content/PoiTracker.py #. Default: "Please enter the URL to the related repository, e.g.: https://github.com/collective/Products.Poi/commit/%(rev)s for Products.Poi." -#: ./content/tracker.py:368 +#: ./content/tracker.py:375 msgid "Poi_help_svnurl" msgstr "" #. Default: "Describe the purpose of this tracker" -#: ./content/tracker.py:193 +#: ./content/tracker.py:200 msgid "Poi_help_tracker_description" msgstr "" #. Default: "Enter a descriptive name for this tracker" -#: ./content/tracker.py:185 +#: ./content/tracker.py:192 msgid "Poi_help_tracker_title" msgstr "Indique um nome descritivo para este gestor." #. Default: "Enter the user ids of members who are watching this tracker, one per line. E-mail addresses are allowed too. These persons will receive an email when an issue or response is added to the tracker. Members can also add themselves as watchers." -#: ./content/tracker.py:319 +#: ./content/tracker.py:326 msgid "Poi_help_tracker_watchers" msgstr "" @@ -355,32 +355,32 @@ msgid "Poi_issues_label" msgstr "" #. Default: "Assignees" -#: ./content/tracker.py:303 +#: ./content/tracker.py:310 msgid "Poi_label_assignees" msgstr "" #. Default: "Areas" -#: ./content/tracker.py:212 +#: ./content/tracker.py:219 msgid "Poi_label_availableAreas" msgstr "Áreas" #. Default: "Issue types" -#: ./content/tracker.py:235 +#: ./content/tracker.py:242 msgid "Poi_label_availableIssueTypes" msgstr "Tipos de ocorrência" #. Default: "Available releases" -#: ./content/tracker.py:283 +#: ./content/tracker.py:290 msgid "Poi_label_availableReleases" msgstr "Versões disponíveis" #. Default: "Available severities" -#: ./content/tracker.py:257 +#: ./content/tracker.py:264 msgid "Poi_label_availableSeverities" msgstr "Gravidades disponíveis" #. Default: "Default severity" -#: ./content/tracker.py:269 +#: ./content/tracker.py:276 msgid "Poi_label_defaultSeverity" msgstr "Gravidade padrão" @@ -465,7 +465,7 @@ msgid "Poi_label_issue_watchers" msgstr "" #. Default: "Mailing list" -#: ./content/tracker.py:350 +#: ./content/tracker.py:357 msgid "Poi_label_mailingList" msgstr "Lista de e-mails" @@ -488,18 +488,18 @@ msgid "Poi_label_newTargetRelease" msgstr "Alterar a versão alvo" #. Default: "Send notification emails" -#: ./content/tracker.py:334 +#: ./content/tracker.py:341 msgid "Poi_label_sendNotificationEmails" msgstr "Notificar por e-mails" # ./content/PoiTracker.py #. Default: "URL to Repository" -#: ./content/tracker.py:366 +#: ./content/tracker.py:373 msgid "Poi_label_svnurl" msgstr "" #. Default: "Watchers" -#: ./content/tracker.py:318 +#: ./content/tracker.py:325 msgid "Poi_label_tracker_watchers" msgstr "" @@ -561,7 +561,7 @@ msgstr "Pesquisar" msgid "Severity" msgstr "" -#: ./content/tracker.py:171 +#: ./content/tracker.py:178 msgid "Short Name" msgstr "" @@ -588,7 +588,7 @@ msgstr "" msgid "This is an automated email, please do not reply." msgstr "" -#: ./content/tracker.py:174 +#: ./content/tracker.py:181 msgid "Title" msgstr "" @@ -615,7 +615,7 @@ msgid "batch_x_items_matching_your_criteria" msgstr "" #. Default: "Description" -#: ./content/tracker.py:192 +#: ./content/tracker.py:199 msgid "description" msgstr "" @@ -630,7 +630,7 @@ msgid "description_no_results_found" msgstr "" #. Default: "Help Text" -#: ./content/tracker.py:201 +#: ./content/tracker.py:208 msgid "help_text" msgstr "" @@ -1083,7 +1083,7 @@ msgid "stop_watching_this" msgstr "" #. Default: "Title" -#: ./content/tracker.py:184 +#: ./content/tracker.py:191 msgid "title" msgstr "" diff --git a/Products/Poi/locales/pt_BR/LC_MESSAGES/Poi.po b/Products/Poi/locales/pt_BR/LC_MESSAGES/Poi.po index 1a6a6bc0..8208fe39 100644 --- a/Products/Poi/locales/pt_BR/LC_MESSAGES/Poi.po +++ b/Products/Poi/locales/pt_BR/LC_MESSAGES/Poi.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: poi-pt-br\n" -"POT-Creation-Date: 2020-09-01 13:08+0000\n" +"POT-Creation-Date: 2020-09-01 18:55+0000\n" "PO-Revision-Date: 2012-04-09 13:59-0300\n" "Last-Translator: Gustavo Lepri \n" "Language-Team: Simples Consultoria \n" @@ -47,7 +47,7 @@ msgstr "" msgid "An attachment has been added with id ${id}." msgstr "" -#: ./content/tracker.py:230 +#: ./content/tracker.py:237 msgid "Area" msgstr "" @@ -72,7 +72,7 @@ msgstr "" msgid "Delete" msgstr "Apagar" -#: ./content/tracker.py:177 +#: ./content/tracker.py:184 msgid "Description" msgstr "" @@ -84,7 +84,7 @@ msgstr "Editar" msgid "Edit issue" msgstr "Editar ocorrência" -#: ./content/tracker.py:304 +#: ./content/tracker.py:311 msgid "Enter users who will be responsible for solving the issues. Users also need to be added as Watchers to receive notifications." msgstr "" @@ -109,7 +109,7 @@ msgstr "" msgid "Issue Information" msgstr "" -#: ./content/tracker.py:252 +#: ./content/tracker.py:259 msgid "Issue Type" msgstr "" @@ -180,36 +180,36 @@ msgid "Poi_automatic_link_repository_help" msgstr "" #. Default: "Enter the issue topics/areas for this tracker." -#: ./content/tracker.py:214 +#: ./content/tracker.py:221 #, fuzzy msgid "Poi_help_availableAreas" msgstr "Informe os tópicos/áreas de ocorrências para este gerenciador, uma especificação por linha. O formato é \"NomeCurto | Título | Descrição\". " #. Default: "Enter the issue types for this tracker." -#: ./content/tracker.py:237 +#: ./content/tracker.py:244 #, fuzzy msgid "Poi_help_availableIssueTypes" msgstr "Informe os tipos de ocorrências para este gerenciador, uma especificação por linha. O formato é \"NomeCurto | Título | Descrição\". " #. Default: "Enter the releases which issues can be assigned to, one per line. If no releases are entered, issues will not be organized by release." -#: ./content/tracker.py:287 +#: ./content/tracker.py:294 #, fuzzy msgid "Poi_help_availableReleases" msgstr "Informe as versões as quais as ocorrências podem ser relacionadas, uma por linha. Se nenhuma versão for informada, as ocorrência não serão organizadas por versão." #. Default: "Enter the different type of issue severities that should be available, one per line." -#: ./content/tracker.py:260 +#: ./content/tracker.py:267 msgid "Poi_help_availableSeverities" msgstr "Informe os valores distintos possíveis para a gravidade das ocorrências, um por linha." #. Default: "Select the default severity for new issues." -#: ./content/tracker.py:274 +#: ./content/tracker.py:281 msgid "Poi_help_defaultSeverity" msgstr "Selecione a gravidade padrão para novas ocorrências." # ./content/PoiTracker.py #. Default: "Enter any introductory help text you'd like to display on the tracker front page." -#: ./content/tracker.py:202 +#: ./content/tracker.py:209 msgid "Poi_help_helpText" msgstr "Digite uma mensagem introdutória a ser exibida na página inicial do gerenciador de ocorrências." @@ -294,7 +294,7 @@ msgid "Poi_help_issue_watchers" msgstr "" #. Default: "If given, and if 'Send notification emails' is selected, an email will be sent to this address each time a new issue or response is posted." -#: ./content/tracker.py:354 +#: ./content/tracker.py:361 #, fuzzy msgid "Poi_help_mailingList" msgstr "Se informado, e se \"Enviar emails de notificação\" estiver selecionado, um email será enviado para este endereço cada vez que uma nova ocorrência ou resposta for criada. Se não for informado um endereço de lista, os responsáveis receberão emails individuais." @@ -323,30 +323,30 @@ msgid "Poi_help_response" msgstr "Por favor, informe a sua resposta abaixo." #. Default: "If selected, all tracker assignees above will receive an email for new issues and all issue responses. Issue watchers will receive an email for all issue responses. Issue submitters will receive an email when the issue has been resolved." -#: ./content/tracker.py:338 +#: ./content/tracker.py:345 #, fuzzy msgid "Poi_help_sendNotificationEmails" msgstr "Se selecionado, gerentes de ocorrências receberão um email a cada vez que uma nova ocorrência ou resposta for criada, e os criadores de ocorrências receberão uma mensagem quando tiver uma nova resposta e quando uma ocorrência for resolvida e estiver aguardando confirmação." # ./content/PoiTracker.py #. Default: "Please enter the URL to the related repository, e.g.: https://github.com/collective/Products.Poi/commit/%(rev)s for Products.Poi." -#: ./content/tracker.py:368 +#: ./content/tracker.py:375 #, fuzzy msgid "Poi_help_svnurl" msgstr "Por favor informe a URL do repositório SVN relativo a este gerenciador. ex.http://dev.plone.org/changeset/%(rev)s/collective para produtos no collective do Plone." #. Default: "Describe the purpose of this tracker" -#: ./content/tracker.py:193 +#: ./content/tracker.py:200 msgid "Poi_help_tracker_description" msgstr "Descreva o propósito desta ocorrência" #. Default: "Enter a descriptive name for this tracker" -#: ./content/tracker.py:185 +#: ./content/tracker.py:192 msgid "Poi_help_tracker_title" msgstr "Informe um nome que descreva este gerenciador." #. Default: "Enter the user ids of members who are watching this tracker, one per line. E-mail addresses are allowed too. These persons will receive an email when an issue or response is added to the tracker. Members can also add themselves as watchers." -#: ./content/tracker.py:319 +#: ./content/tracker.py:326 msgid "Poi_help_tracker_watchers" msgstr "" @@ -356,32 +356,32 @@ msgid "Poi_issues_label" msgstr "" #. Default: "Assignees" -#: ./content/tracker.py:303 +#: ./content/tracker.py:310 msgid "Poi_label_assignees" msgstr "" #. Default: "Areas" -#: ./content/tracker.py:212 +#: ./content/tracker.py:219 msgid "Poi_label_availableAreas" msgstr "Áreas" #. Default: "Issue types" -#: ./content/tracker.py:235 +#: ./content/tracker.py:242 msgid "Poi_label_availableIssueTypes" msgstr "Tipos de Ocorrências" #. Default: "Available releases" -#: ./content/tracker.py:283 +#: ./content/tracker.py:290 msgid "Poi_label_availableReleases" msgstr "Versões Disponíveis" #. Default: "Available severities" -#: ./content/tracker.py:257 +#: ./content/tracker.py:264 msgid "Poi_label_availableSeverities" msgstr "Gravidades Disponíveis" #. Default: "Default severity" -#: ./content/tracker.py:269 +#: ./content/tracker.py:276 msgid "Poi_label_defaultSeverity" msgstr "Gravidade Padrão" @@ -466,7 +466,7 @@ msgid "Poi_label_issue_watchers" msgstr "" #. Default: "Mailing list" -#: ./content/tracker.py:350 +#: ./content/tracker.py:357 msgid "Poi_label_mailingList" msgstr "Lista de Emails" @@ -489,19 +489,19 @@ msgid "Poi_label_newTargetRelease" msgstr "Alterar a versão" #. Default: "Send notification emails" -#: ./content/tracker.py:334 +#: ./content/tracker.py:341 msgid "Poi_label_sendNotificationEmails" msgstr "Notificar por Emails" # ./content/PoiTracker.py #. Default: "URL to Repository" -#: ./content/tracker.py:366 +#: ./content/tracker.py:373 #, fuzzy msgid "Poi_label_svnurl" msgstr "URL para o SVN" #. Default: "Watchers" -#: ./content/tracker.py:318 +#: ./content/tracker.py:325 msgid "Poi_label_tracker_watchers" msgstr "" @@ -563,7 +563,7 @@ msgstr "Buscar" msgid "Severity" msgstr "Severidade" -#: ./content/tracker.py:171 +#: ./content/tracker.py:178 msgid "Short Name" msgstr "" @@ -590,7 +590,7 @@ msgstr "" msgid "This is an automated email, please do not reply." msgstr "" -#: ./content/tracker.py:174 +#: ./content/tracker.py:181 msgid "Title" msgstr "" @@ -617,7 +617,7 @@ msgid "batch_x_items_matching_your_criteria" msgstr "" #. Default: "Description" -#: ./content/tracker.py:192 +#: ./content/tracker.py:199 msgid "description" msgstr "" @@ -632,7 +632,7 @@ msgid "description_no_results_found" msgstr "" #. Default: "Help Text" -#: ./content/tracker.py:201 +#: ./content/tracker.py:208 msgid "help_text" msgstr "" @@ -1085,7 +1085,7 @@ msgid "stop_watching_this" msgstr "" #. Default: "Title" -#: ./content/tracker.py:184 +#: ./content/tracker.py:191 msgid "title" msgstr "" diff --git a/Products/Poi/locales/zh/LC_MESSAGES/Poi.po b/Products/Poi/locales/zh/LC_MESSAGES/Poi.po index e4e5c702..8b0c7690 100644 --- a/Products/Poi/locales/zh/LC_MESSAGES/Poi.po +++ b/Products/Poi/locales/zh/LC_MESSAGES/Poi.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Poi\n" -"POT-Creation-Date: 2020-09-01 13:08+0000\n" +"POT-Creation-Date: 2020-09-01 18:55+0000\n" "PO-Revision-Date: 2005-12-26 03:19 +0000\n" "Last-Translator: Junyong Pan \n" "Language-Team: LANGUAGE \n" @@ -45,7 +45,7 @@ msgstr "" msgid "An attachment has been added with id ${id}." msgstr "" -#: ./content/tracker.py:230 +#: ./content/tracker.py:237 msgid "Area" msgstr "" @@ -70,7 +70,7 @@ msgstr "" msgid "Delete" msgstr "删除" -#: ./content/tracker.py:177 +#: ./content/tracker.py:184 msgid "Description" msgstr "" @@ -82,7 +82,7 @@ msgstr "编辑" msgid "Edit issue" msgstr "" -#: ./content/tracker.py:304 +#: ./content/tracker.py:311 msgid "Enter users who will be responsible for solving the issues. Users also need to be added as Watchers to receive notifications." msgstr "" @@ -107,7 +107,7 @@ msgstr "" msgid "Issue Information" msgstr "" -#: ./content/tracker.py:252 +#: ./content/tracker.py:259 msgid "Issue Type" msgstr "" @@ -179,40 +179,40 @@ msgstr "" # ./content/PoiTracker.py #. Default: "Enter the issue topics/areas for this tracker." -#: ./content/tracker.py:214 +#: ./content/tracker.py:221 #, fuzzy msgid "Poi_help_availableAreas" msgstr "输入跟踪器中问题的主题或者领域,每行输入一个。格式是“代号 | 标题 | 描述”。" # ./content/PoiTracker.py #. Default: "Enter the issue types for this tracker." -#: ./content/tracker.py:237 +#: ./content/tracker.py:244 #, fuzzy msgid "Poi_help_availableIssueTypes" msgstr "输入这个跟踪器的问题类型,每行输入一个。格式是“代号 | 标题 | 描述”。" # ./content/PoiTracker.py #. Default: "Enter the releases which issues can be assigned to, one per line. If no releases are entered, issues will not be organized by release." -#: ./content/tracker.py:287 +#: ./content/tracker.py:294 #, fuzzy msgid "Poi_help_availableReleases" msgstr "输入问题可分配的版本号,每行一个。如果没有发行版本,问题就不会按照版本组织。" # ./content/PoiTracker.py #. Default: "Enter the different type of issue severities that should be available, one per line." -#: ./content/tracker.py:260 +#: ./content/tracker.py:267 msgid "Poi_help_availableSeverities" msgstr "输入不同类型的问题可选严重性,每行一个。" # ./content/PoiTracker.py #. Default: "Select the default severity for new issues." -#: ./content/tracker.py:274 +#: ./content/tracker.py:281 msgid "Poi_help_defaultSeverity" msgstr "选择问题的默认严重性" # ./content/PoiTracker.py #. Default: "Enter any introductory help text you'd like to display on the tracker front page." -#: ./content/tracker.py:202 +#: ./content/tracker.py:209 msgid "Poi_help_helpText" msgstr "" @@ -300,7 +300,7 @@ msgstr "" # ./content/PoiTracker.py #. Default: "If given, and if 'Send notification emails' is selected, an email will be sent to this address each time a new issue or response is posted." -#: ./content/tracker.py:354 +#: ./content/tracker.py:361 #, fuzzy msgid "Poi_help_mailingList" msgstr "如果提供,而且如果“发送通知邮件”选中,每次张贴新的问题或者答复时,都将有一个通知邮件发送到这个地址。如果没有提供邮件地址,就只有管理人员收到邮件。" @@ -331,30 +331,30 @@ msgstr "请在下面填写答复" # ./content/PoiTracker.py #. Default: "If selected, all tracker assignees above will receive an email for new issues and all issue responses. Issue watchers will receive an email for all issue responses. Issue submitters will receive an email when the issue has been resolved." -#: ./content/tracker.py:338 +#: ./content/tracker.py:345 #, fuzzy msgid "Poi_help_sendNotificationEmails" msgstr "如果选中,一旦张贴新的问题或者答复,管理人员将收到一个通知邮件;问题的提交人将在有新的答复,或问题解决、等待确认的时候收到通知邮件。" # ./content/PoiTracker.py #. Default: "Please enter the URL to the related repository, e.g.: https://github.com/collective/Products.Poi/commit/%(rev)s for Products.Poi." -#: ./content/tracker.py:368 +#: ./content/tracker.py:375 msgid "Poi_help_svnurl" msgstr "" #. Default: "Describe the purpose of this tracker" -#: ./content/tracker.py:193 +#: ./content/tracker.py:200 msgid "Poi_help_tracker_description" msgstr "" # ./content/PoiTracker.py #. Default: "Enter a descriptive name for this tracker" -#: ./content/tracker.py:185 +#: ./content/tracker.py:192 msgid "Poi_help_tracker_title" msgstr "给跟踪器输入一个描述名" #. Default: "Enter the user ids of members who are watching this tracker, one per line. E-mail addresses are allowed too. These persons will receive an email when an issue or response is added to the tracker. Members can also add themselves as watchers." -#: ./content/tracker.py:319 +#: ./content/tracker.py:326 msgid "Poi_help_tracker_watchers" msgstr "" @@ -364,37 +364,37 @@ msgid "Poi_issues_label" msgstr "" #. Default: "Assignees" -#: ./content/tracker.py:303 +#: ./content/tracker.py:310 msgid "Poi_label_assignees" msgstr "" # ./content/PoiTracker.py #. Default: "Areas" -#: ./content/tracker.py:212 +#: ./content/tracker.py:219 msgid "Poi_label_availableAreas" msgstr "领域" # ./content/PoiTracker.py #. Default: "Issue types" -#: ./content/tracker.py:235 +#: ./content/tracker.py:242 msgid "Poi_label_availableIssueTypes" msgstr "问题类型" # ./content/PoiTracker.py #. Default: "Available releases" -#: ./content/tracker.py:283 +#: ./content/tracker.py:290 msgid "Poi_label_availableReleases" msgstr "可用的版本" # ./content/PoiTracker.py #. Default: "Available severities" -#: ./content/tracker.py:257 +#: ./content/tracker.py:264 msgid "Poi_label_availableSeverities" msgstr "可用的严重性" # ./content/PoiTracker.py #. Default: "Default severity" -#: ./content/tracker.py:269 +#: ./content/tracker.py:276 msgid "Poi_label_defaultSeverity" msgstr "默认严重性" @@ -482,7 +482,7 @@ msgstr "" # ./content/PoiTracker.py #. Default: "Mailing list" -#: ./content/tracker.py:350 +#: ./content/tracker.py:357 msgid "Poi_label_mailingList" msgstr "邮件列表" @@ -506,18 +506,18 @@ msgstr "" # ./content/PoiTracker.py #. Default: "Send notification emails" -#: ./content/tracker.py:334 +#: ./content/tracker.py:341 msgid "Poi_label_sendNotificationEmails" msgstr "发送一个通知邮件" # ./content/PoiTracker.py #. Default: "URL to Repository" -#: ./content/tracker.py:366 +#: ./content/tracker.py:373 msgid "Poi_label_svnurl" msgstr "" #. Default: "Watchers" -#: ./content/tracker.py:318 +#: ./content/tracker.py:325 msgid "Poi_label_tracker_watchers" msgstr "" @@ -579,7 +579,7 @@ msgstr "" msgid "Severity" msgstr "" -#: ./content/tracker.py:171 +#: ./content/tracker.py:178 msgid "Short Name" msgstr "" @@ -606,7 +606,7 @@ msgstr "" msgid "This is an automated email, please do not reply." msgstr "" -#: ./content/tracker.py:174 +#: ./content/tracker.py:181 msgid "Title" msgstr "" @@ -633,7 +633,7 @@ msgid "batch_x_items_matching_your_criteria" msgstr "" #. Default: "Description" -#: ./content/tracker.py:192 +#: ./content/tracker.py:199 msgid "description" msgstr "" @@ -648,7 +648,7 @@ msgid "description_no_results_found" msgstr "" #. Default: "Help Text" -#: ./content/tracker.py:201 +#: ./content/tracker.py:208 msgid "help_text" msgstr "" @@ -1108,7 +1108,7 @@ msgid "stop_watching_this" msgstr "" #. Default: "Title" -#: ./content/tracker.py:184 +#: ./content/tracker.py:191 msgid "title" msgstr "" From 34c463a6bbdacc1ff46b7ef4fa7fb5c1fc17bcc0 Mon Sep 17 00:00:00 2001 From: Daniele Andreotti Date: Tue, 1 Sep 2020 22:09:27 +0200 Subject: [PATCH 04/10] updated translations --- Products/Poi/browser/templates/poi_issue_search_form.pt | 6 +++--- Products/Poi/locales/Poi.pot | 7 ++++++- Products/Poi/locales/ca/LC_MESSAGES/Poi.po | 7 ++++++- Products/Poi/locales/cs/LC_MESSAGES/Poi.po | 7 ++++++- Products/Poi/locales/da/LC_MESSAGES/Poi.po | 7 ++++++- Products/Poi/locales/de/LC_MESSAGES/Poi.po | 7 ++++++- Products/Poi/locales/es/LC_MESSAGES/Poi.po | 7 ++++++- Products/Poi/locales/fr/LC_MESSAGES/Poi.po | 7 ++++++- Products/Poi/locales/it/LC_MESSAGES/Poi.po | 7 ++++++- Products/Poi/locales/ja/LC_MESSAGES/Poi.po | 7 ++++++- Products/Poi/locales/nl/LC_MESSAGES/Poi.po | 7 ++++++- Products/Poi/locales/no/LC_MESSAGES/Poi.po | 7 ++++++- Products/Poi/locales/pl/LC_MESSAGES/Poi.po | 7 ++++++- Products/Poi/locales/pt/LC_MESSAGES/Poi.po | 7 ++++++- Products/Poi/locales/pt_BR/LC_MESSAGES/Poi.po | 7 ++++++- Products/Poi/locales/zh/LC_MESSAGES/Poi.po | 7 ++++++- 16 files changed, 93 insertions(+), 18 deletions(-) diff --git a/Products/Poi/browser/templates/poi_issue_search_form.pt b/Products/Poi/browser/templates/poi_issue_search_form.pt index cd6ac0c4..56331307 100644 --- a/Products/Poi/browser/templates/poi_issue_search_form.pt +++ b/Products/Poi/browser/templates/poi_issue_search_form.pt @@ -53,9 +53,9 @@ name="exacttext" checked="checked" tal:attributes="value request/form/exacttext|nothing" /> -