1
|
# encoding: utf-8
|
2
|
#
|
3
|
# Redmine plugin to tint issues by age and due date
|
4
|
#
|
5
|
# Copyright © 2018-2020 Stephan Wenzel <stephan.wenzel@drwpatent.de>
|
6
|
#
|
7
|
# This program is free software; you can redistribute it and/or
|
8
|
# modify it under the terms of the GNU General Public License
|
9
|
# as published by the Free Software Foundation; either version 2
|
10
|
# of the License, or (at your option) any later version.
|
11
|
#
|
12
|
# This program is distributed in the hope that it will be useful,
|
13
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
14
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
15
|
# GNU General Public License for more details.
|
16
|
#
|
17
|
# You should have received a copy of the GNU General Public License
|
18
|
# along with this program; if not, write to the Free Software
|
19
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
20
|
#
|
21
|
|
22
|
zh:
|
23
|
project_module_redmine_tint_issues: 'Tint Issues'
|
24
|
|
25
|
redmine_tint_issues:
|
26
|
settings_label_assigned_issues: "assigned issues"
|
27
|
|
28
|
settings_label_current_issue_age: "'current issues' are younger than"
|
29
|
settings_label_old_issue_age: "'old issues' are younger than"
|
30
|
settings_label_older_issue_age: "'older issues' are younger than"
|
31
|
settings_label_veryold_issue_age: "'very old issues' are younger than"
|
32
|
settings_label_ancient_issue_age: "'ancient' issues"
|
33
|
|
34
|
settings_label_hours: "hours"
|
35
|
settings_label_days: "days"
|
36
|
settings_label_weeks: "weeks"
|
37
|
settings_label_months: "months"
|
38
|
|
39
|
settings_label_hasduedate: "has due date"
|
40
|
settings_label_due: "'due' is closer than"
|
41
|
settings_label_moredue: "'more due' is closer than"
|
42
|
settings_label_verydue: "'very due' is closer than"
|
43
|
settings_label_overdue: "overdue "
|
44
|
settings_label_nochoice: "no possible choice"
|
45
|
|
46
|
label_issue_age_base: "Issue age base"
|
47
|
label_age_by_creation_date: "Age by creation date"
|
48
|
help_settings_age_by_creation_date: "Calculate issue age by creation date."
|
49
|
label_age_by_update_date: "Age by update date"
|
50
|
help_settings_age_by_update_date: "Calculate issue age by last update date."
|