localize card links, add_link, remove_links

This commit is contained in:
GenevensiS
2025-12-16 19:05:33 +01:00
parent ee0a56f8c0
commit aeed54e4ba
15 changed files with 352 additions and 166 deletions
+1 -1
View File
@@ -137,7 +137,7 @@ void uncanonical_name_form_in_place(String& str) {
}
}
String unified_form(String& str) {
String unified_form(String str) {
str = trim(str);
for (String::iterator it = str.begin(); it != str.end(); ++it) {
if (*it == ' ') *it = '_';
+1 -1
View File
@@ -244,7 +244,7 @@ inline String uncanonical_name_form(String s) {
}
/// Convert a field name to canonical form, then to lower case, then trim it
String unified_form(String&);
String unified_form(String);
/// Convert a field name to a string that can be shown to the user
String name_to_caption(const String&);