vanilla-wow-addons – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 --[[
2 Bagnon Forever Localization file
3 This provides a way to translate Bagnon_Forever into different languages.
4 --]]
5  
6 BAGNON_FOREVER_VERSION = "6.6.30";
7  
8 --[[
9 English - Default Language
10 Any gaps in the translations are filled by English words.
11 --]]
12  
13  
14 --[[ Slash Commands ]]--
15  
16 BAGNON_FOREVER_COMMAND_DELETE_CHARACTER = "delete"
17  
18 --[[ Messages from the slash commands ]]--
19  
20 --/bgn help
21 BAGNON_FOREVER_HELP_DELETE_CHARACTER = "/bgn " .. BAGNON_FOREVER_COMMAND_DELETE_CHARACTER ..
22 " <character> <realm> - Removes the given character's inventory and bank data.";
23  
24 --/bgn delete <character> <realm>
25 BAGNON_FOREVER_CHARACTER_DELETED = "Removed inventory data about %s of %s.";
26  
27 --[[ System Messages ]]--
28  
29 --Bagnon Forever version update
30 BAGNON_FOREVER_UPDATED = "Bagnon Forever data updated to v" .. BAGNON_FOREVER_VERSION .. ".";
31  
32 --[[ Tooltips ]]--
33  
34 --Title tooltip
35 BAGNON_TITLE_FOREVERTOOLTIP = "<Double-Click> to switch characters.";
36  
37 --Total gold on realm
38 BAGNON_FOREVER_MONEY_ON_REALM = "Total Funds On %s";
39  
40 --[[
41 German
42 Credit goes to Sarkan on Curse
43 --]]
44  
45  
46 if ( GetLocale() == "deDE" ) then
47 BAGNON_TITLE_FOREVERTOOLTIP = "<Doppel-Klick> um Charakter zu wechseln.";
48 return;
49 end
50  
51 --[[
52 French
53 --]]
54  
55 if ( GetLocale() == "frFR" ) then
56 return;
57 end