Skip to content

Commit 1ae7520

Browse files
authored
Merge pull request #434 from PRUNplanner/crowdin-translations
New Crowdin updates
2 parents 9284795 + 6d550c4 commit 1ae7520

52 files changed

Lines changed: 1594 additions & 70 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

src/locales/de_DE/common.json

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,18 @@
3131
}
3232
},
3333
"buttons": {
34+
"create": "Create",
3435
"save": "Speichern",
3536
"reload": "Aktualisieren",
3637
"show": "Anzeigen",
3738
"hide": "Verstecken",
38-
"help": "Hilfe"
39+
"help": "Hilfe",
40+
"search": "Search",
41+
"default": "Default",
42+
"select_all": "Select All",
43+
"yes": "Ja",
44+
"no": "Nein",
45+
"delete": "Löschen",
46+
"cancel": "Abbrechen"
3947
}
4048
}

src/locales/de_DE/empire.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"view_title": "Empire",
3+
"switch_empire": "Switch Empire",
34
"views": {
45
"material_io": "Material I/O",
56
"analysis": "Analyse",
@@ -10,8 +11,8 @@
1011
"form": {
1112
"name": "Name",
1213
"faction": "Fraktion",
13-
"permits_total": "@:terms.permits(2) gesamt",
14-
"permits_used": "@:terms.permits(2) benutzt"
14+
"permits_total": "@:terms.permits_plural Total",
15+
"permits_used": "@:terms.permits_plural Used"
1516
},
1617
"sync_warning": {
1718
"title": "Unstimmigkeit erkannt:",

src/locales/de_DE/management.json

Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
{
2+
"view_title": "Management",
3+
"title": "Management",
4+
"empire": {
5+
"title": "Empire Configuration",
6+
"description": "Removing empires will not delete any associated plans — they will simply become unassigned. You can create edit existing empires in the Empire View. To ensure correct plan efficiency calculations, make sure each empire has your Faction and the appropriate Permits.",
7+
"buttons": {
8+
"update_cx": "Update CX Assignments",
9+
"new_empire": "New Empire"
10+
},
11+
"form": {
12+
"empire_name": "@:terms.empire Name",
13+
"faction": "@:terms.faction",
14+
"permits_total": "@:terms.permits_plural Total",
15+
"permits_used": "@:terms.permits_plural Used"
16+
},
17+
"table": {
18+
"empire_name": "@:terms.empire",
19+
"faction": "@:terms.faction",
20+
"permits": "@:terms.permits",
21+
"plans": "@:terms.plans_plural",
22+
"cx": "CX",
23+
"nodata_title": "No Empires available",
24+
"nodata_label": "Create your first Empire"
25+
}
26+
},
27+
"cx": {
28+
"title": "CX Configuration",
29+
"description": "Removing a CX preference will delete all its exchange and material settings. Assigned empires will remain unaffected, but they will no longer use the removed preferences. Make sure to assign a new CX preference.",
30+
"buttons": {
31+
"new_cx": "New @:terms.cx"
32+
},
33+
"form": {
34+
"cx_name": "@:terms.cx Name",
35+
"cx_placeholder": "CX Name (max. 100 characters)"
36+
},
37+
"table": {
38+
"cx_name": "@:terms.cx Name",
39+
"assigned_to_empire": "Assigned to Empire?",
40+
"nodata_title": "No @:terms.cx available.",
41+
"nodata_label": "Create your first Exchange Preference."
42+
}
43+
},
44+
"filter": {
45+
"title": "Filter",
46+
"plan": "@:terms.plan",
47+
"active_empire": "Active @:terms.empire"
48+
},
49+
"assignments": {
50+
"title": "Plan ↔ Empire Assignments",
51+
"description": "Every planned base can be assigned to multiple empires. This allows you to simultaneously keep track of your existing Prosperous Universe empire, corporation production chains or future expansion plans.",
52+
"buttons": {
53+
"update_assignments": "Update Plan Assignments",
54+
"reload": "@:common.buttons.reload"
55+
},
56+
"deletion": {
57+
"title": "Confirm Plan Deletion",
58+
"content": "Are you sure? Deleting the Plan can't be reversed."
59+
},
60+
"table": {
61+
"plan": "@:terms.plan",
62+
"planet": "@:terms.planets",
63+
"configuration": "Configuration",
64+
"nodata_title": "No @:terms.plans available",
65+
"nodata_label": "Use Planet Search to create your first @:terms.plans."
66+
}
67+
}
68+
}
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
{
2+
"view_title": "Planet Search",
3+
"title": "Planet Search",
4+
"basic": {
5+
"title": "Plan Name or ID",
6+
"description": "Search must include at least 3 characters. Example Searches: \"OT-580b\", \"Montem\", \"OT-\" or \"580\".",
7+
"form_id": "ID"
8+
},
9+
"advanced": {
10+
"title": "Advanced Search",
11+
"labels": {
12+
"materials": "@:terms.materials_plural",
13+
"cogc": "@:terms.cogc",
14+
"min_richness": "Min. Richness %",
15+
"planet_features": "Planet Features",
16+
"system_distance": "System Distance",
17+
"planet_environment": "Planet Environment"
18+
}
19+
},
20+
"results": {
21+
"columns": {
22+
"plan": "Plan",
23+
"planet": "Planet",
24+
"fertility": "@:terms.fertility",
25+
"resources": "Resources",
26+
"popr": "@:terms.popr",
27+
"cogc_program": "COGC Program",
28+
"environment": "Environment",
29+
"infrastructure": "Infrastructure",
30+
"distance": "Distance"
31+
},
32+
"colony_ship_required": "Colony Ship Required"
33+
}
34+
}

src/locales/de_DE/terms.json

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,14 @@
11
{
2-
"plan": "Plan",
2+
"plan": "Plan | Plans",
3+
"plans_plural": "Plans",
34
"empire": "Imperium | Imperien",
5+
"cx": "CX | CXs",
6+
"cx_plural": "CXs",
47
"planets": "Planet | Planeten",
8+
"faction": "Faction",
59
"cogc": "COGC",
610
"permits": "Fläche | Fläche",
11+
"permits_plural": "Permits",
712
"profit": "Profit",
813
"revenue": "Umsatz",
914
"cost": "Kosten",
@@ -15,5 +20,16 @@
1520
"delta_price": "ȼ Delta",
1621
"production": "Produktion",
1722
"consumption": "Verbrauch",
18-
"materials": "Material | Materialien"
23+
"materials": "Material | Materialien",
24+
"materials_plural": "Materials",
25+
"surface": "Surface",
26+
"gravity": "Gravity",
27+
"temperature": "Temperature",
28+
"pressure": "Pressure",
29+
"high": "High",
30+
"low": "Low",
31+
"rocky": "Rocky",
32+
"gaseous": "Gaseous",
33+
"fertility": "Fertility",
34+
"popr": "POPR"
1935
}

src/locales/es_ES/common.json

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,18 @@
3131
}
3232
},
3333
"buttons": {
34+
"create": "Create",
3435
"save": "Save",
3536
"reload": "Reload",
3637
"show": "Show",
3738
"hide": "Hide",
38-
"help": "Help"
39+
"help": "Help",
40+
"search": "Search",
41+
"default": "Default",
42+
"select_all": "Select All",
43+
"yes": "Yes",
44+
"no": "No",
45+
"delete": "Delete",
46+
"cancel": "Cancel"
3947
}
4048
}

