Wespo  2.2
An unofficial tool to create a .po file for your wesnoth add-on
 All Classes Functions Variables
wespoEntry.h
1 #ifndef WESPO_ENTRY_H
2 #define WESPO_ENTRY_H
3 
4 #include <QString>
5 #include <QStringList>
6 
8 
19 struct WespoEntry {
21  QString str;
23  QStringList srcinfo;
25  QStringList comment;
26 };
27 
28 #endif
29 
QString str
The string to translate (on skele.po: msgid "message")
Definition: wespoEntry.h:21
QStringList comment
List of Automated infos (in skele.po: #. [tag]: info)
Definition: wespoEntry.h:25
struct: a single wespo Entry (translatable string, srcinfos, comments)
Definition: wespoEntry.h:19
QStringList srcinfo
List of source infos (in skele.po: #: add-ons/ADDON/file.cfg.
Definition: wespoEntry.h:23