1
0
mirror of https://github.com/EDCD/EDMarketConnector.git synced 2025-04-20 19:07:38 +03:00

Suits: Spanish localisation and short names.

The full string for the Flightsuit is 'Traje de vuelo', and we indeed
have 'Traje' as the translation for 'Suit', so the UI comes out as
'Traje:  de vuelo' for this.
This commit is contained in:
Athanasius 2021-05-26 14:58:55 +01:00
parent f46618b61c
commit e93ab9033e

View File

@ -500,12 +500,16 @@ ship_name_map = {
edmc_suit_shortnames = {
'Flight Suit': 'Flight', # EN
'Flug-Anzug': 'Flug', # DE
'Traje de vuelo': 'de vuelo', # ES
'Artemis Suit': 'Artemis', # EN
'Artemis-Anzug': 'Artemis', # DE
'Traje Artemis': 'Artemis', # ES
'Dominator Suit': 'Dominator', # EN
'Dominator-Anzug': 'Dominator', # DE
'Traje Dominator': 'Dominator', # ES
'Maverick Suit': 'Maverick', # EN
'Maverick-Anzug': 'Maverick', # DE
'Traje Maverick': 'Maverick', # ES
}
edmc_suit_symbol_localised = {
@ -536,4 +540,10 @@ edmc_suit_symbol_localised = {
'tacticalsuit': 'Dominator-Anzug',
'utilitysuit': 'Maverick-Anzug',
},
r'Spanish\ES': {
'flightsuit': 'Traje de vuelo',
'explorationsuit': 'Traje Artemis',
'tacticalsuit': 'Traje Dominator',
'utilitysuit': 'Traje Maverick',
},
}