-
Notifications
You must be signed in to change notification settings - Fork 12
Other italian translations #55
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: python3
Are you sure you want to change the base?
Changes from all commits
2f5b289
f1bd6cd
d3c397e
34c463a
82b3efb
ff8e8b9
4f1d4cb
c88aaa8
12f7895
6d7006f
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -53,15 +53,15 @@ | |
| tal:content="python:here.toLocalizedTime(response.date, long_format=True)" /> | ||
| <div class="metadataChanges"> | ||
| <tal:rep repeat="delta response/changes"> | ||
| <span i18n:translate="" tal:content="string:${delta/name}" />: | ||
| <span i18n:domain="Poi" i18n:translate="" tal:content="string:${delta/name}" />: | ||
| <span class="issueChange" | ||
| i18n:translate="" | ||
| i18n:domain="plone" | ||
| i18n:domain="Poi" | ||
| tal:content="delta/before" /> | ||
| → | ||
| <span class="issueChange" | ||
| i18n:translate="" | ||
| i18n:domain="plone" | ||
| i18n:domain="Poi" | ||
| tal:content="delta/after" /> | ||
| <br tal:condition="not:repeat/delta/end" /> | ||
| </tal:rep> | ||
|
|
@@ -257,7 +257,7 @@ | |
| </div> | ||
|
|
||
| <select name="current_assignee"> | ||
| <option value=""> | ||
| <option value="" i18n:translate="Poi_label_noneResponsibleManager"> | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. What does the label 'no change' have to do with a 'none responsible manager?' |
||
| No change | ||
| </option> | ||
| <tal:assignees repeat="option view/assignees_for_display"> | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -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) | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You are using |
||
| transitions.append(dict(value=tdef['id'], | ||
| label=tdef['title_or_id'], checked='')) | ||
| label=label_value, checked='')) | ||
| return transitions | ||
|
|
||
| @property | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Are you sure this isn't in the
plonetranslation domain?I am not sure, just asking.