The Battle for Wesnoth  1.19.10+dev
gettext.hpp
Go to the documentation of this file.
1 /*
2  Copyright (C) 2003 - 2025
3  by David White <dave@whitevine.net>
4  Part of the Battle for Wesnoth Project https://www.wesnoth.org/
5 
6  This program is free software; you can redistribute it and/or modify
7  it under the terms of the GNU General Public License as published by
8  the Free Software Foundation; either version 2 of the License, or
9  (at your option) any later version.
10  This program is distributed in the hope that it will be useful,
11  but WITHOUT ANY WARRANTY.
12 
13  See the COPYING file for more details.
14 */
15 
16 #pragma once
17 
18 /**
19  * How to use gettext for wesnoth source files:
20  * -# include this header file in the .cpp file
21  * -# make sure, that the source file is listed in the respective POTFILES.in
22  * for the textdomain, in the case of wesnoth-lib it is this file:
23  * po/wesnoth-lib/POTFILES.in
24  * -# add the following include to set the correct textdomain, in this example
25  * wesnoth-lib (not required for the domain 'wesnoth', required for all
26  * other textdomains).
27  * @code
28  * #define GETTEXT_DOMAIN "wesnoth-lib"
29  * @endcode
30  *
31  * This should be all that is required to have your strings that are marked
32  * translatable in the po files and translated ingame. So you at least have
33  * to mark the strings translatable, too. ;)
34  */
35 
36 // gettext-related declarations
37 #include "wesconfig.h"
38 #include <string>
39 #include <vector>
40 #include <ctime>
41 #include <boost/locale/info.hpp>
42 
43 #ifdef __cpp_lib_span
44 #include <span>
45 #endif
46 
47 #ifndef GETTEXT_DOMAIN
48 # define GETTEXT_DOMAIN PACKAGE
49 #endif
50 
51 //A Hack to make the eclipse-cdt parser happy.
52 #ifdef __CDT_PARSER__
53 # define GETTEXT_DOMAIN ""
54 #endif
55 
56 namespace translation
57 {
58  std::string dgettext(const char* domain, const char* msgid);
59  std::string egettext(const char*);
60  std::string dsgettext(const char * domainname, const char *msgid);
61  //const char* sngettext(const char *singular, const char *plural, int n);
62  std::string dsngettext(const char * domainname, const char *singular, const char *plural, int n);
63 
64  [[maybe_unused]] inline static std::string gettext(const char* str)
65  { return translation::dgettext(GETTEXT_DOMAIN, str); }
66  [[maybe_unused]] inline static std::string sgettext(const char* str)
67  { return translation::dsgettext(GETTEXT_DOMAIN, str); }
68  [[maybe_unused]] inline static std::string sngettext(const char* str1, const char* str2, int n)
69  { return translation::dsngettext(GETTEXT_DOMAIN, str1, str2 , n); }
70 
71 
72  void bind_textdomain(const char* domain, const char* directory, const char* encoding);
73  void set_default_textdomain(const char* domain);
74 
75  void set_language(const std::string& language, const std::vector<std::string>* alternates);
76 
77  /** Case-sensitive lexicographical comparison. */
78  int compare(const std::string& s1,const std::string& s2);
79 
80  /** Case-insensitive lexicographical comparison. */
81  int icompare(const std::string& s1,const std::string& s2);
82 
83  /** Case-insensitive search. @a s2 will be checked against @a s1. */
84  bool ci_search(const std::string& s1, const std::string& s2);
85 
86  /** Case-insensitive search. @a s2 will be checked against any element of @a s1. */
87 #ifdef __cpp_lib_span
88  bool ci_search(std::span<std::string> s1, const std::string& s2);
89 #else
90  bool ci_search(const std::vector<std::string>& s1, const std::string& s2);
91 #endif
92 
93  /**
94  * A facet that holds general information about the effective locale.
95  * This describes the actual translation target language,
96  * unlike language_def.localename in language.hpp, where the "System
97  * default language" is represented by an empty string.
98  */
100 }
101 
102 //#define _(String) translation::dsgettext(GETTEXT_DOMAIN,String)
103 [[maybe_unused]] inline static std::string _(const char* str)
104 { return translation::dsgettext(GETTEXT_DOMAIN, str); }
105 
106 //#define _n(String1, String2, Int) translation::dsngettext(GETTEXT_DOMAIN, String1,String2,Int)
107 [[maybe_unused]] inline static std::string _n(const char* str1, const char* str2, int n)
108 { return translation::dsngettext(GETTEXT_DOMAIN, str1, str2, n); }
109 
110 #define gettext_noop(String) String
111 #define N_(String) gettext_noop (String)
112 #define N_n(String1, String2) String1, String2
#define GETTEXT_DOMAIN
How to use gettext for wesnoth source files:
Definition: gettext.hpp:48
static std::string _n(const char *str1, const char *str2, int n)
Definition: gettext.hpp:107
static std::string _(const char *str)
Definition: gettext.hpp:103
logger & info()
Definition: log.cpp:318
void set_language(const std::string &language, const std::vector< std::string > *)
Definition: gettext.cpp:494
std::string egettext(char const *msgid)
Definition: gettext.cpp:429
static std::string gettext(const char *str)
Definition: gettext.hpp:64
void bind_textdomain(const char *domain, const char *directory, const char *)
Definition: gettext.cpp:479
void set_default_textdomain(const char *domain)
Definition: gettext.cpp:487
int compare(const std::string &s1, const std::string &s2)
Case-sensitive lexicographical comparison.
Definition: gettext.cpp:502
int icompare(const std::string &s1, const std::string &s2)
Case-insensitive lexicographical comparison.
Definition: gettext.cpp:519
const boost::locale::info & get_effective_locale_info()
A facet that holds general information about the effective locale.
Definition: gettext.cpp:572
std::string dgettext(const char *domain, const char *msgid)
Definition: gettext.cpp:425
bool ci_search(const std::string &s1, const std::string &s2)
Case-insensitive search.
Definition: gettext.cpp:555
static std::string sngettext(const char *str1, const char *str2, int n)
Definition: gettext.hpp:68
std::string dsgettext(const char *domainname, const char *msgid)
Definition: gettext.cpp:434
std::string dsngettext(const char *domainname, const char *singular, const char *plural, int n)
Definition: gettext.cpp:464
static std::string sgettext(const char *str)
Definition: gettext.hpp:66
static map_location::direction n
Some defines: VERSION, PACKAGE, MIN_SAVEGAME_VERSION.