mirror of
https://github.com/amyinspace/MagicSetEditor2.git
synced 2026-06-12 21:47:00 -04:00
Implement unique IDs and card linking
This commit is contained in:
+6
-6
@@ -50,14 +50,14 @@ String tr(LocaleCategory cat, const String& key, DefaultLocaleFun def = warn_and
|
||||
|
||||
/// Translate 'key' in the for a Package using the current locale
|
||||
[[deprecated]]
|
||||
String tr(const Package&, const String& key, DefaultLocaleFun def);
|
||||
[[deprecated]]
|
||||
String tr(const Package&, const String& key, DefaultLocaleFun def);
|
||||
[[deprecated]]
|
||||
String tr(const String&, const String& key, DefaultLocaleFun def);
|
||||
|
||||
/// Translate 'key' in the for a Package using the current locale
|
||||
[[deprecated]]
|
||||
String tr(const Package&, const String& subcat, const String& key, DefaultLocaleFun def);
|
||||
[[deprecated]]
|
||||
String tr(const Package&, const String& subcat, const String& key, DefaultLocaleFun def);
|
||||
[[deprecated]]
|
||||
String tr(const String&, const String& subcat, const String& key, DefaultLocaleFun def);
|
||||
|
||||
/// A localized string for menus
|
||||
@@ -99,9 +99,9 @@ String tr(const String&, const String& subcat, const String& key, DefaultLocaleF
|
||||
#define _TOOLTIP_1_(s,a) format_string(_TOOLTIP_(s), a)
|
||||
|
||||
/// A localized string for tooltip labels, with 1 argument (printf style)
|
||||
#define _LABEL_1_(s,a) format_string(_LABEL_(s), a)
|
||||
#define _LABEL_1_(s,a) format_string(_LABEL_(s), a)
|
||||
/// A localized string for tooltip labels, with 2 argument (printf style)
|
||||
#define _LABEL_2_(s,a,b) format_string(_LABEL_(s), a, b)
|
||||
#define _LABEL_2_(s,a,b) format_string(_LABEL_(s), a, b)
|
||||
/// A localized string for tooltip labels, with 3 argument (printf style)
|
||||
#define _LABEL_3_(s,a,b,c) format_string(_LABEL_(s), a, b, c)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user