src/locales/es_ES/empire.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"view_title": "Empire",
3+
"switch_empire": "Switch Empire",
34
"views": {
45
"material_io": "Material I/O",
56
"analysis": "Analysis",
@@ -10,8 +11,8 @@
1011
"form": {
1112
"name": "Name",
1213
"faction": "Faction",
13-
"permits_total": "@:terms.permits(2) Total",
14-
"permits_used": "@:terms.permits(2) Used"
14+
"permits_total": "@:terms.permits_plural Total",
15+
"permits_used": "@:terms.permits_plural Used"
1516
},
1617
"sync_warning": {
1718
"title": "Mismatch Detected:",

src/locales/es_ES/management.json

Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
{
2+
"view_title": "Management",
3+
"title": "Management",
4+
"empire": {
5+
"title": "Empire Configuration",
6+
"description": "Removing empires will not delete any associated plans — they will simply become unassigned. You can create edit existing empires in the Empire View. To ensure correct plan efficiency calculations, make sure each empire has your Faction and the appropriate Permits.",
7+
"buttons": {
8+
"update_cx": "Update CX Assignments",
9+
"new_empire": "New Empire"
10+
},
11+
"form": {
12+
"empire_name": "@:terms.empire Name",
13+
"faction": "@:terms.faction",
14+
"permits_total": "@:terms.permits_plural Total",
15+
"permits_used": "@:terms.permits_plural Used"
16+
},
17+
"table": {
18+
"empire_name": "@:terms.empire",
19+
"faction": "@:terms.faction",
20+
"permits": "@:terms.permits",
21+
"plans": "@:terms.plans_plural",
22+
"cx": "CX",
23+
"nodata_title": "No Empires available",
24+
"nodata_label": "Create your first Empire"
25+
}
26+
},
27+
"cx": {
28+
"title": "CX Configuration",
29+
"description": "Removing a CX preference will delete all its exchange and material settings. Assigned empires will remain unaffected, but they will no longer use the removed preferences. Make sure to assign a new CX preference.",
30+
"buttons": {
31+
"new_cx": "New @:terms.cx"
32+
},
33+
"form": {
34+
"cx_name": "@:terms.cx Name",
35+
"cx_placeholder": "CX Name (max. 100 characters)"
36+
},
37+
"table": {
38+
"cx_name": "@:terms.cx Name",
39+
"assigned_to_empire": "Assigned to Empire?",
40+
"nodata_title": "No @:terms.cx available.",
41+
"nodata_label": "Create your first Exchange Preference."
42+
}
43+
},
44+
"filter": {
45+
"title": "Filter",
46+
"plan": "@:terms.plan",
47+
"active_empire": "Active @:terms.empire"
48+
},
49+
"assignments": {
50+
"title": "Plan ↔ Empire Assignments",
51+
"description": "Every planned base can be assigned to multiple empires. This allows you to simultaneously keep track of your existing Prosperous Universe empire, corporation production chains or future expansion plans.",
52+
"buttons": {
53+
"update_assignments": "Update Plan Assignments",
54+
"reload": "@:common.buttons.reload"
55+
},
56+
"deletion": {
57+
"title": "Confirm Plan Deletion",
58+
"content": "Are you sure? Deleting the Plan can't be reversed."
59+
},
60+
"table": {
61+
"plan": "@:terms.plan",
62+
"planet": "@:terms.planets",
63+
"configuration": "Configuration",
64+
"nodata_title": "No @:terms.plans available",
65+
"nodata_label": "Use Planet Search to create your first @:terms.plans."
66+
}
67+
}
68+
}
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
{
2+
"view_title": "Planet Search",
3+
"title": "Planet Search",
4+
"basic": {
5+
"title": "Plan Name or ID",
6+
"description": "Search must include at least 3 characters. Example Searches: \"OT-580b\", \"Montem\", \"OT-\" or \"580\".",
7+
"form_id": "ID"
8+
},
9+
"advanced": {
10+
"title": "Advanced Search",
11+
"labels": {
12+
"materials": "@:terms.materials_plural",
13+
"cogc": "@:terms.cogc",
14+
"min_richness": "Min. Richness %",
15+
"planet_features": "Planet Features",
16+
"system_distance": "System Distance",
17+
"planet_environment": "Planet Environment"
18+
}
19+
},
20+
"results": {
21+
"columns": {
22+
"plan": "Plan",
23+
"planet": "Planet",
24+
"fertility": "@:terms.fertility",
25+
"resources": "Resources",
26+
"popr": "@:terms.popr",
27+
"cogc_program": "COGC Program",
28+
"environment": "Environment",
29+
"infrastructure": "Infrastructure",
30+
"distance": "Distance"
31+
},
32+
"colony_ship_required": "Colony Ship Required"
33+
}
34+
}

src/locales/es_ES/terms.json

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,14 @@
11
{
2-
"plan": "Plan",
2+
"plan": "Plan | Plans",
3+
"plans_plural": "Plans",
34
"empire": "Empire | Empires",
5+
"cx": "CX | CXs",
6+
"cx_plural": "CXs",
47
"planets": "Planet | Planets",
8+
"faction": "Faction",
59
"cogc": "COGC",
610
"permits": "Permit | Permits",
11+
"permits_plural": "Permits",
712
"profit": "Profit",
813
"revenue": "Revenue",
914
"cost": "Cost",
@@ -15,5 +20,16 @@
1520
"delta_price": "ȼ Delta",
1621
"production": "Production",
1722
"consumption": "Consumption",
18-
"materials": "Material | Materials"
23+
"materials": "Material | Materials",
24+
"materials_plural": "Materials",
25+
"surface": "Surface",
26+
"gravity": "Gravity",
27+
"temperature": "Temperature",
28+
"pressure": "Pressure",
29+
"high": "High",
30+
"low": "Low",
31+
"rocky": "Rocky",
32+
"gaseous": "Gaseous",
33+
"fertility": "Fertility",
34+
"popr": "POPR"
1935
}

0 commit comments

Comments
 (0)