Improved translations for CollectorNumber in Italian and Spanish, and while at it...

...I got rid of duplication for the lblSet col, while also improving translations.
In particular, the "lblSetEdition" column was translated as the "Mistery column" (for some reason :D), whereas a second lblSet2 was instead defined and used, namely "the label tooltip for the Set Columndef".
On this note, this col was also mistranslated in ES, IT, DE - those are the language I could handle so far.
In fact "Set" was intended (and so translated) as "to set" instead as for "Expansion/Edition".
Corrected accordingly! :)
This commit is contained in:
leriomaggio
2021-05-24 15:02:25 +01:00
parent b651c1f9e9
commit d71d10a97f
6 changed files with 14 additions and 18 deletions

View File

@@ -314,18 +314,18 @@ public final class CEditorConstructed extends CDeckEditor<Deck> {
if (gameType == GameType.Oathbreaker) {
PaperCard pc = cmb.getItemManager().getSelectedItem();
if (pc != null && pc.getRules().canBeSignatureSpell()) {
cmb.addMoveItems(localizer.getMessage("lblSet2"), localizer.getMessage("lblassignaturespell"));
cmb.addMoveItems(localizer.getMessage("lblSetEdition"), localizer.getMessage("lblassignaturespell"));
}
else {
cmb.addMoveItems(localizer.getMessage("lblSet2"), localizer.getMessage("lblasoathbreaker"));
cmb.addMoveItems(localizer.getMessage("lblSetEdition"), localizer.getMessage("lblasoathbreaker"));
}
}
else {
cmb.addMoveItems(localizer.getMessage("lblSet2"), localizer.getMessage("lblascommander"));
cmb.addMoveItems(localizer.getMessage("lblSetEdition"), localizer.getMessage("lblascommander"));
}
break;
case Avatar:
cmb.addMoveItems(localizer.getMessage("lblSet2"), localizer.getMessage("lblasavatar"));
cmb.addMoveItems(localizer.getMessage("lblSetEdition"), localizer.getMessage("lblasavatar"));
break;
case Schemes:
cmb.addMoveItems(localizer.getMessage("lblAdd"), localizer.getMessage("lbltoschemedeck"));

View File

@@ -874,8 +874,7 @@ lblSaveLayout=Sichere Layout
#GroupDef.java
lblColor=Farbe
lblColorIdentity=Farbidentität
lblSet=Set
lblSet2=Set
lblSet=Auflage
#Set word has different meanings in other languages
lblDefault=Standard
lblType=Typ
@@ -932,7 +931,7 @@ lblCost=Kosten
ttCost=Kosten
lblDecks=Decks
lblDeleteEdit=Löschen/Bearbeiten
lblSetEdition=Mysteriöse Spalte. Wir wissen nicht, wozu sie gut ist.
lblSetEdition=Auflage
ttFavorite=Favorit
lblFolder=Ordner
ttFormats=In welchem Format das Deck legal ist

View File

@@ -875,7 +875,6 @@ lblSaveLayout=Save Layout
lblColor=Color
lblColorIdentity=Color Identity
lblSet=Set
lblSet2=Set
#Set word has different meanings in other languages
lblDefault=Default
lblType=Type
@@ -926,13 +925,13 @@ lblAIStatus=AI Status
lblCMC=Mana Value
ttCMC=Mana Value
lblCN=CN
ttCN=Collector Number Order
ttCN=Collector Number
ttColor=Color
lblCost=Cost
ttCost=Cost
lblDecks=Decks
lblDeleteEdit=Delete/Edit
lblSetEdition=Mystery column. We don''t know what it does or if that''s what it should do.
lblSetEdition=Set
ttFavorite=Favorite
lblFolder=Folder
ttFormats=Formats deck is legal in

View File

@@ -875,7 +875,6 @@ lblSaveLayout=Guardar disposición de elementos
lblColor=Color
lblColorIdentity=Identidad de color
lblSet=Edición
lblSet2=Establecer
#Set word has different meanings in other languages
lblDefault=por defecto
lblType=Tipo
@@ -926,13 +925,13 @@ lblAIStatus=Estado de la IA
lblCMC=CMC
ttCMC=Coste de maná convertido
lblCN=CN
ttCN=Orden de número de coleccionista
ttCN=Número de coleccionista
ttColor=Color
lblCost=Coste
ttCost=Coste
lblDecks=Mazos
lblDeleteEdit=Borrar/Editar
lblSetEdition=Columna de misterio. No sabemos lo que hace o si eso es lo que debería hacer.
lblSetEdition=Edición
ttFavorite=Favorito
lblFolder=Carpeta
ttFormats=Formatos de mazo en los que es legal

View File

@@ -874,8 +874,7 @@ lblSaveLayout=Salva layout
#GroupDef.java
lblColor=Colore
lblColorIdentity=Identità del colore
lblSet=Impostato
lblSet2=Impostato
lblSet=Espansione
#Set word has different meanings in other languages
lblDefault=Predefinito
lblType=genere
@@ -926,13 +925,13 @@ lblAIStatus=Stato AI
lblCMC=CMC
ttCMC=CMC
lblCN=CN
ttCN=Ordine numero collezionisti
ttCN=Indice Carta nell''Espansione
ttColor=Colore
lblCost=Costo
ttCost=Costo
lblDecks=Decks
lblDeleteEdit=Cancella / Modifica
lblSetEdition=Colonna misteriosa. Non sappiamo cosa fa o se è quello che dovrebbe fare.
lblSetEdition=Espansione
ttFavorite=Preferito
lblFolder=Cartella
ttFormats=Il mazzo dei formati è legale

View File

@@ -451,7 +451,7 @@ public enum ColumnDef {
/**
* The deck edition column, a mystery to us all.
*/
DECK_EDITION("lblSet", "lblSetEdition", 38, true, SortState.DESC,
DECK_EDITION("lblSet", "lblSet", 38, true, SortState.DESC,
new Function<Entry<InventoryItem, Integer>, Comparable<?>>() {
@Override
public Comparable<?> apply(final Entry<InventoryItem, Integer> from) {