diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2013-02-08 11:26:11 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2013-02-08 11:26:11 +0000 |
commit | beb45ce231c2c273fb00d11830e4615056871f23 (patch) | |
tree | 66f6cbe75a817ee217ece3bdc37d9d833e771a0e /protocols/Xfire/src | |
parent | 289798cbe183a69d9dcf3f25d7ede0f7a44425a2 (diff) |
- translation fixes (patch from Basil)
git-svn-id: http://svn.miranda-ng.org/main/trunk@3475 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Xfire/src')
-rw-r--r-- | protocols/Xfire/src/options.cpp | 76 |
1 files changed, 38 insertions, 38 deletions
diff --git a/protocols/Xfire/src/options.cpp b/protocols/Xfire/src/options.cpp index c809a89856..f1b38be7f0 100644 --- a/protocols/Xfire/src/options.cpp +++ b/protocols/Xfire/src/options.cpp @@ -64,44 +64,44 @@ xfireconfigitem xfireconfigitems[XFIRE_RECVPREFSPACKET_SUPPORTEDONFIGS] = { };
#define NUM_ICONS 4
-
-static mytreeitem mytree[] = {
- {"Avatars","",1,0},
- {"Disable avatars","noavatars",0,0},
- {"Dont download avatars of clan members","noclanavatars",0,0},
- {"Use alternate way for Avatar download","specialavatarload",0,0},
- {"General","",1,0},
- {"Use UTF8 for messaging and nick's (beta)","useutf8",0,0},
- {"Automatically reconnect on protocol version changes","recprotoverchg",0,0},
- {"No Ip/Port in StatusMsg","noipportinstatus",0,0},
- {"Use Online status for unsupported global statuses","oninsteadafk",0,0},
- {"Dont move friends to clan groups","skipfriendsgroups",0,0},
- {"GameServerQuery support","gsqsupport",0,0},
- {"No custom away message","nocustomaway",0,0},
- {"Remove friend of friend buddies from database","fofdbremove",0,0},
- /*{"Show usernames only","onlyusername",0},*/
- {"Hide yourself in buddylist","skipmyself",0,0},
- {"Dont display game search results","dontdisresults",0,0},
- {"Dont display game search status window","dontdissstatus",0,0},
- {"Display popup, if someone start a game","gamepopup",0,0},
- {"Dont automatically create clan groups","noclangroups",0,0},
- {"Enable MBot support","mbotsupport",0,0},
- {"Gamedetection","",1,0},
- /*{"Scan for games on every Miranda start","scanalways",0},*/
- {"Disable game detection","nogamedetect",0,0},
- /*{"Enable server IP/Port detection","ipportdetec",0},*/
- /*{"Enable TeamSpeak2/Ventrilo detection","",0},*/
- {"Use TSRemote.dll to get teamspeak server info","ts2useremote",0,0},
- {"Disable popups when ingame","nopopups",0,0},
- {"Disable sound events when ingame","nosoundev",0,0},
- {"Files","",1,0},
- {"Automatically update xfire_games.ini (pro-laming.de)","autoiniupdate",0,0},
- {"Automatically update icons.dll (pro-laming.de)","autoicodllupdate",0,0},
- {"Download missing game icons from Xfire website","xfiresitegameico",0,0},
- {"No backup on update","nobackupini",0,0},
- {"Background updating","dontaskforupdate",0,0},
-};
-
+ +static mytreeitem mytree[] = { + {LPGEN("Avatars"),"",1,0}, + {LPGEN("Disable avatars"),"noavatars",0,0}, + {LPGEN("Dont download avatars of clan members"),"noclanavatars",0,0}, + {LPGEN("Use alternate way for Avatar download"),"specialavatarload",0,0}, + {LPGEN("General"),"",1,0}, + {LPGEN("Use UTF8 for messaging and nick's (beta)"),"useutf8",0,0}, + {LPGEN("Automatically reconnect on protocol version changes"),"recprotoverchg",0,0}, + {LPGEN("No Ip/Port in StatusMsg"),"noipportinstatus",0,0}, + {LPGEN("Use Online status for unsupported global statuses"),"oninsteadafk",0,0}, + {LPGEN("Dont move friends to clan groups"),"skipfriendsgroups",0,0}, + {LPGEN("GameServerQuery support"),"gsqsupport",0,0}, + {LPGEN("No custom away message"),"nocustomaway",0,0}, + {LPGEN("Remove friend of friend buddies from database"),"fofdbremove",0,0}, + /*{"Show usernames only","onlyusername",0},*/ + {LPGEN("Hide yourself in buddylist"),"skipmyself",0,0}, + {LPGEN("Dont display game search results"),"dontdisresults",0,0}, + {LPGEN("Dont display game search status window"),"dontdissstatus",0,0}, + {LPGEN("Display popup, if someone start a game"),"gamepopup",0,0}, + {LPGEN("Dont automatically create clan groups"),"noclangroups",0,0}, + {LPGEN("Enable MBot support"),"mbotsupport",0,0}, + {LPGEN("Gamedetection"),"",1,0}, + /*{"Scan for games on every Miranda start","scanalways",0},*/ + {LPGEN("Disable game detection"),"nogamedetect",0,0}, + /*{"Enable server IP/Port detection","ipportdetec",0},*/ + /*{"Enable TeamSpeak2/Ventrilo detection","",0},*/ + {LPGEN("Use TSRemote.dll to get teamspeak server info"),"ts2useremote",0,0}, + {LPGEN("Disable popups when ingame"),"nopopups",0,0}, + {LPGEN("Disable sound events when ingame"),"nosoundev",0,0}, + {LPGEN("Files"),"",1,0}, + {LPGEN("Automatically update xfire_games.ini (pro-laming.de)"),"autoiniupdate",0,0}, + {LPGEN("Automatically update icons.dll (pro-laming.de)"),"autoicodllupdate",0,0}, + {LPGEN("Download missing game icons from Xfire website"),"xfiresitegameico",0,0}, + {LPGEN("No backup on update"),"nobackupini",0,0}, + {LPGEN("Background updating"),"dontaskforupdate",0,0}, +}; + //funktion zum auslesen aller einträge unter XFireBlock
static int enumSettingsProc(const char *szSetting,LPARAM lParam)
{
|