Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,15 @@ public boolean isUpdateAvailable() {
return true;
}

@Override
public @NotNull Component getUpdateMessage() {
return Component.translatable("modmenu.updateText", VersionUtil.stripPrefix(this.versionNumber), MODRINTH_TEXT);
}
@Override
public @NotNull Component getUpdateMessage() {
String versionNoPrefix = VersionUtil.stripPrefix(this.versionNumber);
String key = "modmenu.updateText";
if (!Character.isDigit(versionNoPrefix.charAt(0))) {
key += ".nonNumerical";
}
return Component.translatable(key, versionNoPrefix, MODRINTH_TEXT);
}

@Override
public String getDownloadLink() {
Expand Down
1 change: 1 addition & 0 deletions src/main/resources/assets/modmenu/lang/af_za.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@
"modmenu.hasUpdate": "An update is available:",
"modmenu.childHasUpdate": "A child of this mod has an update available.",
"modmenu.updateText": "v%s on %s",
"modmenu.updateText.nonNumeric": "%s on %s",
"modmenu.buymeacoffee": "Buy Me a Coffee",
"modmenu.coindrop": "Coindrop",
"modmenu.crowdin": "Crowdin",
Expand Down
1 change: 1 addition & 0 deletions src/main/resources/assets/modmenu/lang/an-ES.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@
"modmenu.hasUpdate": "An update is available:",
"modmenu.childHasUpdate": "A child of this mod has an update available.",
"modmenu.updateText": "v%s on %s",
"modmenu.updateText.nonNumerical": "%s on %s",
"modmenu.buymeacoffee": "Buy Me a Coffee",
"modmenu.coindrop": "Coindrop",
"modmenu.crowdin": "Crowdin",
Expand Down
1 change: 1 addition & 0 deletions src/main/resources/assets/modmenu/lang/ar_sa.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@
"modmenu.hasUpdate": "An update is available:",
"modmenu.childHasUpdate": "A child of this mod has an update available.",
"modmenu.updateText": "v%s on %s",
"modmenu.updateText.nonNumerical": "%s on %s",
"modmenu.buymeacoffee": "اشترِ لي كوب قهوة",
"modmenu.coindrop": "Coindrop",
"modmenu.crowdin": "Crowdin",
Expand Down
1 change: 1 addition & 0 deletions src/main/resources/assets/modmenu/lang/ast_es.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@
"modmenu.hasUpdate": "An update is available:",
"modmenu.childHasUpdate": "A child of this mod has an update available.",
"modmenu.updateText": "v%s on %s",
"modmenu.updateText.nonNumerical": "%s on %s",
"modmenu.buymeacoffee": "Buy Me a Coffee",
"modmenu.coindrop": "Coindrop",
"modmenu.crowdin": "Crowdin",
Expand Down
1 change: 1 addition & 0 deletions src/main/resources/assets/modmenu/lang/az_az.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@
"modmenu.hasUpdate": "An update is available:",
"modmenu.childHasUpdate": "A child of this mod has an update available.",
"modmenu.updateText": "v%s on %s",
"modmenu.updateText.nonNumerical": "%s on %s",
"modmenu.buymeacoffee": "Buy Me a Coffee",
"modmenu.coindrop": "Coindrop",
"modmenu.crowdin": "Crowdin",
Expand Down
1 change: 1 addition & 0 deletions src/main/resources/assets/modmenu/lang/ba_ru.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@
"modmenu.hasUpdate": "An update is available:",
"modmenu.childHasUpdate": "A child of this mod has an update available.",
"modmenu.updateText": "v%s on %s",
"modmenu.updateText.nonNumerical": "%s on %s",
"modmenu.buymeacoffee": "Buy Me a Coffee",
"modmenu.coindrop": "Coindrop",
"modmenu.crowdin": "Crowdin",
Expand Down
1 change: 1 addition & 0 deletions src/main/resources/assets/modmenu/lang/bak.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@
"modmenu.hasUpdate": "An update is available:",
"modmenu.childHasUpdate": "A child of this mod has an update available.",
"modmenu.updateText": "v%s on %s",
"modmenu.updateText.nonNumerical": "%s on %s",
"modmenu.buymeacoffee": "Buy Me a Coffee",
"modmenu.coindrop": "Coindrop",
"modmenu.crowdin": "Crowdin",
Expand Down
1 change: 1 addition & 0 deletions src/main/resources/assets/modmenu/lang/bar.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@
"modmenu.hasUpdate": "An update is available:",
"modmenu.childHasUpdate": "A child of this mod has an update available.",
"modmenu.updateText": "v%s on %s",
"modmenu.updateText.nonNumerical": "%s on %s",
"modmenu.buymeacoffee": "Kauf mir einen Kaffee",
"modmenu.coindrop": "Coindrop",
"modmenu.crowdin": "Crowdin",
Expand Down
1 change: 1 addition & 0 deletions src/main/resources/assets/modmenu/lang/be_by.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@
"modmenu.experimental": "(Праверка абнаўленняў у Mod Menu з'яўляецца эксперыментам!)",
"modmenu.childHasUpdate": "Абнаўленне дзіцячага мода даступна.",
"modmenu.updateText": "v%s на %s",
"modmenu.updateText.nonNumerical": "%s на %s",
"modmenu.install_version": "Усталяваць версію %s",
"modmenu.downloadLink": "Спампаваць",

Expand Down
1 change: 1 addition & 0 deletions src/main/resources/assets/modmenu/lang/bg_bg.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@
"modmenu.hasUpdate": "An update is available:",
"modmenu.childHasUpdate": "A child of this mod has an update available.",
"modmenu.updateText": "v%s on %s",
"modmenu.updateText.nonNumerical": "%s on %s",
"modmenu.buymeacoffee": "Buy Me a Coffee",
"modmenu.coindrop": "Coindrop",
"modmenu.crowdin": "Crowdin",
Expand Down
1 change: 1 addition & 0 deletions src/main/resources/assets/modmenu/lang/bn-BD.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@
"modmenu.hasUpdate": "An update is available:",
"modmenu.childHasUpdate": "A child of this mod has an update available.",
"modmenu.updateText": "v%s on %s",
"modmenu.updateText.nonNumerical": "%s on %s",
"modmenu.buymeacoffee": "Buy Me a Coffee",
"modmenu.coindrop": "Coindrop",
"modmenu.crowdin": "Crowdin",
Expand Down
1 change: 1 addition & 0 deletions src/main/resources/assets/modmenu/lang/br_fr.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@
"modmenu.hasUpdate": "An update is available:",
"modmenu.childHasUpdate": "A child of this mod has an update available.",
"modmenu.updateText": "v%s on %s",
"modmenu.updateText.nonNumerical": "%s on %s",
"modmenu.buymeacoffee": "Buy Me a Coffee",
"modmenu.coindrop": "Coindrop",
"modmenu.crowdin": "Crowdin",
Expand Down
1 change: 1 addition & 0 deletions src/main/resources/assets/modmenu/lang/brb.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@
"modmenu.hasUpdate": "An update is available:",
"modmenu.childHasUpdate": "A child of this mod has an update available.",
"modmenu.updateText": "v%s on %s",
"modmenu.updateText.nonNumerical": "%s on %s",
"modmenu.buymeacoffee": "Buy Me a Coffee",
"modmenu.coindrop": "Coindrop",
"modmenu.crowdin": "Crowdin",
Expand Down
1 change: 1 addition & 0 deletions src/main/resources/assets/modmenu/lang/bs_ba.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@
"modmenu.hasUpdate": "An update is available:",
"modmenu.childHasUpdate": "A child of this mod has an update available.",
"modmenu.updateText": "v%s on %s",
"modmenu.updateText.nonNumerical": "%s on %s",
"modmenu.buymeacoffee": "Buy Me a Coffee",
"modmenu.coindrop": "Coindrop",
"modmenu.crowdin": "Crowdin",
Expand Down
1 change: 1 addition & 0 deletions src/main/resources/assets/modmenu/lang/ca_es.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@
"modmenu.hasUpdate": "An update is available:",
"modmenu.childHasUpdate": "A child of this mod has an update available.",
"modmenu.updateText": "v%s on %s",
"modmenu.updateText.nonNumerical": "%s on %s",
"modmenu.buymeacoffee": "Buy Me a Coffee",
"modmenu.coindrop": "Coindrop",
"modmenu.crowdin": "Crowdin",
Expand Down
1 change: 1 addition & 0 deletions src/main/resources/assets/modmenu/lang/chn.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@
"modmenu.hasUpdate": "An update is available:",
"modmenu.childHasUpdate": "A child of this mod has an update available.",
"modmenu.updateText": "v%s on %s",
"modmenu.updateText.nonNumerical": "%s on %s",
"modmenu.buymeacoffee": "Buy Me a Coffee",
"modmenu.coindrop": "Coindrop",
"modmenu.crowdin": "Crowdin",
Expand Down
1 change: 1 addition & 0 deletions src/main/resources/assets/modmenu/lang/ckb-IR.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@
"modmenu.hasUpdate": "An update is available:",
"modmenu.childHasUpdate": "A child of this mod has an update available.",
"modmenu.updateText": "v%s on %s",
"modmenu.updateText.nonNumerical": "%s on %s",
"modmenu.buymeacoffee": "Buy Me a Coffee",
"modmenu.coindrop": "Coindrop",
"modmenu.crowdin": "Crowdin",
Expand Down
1 change: 1 addition & 0 deletions src/main/resources/assets/modmenu/lang/cs_cz.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@
"modmenu.hasUpdate": "Je dostupná aktualizace:",
"modmenu.childHasUpdate": "Je dostupná aktualizace podřazeného modu.",
"modmenu.updateText": "v%s na %s",
"modmenu.updateText.nonNumerical": "%s na %s",
"modmenu.buymeacoffee": "Kupte mi kávu",
"modmenu.coindrop": "Coindrop",
"modmenu.crowdin": "Crowdin",
Expand Down
1 change: 1 addition & 0 deletions src/main/resources/assets/modmenu/lang/csb-PL.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@
"modmenu.hasUpdate": "An update is available:",
"modmenu.childHasUpdate": "A child of this mod has an update available.",
"modmenu.updateText": "v%s on %s",
"modmenu.updateText.nonNumerical": "%s on %s",
"modmenu.buymeacoffee": "Buy Me a Coffee",
"modmenu.coindrop": "Coindrop",
"modmenu.crowdin": "Crowdin",
Expand Down
1 change: 1 addition & 0 deletions src/main/resources/assets/modmenu/lang/cv-CU.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@
"modmenu.hasUpdate": "An update is available:",
"modmenu.childHasUpdate": "A child of this mod has an update available.",
"modmenu.updateText": "v%s on %s",
"modmenu.updateText.nonNumerical": "%s on %s",
"modmenu.buymeacoffee": "Buy Me a Coffee",
"modmenu.coindrop": "Coindrop",
"modmenu.crowdin": "Crowdin",
Expand Down
1 change: 1 addition & 0 deletions src/main/resources/assets/modmenu/lang/cy_gb.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@
"modmenu.hasUpdate": "An update is available:",
"modmenu.childHasUpdate": "A child of this mod has an update available.",
"modmenu.updateText": "v%s on %s",
"modmenu.updateText.nonNumerical": "%s on %s",
"modmenu.buymeacoffee": "Buy Me a Coffee",
"modmenu.coindrop": "Coindrop",
"modmenu.crowdin": "Crowdin",
Expand Down
1 change: 1 addition & 0 deletions src/main/resources/assets/modmenu/lang/da_dk.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@
"modmenu.hasUpdate": "An update is available:",
"modmenu.childHasUpdate": "A child of this mod has an update available.",
"modmenu.updateText": "v%s on %s",
"modmenu.updateText.nonNumerical": "%s on %s",
"modmenu.buymeacoffee": "Køb mig en kop kaffe",
"modmenu.coindrop": "Coindrop",
"modmenu.crowdin": "Crowdin",
Expand Down
1 change: 1 addition & 0 deletions src/main/resources/assets/modmenu/lang/de_at.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@
"modmenu.experimental": "(Mod Menu Update checker ist experimental!)",
"modmenu.childHasUpdate": "Eine Abhängigkeit dieser Mod hat ein verfügbares Update.",
"modmenu.updateText": "v%s on %s",
"modmenu.updateText.nonNumerical": "%s on %s",
"modmenu.install_version": "Installiere version %s",
"modmenu.downloadLink": "Herunterladen",

Expand Down
1 change: 1 addition & 0 deletions src/main/resources/assets/modmenu/lang/de_ch.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@
"modmenu.experimental": "(Mod Menu Update checker ist experimental!)",
"modmenu.childHasUpdate": "Eine Abhängigkeit dieser Mod hat ein verfügbares Update.",
"modmenu.updateText": "v%s on %s",
"modmenu.updateText.nonNumerical": "%s on %s",
"modmenu.install_version": "Installiere version %s",
"modmenu.downloadLink": "Herunterladen",

Expand Down
1 change: 1 addition & 0 deletions src/main/resources/assets/modmenu/lang/de_de.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@
"modmenu.experimental": "(Mod Menu Update checker ist experimental!)",
"modmenu.childHasUpdate": "Eine Abhängigkeit dieser Mod hat ein verfügbares Update.",
"modmenu.updateText": "v%s on %s",
"modmenu.updateText.nonNumerical": "%s on %s",
"modmenu.install_version": "Installiere version %s",
"modmenu.downloadLink": "Herunterladen",

Expand Down
1 change: 1 addition & 0 deletions src/main/resources/assets/modmenu/lang/dsb-DE.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@
"modmenu.hasUpdate": "An update is available:",
"modmenu.childHasUpdate": "A child of this mod has an update available.",
"modmenu.updateText": "v%s on %s",
"modmenu.updateText.nonNumerical": "%s on %s",
"modmenu.buymeacoffee": "Buy Me a Coffee",
"modmenu.coindrop": "Coindrop",
"modmenu.crowdin": "Crowdin",
Expand Down
1 change: 1 addition & 0 deletions src/main/resources/assets/modmenu/lang/egl.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@
"modmenu.hasUpdate": "Un aggiornamento è disponibile:",
"modmenu.childHasUpdate": "Un figlio di questa mod ha un aggiornamento disponibile.",
"modmenu.updateText": "v%s su %s",
"modmenu.updateText.nonNumerical": "%s su %s",
"modmenu.buymeacoffee": "Offrimi un caffè",
"modmenu.coindrop": "Coindrop",
"modmenu.crowdin": "Crowdin",
Expand Down
1 change: 1 addition & 0 deletions src/main/resources/assets/modmenu/lang/el_gr.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@
"modmenu.hasUpdate": "Υπάρχει διαθέσιμη ενημέρωση:",
"modmenu.childHasUpdate": "Ένα παιδί αυτού του mod έχει διαθέσιμη ενημέρωση.",
"modmenu.updateText": "v%s στο %s",
"modmenu.updateText.nonNumerical": "%s στο %s",
"modmenu.buymeacoffee": "Buy Me a Coffee",
"modmenu.coindrop": "Coindrop",
"modmenu.crowdin": "Crowdin",
Expand Down
1 change: 1 addition & 0 deletions src/main/resources/assets/modmenu/lang/en_au.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@
"modmenu.hasUpdate": "An update is available:",
"modmenu.childHasUpdate": "A child of this mod has an update available.",
"modmenu.updateText": "v%s on %s",
"modmenu.updateText.nonNumerical": "%s on %s",
"modmenu.buymeacoffee": "Buy Me a Coffee",
"modmenu.coindrop": "Coindrop",
"modmenu.crowdin": "Crowdin",
Expand Down
1 change: 1 addition & 0 deletions src/main/resources/assets/modmenu/lang/en_ca.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@
"modmenu.hasUpdate": "An update is available:",
"modmenu.childHasUpdate": "A child of this mod has an update available.",
"modmenu.updateText": "v%s on %s",
"modmenu.updateText.nonNumerical": "%s on %s",
"modmenu.buymeacoffee": "Buy Me a Coffee",
"modmenu.coindrop": "Coindrop",
"modmenu.crowdin": "Crowdin",
Expand Down
1 change: 1 addition & 0 deletions src/main/resources/assets/modmenu/lang/en_gb.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@
"modmenu.hasUpdate": "An update is available:",
"modmenu.childHasUpdate": "A child of this mod has an update available.",
"modmenu.updateText": "v%s on %s",
"modmenu.updateText.nonNumerical": "%s on %s",
"modmenu.buymeacoffee": "Buy Me a Coffee",
"modmenu.coindrop": "Coindrop",
"modmenu.crowdin": "Crowdin",
Expand Down
1 change: 1 addition & 0 deletions src/main/resources/assets/modmenu/lang/en_nz.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@
"modmenu.hasUpdate": "An update is available:",
"modmenu.childHasUpdate": "A child of this mod has an update available.",
"modmenu.updateText": "v%s on %s",
"modmenu.updateText.nonNumerical": "%s on %s",
"modmenu.buymeacoffee": "Buy Me a Coffee",
"modmenu.coindrop": "Coindrop",
"modmenu.crowdin": "Crowdin",
Expand Down
1 change: 1 addition & 0 deletions src/main/resources/assets/modmenu/lang/en_pt.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@
"modmenu.hasUpdate": "An update is available:",
"modmenu.childHasUpdate": "A child of this mod has an update available.",
"modmenu.updateText": "v%s on %s",
"modmenu.updateText.nonNumerical": "%s on %s",
"modmenu.buymeacoffee": "Buy Me a Coffee",
"modmenu.coindrop": "Coindrop",
"modmenu.crowdin": "Crowdin",
Expand Down
1 change: 1 addition & 0 deletions src/main/resources/assets/modmenu/lang/en_ud.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@
"modmenu.hasUpdate": "An update is available:",
"modmenu.childHasUpdate": "A child of this mod has an update available.",
"modmenu.updateText": "v%s on %s",
"modmenu.updateText.nonNumerical": "%s on %s",
"modmenu.buymeacoffee": "Buy Me a Coffee",
"modmenu.coindrop": "Coindrop",
"modmenu.crowdin": "Crowdin",
Expand Down
1 change: 1 addition & 0 deletions src/main/resources/assets/modmenu/lang/en_us.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@
"modmenu.experimental": "(Mod Menu update checker is experimental!)",
"modmenu.childHasUpdate": "A child of this mod has an update available.",
"modmenu.updateText": "v%s on %s",
"modmenu.updateText.nonNumerical": "%s on %s",
"modmenu.install_version": "Install version %s",
"modmenu.downloadLink": "Download",

Expand Down
1 change: 1 addition & 0 deletions src/main/resources/assets/modmenu/lang/enp.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@
"modmenu.hasUpdate": "An update is available:",
"modmenu.childHasUpdate": "A child of this mod has an update available.",
"modmenu.updateText": "v%s on %s",
"modmenu.updateText.nonNumerical": "%s on %s",
"modmenu.buymeacoffee": "Buy Me a Coffee",
"modmenu.coindrop": "Coindrop",
"modmenu.crowdin": "Crowdin",
Expand Down
1 change: 1 addition & 0 deletions src/main/resources/assets/modmenu/lang/enws.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@
"modmenu.hasUpdate": "An update is available:",
"modmenu.childHasUpdate": "A child of this mod has an update available.",
"modmenu.updateText": "v%s on %s",
"modmenu.updateText.nonNumerical": "%s on %s",
"modmenu.buymeacoffee": "Buy Me a Coffee",
"modmenu.coindrop": "Coindrop",
"modmenu.crowdin": "Crowdin",
Expand Down
1 change: 1 addition & 0 deletions src/main/resources/assets/modmenu/lang/eo_uy.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@
"modmenu.hasUpdate": "An update is available:",
"modmenu.childHasUpdate": "A child of this mod has an update available.",
"modmenu.updateText": "v%s on %s",
"modmenu.updateText.nonNumerical": "%s on %s",
"modmenu.buymeacoffee": "Buy Me a Coffee",
"modmenu.coindrop": "Coindrop",
"modmenu.crowdin": "Crowdin",
Expand Down
1 change: 1 addition & 0 deletions src/main/resources/assets/modmenu/lang/es_ar.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@
"modmenu.experimental": "(¡El buscador de actualizaciones de Mod Menu es experimental!)",
"modmenu.childHasUpdate": "Un complemento de este mod tiene una actualización disponible.",
"modmenu.updateText": "v%s en %s",
"modmenu.updateText.nonNumerical": "%s en %s",
"modmenu.install_version": "Instalar versión %s",
"modmenu.downloadLink": "Descargar",

Expand Down
1 change: 1 addition & 0 deletions src/main/resources/assets/modmenu/lang/es_cl.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@
"modmenu.hasUpdate": "An update is available:",
"modmenu.childHasUpdate": "A child of this mod has an update available.",
"modmenu.updateText": "v%s on %s",
"modmenu.updateText.nonNumerical": "%s on %s",
"modmenu.buymeacoffee": "Comprame un café",
"modmenu.coindrop": "Coindrop",
"modmenu.crowdin": "Crowdin",
Expand Down
1 change: 1 addition & 0 deletions src/main/resources/assets/modmenu/lang/es_ec.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@
"modmenu.hasUpdate": "An update is available:",
"modmenu.childHasUpdate": "A child of this mod has an update available.",
"modmenu.updateText": "v%s on %s",
"modmenu.updateText.nonNumerical": "%s on %s",
"modmenu.buymeacoffee": "Comprame un café",
"modmenu.coindrop": "Coindrop",
"modmenu.crowdin": "Crowdin",
Expand Down
3 changes: 2 additions & 1 deletion src/main/resources/assets/modmenu/lang/es_es.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@
"modmenu.experimental": "(La característica de comprobación de actualizaciones es experimental.)",
"modmenu.childHasUpdate": "Actualización disponible para mod secundario.",
"modmenu.updateText": "v%s en %s",
"modmenu.updateText.nonNumerical": "%s en %s",
"modmenu.install_version": "Instalar versión %s",
"modmenu.downloadLink": "Descargar",

Expand Down Expand Up @@ -95,7 +96,7 @@
"modmenu.credits.role.playtester": "Testers",
"modmenu.credits.role.illustrator": "Ilustradores",
"modmenu.credits.role.owner": "Propietarios",

"modmenu.modsFolder": "Abrir carpeta de mods",
"modmenu.configsFolder": "Abrir carpeta de opciones",

Expand Down
1 change: 1 addition & 0 deletions src/main/resources/assets/modmenu/lang/es_mx.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@
"modmenu.hasUpdate": "An update is available:",
"modmenu.childHasUpdate": "A child of this mod has an update available.",
"modmenu.updateText": "v%s on %s",
"modmenu.updateText.nonNumerical": "%s on %s",
"modmenu.buymeacoffee": "Comprame un café",
"modmenu.coindrop": "Coindrop",
"modmenu.crowdin": "Crowdin",
Expand Down
1 change: 1 addition & 0 deletions src/main/resources/assets/modmenu/lang/es_uy.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@
"modmenu.hasUpdate": "An update is available:",
"modmenu.childHasUpdate": "A child of this mod has an update available.",
"modmenu.updateText": "v%s on %s",
"modmenu.updateText.nonNumerical": "%s on %s",
"modmenu.buymeacoffee": "Comprame un café",
"modmenu.coindrop": "Coindrop",
"modmenu.crowdin": "Crowdin",
Expand Down
1 change: 1 addition & 0 deletions src/main/resources/assets/modmenu/lang/es_ve.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@
"modmenu.hasUpdate": "An update is available:",
"modmenu.childHasUpdate": "A child of this mod has an update available.",
"modmenu.updateText": "v%s on %s",
"modmenu.updateText.nonNumerical": "%s on %s",
"modmenu.buymeacoffee": "Comprame un café",
"modmenu.coindrop": "Coindrop",
"modmenu.crowdin": "Crowdin",
Expand Down
1 change: 1 addition & 0 deletions src/main/resources/assets/modmenu/lang/esan.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@
"modmenu.hasUpdate": "An update is available:",
"modmenu.childHasUpdate": "A child of this mod has an update available.",
"modmenu.updateText": "v%s on %s",
"modmenu.updateText.nonNumerical": "%s on %s",
"modmenu.buymeacoffee": "Comprame un café",
"modmenu.coindrop": "Coindrop",
"modmenu.crowdin": "Crowdin",
Expand Down
Loading