aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/llui
diff options
context:
space:
mode:
authorDavid Seikel2011-02-26 05:26:28 +1000
committerDavid Seikel2011-02-26 05:26:28 +1000
commit100384f232733d112e7a3f14fa02c2c2c39d246c (patch)
tree5ae461bf4c5e4c8a3ee4fe0e1f299a22f593ddc4 /linden/indra/llui
parentIn the meta grid, staff members have the last name "Meta", the users are "met... (diff)
downloadmeta-impy-100384f232733d112e7a3f14fa02c2c2c39d246c.zip
meta-impy-100384f232733d112e7a3f14fa02c2c2c39d246c.tar.gz
meta-impy-100384f232733d112e7a3f14fa02c2c2c39d246c.tar.bz2
meta-impy-100384f232733d112e7a3f14fa02c2c2c39d246c.tar.xz
Unbranding word of the day is "Second Life".
Diffstat (limited to 'linden/indra/llui')
-rw-r--r--linden/indra/llui/lluistring.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/linden/indra/llui/lluistring.h b/linden/indra/llui/lluistring.h
index aedeca2..adc2e08 100644
--- a/linden/indra/llui/lluistring.h
+++ b/linden/indra/llui/lluistring.h
@@ -45,14 +45,14 @@
45// the correct result 45// the correct result
46 46
47// Example Usage: 47// Example Usage:
48// LLUIString mMessage("Welcome [USERNAME] to [SECONDLIFE]!"); 48// LLUIString mMessage("Welcome [USERNAME] to [GRIDNAME]!");
49// mMessage.setArg("[USERNAME]", "Steve"); 49// mMessage.setArg("[USERNAME]", "Steve");
50// mMessage.setArg("[SECONDLIFE]", "Second Life"); 50// mMessage.setArg("[GRIDNAME]", "This Grid");
51// llinfos << mMessage.getString() << llendl; // outputs "Welcome Steve to Second Life" 51// llinfos << mMessage.getString() << llendl; // outputs "Welcome Steve to This Grid"
52// mMessage.setArg("[USERNAME]", "Joe"); 52// mMessage.setArg("[USERNAME]", "Joe");
53// llinfos << mMessage.getString() << llendl; // outputs "Welcome Joe to Second Life" 53// llinfos << mMessage.getString() << llendl; // outputs "Welcome Joe to This Grid"
54// mMessage = "Recepci￳n a la [SECONDLIFE] [USERNAME]" 54// mMessage = "Recepci￳n a la [GRIDNAME] [USERNAME]"
55// mMessage.setArg("[SECONDLIFE]", "Segunda Vida"); 55// mMessage.setArg("[GRIDNAME]", "Segunda Vida");
56// llinfos << mMessage.getString() << llendl; // outputs "Recepci￳n a la Segunda Vida Joe" 56// llinfos << mMessage.getString() << llendl; // outputs "Recepci￳n a la Segunda Vida Joe"
57 57
58// Implementation Notes: 58// Implementation Notes: