Skip to content

Commit 94c5eaa

Browse files
committed
feat(locale): backport SET_FRIENDNOTE_LABEL / SET_NOTE globals
Add the two friend-note GlobalStrings vanilla 1.12 lacks, per locale (enUS/deDE/esES/frFR/ruRU/zhCN/zhTW), from Blizzard's Classic GlobalStrings. Lets note-aware UI (e.g. a pfUI "Set Note" entry driven by C_FriendList.SetFriendNotes) label itself in the client language.
1 parent 3f09b3f commit 94c5eaa

7 files changed

Lines changed: 14 additions & 0 deletions

File tree

AddOns/!!!ClassicAPI/locales/deDE.lua

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,8 @@ MINUTES_SECONDS = "%.2d:%.2d";
7575
PAPERDOLL_EQUIPMENTMANAGER = "Ausrüstungsmanager";
7676
PAPERDOLL_NEWEQUIPMENTSET = "Neues Set";
7777
PERCENTAGE_STRING = "%d%%";
78+
SET_FRIENDNOTE_LABEL = "Notizen für %s eintragen:";
79+
SET_NOTE = "Notiz eintragen";
7880
SILVER_AMOUNT_SYMBOL = "S";
7981
SLASH_CLEARFOCUS1 = "/fokusaufheben";
8082
SLASH_CLEARFOCUS2 = "/clearfocus";

AddOns/!!!ClassicAPI/locales/enUS.lua

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,8 @@ MINUTES_SECONDS = "%.2d:%.2d";
7272
PAPERDOLL_EQUIPMENTMANAGER = "Equipment Manager";
7373
PAPERDOLL_NEWEQUIPMENTSET = "New Set";
7474
PERCENTAGE_STRING = "%d%%";
75+
SET_FRIENDNOTE_LABEL = "Set Notes for %s:";
76+
SET_NOTE = "Set Note";
7577
SILVER_AMOUNT_SYMBOL = "s";
7678
SLASH_CLEARFOCUS1 = "/clearfocus";
7779
SLASH_CLEARFOCUS2 = "/clearfocus";

AddOns/!!!ClassicAPI/locales/esES.lua

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,8 @@ MINUTES_SECONDS = "%.2d:%.2d";
7575
PAPERDOLL_EQUIPMENTMANAGER = "Gestor de equipamiento";
7676
PAPERDOLL_NEWEQUIPMENTSET = "Nuevo conjunto";
7777
PERCENTAGE_STRING = "%d%%";
78+
SET_FRIENDNOTE_LABEL = "Establecer nota para %s:";
79+
SET_NOTE = "Establecer nota";
7880
SILVER_AMOUNT_SYMBOL = "p";
7981
SLASH_CLEARFOCUS1 = "/quitarenfoque";
8082
SLASH_CLEARFOCUS2 = "/clearfocus";

AddOns/!!!ClassicAPI/locales/frFR.lua

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,8 @@ MINUTES_SECONDS = "%.2d:%.2d";
7575
PAPERDOLL_EQUIPMENTMANAGER = "Gestionnaire d'équipement";
7676
PAPERDOLL_NEWEQUIPMENTSET = "Nouvel ensemble";
7777
PERCENTAGE_STRING = "%d%%";
78+
SET_FRIENDNOTE_LABEL = "Écrire une note pour %s :";
79+
SET_NOTE = "Écrire une note";
7880
SILVER_AMOUNT_SYMBOL = "a";
7981
SLASH_CLEARFOCUS1 = "/clearfocus";
8082
SLASH_CLEARFOCUS2 = "/annulerfocal";

AddOns/!!!ClassicAPI/locales/ruRU.lua

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,8 @@ MINUTES_SECONDS = "%.2d:%.2d";
7575
PAPERDOLL_EQUIPMENTMANAGER = "Комплекты экипировки";
7676
PAPERDOLL_NEWEQUIPMENTSET = "Новый комплект";
7777
PERCENTAGE_STRING = "%d%%";
78+
SET_FRIENDNOTE_LABEL = "Заметка о |3-5(%s):";
79+
SET_NOTE = "Добавить заметку";
7880
SILVER_AMOUNT_SYMBOL = "с";
7981
SLASH_CLEARFOCUS1 = "/clearfocus";
8082
SLASH_CLEARFOCUS2 = "/сбросфокуса";

AddOns/!!!ClassicAPI/locales/zhCN.lua

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,8 @@ MINUTES_SECONDS = "%.2d:%.2d";
7575
PAPERDOLL_EQUIPMENTMANAGER = "装备管理";
7676
PAPERDOLL_NEWEQUIPMENTSET = "新的方案";
7777
PERCENTAGE_STRING = "%d%%";
78+
SET_FRIENDNOTE_LABEL = "为%s设置备注:";
79+
SET_NOTE = "设置备注";
7880
SILVER_AMOUNT_SYMBOL = "";
7981
SLASH_CLEARFOCUS1 = "/clearfocus";
8082
SLASH_CLEARFOCUS2 = "/clearfocus";

AddOns/!!!ClassicAPI/locales/zhTW.lua

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,8 @@ MINUTES_SECONDS = "%.2d:%.2d";
7575
PAPERDOLL_EQUIPMENTMANAGER = "裝備管理員";
7676
PAPERDOLL_NEWEQUIPMENTSET = "新設定";
7777
PERCENTAGE_STRING = "%d%%";
78+
SET_FRIENDNOTE_LABEL = "設定%s的註記:";
79+
SET_NOTE = "設定註記";
7880
SILVER_AMOUNT_SYMBOL = "";
7981
SLASH_CLEARFOCUS1 = "/clearfocus";
8082
SLASH_CLEARFOCUS2 = "/清除專注目標";

0 commit comments

Comments
 (0)