diff options
422 files changed, 21433 insertions, 8301 deletions
diff --git a/linden/doc/contributions.txt b/linden/doc/contributions.txt index 68d2858..4706f39 100644 --- a/linden/doc/contributions.txt +++ b/linden/doc/contributions.txt | |||
@@ -250,6 +250,7 @@ Nicholaz Beresford | |||
250 | VWR-2614 | 250 | VWR-2614 |
251 | VWR-2411 | 251 | VWR-2411 |
252 | VWR-2412 | 252 | VWR-2412 |
253 | VWR-2682 | ||
253 | VWR-2684 | 254 | VWR-2684 |
254 | Nounouch Hapmouche | 255 | Nounouch Hapmouche |
255 | VWR-238 | 256 | VWR-238 |
diff --git a/linden/indra/SConstruct b/linden/indra/SConstruct index 1dfb980..9bc78c4 100644 --- a/linden/indra/SConstruct +++ b/linden/indra/SConstruct | |||
@@ -77,6 +77,9 @@ except: | |||
77 | # COMMAND LINE OPTIONS # | 77 | # COMMAND LINE OPTIONS # |
78 | ######################### | 78 | ######################### |
79 | 79 | ||
80 | DEFAULT_CHANNEL='Release' # TODO: Make this the full channel name, i.e. "Second Life Release" | ||
81 | |||
82 | |||
80 | opts = Options() | 83 | opts = Options() |
81 | opts.AddOptions( | 84 | opts.AddOptions( |
82 | EnumOption('BUILD', 'Set build type', 'releasefordownload', | 85 | EnumOption('BUILD', 'Set build type', 'releasefordownload', |
@@ -92,8 +95,8 @@ opts.AddOptions( | |||
92 | BoolOption('COLORGCC', 'Enabled colorgcc', True), | 95 | BoolOption('COLORGCC', 'Enabled colorgcc', True), |
93 | EnumOption('GRID', 'Client package\'s default grid', 'default', | 96 | EnumOption('GRID', 'Client package\'s default grid', 'default', |
94 | allowed_values=('default', 'aditi', 'agni', 'durga', 'ganga', 'shakti', 'siva', 'soma', 'uma', 'vaak', 'yami', 'mohini', 'aruna', 'mitra', 'nandi', 'radha', 'ravi')), | 97 | allowed_values=('default', 'aditi', 'agni', 'durga', 'ganga', 'shakti', 'siva', 'soma', 'uma', 'vaak', 'yami', 'mohini', 'aruna', 'mitra', 'nandi', 'radha', 'ravi')), |
95 | EnumOption('CHANNEL', 'Client package\'s default channel', 'Release', | 98 | ('CHANNEL', 'Client package\'s channel', DEFAULT_CHANNEL), |
96 | allowed_values=('Release', 'Release Candidate', 'WindLight')), | 99 | ('LOGINCHANNEL', 'Client package\'s channel for login only', False), |
97 | BoolOption('ELFIO', 'Enabled enhanced backtraces with libELFIO symbol extraction support', True), | 100 | BoolOption('ELFIO', 'Enabled enhanced backtraces with libELFIO symbol extraction support', True), |
98 | BoolOption('STANDALONE', 'Build using system packages (implies OPENSOURCE)', False), | 101 | BoolOption('STANDALONE', 'Build using system packages (implies OPENSOURCE)', False), |
99 | BoolOption('RUNTESTS', 'Run tests at end of compilation', True), | 102 | BoolOption('RUNTESTS', 'Run tests at end of compilation', True), |
@@ -111,6 +114,7 @@ enable_gstreamer = optenv['GSTREAMER'] | |||
111 | enable_colorgcc = optenv['COLORGCC'] | 114 | enable_colorgcc = optenv['COLORGCC'] |
112 | grid = optenv['GRID'] | 115 | grid = optenv['GRID'] |
113 | channel = optenv['CHANNEL'] | 116 | channel = optenv['CHANNEL'] |
117 | login_channel = optenv['LOGINCHANNEL'] | ||
114 | standalone = optenv['STANDALONE'] | 118 | standalone = optenv['STANDALONE'] |
115 | runtests = optenv['RUNTESTS'] | 119 | runtests = optenv['RUNTESTS'] |
116 | opensource = standalone or optenv['OPENSOURCE'] | 120 | opensource = standalone or optenv['OPENSOURCE'] |
@@ -680,7 +684,7 @@ for build_target in targets: | |||
680 | product_name = 'SecondLife_' + arch + '_' + "_".join(version_viewer.split(".")) | 684 | product_name = 'SecondLife_' + arch + '_' + "_".join(version_viewer.split(".")) |
681 | if grid not in ['default', 'agni']: | 685 | if grid not in ['default', 'agni']: |
682 | product_name += "_" + grid.upper() | 686 | product_name += "_" + grid.upper() |
683 | if channel not in ['Release']: | 687 | if channel != DEFAULT_CHANNEL: |
684 | product_name += "_" + "".join((channel.upper()).split()) | 688 | product_name += "_" + "".join((channel.upper()).split()) |
685 | package_name = product_name + '.tar.bz2' | 689 | package_name = product_name + '.tar.bz2' |
686 | complete_channel = 'Second Life ' + channel | 690 | complete_channel = 'Second Life ' + channel |
@@ -689,6 +693,8 @@ for build_target in targets: | |||
689 | 'grid':grid, | 693 | 'grid':grid, |
690 | 'ch':complete_channel, | 694 | 'ch':complete_channel, |
691 | 'arch':arch} | 695 | 'arch':arch} |
696 | if login_channel: | ||
697 | cmd += ' --login_channel=\'Second Life %s\'' % (login_channel) | ||
692 | env.Command('newview/' + package_name, 'newview/viewer_manifest.py', cmd) | 698 | env.Command('newview/' + package_name, 'newview/viewer_manifest.py', cmd) |
693 | Depends('newview/' + package_name, output_bin + '-stripped') | 699 | Depends('newview/' + package_name, output_bin + '-stripped') |
694 | Depends('newview/' + package_name, output_crashlogger_bin + '-stripped') | 700 | Depends('newview/' + package_name, output_crashlogger_bin + '-stripped') |
diff --git a/linden/indra/indra_complete/indra_complete_vc8.sln b/linden/indra/indra_complete/indra_complete_vc8.sln index f00d16b..e35c0f9 100644 --- a/linden/indra/indra_complete/indra_complete_vc8.sln +++ b/linden/indra/indra_complete/indra_complete_vc8.sln | |||
@@ -193,6 +193,8 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "llimagej2coj", "..\llimagej | |||
193 | EndProject | 193 | EndProject |
194 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "lscript_compile_fb_vc8", "..\lscript\lscript_compile\lscript_compile_fb_vc8.vcproj", "{B771CF1B-E253-47BD-8B0A-6B0440CC9228}" | 194 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "lscript_compile_fb_vc8", "..\lscript\lscript_compile\lscript_compile_fb_vc8.vcproj", "{B771CF1B-E253-47BD-8B0A-6B0440CC9228}" |
195 | EndProject | 195 | EndProject |
196 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "web-plugin-asset-upload", "..\web\doc\web-plugin-asset-upload_vc8.vcproj", "{0332E7B1-8913-4669-AD7E-7E2EB6204A75}" | ||
197 | EndProject | ||
196 | Global | 198 | Global |
197 | GlobalSection(SolutionConfigurationPlatforms) = preSolution | 199 | GlobalSection(SolutionConfigurationPlatforms) = preSolution |
198 | Debug|Win32 = Debug|Win32 | 200 | Debug|Win32 = Debug|Win32 |
@@ -560,6 +562,16 @@ Global | |||
560 | {B771CF1B-E253-47BD-8B0A-6B0440CC9228}.ReleaseForDownload|Win32.Build.0 = Release|Win32 | 562 | {B771CF1B-E253-47BD-8B0A-6B0440CC9228}.ReleaseForDownload|Win32.Build.0 = Release|Win32 |
561 | {B771CF1B-E253-47BD-8B0A-6B0440CC9228}.ReleaseNoOpt|Win32.ActiveCfg = Release|Win32 | 563 | {B771CF1B-E253-47BD-8B0A-6B0440CC9228}.ReleaseNoOpt|Win32.ActiveCfg = Release|Win32 |
562 | {B771CF1B-E253-47BD-8B0A-6B0440CC9228}.ReleaseNoOpt|Win32.Build.0 = Release|Win32 | 564 | {B771CF1B-E253-47BD-8B0A-6B0440CC9228}.ReleaseNoOpt|Win32.Build.0 = Release|Win32 |
565 | {0332E7B1-8913-4669-AD7E-7E2EB6204A75}.Debug|Win32.ActiveCfg = Debug|Win32 | ||
566 | {0332E7B1-8913-4669-AD7E-7E2EB6204A75}.Debug|Win32.Build.0 = Debug|Win32 | ||
567 | {0332E7B1-8913-4669-AD7E-7E2EB6204A75}.DebugMesaHeadless|Win32.ActiveCfg = Debug|Win32 | ||
568 | {0332E7B1-8913-4669-AD7E-7E2EB6204A75}.DebugMesaHeadless|Win32.Build.0 = Debug|Win32 | ||
569 | {0332E7B1-8913-4669-AD7E-7E2EB6204A75}.Release|Win32.ActiveCfg = Release|Win32 | ||
570 | {0332E7B1-8913-4669-AD7E-7E2EB6204A75}.Release|Win32.Build.0 = Release|Win32 | ||
571 | {0332E7B1-8913-4669-AD7E-7E2EB6204A75}.ReleaseForDownload|Win32.ActiveCfg = Release|Win32 | ||
572 | {0332E7B1-8913-4669-AD7E-7E2EB6204A75}.ReleaseForDownload|Win32.Build.0 = Release|Win32 | ||
573 | {0332E7B1-8913-4669-AD7E-7E2EB6204A75}.ReleaseNoOpt|Win32.ActiveCfg = Release|Win32 | ||
574 | {0332E7B1-8913-4669-AD7E-7E2EB6204A75}.ReleaseNoOpt|Win32.Build.0 = Release|Win32 | ||
563 | EndGlobalSection | 575 | EndGlobalSection |
564 | GlobalSection(SolutionProperties) = preSolution | 576 | GlobalSection(SolutionProperties) = preSolution |
565 | HideSolutionNode = FALSE | 577 | HideSolutionNode = FALSE |
diff --git a/linden/indra/lib/python/indra/util/llmanifest.py b/linden/indra/lib/python/indra/util/llmanifest.py index e5a732d..1bd44ae 100644 --- a/linden/indra/lib/python/indra/util/llmanifest.py +++ b/linden/indra/lib/python/indra/util/llmanifest.py | |||
@@ -128,8 +128,11 @@ ARGUMENTS=[ | |||
128 | value for this parameter.""", | 128 | value for this parameter.""", |
129 | default=""), | 129 | default=""), |
130 | dict(name='channel', | 130 | dict(name='channel', |
131 | description="""The channel to use for updates.""", | 131 | description="""The channel to use for updates, packaging, settings name, etc.""", |
132 | default=get_channel), | 132 | default=get_channel), |
133 | dict(name='login_channel', | ||
134 | description="""The channel to use for login handshake/updates only.""", | ||
135 | default=None), | ||
133 | dict(name='installer_name', | 136 | dict(name='installer_name', |
134 | description=""" The name of the file that the installer should be | 137 | description=""" The name of the file that the installer should be |
135 | packaged up into. Only used on Linux at the moment.""", | 138 | packaged up into. Only used on Linux at the moment.""", |
diff --git a/linden/indra/llcharacter/llgesture.cpp b/linden/indra/llcharacter/llgesture.cpp index c124ad0..60f0624 100644 --- a/linden/indra/llcharacter/llgesture.cpp +++ b/linden/indra/llcharacter/llgesture.cpp | |||
@@ -103,7 +103,7 @@ BOOL LLGesture::trigger(KEY key, MASK mask) | |||
103 | } | 103 | } |
104 | 104 | ||
105 | 105 | ||
106 | BOOL LLGesture::trigger(const LLString &trigger_string) | 106 | BOOL LLGesture::trigger(const std::string& trigger_string) |
107 | { | 107 | { |
108 | llwarns << "Parent class trigger called: you probably didn't mean this." << llendl; | 108 | llwarns << "Parent class trigger called: you probably didn't mean this." << llendl; |
109 | return FALSE; | 109 | return FALSE; |
diff --git a/linden/indra/llcharacter/llgesture.h b/linden/indra/llcharacter/llgesture.h index 0e4b781..003d236 100644 --- a/linden/indra/llcharacter/llgesture.h +++ b/linden/indra/llcharacter/llgesture.h | |||
@@ -64,7 +64,7 @@ public: | |||
64 | virtual BOOL trigger(KEY key, MASK mask); | 64 | virtual BOOL trigger(KEY key, MASK mask); |
65 | 65 | ||
66 | // Triggers if case-insensitive substring matches (assumes string is lowercase) | 66 | // Triggers if case-insensitive substring matches (assumes string is lowercase) |
67 | virtual BOOL trigger(const LLString &string); | 67 | virtual BOOL trigger(const std::string &string); |
68 | 68 | ||
69 | // non-endian-neutral serialization | 69 | // non-endian-neutral serialization |
70 | U8 *serialize(U8 *buffer) const; | 70 | U8 *serialize(U8 *buffer) const; |
diff --git a/linden/indra/llcommon/lltimer.h b/linden/indra/llcommon/lltimer.h index bd4c274..8a4bc76 100644 --- a/linden/indra/llcommon/lltimer.h +++ b/linden/indra/llcommon/lltimer.h | |||
@@ -36,6 +36,8 @@ | |||
36 | #include <sys/time.h> | 36 | #include <sys/time.h> |
37 | #endif | 37 | #endif |
38 | 38 | ||
39 | #include "stdtypes.h" | ||
40 | |||
39 | // units conversions | 41 | // units conversions |
40 | #ifndef USEC_PER_SEC | 42 | #ifndef USEC_PER_SEC |
41 | const U32 USEC_PER_SEC = 1000000; | 43 | const U32 USEC_PER_SEC = 1000000; |
diff --git a/linden/indra/llcommon/llversionviewer.h b/linden/indra/llcommon/llversionviewer.h index 998ea9e..c0296db 100644 --- a/linden/indra/llcommon/llversionviewer.h +++ b/linden/indra/llcommon/llversionviewer.h | |||
@@ -35,7 +35,7 @@ | |||
35 | const S32 LL_VERSION_MAJOR = 1; | 35 | const S32 LL_VERSION_MAJOR = 1; |
36 | const S32 LL_VERSION_MINOR = 19; | 36 | const S32 LL_VERSION_MINOR = 19; |
37 | const S32 LL_VERSION_PATCH = 1; | 37 | const S32 LL_VERSION_PATCH = 1; |
38 | const S32 LL_VERSION_BUILD = 1; | 38 | const S32 LL_VERSION_BUILD = 2; |
39 | 39 | ||
40 | const char * const LL_CHANNEL = "Second Life Release"; | 40 | const char * const LL_CHANNEL = "Second Life Release"; |
41 | 41 | ||
diff --git a/linden/indra/llcrashlogger/llcrashlogger.cpp b/linden/indra/llcrashlogger/llcrashlogger.cpp index ebd2303..948932f 100755 --- a/linden/indra/llcrashlogger/llcrashlogger.cpp +++ b/linden/indra/llcrashlogger/llcrashlogger.cpp | |||
@@ -85,7 +85,8 @@ void LLCrashLoggerText::updateApplication(LLString message) | |||
85 | LLCrashLogger::LLCrashLogger() : | 85 | LLCrashLogger::LLCrashLogger() : |
86 | mCrashBehavior(CRASH_BEHAVIOR_ASK), | 86 | mCrashBehavior(CRASH_BEHAVIOR_ASK), |
87 | mCrashInPreviousExec(false), | 87 | mCrashInPreviousExec(false), |
88 | mSentCrashLogs(false) | 88 | mSentCrashLogs(false), |
89 | mCrashHost("") | ||
89 | { | 90 | { |
90 | 91 | ||
91 | } | 92 | } |
@@ -145,21 +146,14 @@ void LLCrashLogger::gatherFiles() | |||
145 | gatherPlatformSpecificFiles(); | 146 | gatherPlatformSpecificFiles(); |
146 | 147 | ||
147 | //Use the debug log to reconstruct the URL to send the crash report to | 148 | //Use the debug log to reconstruct the URL to send the crash report to |
148 | mCrashHost = "https://"; | 149 | if(mDebugLog.has("CurrentSimHost")) |
149 | mCrashHost += mDebugLog["CurrentSimHost"].asString(); | ||
150 | mCrashHost += ":12043/crash/report"; | ||
151 | // Use login servers as the alternate, since they are already load balanced and have a known name | ||
152 | // First, check to see if we have a valid grid name. If not, use agni. | ||
153 | mAltCrashHost = "https://login."; | ||
154 | if(mDebugLog["GridName"].asString() != "") | ||
155 | { | ||
156 | mAltCrashHost += mDebugLog["GridName"].asString(); | ||
157 | } | ||
158 | else | ||
159 | { | 150 | { |
160 | mAltCrashHost += "agni"; | 151 | mCrashHost = "https://"; |
152 | mCrashHost += mDebugLog["CurrentSimHost"].asString(); | ||
153 | mCrashHost += ":12043/crash/report"; | ||
161 | } | 154 | } |
162 | mAltCrashHost += ".lindenlab.com:12043/crash/report"; | 155 | // Use login servers as the alternate, since they are already load balanced and have a known name |
156 | mAltCrashHost = "https://login.agni.lindenlab.com:12043/crash/report"; | ||
163 | 157 | ||
164 | mCrashInfo["DebugLog"] = mDebugLog; | 158 | mCrashInfo["DebugLog"] = mDebugLog; |
165 | mFileMap["StatsLog"] = gDirUtilp->getExpandedFilename(LL_PATH_LOGS,"stats.log"); | 159 | mFileMap["StatsLog"] = gDirUtilp->getExpandedFilename(LL_PATH_LOGS,"stats.log"); |
@@ -218,6 +212,26 @@ bool LLCrashLogger::saveCrashBehaviorSetting(S32 crash_behavior) | |||
218 | return true; | 212 | return true; |
219 | } | 213 | } |
220 | 214 | ||
215 | bool LLCrashLogger::runCrashLogPost(LLString host, LLSD data, LLString msg, int retries, int timeout) | ||
216 | { | ||
217 | gBreak = false; | ||
218 | LLString status_message; | ||
219 | for(int i = 0; i < retries; ++i) | ||
220 | { | ||
221 | status_message = llformat("%s, try %d...", msg.c_str(), i+1); | ||
222 | LLHTTPClient::post(host, data, new LLCrashLoggerResponder(), timeout); | ||
223 | while(!gBreak) | ||
224 | { | ||
225 | updateApplication(status_message); | ||
226 | } | ||
227 | if(gSent) | ||
228 | { | ||
229 | return gSent; | ||
230 | } | ||
231 | } | ||
232 | return gSent; | ||
233 | } | ||
234 | |||
221 | bool LLCrashLogger::sendCrashLogs() | 235 | bool LLCrashLogger::sendCrashLogs() |
222 | { | 236 | { |
223 | gatherFiles(); | 237 | gatherFiles(); |
@@ -234,27 +248,20 @@ bool LLCrashLogger::sendCrashLogs() | |||
234 | std::ofstream out_file(report_file.c_str()); | 248 | std::ofstream out_file(report_file.c_str()); |
235 | LLSDSerialize::toPrettyXML(post_data, out_file); | 249 | LLSDSerialize::toPrettyXML(post_data, out_file); |
236 | out_file.close(); | 250 | out_file.close(); |
237 | LLHTTPClient::post(mCrashHost, post_data, new LLCrashLoggerResponder(), 5); | ||
238 | 251 | ||
239 | gBreak = false; | 252 | bool sent = false; |
240 | while(!gBreak) | 253 | |
254 | if(mCrashHost != "") | ||
241 | { | 255 | { |
242 | updateApplication("Sending logs..."); | 256 | sent = runCrashLogPost(mCrashHost, post_data, "Sending to server", 3, 5); |
243 | } | 257 | } |
244 | 258 | ||
245 | if(!gSent) | 259 | if(!sent) |
246 | { | 260 | { |
247 | gBreak = false; | 261 | sent = runCrashLogPost(mAltCrashHost, post_data, "Sending to alternate server", 3, 5); |
248 | LLHTTPClient::post(mAltCrashHost, post_data, new LLCrashLoggerResponder(), 5); | ||
249 | |||
250 | while(!gBreak) | ||
251 | { | ||
252 | updateApplication("Sending logs to Alternate Server..."); | ||
253 | } | ||
254 | } | 262 | } |
255 | 263 | ||
256 | 264 | mSentCrashLogs = sent; | |
257 | mSentCrashLogs = gSent; | ||
258 | 265 | ||
259 | return true; | 266 | return true; |
260 | } | 267 | } |
diff --git a/linden/indra/llcrashlogger/llcrashlogger.h b/linden/indra/llcrashlogger/llcrashlogger.h index d5618b7..bf51e71 100755 --- a/linden/indra/llcrashlogger/llcrashlogger.h +++ b/linden/indra/llcrashlogger/llcrashlogger.h | |||
@@ -56,11 +56,11 @@ public: | |||
56 | virtual bool cleanup() { return true; } | 56 | virtual bool cleanup() { return true; } |
57 | void setUserText(LLString& text) { mCrashInfo["UserNotes"] = text; } | 57 | void setUserText(LLString& text) { mCrashInfo["UserNotes"] = text; } |
58 | S32 getCrashBehavior() { return mCrashBehavior; } | 58 | S32 getCrashBehavior() { return mCrashBehavior; } |
59 | bool runCrashLogPost(LLString host, LLSD data, LLString msg, int retries, int timeout); | ||
59 | protected: | 60 | protected: |
60 | S32 mCrashBehavior; | 61 | S32 mCrashBehavior; |
61 | BOOL mCrashInPreviousExec; | 62 | BOOL mCrashInPreviousExec; |
62 | std::map<LLString, LLString> mFileMap; | 63 | std::map<LLString, LLString> mFileMap; |
63 | static const int mMaxSendSize = 200000; | ||
64 | LLString mGridName; | 64 | LLString mGridName; |
65 | LLControlGroup mCrashSettings; | 65 | LLControlGroup mCrashSettings; |
66 | LLString mProductName; | 66 | LLString mProductName; |
diff --git a/linden/indra/llimage/llimage.cpp b/linden/indra/llimage/llimage.cpp index b9bf26a..15da71a 100644 --- a/linden/indra/llimage/llimage.cpp +++ b/linden/indra/llimage/llimage.cpp | |||
@@ -144,7 +144,10 @@ U8* LLImageBase::allocateData(S32 size) | |||
144 | mData = new U8[size]; | 144 | mData = new U8[size]; |
145 | if (!mData) | 145 | if (!mData) |
146 | { | 146 | { |
147 | llerrs << "allocate image data: " << size << llendl; | 147 | //llerrs << "allocate image data: " << size << llendl; |
148 | llwarns << "allocate image data: " << size << llendl; | ||
149 | size = 0 ; | ||
150 | mWidth = mHeight = 0 ; | ||
148 | } | 151 | } |
149 | mDataSize = size; | 152 | mDataSize = size; |
150 | } | 153 | } |
@@ -1340,7 +1343,7 @@ S32 LLImageFormatted::calcDiscardLevelBytes(S32 bytes) | |||
1340 | //---------------------------------------------------------------------------- | 1343 | //---------------------------------------------------------------------------- |
1341 | 1344 | ||
1342 | // Subclasses that can handle more than 4 channels should override this function. | 1345 | // Subclasses that can handle more than 4 channels should override this function. |
1343 | BOOL LLImageFormatted::decode(LLImageRaw* raw_image,F32 decode_time, S32 first_channel, S32 max_channel) | 1346 | BOOL LLImageFormatted::decodeChannels(LLImageRaw* raw_image,F32 decode_time, S32 first_channel, S32 max_channel) |
1344 | { | 1347 | { |
1345 | llassert( (first_channel == 0) && (max_channel == 4) ); | 1348 | llassert( (first_channel == 0) && (max_channel == 4) ); |
1346 | return decode( raw_image, decode_time ); // Loads first 4 channels by default. | 1349 | return decode( raw_image, decode_time ); // Loads first 4 channels by default. |
diff --git a/linden/indra/llimage/llimage.h b/linden/indra/llimage/llimage.h index ef736ec..8546303 100644 --- a/linden/indra/llimage/llimage.h +++ b/linden/indra/llimage/llimage.h | |||
@@ -268,11 +268,11 @@ public: | |||
268 | void appendData(U8 *data, S32 size); | 268 | void appendData(U8 *data, S32 size); |
269 | 269 | ||
270 | // Loads first 4 channels. | 270 | // Loads first 4 channels. |
271 | virtual BOOL decode(LLImageRaw* raw_image, F32 decode_time=0.0) = 0; | 271 | virtual BOOL decode(LLImageRaw* raw_image, F32 decode_time) = 0; |
272 | // Subclasses that can handle more than 4 channels should override this function. | 272 | // Subclasses that can handle more than 4 channels should override this function. |
273 | virtual BOOL decode(LLImageRaw* raw_image, F32 decode_time, S32 first_channel, S32 max_channel); | 273 | virtual BOOL decodeChannels(LLImageRaw* raw_image, F32 decode_time, S32 first_channel, S32 max_channel); |
274 | 274 | ||
275 | virtual BOOL encode(const LLImageRaw* raw_image, F32 encode_time=0.0) = 0; | 275 | virtual BOOL encode(const LLImageRaw* raw_image, F32 encode_time) = 0; |
276 | 276 | ||
277 | S8 getCodec() const; | 277 | S8 getCodec() const; |
278 | BOOL isDecoding() const { return mDecoding ? TRUE : FALSE; } | 278 | BOOL isDecoding() const { return mDecoding ? TRUE : FALSE; } |
diff --git a/linden/indra/llimage/llimagebmp.h b/linden/indra/llimage/llimagebmp.h index 8c83bc5..2b25c43 100644 --- a/linden/indra/llimage/llimagebmp.h +++ b/linden/indra/llimage/llimagebmp.h | |||
@@ -45,8 +45,8 @@ public: | |||
45 | LLImageBMP(); | 45 | LLImageBMP(); |
46 | 46 | ||
47 | /*virtual*/ BOOL updateData(); | 47 | /*virtual*/ BOOL updateData(); |
48 | /*virtual*/ BOOL decode(LLImageRaw* raw_image, F32 time=0.0); | 48 | /*virtual*/ BOOL decode(LLImageRaw* raw_image, F32 decode_time); |
49 | /*virtual*/ BOOL encode(const LLImageRaw* raw_image, F32 time=0.0); | 49 | /*virtual*/ BOOL encode(const LLImageRaw* raw_image, F32 encode_time); |
50 | 50 | ||
51 | protected: | 51 | protected: |
52 | BOOL decodeColorTable8( U8* dst, U8* src ); | 52 | BOOL decodeColorTable8( U8* dst, U8* src ); |
diff --git a/linden/indra/llimage/llimagedxt.cpp b/linden/indra/llimage/llimagedxt.cpp index 722ac9b..d3b8225 100644 --- a/linden/indra/llimage/llimagedxt.cpp +++ b/linden/indra/llimage/llimagedxt.cpp | |||
@@ -308,7 +308,7 @@ BOOL LLImageDXT::getMipData(LLPointer<LLImageRaw>& raw, S32 discard) | |||
308 | return TRUE; | 308 | return TRUE; |
309 | } | 309 | } |
310 | 310 | ||
311 | BOOL LLImageDXT::encode(const LLImageRaw* raw_image, F32 time, bool explicit_mips) | 311 | BOOL LLImageDXT::encodeDXT(const LLImageRaw* raw_image, F32 time, bool explicit_mips) |
312 | { | 312 | { |
313 | llassert_always(raw_image); | 313 | llassert_always(raw_image); |
314 | 314 | ||
@@ -396,7 +396,7 @@ BOOL LLImageDXT::encode(const LLImageRaw* raw_image, F32 time, bool explicit_mip | |||
396 | // virtual | 396 | // virtual |
397 | BOOL LLImageDXT::encode(const LLImageRaw* raw_image, F32 time) | 397 | BOOL LLImageDXT::encode(const LLImageRaw* raw_image, F32 time) |
398 | { | 398 | { |
399 | return encode(raw_image, time, false); | 399 | return encodeDXT(raw_image, time, false); |
400 | } | 400 | } |
401 | 401 | ||
402 | // virtual | 402 | // virtual |
diff --git a/linden/indra/llimage/llimagedxt.h b/linden/indra/llimage/llimagedxt.h index c795d4e..f144c21 100644 --- a/linden/indra/llimage/llimagedxt.h +++ b/linden/indra/llimage/llimagedxt.h | |||
@@ -95,15 +95,17 @@ public: | |||
95 | 95 | ||
96 | protected: | 96 | protected: |
97 | /*virtual*/ ~LLImageDXT(); | 97 | /*virtual*/ ~LLImageDXT(); |
98 | |||
99 | private: | ||
100 | BOOL encodeDXT(const LLImageRaw* raw_image, F32 decode_time, bool explicit_mips); | ||
98 | 101 | ||
99 | public: | 102 | public: |
100 | LLImageDXT(); | 103 | LLImageDXT(); |
101 | 104 | ||
102 | /*virtual*/ BOOL updateData(); | 105 | /*virtual*/ BOOL updateData(); |
103 | 106 | ||
104 | /*virtual*/ BOOL decode(LLImageRaw* raw_image, F32 time=0.0); | 107 | /*virtual*/ BOOL decode(LLImageRaw* raw_image, F32 decode_time); |
105 | BOOL encode(const LLImageRaw* raw_image, F32 time, bool explicit_mips); | 108 | /*virtual*/ BOOL encode(const LLImageRaw* raw_image, F32 encode_time); |
106 | /*virtual*/ BOOL encode(const LLImageRaw* raw_image, F32 time=0.0); | ||
107 | 109 | ||
108 | /*virtual*/ S32 calcHeaderSize(); | 110 | /*virtual*/ S32 calcHeaderSize(); |
109 | /*virtual*/ S32 calcDataSize(S32 discard_level = 0); | 111 | /*virtual*/ S32 calcDataSize(S32 discard_level = 0); |
diff --git a/linden/indra/llimage/llimagej2c.cpp b/linden/indra/llimage/llimagej2c.cpp index 0011296..9de4d5f 100644 --- a/linden/indra/llimage/llimagej2c.cpp +++ b/linden/indra/llimage/llimagej2c.cpp | |||
@@ -250,11 +250,11 @@ BOOL LLImageJ2C::updateData() | |||
250 | 250 | ||
251 | BOOL LLImageJ2C::decode(LLImageRaw *raw_imagep, F32 decode_time) | 251 | BOOL LLImageJ2C::decode(LLImageRaw *raw_imagep, F32 decode_time) |
252 | { | 252 | { |
253 | return decode(raw_imagep, decode_time, 0, 4); | 253 | return decodeChannels(raw_imagep, decode_time, 0, 4); |
254 | } | 254 | } |
255 | 255 | ||
256 | 256 | ||
257 | BOOL LLImageJ2C::decode(LLImageRaw *raw_imagep, F32 decode_time, S32 first_channel, S32 max_channel_count ) | 257 | BOOL LLImageJ2C::decodeChannels(LLImageRaw *raw_imagep, F32 decode_time, S32 first_channel, S32 max_channel_count ) |
258 | { | 258 | { |
259 | LLMemType mt1((LLMemType::EMemType)mMemType); | 259 | LLMemType mt1((LLMemType::EMemType)mMemType); |
260 | 260 | ||
diff --git a/linden/indra/llimage/llimagej2c.h b/linden/indra/llimage/llimagej2c.h index da844a1..7e02c98 100644 --- a/linden/indra/llimage/llimagej2c.h +++ b/linden/indra/llimage/llimagej2c.h | |||
@@ -46,9 +46,9 @@ public: | |||
46 | 46 | ||
47 | // Base class overrides | 47 | // Base class overrides |
48 | /*virtual*/ BOOL updateData(); | 48 | /*virtual*/ BOOL updateData(); |
49 | /*virtual*/ BOOL decode(LLImageRaw *raw_imagep, F32 decode_time=0.0); | 49 | /*virtual*/ BOOL decode(LLImageRaw *raw_imagep, F32 decode_time); |
50 | /*virtual*/ BOOL decode(LLImageRaw *raw_imagep, F32 decode_time, S32 first_channel, S32 max_channel_count); | 50 | /*virtual*/ BOOL decodeChannels(LLImageRaw *raw_imagep, F32 decode_time, S32 first_channel, S32 max_channel_count); |
51 | /*virtual*/ BOOL encode(const LLImageRaw *raw_imagep, F32 encode_time=0.0); | 51 | /*virtual*/ BOOL encode(const LLImageRaw *raw_imagep, F32 encode_time); |
52 | /*virtual*/ S32 calcHeaderSize(); | 52 | /*virtual*/ S32 calcHeaderSize(); |
53 | /*virtual*/ S32 calcDataSize(S32 discard_level = 0); | 53 | /*virtual*/ S32 calcDataSize(S32 discard_level = 0); |
54 | /*virtual*/ S32 calcDiscardLevelBytes(S32 bytes); | 54 | /*virtual*/ S32 calcDiscardLevelBytes(S32 bytes); |
diff --git a/linden/indra/llimage/llimagejpeg.h b/linden/indra/llimage/llimagejpeg.h index b143c47..a890bf4 100644 --- a/linden/indra/llimage/llimagejpeg.h +++ b/linden/indra/llimage/llimagejpeg.h | |||
@@ -55,8 +55,8 @@ public: | |||
55 | LLImageJPEG(); | 55 | LLImageJPEG(); |
56 | 56 | ||
57 | /*virtual*/ BOOL updateData(); | 57 | /*virtual*/ BOOL updateData(); |
58 | /*virtual*/ BOOL decode(LLImageRaw* raw_image, F32 time=0.0); | 58 | /*virtual*/ BOOL decode(LLImageRaw* raw_image, F32 decode_time); |
59 | /*virtual*/ BOOL encode(const LLImageRaw* raw_image, F32 time=0.0); | 59 | /*virtual*/ BOOL encode(const LLImageRaw* raw_image, F32 encode_time); |
60 | 60 | ||
61 | void setEncodeQuality( S32 q ) { mEncodeQuality = q; } // on a scale from 1 to 100 | 61 | void setEncodeQuality( S32 q ) { mEncodeQuality = q; } // on a scale from 1 to 100 |
62 | S32 getEncodeQuality() { return mEncodeQuality; } | 62 | S32 getEncodeQuality() { return mEncodeQuality; } |
diff --git a/linden/indra/llimage/llimagepng.h b/linden/indra/llimage/llimagepng.h index 982454a..7ca59cf 100644 --- a/linden/indra/llimage/llimagepng.h +++ b/linden/indra/llimage/llimagepng.h | |||
@@ -43,8 +43,8 @@ public: | |||
43 | LLImagePNG(); | 43 | LLImagePNG(); |
44 | 44 | ||
45 | BOOL updateData(); | 45 | BOOL updateData(); |
46 | BOOL decode(LLImageRaw* raw_image, F32 decode_time = 0.0); | 46 | BOOL decode(LLImageRaw* raw_image, F32 decode_time); |
47 | BOOL encode(const LLImageRaw* raw_image, F32 encode_time = 0.0); | 47 | BOOL encode(const LLImageRaw* raw_image, F32 encode_time); |
48 | 48 | ||
49 | private: | 49 | private: |
50 | U8* mTmpWriteBuffer; | 50 | U8* mTmpWriteBuffer; |
diff --git a/linden/indra/llimage/llimageworker.cpp b/linden/indra/llimage/llimageworker.cpp index 2800caf..dc6f2e4 100644 --- a/linden/indra/llimage/llimageworker.cpp +++ b/linden/indra/llimage/llimageworker.cpp | |||
@@ -115,7 +115,7 @@ bool LLImageWorker::doWork(S32 param) | |||
115 | else | 115 | else |
116 | { | 116 | { |
117 | // Decode aux channel | 117 | // Decode aux channel |
118 | decoded = mFormattedImage->decode(mDecodedImage, .1f, param, param); // 1ms | 118 | decoded = mFormattedImage->decodeChannels(mDecodedImage, .1f, param, param); // 1ms |
119 | } | 119 | } |
120 | } | 120 | } |
121 | if (decoded) | 121 | if (decoded) |
diff --git a/linden/indra/llinventory/llinventory.cpp b/linden/indra/llinventory/llinventory.cpp index e6c1175..3afa2be 100644 --- a/linden/indra/llinventory/llinventory.cpp +++ b/linden/indra/llinventory/llinventory.cpp | |||
@@ -99,7 +99,7 @@ LLInventoryObject::~LLInventoryObject( void ) | |||
99 | { | 99 | { |
100 | } | 100 | } |
101 | 101 | ||
102 | void LLInventoryObject::copy(const LLInventoryObject* other) | 102 | void LLInventoryObject::copyObject(const LLInventoryObject* other) |
103 | { | 103 | { |
104 | mUUID = other->mUUID; | 104 | mUUID = other->mUUID; |
105 | mParentUUID = other->mParentUUID; | 105 | mParentUUID = other->mParentUUID; |
@@ -309,7 +309,7 @@ LLInventoryItem::LLInventoryItem() : | |||
309 | LLInventoryItem::LLInventoryItem(const LLInventoryItem* other) : | 309 | LLInventoryItem::LLInventoryItem(const LLInventoryItem* other) : |
310 | LLInventoryObject() | 310 | LLInventoryObject() |
311 | { | 311 | { |
312 | copy(other); | 312 | copyItem(other); |
313 | } | 313 | } |
314 | 314 | ||
315 | LLInventoryItem::~LLInventoryItem() | 315 | LLInventoryItem::~LLInventoryItem() |
@@ -317,9 +317,9 @@ LLInventoryItem::~LLInventoryItem() | |||
317 | } | 317 | } |
318 | 318 | ||
319 | // virtual | 319 | // virtual |
320 | void LLInventoryItem::copy(const LLInventoryItem* other) | 320 | void LLInventoryItem::copyItem(const LLInventoryItem* other) |
321 | { | 321 | { |
322 | LLInventoryObject::copy(other); | 322 | copyObject(other); |
323 | mPermissions = other->mPermissions; | 323 | mPermissions = other->mPermissions; |
324 | mAssetUUID = other->mAssetUUID; | 324 | mAssetUUID = other->mAssetUUID; |
325 | mDescription = other->mDescription; | 325 | mDescription = other->mDescription; |
@@ -331,10 +331,10 @@ void LLInventoryItem::copy(const LLInventoryItem* other) | |||
331 | 331 | ||
332 | // As a constructor alternative, the clone() method works like a | 332 | // As a constructor alternative, the clone() method works like a |
333 | // copy constructor, but gens a new UUID. | 333 | // copy constructor, but gens a new UUID. |
334 | void LLInventoryItem::clone(LLPointer<LLInventoryItem>& newitem) const | 334 | void LLInventoryItem::cloneItem(LLPointer<LLInventoryItem>& newitem) const |
335 | { | 335 | { |
336 | newitem = new LLInventoryItem; | 336 | newitem = new LLInventoryItem; |
337 | newitem->copy(this); | 337 | newitem->copyItem(this); |
338 | newitem->mUUID.generate(); | 338 | newitem->mUUID.generate(); |
339 | } | 339 | } |
340 | 340 | ||
@@ -1334,7 +1334,7 @@ LLInventoryCategory::LLInventoryCategory() : | |||
1334 | LLInventoryCategory::LLInventoryCategory(const LLInventoryCategory* other) : | 1334 | LLInventoryCategory::LLInventoryCategory(const LLInventoryCategory* other) : |
1335 | LLInventoryObject() | 1335 | LLInventoryObject() |
1336 | { | 1336 | { |
1337 | copy(other); | 1337 | copyCategory(other); |
1338 | } | 1338 | } |
1339 | 1339 | ||
1340 | LLInventoryCategory::~LLInventoryCategory() | 1340 | LLInventoryCategory::~LLInventoryCategory() |
@@ -1342,9 +1342,9 @@ LLInventoryCategory::~LLInventoryCategory() | |||
1342 | } | 1342 | } |
1343 | 1343 | ||
1344 | // virtual | 1344 | // virtual |
1345 | void LLInventoryCategory::copy(const LLInventoryCategory* other) | 1345 | void LLInventoryCategory::copyCategory(const LLInventoryCategory* other) |
1346 | { | 1346 | { |
1347 | LLInventoryObject::copy(other); | 1347 | copyObject(other); |
1348 | mPreferredType = other->mPreferredType; | 1348 | mPreferredType = other->mPreferredType; |
1349 | } | 1349 | } |
1350 | 1350 | ||
diff --git a/linden/indra/llinventory/llinventory.h b/linden/indra/llinventory/llinventory.h index 3662d63..1623edf 100644 --- a/linden/indra/llinventory/llinventory.h +++ b/linden/indra/llinventory/llinventory.h | |||
@@ -85,7 +85,7 @@ public: | |||
85 | LLInventoryObject(const LLUUID& uuid, const LLUUID& parent_uuid, | 85 | LLInventoryObject(const LLUUID& uuid, const LLUUID& parent_uuid, |
86 | LLAssetType::EType type, const LLString& name); | 86 | LLAssetType::EType type, const LLString& name); |
87 | LLInventoryObject(); | 87 | LLInventoryObject(); |
88 | virtual void copy(const LLInventoryObject* other); // LLRefCount requires custom copy | 88 | void copyObject(const LLInventoryObject* other); // LLRefCount requires custom copy |
89 | 89 | ||
90 | // accessors | 90 | // accessors |
91 | const LLUUID& getUUID() const; | 91 | const LLUUID& getUUID() const; |
@@ -194,12 +194,12 @@ public: | |||
194 | // Note: Because InventoryItems are ref counted, reference copy (a = b) | 194 | // Note: Because InventoryItems are ref counted, reference copy (a = b) |
195 | // is prohibited | 195 | // is prohibited |
196 | LLInventoryItem(const LLInventoryItem* other); | 196 | LLInventoryItem(const LLInventoryItem* other); |
197 | virtual void copy(const LLInventoryItem* other); // LLRefCount requires custom copy | 197 | virtual void copyItem(const LLInventoryItem* other); // LLRefCount requires custom copy |
198 | 198 | ||
199 | // As a constructor alternative, the clone() method works like a | 199 | // As a constructor alternative, the clone() method works like a |
200 | // copy constructor, but gens a new UUID. | 200 | // copy constructor, but gens a new UUID. |
201 | // It is up to the caller to delete (unref) the item. | 201 | // It is up to the caller to delete (unref) the item. |
202 | virtual void clone(LLPointer<LLInventoryItem>& newitem) const; | 202 | virtual void cloneItem(LLPointer<LLInventoryItem>& newitem) const; |
203 | 203 | ||
204 | // accessors | 204 | // accessors |
205 | const LLPermissions& getPermissions() const; | 205 | const LLPermissions& getPermissions() const; |
@@ -278,7 +278,7 @@ public: | |||
278 | const LLString& name); | 278 | const LLString& name); |
279 | LLInventoryCategory(); | 279 | LLInventoryCategory(); |
280 | LLInventoryCategory(const LLInventoryCategory* other); | 280 | LLInventoryCategory(const LLInventoryCategory* other); |
281 | virtual void copy(const LLInventoryCategory* other); // LLRefCount requires custom copy | 281 | void copyCategory(const LLInventoryCategory* other); // LLRefCount requires custom copy |
282 | 282 | ||
283 | // accessors and mutators | 283 | // accessors and mutators |
284 | LLAssetType::EType getPreferredType() const; | 284 | LLAssetType::EType getPreferredType() const; |
diff --git a/linden/indra/llmath/lloctree.h b/linden/indra/llmath/lloctree.h index 203cb41..52ad1bb 100644 --- a/linden/indra/llmath/lloctree.h +++ b/linden/indra/llmath/lloctree.h | |||
@@ -567,8 +567,6 @@ public: | |||
567 | { | 567 | { |
568 | } | 568 | } |
569 | 569 | ||
570 | bool isLeaf() { return false; } | ||
571 | |||
572 | bool balance() | 570 | bool balance() |
573 | { | 571 | { |
574 | if (this->getChildCount() == 1 && | 572 | if (this->getChildCount() == 1 && |
diff --git a/linden/indra/llmath/llvolume.cpp b/linden/indra/llmath/llvolume.cpp index 7403724..4f1c260 100644 --- a/linden/indra/llmath/llvolume.cpp +++ b/linden/indra/llmath/llvolume.cpp | |||
@@ -1859,7 +1859,7 @@ inline U32 sculpt_xy_to_index(U32 x, U32 y, U16 sculpt_width, U16 sculpt_height, | |||
1859 | U32 index = (x + y * sculpt_width) * sculpt_components; | 1859 | U32 index = (x + y * sculpt_width) * sculpt_components; |
1860 | 1860 | ||
1861 | // attempt to resolve DEV-11158 - remove assert later. | 1861 | // attempt to resolve DEV-11158 - remove assert later. |
1862 | llassert(index < sculpt_width * sculpt_height * sculpt_components); | 1862 | //llassert(index < sculpt_width * sculpt_height * sculpt_components); |
1863 | 1863 | ||
1864 | return index; | 1864 | return index; |
1865 | } | 1865 | } |
diff --git a/linden/indra/llmath/llvolumemgr.cpp b/linden/indra/llmath/llvolumemgr.cpp index 4bf7ca6..db99959 100644 --- a/linden/indra/llmath/llvolumemgr.cpp +++ b/linden/indra/llmath/llvolumemgr.cpp | |||
@@ -229,12 +229,6 @@ LLVolumeLODGroup::LLVolumeLODGroup(const LLVolumeParams ¶ms) | |||
229 | 229 | ||
230 | LLVolumeLODGroup::~LLVolumeLODGroup() | 230 | LLVolumeLODGroup::~LLVolumeLODGroup() |
231 | { | 231 | { |
232 | S32 i; | ||
233 | for (i = 0; i < NUM_LODS; i++) | ||
234 | { | ||
235 | delete mVolumeLODs[i]; | ||
236 | mVolumeLODs[i] = NULL; | ||
237 | } | ||
238 | } | 232 | } |
239 | 233 | ||
240 | 234 | ||
@@ -242,11 +236,12 @@ LLVolume * LLVolumeLODGroup::getLOD(const S32 detail) | |||
242 | { | 236 | { |
243 | llassert(detail >=0 && detail < NUM_LODS); | 237 | llassert(detail >=0 && detail < NUM_LODS); |
244 | mAccessCount[detail]++; | 238 | mAccessCount[detail]++; |
245 | mLODRefs[detail]++; | 239 | |
246 | if (!mVolumeLODs[detail]) | 240 | if (!mLODRefs[detail]) |
247 | { | 241 | { |
248 | mVolumeLODs[detail] = new LLVolume(mParams, mDetailScales[detail]); | 242 | mVolumeLODs[detail] = new LLVolume(mParams, mDetailScales[detail]); |
249 | } | 243 | } |
244 | mLODRefs[detail]++; | ||
250 | return mVolumeLODs[detail]; | 245 | return mVolumeLODs[detail]; |
251 | } | 246 | } |
252 | 247 | ||
diff --git a/linden/indra/llmath/llvolumemgr.h b/linden/indra/llmath/llvolumemgr.h index 0d6aa56..889bc56 100644 --- a/linden/indra/llmath/llvolumemgr.h +++ b/linden/indra/llmath/llvolumemgr.h | |||
@@ -69,7 +69,7 @@ protected: | |||
69 | LLVolumeParams mParams; | 69 | LLVolumeParams mParams; |
70 | 70 | ||
71 | S32 mLODRefs[NUM_LODS]; | 71 | S32 mLODRefs[NUM_LODS]; |
72 | LLVolume *mVolumeLODs[NUM_LODS]; | 72 | LLPointer<LLVolume> mVolumeLODs[NUM_LODS]; |
73 | static F32 mDetailThresholds[NUM_LODS]; | 73 | static F32 mDetailThresholds[NUM_LODS]; |
74 | static F32 mDetailScales[NUM_LODS]; | 74 | static F32 mDetailScales[NUM_LODS]; |
75 | S32 mAccessCount[NUM_LODS]; | 75 | S32 mAccessCount[NUM_LODS]; |
diff --git a/linden/indra/llmedia/llmediaimplgstreamer.cpp b/linden/indra/llmedia/llmediaimplgstreamer.cpp index b54d088..8b0363a 100644 --- a/linden/indra/llmedia/llmediaimplgstreamer.cpp +++ b/linden/indra/llmedia/llmediaimplgstreamer.cpp | |||
@@ -185,11 +185,15 @@ startup ( LLMediaManagerData* init_data ) | |||
185 | else | 185 | else |
186 | WARNMSG("gst_segtrap_set_enabled() is not available; Automated crash-reporter may cease to function until next restart."); | 186 | WARNMSG("gst_segtrap_set_enabled() is not available; Automated crash-reporter may cease to function until next restart."); |
187 | 187 | ||
188 | // Protect against GStreamer resetting the locale, yuck. | ||
189 | std::string saved_locale = setlocale(LC_ALL, NULL); | ||
188 | if (0 == llgst_init_check(NULL, NULL, NULL)) | 190 | if (0 == llgst_init_check(NULL, NULL, NULL)) |
189 | { | 191 | { |
190 | WARNMSG("GST init failed for unspecified reason."); | 192 | WARNMSG("GST init failed for unspecified reason."); |
193 | setlocale(LC_ALL, saved_locale.c_str() ); | ||
191 | return false; | 194 | return false; |
192 | } | 195 | } |
196 | setlocale(LC_ALL, saved_locale.c_str() ); | ||
193 | 197 | ||
194 | // Init our custom plugins - only really need do this once. | 198 | // Init our custom plugins - only really need do this once. |
195 | gst_slvideo_init_class(); | 199 | gst_slvideo_init_class(); |
diff --git a/linden/indra/llmedia/llmediaimplgstreamer_syms.cpp b/linden/indra/llmedia/llmediaimplgstreamer_syms.cpp index bba3ef5..c5e3c7b 100644 --- a/linden/indra/llmedia/llmediaimplgstreamer_syms.cpp +++ b/linden/indra/llmedia/llmediaimplgstreamer_syms.cpp | |||
@@ -124,7 +124,7 @@ bool grab_gst_syms(std::string gst_dso_name, | |||
124 | } | 124 | } |
125 | else | 125 | else |
126 | { | 126 | { |
127 | INFOMSG("Couldn't load DSO: ", gst_dso_name.c_str()); | 127 | INFOMSG("Couldn't load DSO: %s", gst_dso_name.c_str()); |
128 | rtn = false; // failure | 128 | rtn = false; // failure |
129 | } | 129 | } |
130 | 130 | ||
diff --git a/linden/indra/llmedia/llmediaimplllmozlib.cpp b/linden/indra/llmedia/llmediaimplllmozlib.cpp index 87d9c77..5efaa59 100644 --- a/linden/indra/llmedia/llmediaimplllmozlib.cpp +++ b/linden/indra/llmedia/llmediaimplllmozlib.cpp | |||
@@ -47,7 +47,10 @@ | |||
47 | // Linux, MESA headers, but not necessarily assuming MESA runtime. | 47 | // Linux, MESA headers, but not necessarily assuming MESA runtime. |
48 | // quotes so we get libraries/.../GL/ version | 48 | // quotes so we get libraries/.../GL/ version |
49 | #include "GL/gl.h" | 49 | #include "GL/gl.h" |
50 | #include <locale.h> | 50 | #endif |
51 | |||
52 | #if LL_LINUX | ||
53 | #include <locale.h> | ||
51 | #endif | 54 | #endif |
52 | 55 | ||
53 | #include <iostream> | 56 | #include <iostream> |
@@ -59,7 +62,8 @@ static LLMediaImplRegister sLLMediaImplLLMozLibReg( "LLMediaImplLLMozLib", new L | |||
59 | // | 62 | // |
60 | LLMediaImplLLMozLibMaker::LLMediaImplLLMozLibMaker() | 63 | LLMediaImplLLMozLibMaker::LLMediaImplLLMozLibMaker() |
61 | { | 64 | { |
62 | // Register to handle the scheme | 65 | // Register to handle the mime category |
66 | mMimeTypes.push_back( "image/svg+xml" ); | ||
63 | mMimeTypeCategories.push_back( "text" ); | 67 | mMimeTypeCategories.push_back( "text" ); |
64 | #if !LL_QUICKTIME_ENABLED | 68 | #if !LL_QUICKTIME_ENABLED |
65 | mMimeTypeCategories.push_back( "image" ); | 69 | mMimeTypeCategories.push_back( "image" ); |
@@ -198,17 +202,9 @@ bool LLMediaImplLLMozLib::setCaretColor( unsigned int red, unsigned int green, u | |||
198 | // virtual | 202 | // virtual |
199 | bool LLMediaImplLLMozLib::navigateTo( const std::string url ) | 203 | bool LLMediaImplLLMozLib::navigateTo( const std::string url ) |
200 | { | 204 | { |
201 | #if LL_LINUX | ||
202 | std::string saved_locale = setlocale(LC_ALL, NULL); | ||
203 | #endif // LL_LINUX | ||
204 | |||
205 | // pass url to llmozlib | 205 | // pass url to llmozlib |
206 | LLMozLib::getInstance()->navigateTo( mWindowId, url ); | 206 | LLMozLib::getInstance()->navigateTo( mWindowId, url ); |
207 | 207 | ||
208 | #if LL_LINUX | ||
209 | setlocale(LC_ALL, saved_locale.c_str() ); | ||
210 | #endif // LL_LINUX | ||
211 | |||
212 | // emit event with size change to kick things off | 208 | // emit event with size change to kick things off |
213 | LLMediaEvent event( this ); | 209 | LLMediaEvent event( this ); |
214 | mEventEmitter.update( &LLMediaObserver::onMediaSizeChange, event ); | 210 | mEventEmitter.update( &LLMediaObserver::onMediaSizeChange, event ); |
@@ -264,10 +260,6 @@ bool LLMediaImplLLMozLib::updateState() | |||
264 | clearCommand(); | 260 | clearCommand(); |
265 | }; | 261 | }; |
266 | 262 | ||
267 | #if LL_LINUX | ||
268 | std::string saved_locale = setlocale(LC_ALL, NULL); | ||
269 | #endif // LL_LINUX | ||
270 | |||
271 | if ( nextCommand() == LLMediaBase::COMMAND_BACK ) | 263 | if ( nextCommand() == LLMediaBase::COMMAND_BACK ) |
272 | { | 264 | { |
273 | setStatus( LLMediaBase::STATUS_STARTED ); | 265 | setStatus( LLMediaBase::STATUS_STARTED ); |
@@ -282,10 +274,6 @@ bool LLMediaImplLLMozLib::updateState() | |||
282 | clearCommand(); | 274 | clearCommand(); |
283 | }; | 275 | }; |
284 | 276 | ||
285 | #if LL_LINUX | ||
286 | setlocale(LC_ALL, saved_locale.c_str() ); | ||
287 | #endif // LL_LINUX | ||
288 | |||
289 | return true; | 277 | return true; |
290 | } | 278 | } |
291 | 279 | ||
@@ -382,16 +370,8 @@ bool LLMediaImplLLMozLib::recomputeSizes() | |||
382 | new_height = LLMediaManager::textureHeightFromMediaHeight( new_height ); | 370 | new_height = LLMediaManager::textureHeightFromMediaHeight( new_height ); |
383 | } | 371 | } |
384 | 372 | ||
385 | #if LL_LINUX | ||
386 | std::string saved_locale = setlocale(LC_ALL, NULL); | ||
387 | #endif // LL_LINUX | ||
388 | |||
389 | bool status = LLMozLib::getInstance()->setSize( mWindowId, new_width, new_height ); | 373 | bool status = LLMozLib::getInstance()->setSize( mWindowId, new_width, new_height ); |
390 | 374 | ||
391 | #if LL_LINUX | ||
392 | setlocale(LC_ALL, saved_locale.c_str() ); | ||
393 | #endif // LL_LINUX | ||
394 | |||
395 | if (status) | 375 | if (status) |
396 | setMediaSize(new_width, new_height); | 376 | setMediaSize(new_width, new_height); |
397 | 377 | ||
@@ -623,20 +603,12 @@ bool LLMediaImplLLMozLib::clearCookies() | |||
623 | // virtual | 603 | // virtual |
624 | bool LLMediaImplLLMozLib::reset() | 604 | bool LLMediaImplLLMozLib::reset() |
625 | { | 605 | { |
626 | #if LL_LINUX | ||
627 | std::string saved_locale = setlocale(LC_ALL, NULL); | ||
628 | #endif // LL_LINUX | ||
629 | |||
630 | LLMozLib::getInstance()->remObserver( mWindowId, this ); | 606 | LLMozLib::getInstance()->remObserver( mWindowId, this ); |
631 | 607 | ||
632 | LLMozLib::getInstance()->destroyBrowserWindow( mWindowId ); | 608 | LLMozLib::getInstance()->destroyBrowserWindow( mWindowId ); |
633 | 609 | ||
634 | mWindowId = 0; | 610 | mWindowId = 0; |
635 | 611 | ||
636 | #if LL_LINUX | ||
637 | setlocale(LC_ALL, saved_locale.c_str() ); | ||
638 | #endif // LL_LINUX | ||
639 | |||
640 | return true; | 612 | return true; |
641 | } | 613 | } |
642 | 614 | ||
diff --git a/linden/indra/llmessage/llblowfishcipher.cpp b/linden/indra/llmessage/llblowfishcipher.cpp index cdaa096..45ff045 100644 --- a/linden/indra/llmessage/llblowfishcipher.cpp +++ b/linden/indra/llmessage/llblowfishcipher.cpp | |||
@@ -2,9 +2,6 @@ | |||
2 | * @file llblowfishcipher.cpp | 2 | * @file llblowfishcipher.cpp |
3 | * @brief Wrapper around OpenSSL Blowfish encryption algorithm. | 3 | * @brief Wrapper around OpenSSL Blowfish encryption algorithm. |
4 | * | 4 | * |
5 | * We do not have OpenSSL headers or libraries on Windows, so this | ||
6 | * class only works on Linux. | ||
7 | * | ||
8 | * $LicenseInfo:firstyear=2007&license=viewergpl$ | 5 | * $LicenseInfo:firstyear=2007&license=viewergpl$ |
9 | * | 6 | * |
10 | * Copyright (c) 2007-2008, Linden Research, Inc. | 7 | * Copyright (c) 2007-2008, Linden Research, Inc. |
diff --git a/linden/indra/llmessage/llcurl.h b/linden/indra/llmessage/llcurl.h index 3d9770b..2737f6e 100644 --- a/linden/indra/llmessage/llcurl.h +++ b/linden/indra/llmessage/llcurl.h | |||
@@ -150,13 +150,10 @@ public: | |||
150 | static std::vector<LLMutex*> sSSLMutex; | 150 | static std::vector<LLMutex*> sSSLMutex; |
151 | 151 | ||
152 | // OpenSSL callbacks | 152 | // OpenSSL callbacks |
153 | static void LLCurl::ssl_locking_callback(int mode, int type, const char *file, int line); | 153 | static void ssl_locking_callback(int mode, int type, const char *file, int line); |
154 | static unsigned long LLCurl::ssl_thread_id(void); | 154 | static unsigned long ssl_thread_id(void); |
155 | |||
156 | |||
157 | |||
158 | private: | ||
159 | 155 | ||
156 | private: | ||
160 | static std::string sCAPath; | 157 | static std::string sCAPath; |
161 | static std::string sCAFile; | 158 | static std::string sCAFile; |
162 | }; | 159 | }; |
diff --git a/linden/indra/llmessage/llhttpnode.cpp b/linden/indra/llmessage/llhttpnode.cpp index afd27e9..540b507 100644 --- a/linden/indra/llmessage/llhttpnode.cpp +++ b/linden/indra/llmessage/llhttpnode.cpp | |||
@@ -169,15 +169,9 @@ void LLHTTPNode::del(LLHTTPNode::ResponsePtr response, const LLSD& context) cons | |||
169 | } | 169 | } |
170 | 170 | ||
171 | // virtual | 171 | // virtual |
172 | LLSD LLHTTPNode::del() const | ||
173 | { | ||
174 | throw NotImplemented(); | ||
175 | } | ||
176 | |||
177 | // virtual | ||
178 | LLSD LLHTTPNode::del(const LLSD&) const | 172 | LLSD LLHTTPNode::del(const LLSD&) const |
179 | { | 173 | { |
180 | return del(); | 174 | throw NotImplemented(); |
181 | } | 175 | } |
182 | 176 | ||
183 | 177 | ||
diff --git a/linden/indra/llmessage/llhttpnode.h b/linden/indra/llmessage/llhttpnode.h index b4d4aed..7d9cb95 100644 --- a/linden/indra/llmessage/llhttpnode.h +++ b/linden/indra/llmessage/llhttpnode.h | |||
@@ -86,7 +86,6 @@ public: | |||
86 | virtual LLSD put(const LLSD& input) const; | 86 | virtual LLSD put(const LLSD& input) const; |
87 | virtual LLSD post(const LLSD& input) const; | 87 | virtual LLSD post(const LLSD& input) const; |
88 | 88 | ||
89 | virtual LLSD del() const; | ||
90 | virtual LLSD del(const LLSD& context) const; | 89 | virtual LLSD del(const LLSD& context) const; |
91 | 90 | ||
92 | class Response : public LLRefCount | 91 | class Response : public LLRefCount |
@@ -109,6 +108,7 @@ public: | |||
109 | virtual void get(ResponsePtr, const LLSD& context) const; | 108 | virtual void get(ResponsePtr, const LLSD& context) const; |
110 | virtual void put(ResponsePtr, const LLSD& context, const LLSD& input) const; | 109 | virtual void put(ResponsePtr, const LLSD& context, const LLSD& input) const; |
111 | virtual void post(ResponsePtr, const LLSD& context, const LLSD& input) const; | 110 | virtual void post(ResponsePtr, const LLSD& context, const LLSD& input) const; |
111 | |||
112 | virtual void del(ResponsePtr, const LLSD& context) const; | 112 | virtual void del(ResponsePtr, const LLSD& context) const; |
113 | //@} | 113 | //@} |
114 | 114 | ||
diff --git a/linden/indra/llmessage/llpartdata.cpp b/linden/indra/llmessage/llpartdata.cpp index 606abd0..b77536d 100644 --- a/linden/indra/llmessage/llpartdata.cpp +++ b/linden/indra/llmessage/llpartdata.cpp | |||
@@ -155,6 +155,8 @@ void LLPartData::setEndAlpha(const F32 alpha) | |||
155 | LLPartSysData::LLPartSysData() | 155 | LLPartSysData::LLPartSysData() |
156 | { | 156 | { |
157 | mCRC = 0; | 157 | mCRC = 0; |
158 | mFlags = 0; | ||
159 | |||
158 | mPartData.mFlags = 0; | 160 | mPartData.mFlags = 0; |
159 | mPartData.mStartColor = LLColor4(1.f, 1.f, 1.f, 1.f); | 161 | mPartData.mStartColor = LLColor4(1.f, 1.f, 1.f, 1.f); |
160 | mPartData.mEndColor = LLColor4(1.f, 1.f, 1.f, 1.f); | 162 | mPartData.mEndColor = LLColor4(1.f, 1.f, 1.f, 1.f); |
@@ -172,6 +174,8 @@ LLPartSysData::LLPartSysData() | |||
172 | mBurstSpeedMin = 1.f; // Minimum particle velocity | 174 | mBurstSpeedMin = 1.f; // Minimum particle velocity |
173 | mBurstSpeedMax = 1.f; // Maximum particle velocity | 175 | mBurstSpeedMax = 1.f; // Maximum particle velocity |
174 | mBurstRadius = 0.f; | 176 | mBurstRadius = 0.f; |
177 | |||
178 | mNumParticles = 0; | ||
175 | } | 179 | } |
176 | 180 | ||
177 | 181 | ||
diff --git a/linden/indra/llmessage/llpartdata.h b/linden/indra/llmessage/llpartdata.h index 216e547..82757ec 100644 --- a/linden/indra/llmessage/llpartdata.h +++ b/linden/indra/llmessage/llpartdata.h | |||
@@ -84,7 +84,8 @@ class LLPartData | |||
84 | public: | 84 | public: |
85 | LLPartData() : | 85 | LLPartData() : |
86 | mFlags(0), | 86 | mFlags(0), |
87 | mMaxAge(0) | 87 | mMaxAge(0.f), |
88 | mParameter(0.f) | ||
88 | { | 89 | { |
89 | } | 90 | } |
90 | BOOL unpack(LLDataPacker &dp); | 91 | BOOL unpack(LLDataPacker &dp); |
@@ -108,7 +109,7 @@ public: | |||
108 | LL_PART_BEAM_MASK = 0x200, // Particle is a "beam" connecting source and target | 109 | LL_PART_BEAM_MASK = 0x200, // Particle is a "beam" connecting source and target |
109 | 110 | ||
110 | // Not implemented yet! | 111 | // Not implemented yet! |
111 | //LL_PART_RANDOM_ACCEL_MASK = 0x100, // Patricles have random accelearation | 112 | //LL_PART_RANDOM_ACCEL_MASK = 0x100, // Particles have random acceleration |
112 | //LL_PART_RANDOM_VEL_MASK = 0x200, // Particles have random velocity shifts" | 113 | //LL_PART_RANDOM_VEL_MASK = 0x200, // Particles have random velocity shifts" |
113 | //LL_PART_TRAIL_MASK = 0x400, // Particles have historical "trails" | 114 | //LL_PART_TRAIL_MASK = 0x400, // Particles have historical "trails" |
114 | 115 | ||
diff --git a/linden/indra/llrender/llfontgl.cpp b/linden/indra/llrender/llfontgl.cpp index bb60b70..9298e8c 100644 --- a/linden/indra/llrender/llfontgl.cpp +++ b/linden/indra/llrender/llfontgl.cpp | |||
@@ -234,10 +234,10 @@ bool LLFontGL::loadFaceFallback(LLFontList *fontlistp, const LLString& fontname, | |||
234 | { | 234 | { |
235 | LLFont *fontp = new LLFont(); | 235 | LLFont *fontp = new LLFont(); |
236 | LLString font_path = local_path + *token_iter; | 236 | LLString font_path = local_path + *token_iter; |
237 | if (!fontp->loadFace(font_path.c_str(), point_size, sVertDPI, sHorizDPI, 2, TRUE)) | 237 | if (!fontp->loadFace(font_path, point_size, sVertDPI, sHorizDPI, 2, TRUE)) |
238 | { | 238 | { |
239 | font_path = sys_path + *token_iter; | 239 | font_path = sys_path + *token_iter; |
240 | if (!fontp->loadFace(font_path.c_str(), point_size, sVertDPI, sHorizDPI, 2, TRUE)) | 240 | if (!fontp->loadFace(font_path, point_size, sVertDPI, sHorizDPI, 2, TRUE)) |
241 | { | 241 | { |
242 | llwarns << "Couldn't load font " << *token_iter << llendl; | 242 | llwarns << "Couldn't load font " << *token_iter << llendl; |
243 | delete fontp; | 243 | delete fontp; |
@@ -260,11 +260,11 @@ bool LLFontGL::loadFace(LLFontGL *fontp, const LLString& fontname, const F32 poi | |||
260 | { | 260 | { |
261 | LLString local_path = getFontPathLocal(); | 261 | LLString local_path = getFontPathLocal(); |
262 | LLString font_path = local_path + fontname; | 262 | LLString font_path = local_path + fontname; |
263 | if (!fontp->loadFace(font_path.c_str(), point_size, sVertDPI, sHorizDPI)) | 263 | if (!fontp->loadFace(font_path, point_size, sVertDPI, sHorizDPI, 2, FALSE)) |
264 | { | 264 | { |
265 | LLString sys_path = getFontPathSystem(); | 265 | LLString sys_path = getFontPathSystem(); |
266 | font_path = sys_path + fontname; | 266 | font_path = sys_path + fontname; |
267 | if (!fontp->loadFace(font_path.c_str(), point_size, sVertDPI, sHorizDPI)) | 267 | if (!fontp->loadFace(font_path, point_size, sVertDPI, sHorizDPI, 2, FALSE)) |
268 | { | 268 | { |
269 | llwarns << "Couldn't load font " << fontname << llendl; | 269 | llwarns << "Couldn't load font " << fontname << llendl; |
270 | return false; | 270 | return false; |
@@ -505,9 +505,11 @@ LLFontGL &LLFontGL::operator=(const LLFontGL &source) | |||
505 | return *this; | 505 | return *this; |
506 | } | 506 | } |
507 | 507 | ||
508 | BOOL LLFontGL::loadFace(const LLString& filename, const F32 point_size, const F32 vert_dpi, const F32 horz_dpi) | 508 | BOOL LLFontGL::loadFace(const std::string& filename, |
509 | const F32 point_size, const F32 vert_dpi, const F32 horz_dpi, | ||
510 | const S32 components, BOOL is_fallback) | ||
509 | { | 511 | { |
510 | if (!LLFont::loadFace(filename, point_size, vert_dpi, horz_dpi, 2, FALSE)) | 512 | if (!LLFont::loadFace(filename, point_size, vert_dpi, horz_dpi, components, is_fallback)) |
511 | { | 513 | { |
512 | return FALSE; | 514 | return FALSE; |
513 | } | 515 | } |
diff --git a/linden/indra/llrender/llfontgl.h b/linden/indra/llrender/llfontgl.h index f740039..ce55385 100644 --- a/linden/indra/llrender/llfontgl.h +++ b/linden/indra/llrender/llfontgl.h | |||
@@ -97,7 +97,9 @@ public: | |||
97 | 97 | ||
98 | static bool loadFaceFallback(LLFontList *fontp, const LLString& fontname, const F32 point_size); | 98 | static bool loadFaceFallback(LLFontList *fontp, const LLString& fontname, const F32 point_size); |
99 | static bool loadFace(LLFontGL *fontp, const LLString& fontname, const F32 point_size, LLFontList *fallback_fontp); | 99 | static bool loadFace(LLFontGL *fontp, const LLString& fontname, const F32 point_size, LLFontList *fallback_fontp); |
100 | BOOL loadFace(const LLString& filename, const F32 point_size, const F32 vert_dpi, const F32 horz_dpi); | 100 | /* virtual*/ BOOL loadFace(const std::string& filename, |
101 | const F32 point_size, const F32 vert_dpi, const F32 horz_dpi, | ||
102 | const S32 components, BOOL is_fallback); | ||
101 | 103 | ||
102 | 104 | ||
103 | S32 renderUTF8(const LLString &text, const S32 begin_offset, | 105 | S32 renderUTF8(const LLString &text, const S32 begin_offset, |
diff --git a/linden/indra/llui/llcheckboxctrl.h b/linden/indra/llui/llcheckboxctrl.h index 1f92708..6df0e77 100644 --- a/linden/indra/llui/llcheckboxctrl.h +++ b/linden/indra/llui/llcheckboxctrl.h | |||
@@ -83,7 +83,7 @@ public: | |||
83 | virtual void setEnabled( BOOL b ); | 83 | virtual void setEnabled( BOOL b ); |
84 | 84 | ||
85 | virtual void draw(); | 85 | virtual void draw(); |
86 | virtual void reshape(S32 width, S32 height, BOOL called_from_parent); | 86 | virtual void reshape(S32 width, S32 height, BOOL called_from_parent = TRUE); |
87 | 87 | ||
88 | // LLUICtrl interface | 88 | // LLUICtrl interface |
89 | virtual void setValue(const LLSD& value ); | 89 | virtual void setValue(const LLSD& value ); |
diff --git a/linden/indra/llui/lldraghandle.h b/linden/indra/llui/lldraghandle.h index cb9924d..88e16dc 100644 --- a/linden/indra/llui/lldraghandle.h +++ b/linden/indra/llui/lldraghandle.h | |||
@@ -57,7 +57,6 @@ public: | |||
57 | 57 | ||
58 | virtual void setTitle( const LLString& title ) = 0; | 58 | virtual void setTitle( const LLString& title ) = 0; |
59 | virtual const LLString& getTitle() const = 0; | 59 | virtual const LLString& getTitle() const = 0; |
60 | virtual void reshape(S32 width, S32 height, BOOL called_from_parent = TRUE) = 0; | ||
61 | 60 | ||
62 | virtual BOOL handleHover(S32 x, S32 y, MASK mask); | 61 | virtual BOOL handleHover(S32 x, S32 y, MASK mask); |
63 | virtual BOOL handleMouseDown(S32 x, S32 y, MASK mask); | 62 | virtual BOOL handleMouseDown(S32 x, S32 y, MASK mask); |
diff --git a/linden/indra/llui/llfloater.cpp b/linden/indra/llui/llfloater.cpp index 493e68f..1e825d3 100644 --- a/linden/indra/llui/llfloater.cpp +++ b/linden/indra/llui/llfloater.cpp | |||
@@ -154,7 +154,7 @@ LLFloater::LLFloater(const LLString& name) | |||
154 | mButtons[i] = NULL; | 154 | mButtons[i] = NULL; |
155 | } | 155 | } |
156 | LLString title; // null string | 156 | LLString title; // null string |
157 | init(title, FALSE, DEFAULT_MIN_WIDTH, DEFAULT_MIN_HEIGHT, FALSE, TRUE, TRUE); // defaults | 157 | initFloater(title, FALSE, DEFAULT_MIN_WIDTH, DEFAULT_MIN_HEIGHT, FALSE, TRUE, TRUE); // defaults |
158 | } | 158 | } |
159 | 159 | ||
160 | 160 | ||
@@ -173,7 +173,7 @@ LLFloater::LLFloater(const LLString& name, const LLRect& rect, const LLString& t | |||
173 | mButtonsEnabled[i] = FALSE; | 173 | mButtonsEnabled[i] = FALSE; |
174 | mButtons[i] = NULL; | 174 | mButtons[i] = NULL; |
175 | } | 175 | } |
176 | init( title, resizable, min_width, min_height, drag_on_left, minimizable, close_btn); | 176 | initFloater( title, resizable, min_width, min_height, drag_on_left, minimizable, close_btn); |
177 | } | 177 | } |
178 | 178 | ||
179 | LLFloater::LLFloater(const LLString& name, const LLString& rect_control, const LLString& title, | 179 | LLFloater::LLFloater(const LLString& name, const LLString& rect_control, const LLString& title, |
@@ -191,12 +191,12 @@ LLFloater::LLFloater(const LLString& name, const LLString& rect_control, const L | |||
191 | mButtonsEnabled[i] = FALSE; | 191 | mButtonsEnabled[i] = FALSE; |
192 | mButtons[i] = NULL; | 192 | mButtons[i] = NULL; |
193 | } | 193 | } |
194 | init( title, resizable, min_width, min_height, drag_on_left, minimizable, close_btn); | 194 | initFloater( title, resizable, min_width, min_height, drag_on_left, minimizable, close_btn); |
195 | } | 195 | } |
196 | 196 | ||
197 | 197 | ||
198 | // Note: Floaters constructed from XML call init() twice! | 198 | // Note: Floaters constructed from XML call init() twice! |
199 | void LLFloater::init(const LLString& title, | 199 | void LLFloater::initFloater(const LLString& title, |
200 | BOOL resizable, S32 min_width, S32 min_height, | 200 | BOOL resizable, S32 min_width, S32 min_height, |
201 | BOOL drag_on_left, BOOL minimizable, BOOL close_btn) | 201 | BOOL drag_on_left, BOOL minimizable, BOOL close_btn) |
202 | { | 202 | { |
@@ -576,6 +576,11 @@ void LLFloater::close(bool app_quitting) | |||
576 | } | 576 | } |
577 | } | 577 | } |
578 | 578 | ||
579 | /*virtual*/ | ||
580 | void LLFloater::reshape(S32 width, S32 height, BOOL called_from_parent) | ||
581 | { | ||
582 | LLPanel::reshape(width, height, called_from_parent); | ||
583 | } | ||
579 | 584 | ||
580 | void LLFloater::releaseFocus() | 585 | void LLFloater::releaseFocus() |
581 | { | 586 | { |
@@ -777,8 +782,6 @@ void LLFloater::setMinimized(BOOL minimize) | |||
777 | { | 782 | { |
778 | mExpandedRect = getRect(); | 783 | mExpandedRect = getRect(); |
779 | 784 | ||
780 | reshape( MINIMIZED_WIDTH, LLFLOATER_HEADER_SIZE, TRUE); | ||
781 | |||
782 | // If the floater has been dragged while minimized in the | 785 | // If the floater has been dragged while minimized in the |
783 | // past, then locate it at its previous minimized location. | 786 | // past, then locate it at its previous minimized location. |
784 | // Otherwise, ask the view for a minimize position. | 787 | // Otherwise, ask the view for a minimize position. |
@@ -841,6 +844,9 @@ void LLFloater::setMinimized(BOOL minimize) | |||
841 | releaseFocus(); | 844 | releaseFocus(); |
842 | 845 | ||
843 | mMinimized = TRUE; | 846 | mMinimized = TRUE; |
847 | |||
848 | // Reshape *after* setting mMinimized | ||
849 | reshape( MINIMIZED_WIDTH, LLFLOATER_HEADER_SIZE, TRUE); | ||
844 | } | 850 | } |
845 | else | 851 | else |
846 | { | 852 | { |
@@ -853,7 +859,6 @@ void LLFloater::setMinimized(BOOL minimize) | |||
853 | mPreviousMinimizedBottom = currentRect.mBottom; | 859 | mPreviousMinimizedBottom = currentRect.mBottom; |
854 | } | 860 | } |
855 | 861 | ||
856 | reshape( mExpandedRect.getWidth(), mExpandedRect.getHeight(), TRUE ); | ||
857 | setOrigin( mExpandedRect.mLeft, mExpandedRect.mBottom ); | 862 | setOrigin( mExpandedRect.mLeft, mExpandedRect.mBottom ); |
858 | 863 | ||
859 | if (mButtonsEnabled[BUTTON_RESTORE]) | 864 | if (mButtonsEnabled[BUTTON_RESTORE]) |
@@ -894,6 +899,9 @@ void LLFloater::setMinimized(BOOL minimize) | |||
894 | } | 899 | } |
895 | 900 | ||
896 | mMinimized = FALSE; | 901 | mMinimized = FALSE; |
902 | |||
903 | // Reshape *after* setting mMinimized | ||
904 | reshape( mExpandedRect.getWidth(), mExpandedRect.getHeight(), TRUE ); | ||
897 | } | 905 | } |
898 | make_ui_sound("UISndWindowClose"); | 906 | make_ui_sound("UISndWindowClose"); |
899 | updateButtons(); | 907 | updateButtons(); |
@@ -1633,11 +1641,11 @@ LLFloaterView::LLFloaterView( const LLString& name, const LLRect& rect ) | |||
1633 | // By default, adjust vertical. | 1641 | // By default, adjust vertical. |
1634 | void LLFloaterView::reshape(S32 width, S32 height, BOOL called_from_parent) | 1642 | void LLFloaterView::reshape(S32 width, S32 height, BOOL called_from_parent) |
1635 | { | 1643 | { |
1636 | reshape(width, height, called_from_parent, ADJUST_VERTICAL_YES); | 1644 | reshapeFloater(width, height, called_from_parent, ADJUST_VERTICAL_YES); |
1637 | } | 1645 | } |
1638 | 1646 | ||
1639 | // When reshaping this view, make the floaters follow their closest edge. | 1647 | // When reshaping this view, make the floaters follow their closest edge. |
1640 | void LLFloaterView::reshape(S32 width, S32 height, BOOL called_from_parent, BOOL adjust_vertical) | 1648 | void LLFloaterView::reshapeFloater(S32 width, S32 height, BOOL called_from_parent, BOOL adjust_vertical) |
1641 | { | 1649 | { |
1642 | S32 old_width = getRect().getWidth(); | 1650 | S32 old_width = getRect().getWidth(); |
1643 | S32 old_height = getRect().getHeight(); | 1651 | S32 old_height = getRect().getHeight(); |
@@ -2894,7 +2902,7 @@ void LLFloater::initFloaterXML(LLXMLNodePtr node, LLView *parent, LLUICtrlFactor | |||
2894 | setRect(rect); | 2902 | setRect(rect); |
2895 | setName(name); | 2903 | setName(name); |
2896 | 2904 | ||
2897 | init(title, | 2905 | initFloater(title, |
2898 | resizable, | 2906 | resizable, |
2899 | min_width, | 2907 | min_width, |
2900 | min_height, | 2908 | min_height, |
diff --git a/linden/indra/llui/llfloater.h b/linden/indra/llui/llfloater.h index 534af16..f0bbcaf 100644 --- a/linden/indra/llui/llfloater.h +++ b/linden/indra/llui/llfloater.h | |||
@@ -119,7 +119,7 @@ public: | |||
119 | 119 | ||
120 | // Can be called multiple times to reset floater parameters. | 120 | // Can be called multiple times to reset floater parameters. |
121 | // Deletes all children of the floater. | 121 | // Deletes all children of the floater. |
122 | virtual void init(const LLString& title, BOOL resizable, | 122 | virtual void initFloater(const LLString& title, BOOL resizable, |
123 | S32 min_width, S32 min_height, BOOL drag_on_left, | 123 | S32 min_width, S32 min_height, BOOL drag_on_left, |
124 | BOOL minimizable, BOOL close_btn); | 124 | BOOL minimizable, BOOL close_btn); |
125 | virtual EWidgetType getWidgetType() const { return WIDGET_TYPE_FLOATER; } | 125 | virtual EWidgetType getWidgetType() const { return WIDGET_TYPE_FLOATER; } |
@@ -130,6 +130,8 @@ public: | |||
130 | // If allowed, close the floater cleanly, releasing focus. | 130 | // If allowed, close the floater cleanly, releasing focus. |
131 | // app_quitting is passed to onClose() below. | 131 | // app_quitting is passed to onClose() below. |
132 | virtual void close(bool app_quitting = false); | 132 | virtual void close(bool app_quitting = false); |
133 | |||
134 | /*virtual*/ void reshape(S32 width, S32 height, BOOL called_from_parent = TRUE); | ||
133 | 135 | ||
134 | // Release keyboard and mouse focus | 136 | // Release keyboard and mouse focus |
135 | void releaseFocus(); | 137 | void releaseFocus(); |
@@ -303,8 +305,8 @@ public: | |||
303 | virtual EWidgetType getWidgetType() const { return WIDGET_TYPE_FLOATER_VIEW; } | 305 | virtual EWidgetType getWidgetType() const { return WIDGET_TYPE_FLOATER_VIEW; } |
304 | virtual LLString getWidgetTag() const { return LL_FLOATER_VIEW_TAG; } | 306 | virtual LLString getWidgetTag() const { return LL_FLOATER_VIEW_TAG; } |
305 | 307 | ||
306 | /*virtual*/ void reshape(S32 width, S32 height, BOOL called_from_parent); | 308 | /*virtual*/ void reshape(S32 width, S32 height, BOOL called_from_parent = TRUE); |
307 | void reshape(S32 width, S32 height, BOOL called_from_parent, BOOL adjust_vertical); | 309 | void reshapeFloater(S32 width, S32 height, BOOL called_from_parent, BOOL adjust_vertical); |
308 | 310 | ||
309 | /*virtual*/ void draw(); | 311 | /*virtual*/ void draw(); |
310 | /*virtual*/ LLRect getSnapRect() const; | 312 | /*virtual*/ LLRect getSnapRect() const; |
diff --git a/linden/indra/llui/llmenugl.cpp b/linden/indra/llui/llmenugl.cpp index 4a12870..cb54476 100644 --- a/linden/indra/llui/llmenugl.cpp +++ b/linden/indra/llui/llmenugl.cpp | |||
@@ -3068,8 +3068,7 @@ void LLMenuGL::showPopup(LLView* spawning_view, LLMenuGL* menu, S32 x, S32 y) | |||
3068 | class LLPieMenuBranch : public LLMenuItemGL | 3068 | class LLPieMenuBranch : public LLMenuItemGL |
3069 | { | 3069 | { |
3070 | public: | 3070 | public: |
3071 | LLPieMenuBranch(const LLString& name, const LLString& label, LLPieMenu* branch, | 3071 | LLPieMenuBranch(const LLString& name, const LLString& label, LLPieMenu* branch); |
3072 | enabled_callback ecb, void* user_data); | ||
3073 | 3072 | ||
3074 | virtual EWidgetType getWidgetType() const { return WIDGET_TYPE_PIE_MENU_BRANCH; } | 3073 | virtual EWidgetType getWidgetType() const { return WIDGET_TYPE_PIE_MENU_BRANCH; } |
3075 | virtual LLString getWidgetTag() const { return LL_PIE_MENU_BRANCH_TAG; } | 3074 | virtual LLString getWidgetTag() const { return LL_PIE_MENU_BRANCH_TAG; } |
@@ -3084,19 +3083,13 @@ public: | |||
3084 | 3083 | ||
3085 | protected: | 3084 | protected: |
3086 | LLPieMenu* mBranch; | 3085 | LLPieMenu* mBranch; |
3087 | enabled_callback mEnabledCallback; | ||
3088 | void* mUserData; | ||
3089 | }; | 3086 | }; |
3090 | 3087 | ||
3091 | LLPieMenuBranch::LLPieMenuBranch(const LLString& name, | 3088 | LLPieMenuBranch::LLPieMenuBranch(const LLString& name, |
3092 | const LLString& label, | 3089 | const LLString& label, |
3093 | LLPieMenu* branch, | 3090 | LLPieMenu* branch) |
3094 | enabled_callback ecb, | ||
3095 | void* user_data) | ||
3096 | : LLMenuItemGL( name, label, KEY_NONE, MASK_NONE ), | 3091 | : LLMenuItemGL( name, label, KEY_NONE, MASK_NONE ), |
3097 | mBranch( branch ), | 3092 | mBranch( branch ) |
3098 | mEnabledCallback( ecb ), | ||
3099 | mUserData(user_data) | ||
3100 | { | 3093 | { |
3101 | mBranch->hide(FALSE); | 3094 | mBranch->hide(FALSE); |
3102 | mBranch->setParentMenuItem(this); | 3095 | mBranch->setParentMenuItem(this); |
@@ -3105,12 +3098,6 @@ LLPieMenuBranch::LLPieMenuBranch(const LLString& name, | |||
3105 | // called to rebuild the draw label | 3098 | // called to rebuild the draw label |
3106 | void LLPieMenuBranch::buildDrawLabel( void ) | 3099 | void LLPieMenuBranch::buildDrawLabel( void ) |
3107 | { | 3100 | { |
3108 | if(mEnabledCallback) | ||
3109 | { | ||
3110 | setEnabled(mEnabledCallback(mUserData)); | ||
3111 | setDrawTextDisabled(FALSE); | ||
3112 | } | ||
3113 | else | ||
3114 | { | 3101 | { |
3115 | // default enablement is this -- if any of the subitems are | 3102 | // default enablement is this -- if any of the subitems are |
3116 | // enabled, this item is enabled. JC | 3103 | // enabled, this item is enabled. JC |
@@ -3203,7 +3190,7 @@ void LLPieMenu::initXML(LLXMLNodePtr node, LLView *context, LLUICtrlFactory *fac | |||
3203 | child->getAttributeString("label", label); | 3190 | child->getAttributeString("label", label); |
3204 | 3191 | ||
3205 | LLPieMenu *submenu = new LLPieMenu(name, label); | 3192 | LLPieMenu *submenu = new LLPieMenu(name, label); |
3206 | appendMenu(submenu); | 3193 | appendPieMenu(submenu); |
3207 | submenu->initXML(child, context, factory); | 3194 | submenu->initXML(child, context, factory); |
3208 | } | 3195 | } |
3209 | else | 3196 | else |
@@ -3585,17 +3572,14 @@ BOOL LLPieMenu::appendSeparator(const LLString &separator_name) | |||
3585 | } | 3572 | } |
3586 | 3573 | ||
3587 | 3574 | ||
3588 | // virtual | 3575 | BOOL LLPieMenu::appendPieMenu(LLPieMenu *menu) |
3589 | BOOL LLPieMenu::appendMenu(LLPieMenu *menu, | ||
3590 | enabled_callback enabled_cb, | ||
3591 | void* user_data) | ||
3592 | { | 3576 | { |
3593 | if (menu == this) | 3577 | if (menu == this) |
3594 | { | 3578 | { |
3595 | llerrs << "Can't attach a pie menu to itself" << llendl; | 3579 | llerrs << "Can't attach a pie menu to itself" << llendl; |
3596 | } | 3580 | } |
3597 | LLPieMenuBranch *item; | 3581 | LLPieMenuBranch *item; |
3598 | item = new LLPieMenuBranch(menu->getName(), menu->getLabel(), menu, enabled_cb, user_data); | 3582 | item = new LLPieMenuBranch(menu->getName(), menu->getLabel(), menu); |
3599 | getParent()->addChild(item->getBranch()); | 3583 | getParent()->addChild(item->getBranch()); |
3600 | item->setFont( LLFontGL::sSansSerifSmall ); | 3584 | item->setFont( LLFontGL::sSansSerifSmall ); |
3601 | return append( item ); | 3585 | return append( item ); |
diff --git a/linden/indra/llui/llmenugl.h b/linden/indra/llui/llmenugl.h index 4e5ac69..cd39006 100644 --- a/linden/indra/llui/llmenugl.h +++ b/linden/indra/llui/llmenugl.h | |||
@@ -524,8 +524,6 @@ public: | |||
524 | static void setKeyboardMode(BOOL mode) { sKeyboardMode = mode; } | 524 | static void setKeyboardMode(BOOL mode) { sKeyboardMode = mode; } |
525 | static BOOL getKeyboardMode() { return sKeyboardMode; } | 525 | static BOOL getKeyboardMode() { return sKeyboardMode; } |
526 | 526 | ||
527 | static void onFocusLost(LLView* old_focus); | ||
528 | |||
529 | static class LLMenuHolderGL* sMenuContainer; | 527 | static class LLMenuHolderGL* sMenuContainer; |
530 | 528 | ||
531 | protected: | 529 | protected: |
@@ -666,18 +664,15 @@ public: | |||
666 | virtual BOOL append(LLMenuItemGL* item); | 664 | virtual BOOL append(LLMenuItemGL* item); |
667 | virtual BOOL appendSeparator( const LLString &separator_name = "separator" ); | 665 | virtual BOOL appendSeparator( const LLString &separator_name = "separator" ); |
668 | 666 | ||
669 | // the enabled callback is meant for the submenu. The api works | 667 | BOOL appendPieMenu(LLPieMenu *menu); |
670 | // this way because the menu branch item responsible for the pie | 668 | |
671 | // submenu is constructed here. | ||
672 | virtual BOOL appendMenu(LLPieMenu *menu, | ||
673 | enabled_callback enabled_cb = NULL, | ||
674 | void* user_data = NULL ); | ||
675 | virtual void arrange( void ); | 669 | virtual void arrange( void ); |
676 | 670 | ||
677 | // Display the menu centered on this point on the screen. | 671 | // Display the menu centered on this point on the screen. |
678 | void show(S32 x, S32 y, BOOL mouse_down); | 672 | void show(S32 x, S32 y, BOOL mouse_down); |
679 | void hide(BOOL item_selected); | 673 | void hide(BOOL item_selected); |
680 | 674 | ||
675 | |||
681 | private: | 676 | private: |
682 | LLMenuItemGL *pieItemFromXY(S32 x, S32 y); | 677 | LLMenuItemGL *pieItemFromXY(S32 x, S32 y); |
683 | S32 pieItemIndexFromXY(S32 x, S32 y); | 678 | S32 pieItemIndexFromXY(S32 x, S32 y); |
@@ -763,7 +758,7 @@ public: | |||
763 | virtual LLString getWidgetTag() const { return LL_MENU_HOLDER_GL_TAG; } | 758 | virtual LLString getWidgetTag() const { return LL_MENU_HOLDER_GL_TAG; } |
764 | 759 | ||
765 | virtual BOOL hideMenus(); | 760 | virtual BOOL hideMenus(); |
766 | void reshape(S32 width, S32 height, BOOL called_from_parent); | 761 | void reshape(S32 width, S32 height, BOOL called_from_parent = TRUE); |
767 | void setCanHide(BOOL can_hide) { mCanHide = can_hide; } | 762 | void setCanHide(BOOL can_hide) { mCanHide = can_hide; } |
768 | 763 | ||
769 | // LLView functionality | 764 | // LLView functionality |
diff --git a/linden/indra/llui/llmodaldialog.h b/linden/indra/llui/llmodaldialog.h index dd82b25..0199498 100644 --- a/linden/indra/llui/llmodaldialog.h +++ b/linden/indra/llui/llmodaldialog.h | |||
@@ -49,7 +49,7 @@ public: | |||
49 | 49 | ||
50 | /*virtual*/ void open(); /* Flawfinder: ignore */ | 50 | /*virtual*/ void open(); /* Flawfinder: ignore */ |
51 | 51 | ||
52 | /*virtual*/ void reshape(S32 width, S32 height, BOOL called_from_parent = 1); | 52 | /*virtual*/ void reshape(S32 width, S32 height, BOOL called_from_parent = TRUE); |
53 | 53 | ||
54 | /*virtual*/ void startModal(); | 54 | /*virtual*/ void startModal(); |
55 | /*virtual*/ void stopModal(); | 55 | /*virtual*/ void stopModal(); |
diff --git a/linden/indra/llui/llmultisliderctrl.cpp b/linden/indra/llui/llmultisliderctrl.cpp index 0d23dd7..47e21d8 100644 --- a/linden/indra/llui/llmultisliderctrl.cpp +++ b/linden/indra/llui/llmultisliderctrl.cpp | |||
@@ -183,7 +183,7 @@ void LLMultiSliderCtrl::setCurSlider(const LLString& name) | |||
183 | mCurValue = mMultiSlider->getCurSliderValue(); | 183 | mCurValue = mMultiSlider->getCurSliderValue(); |
184 | } | 184 | } |
185 | 185 | ||
186 | BOOL LLMultiSliderCtrl::setLabelArg( const LLString& key, const LLString& text ) | 186 | BOOL LLMultiSliderCtrl::setLabelArg( const LLString& key, const LLStringExplicit& text ) |
187 | { | 187 | { |
188 | BOOL res = FALSE; | 188 | BOOL res = FALSE; |
189 | if (mLabelBox) | 189 | if (mLabelBox) |
diff --git a/linden/indra/llui/llmultisliderctrl.h b/linden/indra/llui/llmultisliderctrl.h index 90f43df..5e2d13c 100644 --- a/linden/indra/llui/llmultisliderctrl.h +++ b/linden/indra/llui/llmultisliderctrl.h | |||
@@ -81,7 +81,7 @@ public: | |||
81 | 81 | ||
82 | virtual void setValue(const LLSD& value ); | 82 | virtual void setValue(const LLSD& value ); |
83 | virtual LLSD getValue() const { return mMultiSlider->getValue(); } | 83 | virtual LLSD getValue() const { return mMultiSlider->getValue(); } |
84 | virtual BOOL setLabelArg( const LLString& key, const LLString& text ); | 84 | virtual BOOL setLabelArg( const LLString& key, const LLStringExplicit& text ); |
85 | 85 | ||
86 | const LLString& getCurSlider() const { return mMultiSlider->getCurSlider(); } | 86 | const LLString& getCurSlider() const { return mMultiSlider->getCurSlider(); } |
87 | F32 getCurSliderValue() const { return mCurValue; } | 87 | F32 getCurSliderValue() const { return mCurValue; } |
diff --git a/linden/indra/llui/llpanel.cpp b/linden/indra/llui/llpanel.cpp index 9a3f1a2..567d29e 100644 --- a/linden/indra/llui/llpanel.cpp +++ b/linden/indra/llui/llpanel.cpp | |||
@@ -715,7 +715,17 @@ LLString LLPanel::getString(const LLString& name, const LLString::format_map_t& | |||
715 | formatted_string.setArgList(args); | 715 | formatted_string.setArgList(args); |
716 | return formatted_string.getString(); | 716 | return formatted_string.getString(); |
717 | } | 717 | } |
718 | llerrs << "Failed to find string " << name << " in panel " << getName() << llendl; | 718 | LLString err_str("Failed to find string " + name + " in panel " + getName()); |
719 | // *TODO: once the QAR-369 ui-cleanup work on settings is in we need to change the following line to be | ||
720 | //if(LLUI::sConfigGroup->getBOOL("QAMode")) | ||
721 | if(LLUI::sQAMode) | ||
722 | { | ||
723 | llerrs << err_str << llendl; | ||
724 | } | ||
725 | else | ||
726 | { | ||
727 | llwarns << err_str << llendl; | ||
728 | } | ||
719 | return LLString::null; | 729 | return LLString::null; |
720 | } | 730 | } |
721 | 731 | ||
diff --git a/linden/indra/llui/llscrollcontainer.h b/linden/indra/llui/llscrollcontainer.h index d512957..51b1527 100644 --- a/linden/indra/llui/llscrollcontainer.h +++ b/linden/indra/llui/llscrollcontainer.h | |||
@@ -89,7 +89,7 @@ public: | |||
89 | BOOL needsToScroll(S32 x, S32 y, SCROLL_ORIENTATION axis) const; | 89 | BOOL needsToScroll(S32 x, S32 y, SCROLL_ORIENTATION axis) const; |
90 | 90 | ||
91 | // LLView functionality | 91 | // LLView functionality |
92 | virtual void reshape(S32 width, S32 height, BOOL called_from_parent); | 92 | virtual void reshape(S32 width, S32 height, BOOL called_from_parent = TRUE); |
93 | virtual BOOL handleKey(KEY key, MASK mask, BOOL called_from_parent); | 93 | virtual BOOL handleKey(KEY key, MASK mask, BOOL called_from_parent); |
94 | virtual BOOL handleScrollWheel( S32 x, S32 y, S32 clicks ); | 94 | virtual BOOL handleScrollWheel( S32 x, S32 y, S32 clicks ); |
95 | virtual BOOL handleDragAndDrop(S32 x, S32 y, MASK mask, BOOL drop, | 95 | virtual BOOL handleDragAndDrop(S32 x, S32 y, MASK mask, BOOL drop, |
diff --git a/linden/indra/llui/llscrolllistctrl.cpp b/linden/indra/llui/llscrolllistctrl.cpp index eee2bcf..01c37d9 100644 --- a/linden/indra/llui/llscrolllistctrl.cpp +++ b/linden/indra/llui/llscrolllistctrl.cpp | |||
@@ -842,6 +842,9 @@ BOOL LLScrollListCtrl::addItem( LLScrollListItem* item, EAddPosition pos, BOOL r | |||
842 | return not_too_big; | 842 | return not_too_big; |
843 | } | 843 | } |
844 | 844 | ||
845 | // NOTE: This is *very* expensive for large lists, especially when we are dirtying the list every frame | ||
846 | // while receiving a long list of names. | ||
847 | // *TODO: Use bookkeeping to make this an incramental cost with item additions | ||
845 | void LLScrollListCtrl::calcColumnWidths() | 848 | void LLScrollListCtrl::calcColumnWidths() |
846 | { | 849 | { |
847 | const S32 HEADING_TEXT_PADDING = 30; | 850 | const S32 HEADING_TEXT_PADDING = 30; |
diff --git a/linden/indra/llui/lltabcontainer.h b/linden/indra/llui/lltabcontainer.h index 07554b4..152bd05 100644 --- a/linden/indra/llui/lltabcontainer.h +++ b/linden/indra/llui/lltabcontainer.h | |||
@@ -64,7 +64,7 @@ public: | |||
64 | /*virtual*/ void setValue(const LLSD& value); | 64 | /*virtual*/ void setValue(const LLSD& value); |
65 | /*virtual*/ EWidgetType getWidgetType() const; | 65 | /*virtual*/ EWidgetType getWidgetType() const; |
66 | /*virtual*/ LLString getWidgetTag() const; | 66 | /*virtual*/ LLString getWidgetTag() const; |
67 | /*virtual*/ void reshape(S32 width, S32 height, BOOL called_from_parent); | 67 | /*virtual*/ void reshape(S32 width, S32 height, BOOL called_from_parent = TRUE); |
68 | /*virtual*/ void draw(); | 68 | /*virtual*/ void draw(); |
69 | /*virtual*/ BOOL handleMouseDown( S32 x, S32 y, MASK mask ); | 69 | /*virtual*/ BOOL handleMouseDown( S32 x, S32 y, MASK mask ); |
70 | /*virtual*/ BOOL handleHover( S32 x, S32 y, MASK mask ); | 70 | /*virtual*/ BOOL handleHover( S32 x, S32 y, MASK mask ); |
diff --git a/linden/indra/llui/lltexteditor.h b/linden/indra/llui/lltexteditor.h index 82d9069..7943129 100644 --- a/linden/indra/llui/lltexteditor.h +++ b/linden/indra/llui/lltexteditor.h | |||
@@ -95,7 +95,7 @@ public: | |||
95 | virtual void onMouseCaptureLost(); | 95 | virtual void onMouseCaptureLost(); |
96 | 96 | ||
97 | // view overrides | 97 | // view overrides |
98 | virtual void reshape(S32 width, S32 height, BOOL called_from_parent); | 98 | virtual void reshape(S32 width, S32 height, BOOL called_from_parent = TRUE); |
99 | virtual void draw(); | 99 | virtual void draw(); |
100 | virtual void onFocusReceived(); | 100 | virtual void onFocusReceived(); |
101 | virtual void onFocusLost(); | 101 | virtual void onFocusLost(); |
diff --git a/linden/indra/llui/llui.cpp b/linden/indra/llui/llui.cpp index 5904573..ec8c94e 100644 --- a/linden/indra/llui/llui.cpp +++ b/linden/indra/llui/llui.cpp | |||
@@ -81,6 +81,7 @@ LLWindow* LLUI::sWindow = NULL; | |||
81 | LLHtmlHelp* LLUI::sHtmlHelp = NULL; | 81 | LLHtmlHelp* LLUI::sHtmlHelp = NULL; |
82 | BOOL LLUI::sShowXUINames = FALSE; | 82 | BOOL LLUI::sShowXUINames = FALSE; |
83 | std::stack<LLRect> LLScreenClipRect::sClipRectStack; | 83 | std::stack<LLRect> LLScreenClipRect::sClipRectStack; |
84 | BOOL LLUI::sQAMode = FALSE; | ||
84 | 85 | ||
85 | // | 86 | // |
86 | // Functions | 87 | // Functions |
@@ -1759,6 +1760,12 @@ void LLUI::setHtmlHelp(LLHtmlHelp* html_help) | |||
1759 | LLUI::sHtmlHelp = html_help; | 1760 | LLUI::sHtmlHelp = html_help; |
1760 | } | 1761 | } |
1761 | 1762 | ||
1763 | //static | ||
1764 | void LLUI::setQAMode(BOOL b) | ||
1765 | { | ||
1766 | LLUI::sQAMode = b; | ||
1767 | } | ||
1768 | |||
1762 | LLScreenClipRect::LLScreenClipRect(const LLRect& rect, BOOL enabled) : mScissorState(GL_SCISSOR_TEST), mEnabled(enabled) | 1769 | LLScreenClipRect::LLScreenClipRect(const LLRect& rect, BOOL enabled) : mScissorState(GL_SCISSOR_TEST), mEnabled(enabled) |
1763 | { | 1770 | { |
1764 | if (mEnabled) | 1771 | if (mEnabled) |
diff --git a/linden/indra/llui/llui.h b/linden/indra/llui/llui.h index c419cb6..9e275a5 100644 --- a/linden/indra/llui/llui.h +++ b/linden/indra/llui/llui.h | |||
@@ -201,6 +201,12 @@ public: | |||
201 | static BOOL sShowXUINames; | 201 | static BOOL sShowXUINames; |
202 | static LLHtmlHelp* sHtmlHelp; | 202 | static LLHtmlHelp* sHtmlHelp; |
203 | 203 | ||
204 | // *TODO: remove the following when QAR-369 settings clean-up work is in. | ||
205 | // Also remove the call to this method which will then be obsolete. | ||
206 | // Search for QAR-369 below to enable the proper accessing of this feature. -MG | ||
207 | static void setQAMode(BOOL b); | ||
208 | static BOOL sQAMode; | ||
209 | |||
204 | }; | 210 | }; |
205 | 211 | ||
206 | // UI widgets | 212 | // UI widgets |
diff --git a/linden/indra/llui/llview.cpp b/linden/indra/llui/llview.cpp index fbcb69e..e5415f8 100644 --- a/linden/indra/llui/llview.cpp +++ b/linden/indra/llui/llview.cpp | |||
@@ -633,13 +633,13 @@ void LLView::translate(S32 x, S32 y) | |||
633 | } | 633 | } |
634 | 634 | ||
635 | // virtual | 635 | // virtual |
636 | BOOL LLView::canSnapTo(const LLView* other_view) const | 636 | BOOL LLView::canSnapTo(const LLView* other_view) |
637 | { | 637 | { |
638 | return other_view != this && other_view->getVisible(); | 638 | return other_view != this && other_view->getVisible(); |
639 | } | 639 | } |
640 | 640 | ||
641 | // virtual | 641 | // virtual |
642 | void LLView::snappedTo(LLView* snap_view) | 642 | void LLView::snappedTo(const LLView* snap_view) |
643 | { | 643 | { |
644 | } | 644 | } |
645 | 645 | ||
diff --git a/linden/indra/llui/llview.h b/linden/indra/llui/llview.h index 52c7e3d..51c314a 100644 --- a/linden/indra/llui/llview.h +++ b/linden/indra/llui/llview.h | |||
@@ -108,9 +108,9 @@ virtual void userSetShape(const LLRect& new_rect); | |||
108 | virtual LLView* findSnapRect(LLRect& new_rect, const LLCoordGL& mouse_dir, LLView::ESnapType snap_type, S32 threshold, S32 padding = 0); | 108 | virtual LLView* findSnapRect(LLRect& new_rect, const LLCoordGL& mouse_dir, LLView::ESnapType snap_type, S32 threshold, S32 padding = 0); |
109 | virtual LLView* findSnapEdge(S32& new_edge_val, const LLCoordGL& mouse_dir, ESnapEdge snap_edge, ESnapType snap_type, S32 threshold, S32 padding = 0); | 109 | virtual LLView* findSnapEdge(S32& new_edge_val, const LLCoordGL& mouse_dir, ESnapEdge snap_edge, ESnapType snap_type, S32 threshold, S32 padding = 0); |
110 | LLScrollListCtrl | 110 | LLScrollListCtrl |
111 | virtual BOOL canSnapTo(const LLView* other_view) const { return other_view != this && other_view->getVisible(); } | 111 | virtual BOOL canSnapTo(const LLView* other_view) { return other_view != this && other_view->getVisible(); } |
112 | LLFloater | 112 | LLFloater |
113 | virtual void snappedTo(LLView* snap_view) {} | 113 | virtual void snappedTo(const LLView* snap_view) {} |
114 | LLFloater | 114 | LLFloater |
115 | virtual BOOL handleKey(KEY key, MASK mask, BOOL called_from_parent); | 115 | virtual BOOL handleKey(KEY key, MASK mask, BOOL called_from_parent); |
116 | * | 116 | * |
@@ -339,9 +339,9 @@ public: | |||
339 | virtual LLView* findSnapRect(LLRect& new_rect, const LLCoordGL& mouse_dir, LLView::ESnapType snap_type, S32 threshold, S32 padding = 0); | 339 | virtual LLView* findSnapRect(LLRect& new_rect, const LLCoordGL& mouse_dir, LLView::ESnapType snap_type, S32 threshold, S32 padding = 0); |
340 | virtual LLView* findSnapEdge(S32& new_edge_val, const LLCoordGL& mouse_dir, ESnapEdge snap_edge, ESnapType snap_type, S32 threshold, S32 padding = 0); | 340 | virtual LLView* findSnapEdge(S32& new_edge_val, const LLCoordGL& mouse_dir, ESnapEdge snap_edge, ESnapType snap_type, S32 threshold, S32 padding = 0); |
341 | 341 | ||
342 | virtual BOOL canSnapTo(const LLView* other_view) const; | 342 | virtual BOOL canSnapTo(const LLView* other_view); |
343 | 343 | ||
344 | virtual void snappedTo(LLView* snap_view); | 344 | virtual void snappedTo(const LLView* snap_view); |
345 | 345 | ||
346 | virtual BOOL handleKey(KEY key, MASK mask, BOOL called_from_parent); | 346 | virtual BOOL handleKey(KEY key, MASK mask, BOOL called_from_parent); |
347 | virtual BOOL handleUnicodeChar(llwchar uni_char, BOOL called_from_parent); | 347 | virtual BOOL handleUnicodeChar(llwchar uni_char, BOOL called_from_parent); |
diff --git a/linden/indra/llwindow/llwindowmacosx.cpp b/linden/indra/llwindow/llwindowmacosx.cpp index b616595..5c91cc0 100644 --- a/linden/indra/llwindow/llwindowmacosx.cpp +++ b/linden/indra/llwindow/llwindowmacosx.cpp | |||
@@ -2858,7 +2858,7 @@ void LLWindowMacOSX::setCursor(ECursorType cursor) | |||
2858 | mCurrentCursor = cursor; | 2858 | mCurrentCursor = cursor; |
2859 | } | 2859 | } |
2860 | 2860 | ||
2861 | ECursorType LLWindowMacOSX::getCursor() | 2861 | ECursorType LLWindowMacOSX::getCursor() const |
2862 | { | 2862 | { |
2863 | return mCurrentCursor; | 2863 | return mCurrentCursor; |
2864 | } | 2864 | } |
diff --git a/linden/indra/llwindow/llwindowmacosx.h b/linden/indra/llwindow/llwindowmacosx.h index 80145b9..789e2ed 100644 --- a/linden/indra/llwindow/llwindowmacosx.h +++ b/linden/indra/llwindow/llwindowmacosx.h | |||
@@ -68,7 +68,7 @@ public: | |||
68 | /*virtual*/ void hideCursorUntilMouseMove(); | 68 | /*virtual*/ void hideCursorUntilMouseMove(); |
69 | /*virtual*/ BOOL isCursorHidden(); | 69 | /*virtual*/ BOOL isCursorHidden(); |
70 | /*virtual*/ void setCursor(ECursorType cursor); | 70 | /*virtual*/ void setCursor(ECursorType cursor); |
71 | /*virtual*/ ECursorType getCursor(); | 71 | /*virtual*/ ECursorType getCursor() const; |
72 | /*virtual*/ void captureMouse(); | 72 | /*virtual*/ void captureMouse(); |
73 | /*virtual*/ void releaseMouse(); | 73 | /*virtual*/ void releaseMouse(); |
74 | /*virtual*/ void setMouseClipping( BOOL b ); | 74 | /*virtual*/ void setMouseClipping( BOOL b ); |
@@ -112,7 +112,6 @@ public: | |||
112 | /*virtual*/ void bringToFront() {}; | 112 | /*virtual*/ void bringToFront() {}; |
113 | 113 | ||
114 | /*virtual*/ void allowLanguageTextInput(LLPreeditor *preeditor, BOOL b); | 114 | /*virtual*/ void allowLanguageTextInput(LLPreeditor *preeditor, BOOL b); |
115 | /*virtual*/ void updateLanguageTextInputArea(const LLCoordGL& caret, const LLRect& bounds); | ||
116 | /*virtual*/ void interruptLanguageTextInput(); | 115 | /*virtual*/ void interruptLanguageTextInput(); |
117 | 116 | ||
118 | protected: | 117 | protected: |
diff --git a/linden/indra/llwindow/llwindowsdl.cpp b/linden/indra/llwindow/llwindowsdl.cpp index e0a4169..3eb4872 100644 --- a/linden/indra/llwindow/llwindowsdl.cpp +++ b/linden/indra/llwindow/llwindowsdl.cpp | |||
@@ -138,11 +138,11 @@ BOOL ll_try_gtk_init(void) | |||
138 | << gtk_major_version << "." | 138 | << gtk_major_version << "." |
139 | << gtk_minor_version << "." | 139 | << gtk_minor_version << "." |
140 | << gtk_micro_version << llendl; | 140 | << gtk_micro_version << llendl; |
141 | gchar *gtk_warning; | ||
142 | maybe_lock_display(); | 141 | maybe_lock_display(); |
143 | gtk_warning = gtk_check_version(GTK_MAJOR_VERSION, | 142 | const gchar* gtk_warning = gtk_check_version( |
144 | GTK_MINOR_VERSION, | 143 | GTK_MAJOR_VERSION, |
145 | GTK_MICRO_VERSION); | 144 | GTK_MINOR_VERSION, |
145 | GTK_MICRO_VERSION); | ||
146 | maybe_unlock_display(); | 146 | maybe_unlock_display(); |
147 | if (gtk_warning) | 147 | if (gtk_warning) |
148 | { | 148 | { |
diff --git a/linden/indra/mac_updater/mac_updater.cpp b/linden/indra/mac_updater/mac_updater.cpp index 72cd4c4..623db1f 100644 --- a/linden/indra/mac_updater/mac_updater.cpp +++ b/linden/indra/mac_updater/mac_updater.cpp | |||
@@ -733,7 +733,7 @@ void *updatethreadproc(void*) | |||
733 | FSRef targetRef; | 733 | FSRef targetRef; |
734 | FSRef targetParentRef; | 734 | FSRef targetParentRef; |
735 | FSVolumeRefNum targetVol; | 735 | FSVolumeRefNum targetVol; |
736 | FSRef trashFolderRef, tempFolderRef; | 736 | FSRef trashFolderRef; |
737 | Boolean replacingTarget = false; | 737 | Boolean replacingTarget = false; |
738 | 738 | ||
739 | memset(&tempDirRef, 0, sizeof(tempDirRef)); | 739 | memset(&tempDirRef, 0, sizeof(tempDirRef)); |
@@ -892,6 +892,10 @@ void *updatethreadproc(void*) | |||
892 | if(err != noErr) | 892 | if(err != noErr) |
893 | throw 0; | 893 | throw 0; |
894 | 894 | ||
895 | #if 0 // *HACK for DEV-11935 see below for details. | ||
896 | |||
897 | FSRef tempFolderRef; | ||
898 | |||
895 | err = FSFindFolder( | 899 | err = FSFindFolder( |
896 | targetVol, | 900 | targetVol, |
897 | kTemporaryFolderType, | 901 | kTemporaryFolderType, |
@@ -905,6 +909,17 @@ void *updatethreadproc(void*) | |||
905 | 909 | ||
906 | if(err != noErr) | 910 | if(err != noErr) |
907 | throw 0; | 911 | throw 0; |
912 | |||
913 | #else | ||
914 | |||
915 | // *HACK for DEV-11935 the above kTemporaryFolderType query was giving | ||
916 | // back results with path names that seem to be too long to be used as | ||
917 | // mount points. I suspect this incompatibility was introduced in the | ||
918 | // Leopard 10.5.2 update, but I have not verified this. | ||
919 | char const HARDCODED_TMP[] = "/tmp"; | ||
920 | strncpy(temp, HARDCODED_TMP, sizeof(HARDCODED_TMP)); | ||
921 | |||
922 | #endif // 0 *HACK for DEV-11935 | ||
908 | 923 | ||
909 | strncat(temp, "/SecondLifeUpdate_XXXXXX", (sizeof(temp) - strlen(temp)) - 1); | 924 | strncat(temp, "/SecondLifeUpdate_XXXXXX", (sizeof(temp) - strlen(temp)) - 1); |
910 | if(mkdtemp(temp) == NULL) | 925 | if(mkdtemp(temp) == NULL) |
diff --git a/linden/indra/newview/English.lproj/InfoPlist.strings b/linden/indra/newview/English.lproj/InfoPlist.strings index 9ac8301..2cadac9 100644 --- a/linden/indra/newview/English.lproj/InfoPlist.strings +++ b/linden/indra/newview/English.lproj/InfoPlist.strings | |||
@@ -1,5 +1,5 @@ | |||
1 | /* Localized versions of Info.plist keys */ | 1 | /* Localized versions of Info.plist keys */ |
2 | 2 | ||
3 | CFBundleName = "Second Life"; | 3 | CFBundleName = "Second Life"; |
4 | CFBundleShortVersionString = "Second Life version 1.19.1.1"; | 4 | CFBundleShortVersionString = "Second Life version 1.19.1.2"; |
5 | CFBundleGetInfoString = "Second Life version 1.19.1.1, Copyright 2004-2008 Linden Research, Inc."; | 5 | CFBundleGetInfoString = "Second Life version 1.19.1.2, Copyright 2004-2008 Linden Research, Inc."; |
diff --git a/linden/indra/newview/Info-SecondLife.plist b/linden/indra/newview/Info-SecondLife.plist index 2f53848..83953bf 100644 --- a/linden/indra/newview/Info-SecondLife.plist +++ b/linden/indra/newview/Info-SecondLife.plist | |||
@@ -32,7 +32,7 @@ | |||
32 | </dict> | 32 | </dict> |
33 | </array> | 33 | </array> |
34 | <key>CFBundleVersion</key> | 34 | <key>CFBundleVersion</key> |
35 | <string>1.19.1.1</string> | 35 | <string>1.19.1.2</string> |
36 | <key>CSResourcesFileMapped</key> | 36 | <key>CSResourcesFileMapped</key> |
37 | <true/> | 37 | <true/> |
38 | </dict> | 38 | </dict> |
diff --git a/linden/indra/newview/app_settings/windlight/skies/A%2D6PM.xml b/linden/indra/newview/app_settings/windlight/skies/A%2D6PM.xml index 6e82f2e..ebf08e1 100644 --- a/linden/indra/newview/app_settings/windlight/skies/A%2D6PM.xml +++ b/linden/indra/newview/app_settings/windlight/skies/A%2D6PM.xml | |||
@@ -2,10 +2,10 @@ | |||
2 | <map> | 2 | <map> |
3 | <key>ambient</key> | 3 | <key>ambient</key> |
4 | <array> | 4 | <array> |
5 | <real>0.14840038120746613</real> | 5 | <real>1.0199999809265137</real> |
6 | <real>0.17633917927742004</real> | 6 | <real>0.80999994277954102</real> |
7 | <real>0.23999999463558197</real> | 7 | <real>0.80999994277954102</real> |
8 | <real>0.079999998211860657</real> | 8 | <real>1.0199999809265137</real> |
9 | </array> | 9 | </array> |
10 | <key>blue_density</key> | 10 | <key>blue_density</key> |
11 | <array> | 11 | <array> |
@@ -70,7 +70,7 @@ | |||
70 | </array> | 70 | </array> |
71 | <key>distance_multiplier</key> | 71 | <key>distance_multiplier</key> |
72 | <array> | 72 | <array> |
73 | <real>2.7000000476837158</real> | 73 | <real>1</real> |
74 | <real>0</real> | 74 | <real>0</real> |
75 | <real>0</real> | 75 | <real>0</real> |
76 | <real>1</real> | 76 | <real>1</real> |
@@ -139,3 +139,4 @@ | |||
139 | </array> | 139 | </array> |
140 | </map> | 140 | </map> |
141 | </llsd> | 141 | </llsd> |
142 | |||
diff --git a/linden/indra/newview/featuretable.txt b/linden/indra/newview/featuretable.txt index 898751d..793e235 100644 --- a/linden/indra/newview/featuretable.txt +++ b/linden/indra/newview/featuretable.txt | |||
@@ -318,7 +318,9 @@ list Intel_Springdale | |||
318 | RenderTerrainDetail 1 0 | 318 | RenderTerrainDetail 1 0 |
319 | RenderVBOEnable 1 0 | 319 | RenderVBOEnable 1 0 |
320 | 320 | ||
321 | 321 | list ATI_FireGL_5200 | |
322 | RenderVBOEnable 1 0 | ||
323 | WindLightUseAtmosShaders 0 0 | ||
322 | 324 | ||
323 | list ATI_Mobility_Radeon_9800 | 325 | list ATI_Mobility_Radeon_9800 |
324 | RenderAvatarCloth 0 0 | 326 | RenderAvatarCloth 0 0 |
diff --git a/linden/indra/newview/gpu_table.txt b/linden/indra/newview/gpu_table.txt index 1d33fcb..1929d45 100644 --- a/linden/indra/newview/gpu_table.txt +++ b/linden/indra/newview/gpu_table.txt | |||
@@ -39,6 +39,7 @@ ATI ASUS EAH26xx .*ATI.*ASUS.*EAH26.* 3 1 | |||
39 | ATI ASUS X1xxx .*ATI.*ASUS.*X1.* 2 1 | 39 | ATI ASUS X1xxx .*ATI.*ASUS.*X1.* 2 1 |
40 | ATI Diamond X1xxx .*ATI.*Diamond.*X1.* 3 1 | 40 | ATI Diamond X1xxx .*ATI.*Diamond.*X1.* 3 1 |
41 | ATI Diamond X550 .*ATI.*Diamond X550.* 1 1 | 41 | ATI Diamond X550 .*ATI.*Diamond X550.* 1 1 |
42 | ATI FireGL 5200 .*ATI.*FireGL V52.* 0 1 | ||
42 | ATI FireGL 5xxx .*ATI.*FireGL V5.* 1 1 | 43 | ATI FireGL 5xxx .*ATI.*FireGL V5.* 1 1 |
43 | ATI FireGL .*ATI.*Fire.*GL.* 0 1 | 44 | ATI FireGL .*ATI.*Fire.*GL.* 0 1 |
44 | ATI FireMV .*ATI.*FireMV.* 0 0 | 45 | ATI FireMV .*ATI.*FireMV.* 0 0 |
diff --git a/linden/indra/newview/installers/windows/installer_template.nsi b/linden/indra/newview/installers/windows/installer_template.nsi index fa94a09..0566b7e 100644 --- a/linden/indra/newview/installers/windows/installer_template.nsi +++ b/linden/indra/newview/installers/windows/installer_template.nsi | |||
@@ -380,7 +380,7 @@ FunctionEnd | |||
380 | ;; | 380 | ;; |
381 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | 381 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
382 | Function un.CheckIfAdministrator | 382 | Function un.CheckIfAdministrator |
383 | DetailPrint $(CheckAdministratorUnInstDP) | 383 | DetailPrint $(CheckAdministratorUnInstDP) |
384 | UserInfo::GetAccountType | 384 | UserInfo::GetAccountType |
385 | Pop $R0 | 385 | Pop $R0 |
386 | StrCmp $R0 "Admin" is_admin | 386 | StrCmp $R0 "Admin" is_admin |
@@ -583,6 +583,22 @@ Function un.CloseSecondLife | |||
583 | Return | 583 | Return |
584 | FunctionEnd | 584 | FunctionEnd |
585 | 585 | ||
586 | |||
587 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||
588 | ; | ||
589 | ; Delete the stored password for the current Windows user | ||
590 | ; DEV-10821 -- Unauthorised user can gain access to an SL account after a real user has uninstalled | ||
591 | ; | ||
592 | Function un.RemovePassword | ||
593 | |||
594 | DetailPrint "Removing Second Life password" | ||
595 | |||
596 | SetShellVarContext current | ||
597 | Delete "$APPDATA\SecondLife\user_settings\password.dat" | ||
598 | SetShellVarContext all | ||
599 | |||
600 | FunctionEnd | ||
601 | |||
586 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | 602 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
587 | ;;; Delete the installed files | 603 | ;;; Delete the installed files |
588 | ;;; This deletes the uninstall executable, but it works | 604 | ;;; This deletes the uninstall executable, but it works |
@@ -682,6 +698,9 @@ Delete "$INSTDIR\Uninstall $INSTSHORTCUT.lnk" | |||
682 | Call un.DocumentsAndSettingsFolder | 698 | Call un.DocumentsAndSettingsFolder |
683 | !endif | 699 | !endif |
684 | 700 | ||
701 | ; remove stored password on uninstall | ||
702 | Call un.RemovePassword | ||
703 | |||
685 | Call un.ProgramFiles | 704 | Call un.ProgramFiles |
686 | 705 | ||
687 | SectionEnd ; end of uninstall section | 706 | SectionEnd ; end of uninstall section |
diff --git a/linden/indra/newview/llappviewer.cpp b/linden/indra/newview/llappviewer.cpp index 5baf7b6..5573633 100644 --- a/linden/indra/newview/llappviewer.cpp +++ b/linden/indra/newview/llappviewer.cpp | |||
@@ -324,7 +324,7 @@ BOOL gPeriodicSlowFrame = FALSE; | |||
324 | 324 | ||
325 | BOOL gQAMode = FALSE; | 325 | BOOL gQAMode = FALSE; |
326 | BOOL gLLErrorActivated = FALSE; | 326 | BOOL gLLErrorActivated = FALSE; |
327 | 327 | BOOL gLogoutInProgress = FALSE; | |
328 | //////////////////////////////////////////////////////////// | 328 | //////////////////////////////////////////////////////////// |
329 | // Internal globals... that should be removed. | 329 | // Internal globals... that should be removed. |
330 | static F32 gQuitAfterSeconds = 0.f; | 330 | static F32 gQuitAfterSeconds = 0.f; |
@@ -348,6 +348,7 @@ static const char* LEGACY_DEFAULT_SETTINGS_FILE = "settings.ini"; | |||
348 | const char* MARKER_FILE_NAME = "SecondLife.exec_marker"; | 348 | const char* MARKER_FILE_NAME = "SecondLife.exec_marker"; |
349 | const char* ERROR_MARKER_FILE_NAME = "SecondLife.error_marker"; | 349 | const char* ERROR_MARKER_FILE_NAME = "SecondLife.error_marker"; |
350 | const char* LLERROR_MARKER_FILE_NAME = "SecondLife.llerror_marker"; | 350 | const char* LLERROR_MARKER_FILE_NAME = "SecondLife.llerror_marker"; |
351 | const char* LOGOUT_MARKER_FILE_NAME = "SecondLife.logout_marker"; | ||
351 | static BOOL gDoDisconnect = FALSE; | 352 | static BOOL gDoDisconnect = FALSE; |
352 | static LLString gLaunchFileOnQuit; | 353 | static LLString gLaunchFileOnQuit; |
353 | 354 | ||
@@ -884,7 +885,14 @@ int parse_args(int argc, char **argv) | |||
884 | #endif | 885 | #endif |
885 | else if(!strncmp(argv[j], "-qa", 3)) | 886 | else if(!strncmp(argv[j], "-qa", 3)) |
886 | { | 887 | { |
888 | // This whole case should disappear with settings clean-up work in QAR-369 | ||
889 | // or at least be replaced by setting a boolean in the settings repository. -MG | ||
887 | gQAMode = TRUE; | 890 | gQAMode = TRUE; |
891 | LLUI::setQAMode(gQAMode); | ||
892 | } | ||
893 | else if(argument == "-crash") | ||
894 | { | ||
895 | LLAppViewer::instance()->forceErrorBadMemoryAccess(); | ||
888 | } | 896 | } |
889 | else | 897 | else |
890 | { | 898 | { |
@@ -1359,9 +1367,10 @@ bool LLAppViewer::mainLoop() | |||
1359 | while (!LLApp::isExiting()) | 1367 | while (!LLApp::isExiting()) |
1360 | { | 1368 | { |
1361 | LLFastTimer::reset(); // Should be outside of any timer instances | 1369 | LLFastTimer::reset(); // Should be outside of any timer instances |
1370 | try | ||
1362 | { | 1371 | { |
1363 | LLFastTimer t(LLFastTimer::FTM_FRAME); | 1372 | LLFastTimer t(LLFastTimer::FTM_FRAME); |
1364 | 1373 | ||
1365 | { | 1374 | { |
1366 | LLFastTimer t2(LLFastTimer::FTM_MESSAGES); | 1375 | LLFastTimer t2(LLFastTimer::FTM_MESSAGES); |
1367 | #if LL_WINDOWS | 1376 | #if LL_WINDOWS |
@@ -1523,12 +1532,23 @@ bool LLAppViewer::mainLoop() | |||
1523 | } | 1532 | } |
1524 | 1533 | ||
1525 | } | 1534 | } |
1535 | catch(std::bad_alloc) | ||
1536 | { | ||
1537 | llwarns << "Bad memory allocation in LLAppViewer::mainLoop()!" << llendl ; | ||
1538 | } | ||
1526 | } | 1539 | } |
1527 | 1540 | ||
1528 | // Save snapshot for next time, if we made it through initialization | 1541 | // Save snapshot for next time, if we made it through initialization |
1529 | if (STATE_STARTED == LLStartUp::getStartupState()) | 1542 | if (STATE_STARTED == LLStartUp::getStartupState()) |
1530 | { | 1543 | { |
1531 | saveFinalSnapshot(); | 1544 | try |
1545 | { | ||
1546 | saveFinalSnapshot(); | ||
1547 | } | ||
1548 | catch(std::bad_alloc) | ||
1549 | { | ||
1550 | llwarns << "Bad memory allocation when saveFinalSnapshot() is called!" << llendl ; | ||
1551 | } | ||
1532 | } | 1552 | } |
1533 | 1553 | ||
1534 | delete gServicePump; | 1554 | delete gServicePump; |
@@ -2492,6 +2512,7 @@ void LLAppViewer::writeSystemInfo() | |||
2492 | gDebugInfo["ClientInfo"]["PatchVersion"] = LL_VERSION_PATCH; | 2512 | gDebugInfo["ClientInfo"]["PatchVersion"] = LL_VERSION_PATCH; |
2493 | gDebugInfo["ClientInfo"]["BuildVersion"] = LL_VERSION_BUILD; | 2513 | gDebugInfo["ClientInfo"]["BuildVersion"] = LL_VERSION_BUILD; |
2494 | 2514 | ||
2515 | gDebugInfo["CPUInfo"]["CPUString"] = gSysCPU.getCPUString(); | ||
2495 | gDebugInfo["CPUInfo"]["CPUFamily"] = gSysCPU.getFamily(); | 2516 | gDebugInfo["CPUInfo"]["CPUFamily"] = gSysCPU.getFamily(); |
2496 | gDebugInfo["CPUInfo"]["CPUMhz"] = gSysCPU.getMhz(); | 2517 | gDebugInfo["CPUInfo"]["CPUMhz"] = gSysCPU.getMhz(); |
2497 | gDebugInfo["CPUInfo"]["CPUAltivec"] = gSysCPU.hasAltivec(); | 2518 | gDebugInfo["CPUInfo"]["CPUAltivec"] = gSysCPU.hasAltivec(); |
@@ -2541,7 +2562,20 @@ void LLAppViewer::handleViewerCrash() | |||
2541 | gDebugInfo["CAFilename"] = gDirUtilp->getCAFile(); | 2562 | gDebugInfo["CAFilename"] = gDirUtilp->getCAFile(); |
2542 | gDebugInfo["ViewerExePath"] = gDirUtilp->getExecutablePathAndName().c_str(); | 2563 | gDebugInfo["ViewerExePath"] = gDirUtilp->getExecutablePathAndName().c_str(); |
2543 | gDebugInfo["CurrentPath"] = gDirUtilp->getCurPath().c_str(); | 2564 | gDebugInfo["CurrentPath"] = gDirUtilp->getCurPath().c_str(); |
2544 | gDebugInfo["CurrentSimHost"] = gAgent.getRegionHost().getHostName(); | 2565 | if(gLogoutInProgress) |
2566 | { | ||
2567 | gDebugInfo["LastExecEvent"] = LAST_EXEC_LOGOUT_CRASH; | ||
2568 | } | ||
2569 | else | ||
2570 | { | ||
2571 | gDebugInfo["LastExecEvent"] = gLLErrorActivated ? LAST_EXEC_LLERROR_CRASH : LAST_EXEC_OTHER_CRASH; | ||
2572 | } | ||
2573 | |||
2574 | if(gAgent.getRegion()) | ||
2575 | { | ||
2576 | gDebugInfo["CurrentSimHost"] = gAgent.getRegionHost().getHostName(); | ||
2577 | gDebugInfo["CurrentRegion"] = gAgent.getRegion()->getName(); | ||
2578 | } | ||
2545 | 2579 | ||
2546 | //Write out the crash status file | 2580 | //Write out the crash status file |
2547 | //Use marker file style setup, as that's the simplest, especially since | 2581 | //Use marker file style setup, as that's the simplest, especially since |
@@ -2591,7 +2625,14 @@ void LLAppViewer::handleViewerCrash() | |||
2591 | LLError::logToFile(""); | 2625 | LLError::logToFile(""); |
2592 | 2626 | ||
2593 | // Remove the marker file, since otherwise we'll spawn a process that'll keep it locked | 2627 | // Remove the marker file, since otherwise we'll spawn a process that'll keep it locked |
2594 | pApp->removeMarkerFile(); | 2628 | if(gDebugInfo["LastExecEvent"].asInteger() == LAST_EXEC_LOGOUT_CRASH) |
2629 | { | ||
2630 | pApp->removeMarkerFile(true); | ||
2631 | } | ||
2632 | else | ||
2633 | { | ||
2634 | pApp->removeMarkerFile(false); | ||
2635 | } | ||
2595 | 2636 | ||
2596 | // Call to pure virtual, handled by platform specifc llappviewer instance. | 2637 | // Call to pure virtual, handled by platform specifc llappviewer instance. |
2597 | pApp->handleCrashReporting(); | 2638 | pApp->handleCrashReporting(); |
@@ -2656,24 +2697,35 @@ void LLAppViewer::initMarkerFile() | |||
2656 | // These checks should also remove these files for the last 2 cases if they currently exist | 2697 | // These checks should also remove these files for the last 2 cases if they currently exist |
2657 | 2698 | ||
2658 | //LLError/Error checks. Only one of these should ever happen at a time. | 2699 | //LLError/Error checks. Only one of these should ever happen at a time. |
2700 | LLString logout_marker_file = gDirUtilp->getExpandedFilename(LL_PATH_LOGS, LOGOUT_MARKER_FILE_NAME); | ||
2659 | LLString llerror_marker_file = gDirUtilp->getExpandedFilename(LL_PATH_LOGS, LLERROR_MARKER_FILE_NAME); | 2701 | LLString llerror_marker_file = gDirUtilp->getExpandedFilename(LL_PATH_LOGS, LLERROR_MARKER_FILE_NAME); |
2660 | LLString error_marker_file = gDirUtilp->getExpandedFilename(LL_PATH_LOGS, ERROR_MARKER_FILE_NAME); | 2702 | LLString error_marker_file = gDirUtilp->getExpandedFilename(LL_PATH_LOGS, ERROR_MARKER_FILE_NAME); |
2661 | apr_file_t* fMarker = ll_apr_file_open(llerror_marker_file, LL_APR_RB); | 2703 | |
2704 | apr_file_t* fMarker = ll_apr_file_open(logout_marker_file, LL_APR_RB); | ||
2705 | if(fMarker != NULL) | ||
2706 | { | ||
2707 | apr_file_close(fMarker); | ||
2708 | llinfos << "Last exec LLError crashed, setting LastExecEvent to " << LAST_EXEC_LLERROR_CRASH << llendl; | ||
2709 | gLastExecEvent = LAST_EXEC_LOGOUT_FROZE; | ||
2710 | } | ||
2711 | fMarker = ll_apr_file_open(llerror_marker_file, LL_APR_RB); | ||
2662 | if(fMarker != NULL) | 2712 | if(fMarker != NULL) |
2663 | { | 2713 | { |
2664 | apr_file_close(fMarker); | 2714 | apr_file_close(fMarker); |
2665 | llinfos << "Last exec LLError crashed, setting LastExecEvent to " << LAST_EXEC_LLERROR_CRASH << llendl; | 2715 | llinfos << "Last exec LLError crashed, setting LastExecEvent to " << LAST_EXEC_LLERROR_CRASH << llendl; |
2666 | gLastExecEvent = LAST_EXEC_LLERROR_CRASH; | 2716 | if(gLastExecEvent == LAST_EXEC_LOGOUT_FROZE) gLastExecEvent = LAST_EXEC_LOGOUT_CRASH; |
2717 | else gLastExecEvent = LAST_EXEC_LLERROR_CRASH; | ||
2667 | } | 2718 | } |
2668 | |||
2669 | fMarker = ll_apr_file_open(error_marker_file, LL_APR_RB); | 2719 | fMarker = ll_apr_file_open(error_marker_file, LL_APR_RB); |
2670 | if(fMarker != NULL) | 2720 | if(fMarker != NULL) |
2671 | { | 2721 | { |
2672 | apr_file_close(fMarker); | 2722 | apr_file_close(fMarker); |
2673 | llinfos << "Last exec crashed, setting LastExecEvent to " << LAST_EXEC_OTHER_CRASH << llendl; | 2723 | llinfos << "Last exec crashed, setting LastExecEvent to " << LAST_EXEC_OTHER_CRASH << llendl; |
2674 | gLastExecEvent = LAST_EXEC_OTHER_CRASH; | 2724 | if(gLastExecEvent == LAST_EXEC_LOGOUT_FROZE) gLastExecEvent = LAST_EXEC_LOGOUT_CRASH; |
2725 | else gLastExecEvent = LAST_EXEC_OTHER_CRASH; | ||
2675 | } | 2726 | } |
2676 | 2727 | ||
2728 | ll_apr_file_remove(logout_marker_file); | ||
2677 | ll_apr_file_remove(llerror_marker_file); | 2729 | ll_apr_file_remove(llerror_marker_file); |
2678 | ll_apr_file_remove(error_marker_file); | 2730 | ll_apr_file_remove(error_marker_file); |
2679 | 2731 | ||
@@ -2696,6 +2748,7 @@ void LLAppViewer::initMarkerFile() | |||
2696 | else | 2748 | else |
2697 | { | 2749 | { |
2698 | llinfos << "Failed to create marker file." << llendl; | 2750 | llinfos << "Failed to create marker file." << llendl; |
2751 | return; | ||
2699 | } | 2752 | } |
2700 | if (apr_file_lock(mMarkerFile, APR_FLOCK_NONBLOCK | APR_FLOCK_EXCLUSIVE) != APR_SUCCESS) | 2753 | if (apr_file_lock(mMarkerFile, APR_FLOCK_NONBLOCK | APR_FLOCK_EXCLUSIVE) != APR_SUCCESS) |
2701 | { | 2754 | { |
@@ -2708,7 +2761,7 @@ void LLAppViewer::initMarkerFile() | |||
2708 | llinfos << "Exiting initMarkerFile()." << llendl; | 2761 | llinfos << "Exiting initMarkerFile()." << llendl; |
2709 | } | 2762 | } |
2710 | 2763 | ||
2711 | void LLAppViewer::removeMarkerFile() | 2764 | void LLAppViewer::removeMarkerFile(bool leave_logout_marker) |
2712 | { | 2765 | { |
2713 | llinfos << "removeMarkerFile()" << llendl; | 2766 | llinfos << "removeMarkerFile()" << llendl; |
2714 | if (mMarkerFile != NULL) | 2767 | if (mMarkerFile != NULL) |
@@ -2716,6 +2769,11 @@ void LLAppViewer::removeMarkerFile() | |||
2716 | ll_apr_file_remove( mMarkerFileName ); | 2769 | ll_apr_file_remove( mMarkerFileName ); |
2717 | mMarkerFile = NULL; | 2770 | mMarkerFile = NULL; |
2718 | } | 2771 | } |
2772 | if (mLogoutMarkerFile != NULL && !leave_logout_marker) | ||
2773 | { | ||
2774 | ll_apr_file_remove( mLogoutMarkerFileName ); | ||
2775 | mLogoutMarkerFile = NULL; | ||
2776 | } | ||
2719 | } | 2777 | } |
2720 | 2778 | ||
2721 | void LLAppViewer::forceQuit() | 2779 | void LLAppViewer::forceQuit() |
@@ -3731,6 +3789,20 @@ void LLAppViewer::sendLogoutRequest() | |||
3731 | mLogoutRequestSent = TRUE; | 3789 | mLogoutRequestSent = TRUE; |
3732 | 3790 | ||
3733 | gVoiceClient->leaveChannel(); | 3791 | gVoiceClient->leaveChannel(); |
3792 | |||
3793 | //Set internal status variables and marker files | ||
3794 | gLogoutInProgress = TRUE; | ||
3795 | mLogoutMarkerFileName = gDirUtilp->getExpandedFilename(LL_PATH_LOGS,LOGOUT_MARKER_FILE_NAME); | ||
3796 | mLogoutMarkerFile = ll_apr_file_open(mLogoutMarkerFileName, LL_APR_W); | ||
3797 | if (mLogoutMarkerFile) | ||
3798 | { | ||
3799 | llinfos << "Created logout marker file " << mLogoutMarkerFileName << llendl; | ||
3800 | } | ||
3801 | else | ||
3802 | { | ||
3803 | llwarns << "Cannot create logout marker file " << mLogoutMarkerFileName << llendl; | ||
3804 | } | ||
3805 | apr_file_close(mLogoutMarkerFile); | ||
3734 | } | 3806 | } |
3735 | } | 3807 | } |
3736 | 3808 | ||
diff --git a/linden/indra/newview/llappviewer.h b/linden/indra/newview/llappviewer.h index ddf51b3..88f3fdd 100644 --- a/linden/indra/newview/llappviewer.h +++ b/linden/indra/newview/llappviewer.h | |||
@@ -115,7 +115,7 @@ public: | |||
115 | 115 | ||
116 | bool isInProductionGrid(); | 116 | bool isInProductionGrid(); |
117 | 117 | ||
118 | void removeMarkerFile(); | 118 | void removeMarkerFile(bool leave_logout_marker = false); |
119 | 119 | ||
120 | // LLAppViewer testing helpers. | 120 | // LLAppViewer testing helpers. |
121 | // *NOTE: These will potentially crash the viewer. Only for debugging. | 121 | // *NOTE: These will potentially crash the viewer. Only for debugging. |
@@ -167,6 +167,10 @@ private: | |||
167 | LLString mMarkerFileName; | 167 | LLString mMarkerFileName; |
168 | apr_file_t* mMarkerFile; // A file created to indicate the app is running. | 168 | apr_file_t* mMarkerFile; // A file created to indicate the app is running. |
169 | 169 | ||
170 | LLString mLogoutMarkerFileName; | ||
171 | apr_file_t* mLogoutMarkerFile; // A file created to indicate the app is running. | ||
172 | |||
173 | |||
170 | LLOSInfo mSysOSInfo; | 174 | LLOSInfo mSysOSInfo; |
171 | S32 mCrashBehavior; | 175 | S32 mCrashBehavior; |
172 | bool mReportedCrash; | 176 | bool mReportedCrash; |
@@ -231,7 +235,9 @@ typedef enum | |||
231 | LAST_EXEC_NORMAL = 0, | 235 | LAST_EXEC_NORMAL = 0, |
232 | LAST_EXEC_FROZE, | 236 | LAST_EXEC_FROZE, |
233 | LAST_EXEC_LLERROR_CRASH, | 237 | LAST_EXEC_LLERROR_CRASH, |
234 | LAST_EXEC_OTHER_CRASH | 238 | LAST_EXEC_OTHER_CRASH, |
239 | LAST_EXEC_LOGOUT_FROZE, | ||
240 | LAST_EXEC_LOGOUT_CRASH | ||
235 | } eLastExecEvent; | 241 | } eLastExecEvent; |
236 | 242 | ||
237 | extern eLastExecEvent gLastExecEvent; // llstartup | 243 | extern eLastExecEvent gLastExecEvent; // llstartup |
diff --git a/linden/indra/newview/llcontroldef.cpp b/linden/indra/newview/llcontroldef.cpp index aed0a82..97fd268 100644 --- a/linden/indra/newview/llcontroldef.cpp +++ b/linden/indra/newview/llcontroldef.cpp | |||
@@ -1068,7 +1068,7 @@ void declare_settings() | |||
1068 | gSavedSettings.declareRect("FloaterOpenObjectRect", LLRect(0, 350, 300, 0), "Rectangle for Open Object window"); | 1068 | gSavedSettings.declareRect("FloaterOpenObjectRect", LLRect(0, 350, 300, 0), "Rectangle for Open Object window"); |
1069 | 1069 | ||
1070 | // the about box | 1070 | // the about box |
1071 | gSavedSettings.declareRect("FloaterMediaRect", LLRect(0, 400, 400, 0), "Rectangle for media browser window"); | 1071 | gSavedSettings.declareRect("FloaterMediaRect", LLRect(16,650,600,128), "Rectangle for media browser window"); |
1072 | 1072 | ||
1073 | // the about box | 1073 | // the about box |
1074 | gSavedSettings.declareRect("FloaterAboutRect", LLRect(0, 440, 470, 0), "Rectangle for About window"); | 1074 | gSavedSettings.declareRect("FloaterAboutRect", LLRect(0, 440, 470, 0), "Rectangle for About window"); |
@@ -1187,7 +1187,7 @@ void declare_settings() | |||
1187 | gSavedSettings.declareString("HelpLastVisitedURL", "help/index.html", "URL of last help page, will be shown next time help is accessed"); | 1187 | gSavedSettings.declareString("HelpLastVisitedURL", "help/index.html", "URL of last help page, will be shown next time help is accessed"); |
1188 | 1188 | ||
1189 | // HTML dialog (general purpose) | 1189 | // HTML dialog (general purpose) |
1190 | gSavedSettings.declareRect("HtmlFloaterRect", LLRect(100,460,370,100), "Rectangle for HTML Floater window"); | 1190 | gSavedSettings.declareRect("HtmlFloaterRect", LLRect(16,650,600,128), "Rectangle for HTML Floater window"); |
1191 | 1191 | ||
1192 | // HTML sim release message floater | 1192 | // HTML sim release message floater |
1193 | gSavedSettings.declareRect("HtmlReleaseMessage", LLRect(46,520,400,128), "Rectangle for HTML Release Message Floater window"); | 1193 | gSavedSettings.declareRect("HtmlReleaseMessage", LLRect(46,520,400,128), "Rectangle for HTML Release Message Floater window"); |
@@ -1524,7 +1524,7 @@ void declare_settings() | |||
1524 | 1524 | ||
1525 | // use object-object occlusion culling | 1525 | // use object-object occlusion culling |
1526 | gSavedSettings.declareBOOL("UseOcclusion", TRUE, "Enable object culling based on occlusion (coverage) by other objects"); | 1526 | gSavedSettings.declareBOOL("UseOcclusion", TRUE, "Enable object culling based on occlusion (coverage) by other objects"); |
1527 | gSavedSettings.declareBOOL("RenderFastAlpha", TRUE, "Use lossy alpha rendering optimization (opaque/nonexistent small alpha faces)."); | 1527 | gSavedSettings.declareBOOL("RenderFastAlpha", FALSE, "Use lossy alpha rendering optimization (opaque/nonexistent small alpha faces)."); |
1528 | 1528 | ||
1529 | gSavedSettings.declareBOOL("DoubleClickAutoPilot", FALSE, "Enable double-click auto pilot"); | 1529 | gSavedSettings.declareBOOL("DoubleClickAutoPilot", FALSE, "Enable double-click auto pilot"); |
1530 | 1530 | ||
@@ -1576,6 +1576,8 @@ void declare_settings() | |||
1576 | gSavedSettings.declareBOOL("VectorizeSkin", TRUE, "Enable vector operations for avatar skinning."); | 1576 | gSavedSettings.declareBOOL("VectorizeSkin", TRUE, "Enable vector operations for avatar skinning."); |
1577 | gSavedSettings.declareU32( "VectorizeProcessor", 0, "0=Compiler Default, 1=SSE, 2=SSE2, autodetected", NO_PERSIST); | 1577 | gSavedSettings.declareU32( "VectorizeProcessor", 0, "0=Compiler Default, 1=SSE, 2=SSE2, autodetected", NO_PERSIST); |
1578 | 1578 | ||
1579 | gSavedSettings.declareBOOL("SaveMinidump", TRUE, "Save minidump for developer debugging on crash"); | ||
1580 | |||
1579 | // | 1581 | // |
1580 | // crash_settings.xml | 1582 | // crash_settings.xml |
1581 | // | 1583 | // |
diff --git a/linden/indra/newview/llcurrencyuimanager.cpp b/linden/indra/newview/llcurrencyuimanager.cpp index 413adf2..74ee8cc 100644 --- a/linden/indra/newview/llcurrencyuimanager.cpp +++ b/linden/indra/newview/llcurrencyuimanager.cpp | |||
@@ -332,6 +332,7 @@ void LLCurrencyUIManager::Impl::currencyKey(S32 value) | |||
332 | // get reset and the cursor will change... | 332 | // get reset and the cursor will change... |
333 | 333 | ||
334 | mPanel.childHide("currency_est"); | 334 | mPanel.childHide("currency_est"); |
335 | mPanel.childSetVisible("getting_data",TRUE); | ||
335 | } | 336 | } |
336 | 337 | ||
337 | mCurrencyChanged = true; | 338 | mCurrencyChanged = true; |
@@ -392,6 +393,13 @@ void LLCurrencyUIManager::Impl::updateUI() | |||
392 | 393 | ||
393 | mPanel.childSetTextArg("currency_est", "[USD]", llformat("%#.2f", mSiteCurrencyEstimatedCost / 100.0)); | 394 | mPanel.childSetTextArg("currency_est", "[USD]", llformat("%#.2f", mSiteCurrencyEstimatedCost / 100.0)); |
394 | mPanel.childSetVisible("currency_est", mSiteCurrencyEstimated && mUserCurrencyBuy > 0); | 395 | mPanel.childSetVisible("currency_est", mSiteCurrencyEstimated && mUserCurrencyBuy > 0); |
396 | |||
397 | if (mPanel.childIsEnabled("buy_btn") | ||
398 | ||mPanel.childIsVisible("currency_est") | ||
399 | || mPanel.childIsVisible("error_web")) | ||
400 | { | ||
401 | mPanel.childSetVisible("getting_data",FALSE); | ||
402 | } | ||
395 | } | 403 | } |
396 | 404 | ||
397 | 405 | ||
diff --git a/linden/indra/newview/lldrawable.cpp b/linden/indra/newview/lldrawable.cpp index 4b6bd7c..228049f 100644 --- a/linden/indra/newview/lldrawable.cpp +++ b/linden/indra/newview/lldrawable.cpp | |||
@@ -409,14 +409,14 @@ void LLDrawable::makeActive() | |||
409 | } | 409 | } |
410 | 410 | ||
411 | 411 | ||
412 | void LLDrawable::makeStatic() | 412 | void LLDrawable::makeStatic(BOOL warning_enabled) |
413 | { | 413 | { |
414 | if (isState(ACTIVE)) | 414 | if (isState(ACTIVE)) |
415 | { | 415 | { |
416 | clearState(ACTIVE); | 416 | clearState(ACTIVE); |
417 | gPipeline.setActive(this, FALSE); | 417 | gPipeline.setActive(this, FALSE); |
418 | 418 | ||
419 | if (mParent.notNull() && mParent->isActive()) | 419 | if (mParent.notNull() && mParent->isActive() && warning_enabled) |
420 | { | 420 | { |
421 | llwarns << "Drawable becamse static with active parent!" << llendl; | 421 | llwarns << "Drawable becamse static with active parent!" << llendl; |
422 | } | 422 | } |
@@ -431,7 +431,7 @@ void LLDrawable::makeStatic() | |||
431 | { | 431 | { |
432 | llwarns << "Child drawable has unknown parent." << llendl; | 432 | llwarns << "Child drawable has unknown parent." << llendl; |
433 | } | 433 | } |
434 | child_drawable->makeStatic(); | 434 | child_drawable->makeStatic(warning_enabled); |
435 | } | 435 | } |
436 | } | 436 | } |
437 | 437 | ||
diff --git a/linden/indra/newview/lldrawable.h b/linden/indra/newview/lldrawable.h index 8493747..97b97f4 100644 --- a/linden/indra/newview/lldrawable.h +++ b/linden/indra/newview/lldrawable.h | |||
@@ -140,7 +140,7 @@ public: | |||
140 | F32 updateXform(BOOL undamped); | 140 | F32 updateXform(BOOL undamped); |
141 | 141 | ||
142 | virtual void makeActive(); | 142 | virtual void makeActive(); |
143 | virtual void makeStatic(); | 143 | /*virtual*/ void makeStatic(BOOL warning_enabled = TRUE); |
144 | 144 | ||
145 | BOOL isActive() const { return isState(ACTIVE); } | 145 | BOOL isActive() const { return isState(ACTIVE); } |
146 | BOOL isStatic() const { return !isActive(); } | 146 | BOOL isStatic() const { return !isActive(); } |
diff --git a/linden/indra/newview/lldrawpoolbump.cpp b/linden/indra/newview/lldrawpoolbump.cpp index 987e65e..0bfb737 100644 --- a/linden/indra/newview/lldrawpoolbump.cpp +++ b/linden/indra/newview/lldrawpoolbump.cpp | |||
@@ -73,7 +73,7 @@ const U32 VERTEX_MASK_SHINY = LLVertexBuffer::MAP_VERTEX | LLVertexBuffer::MAP_N | |||
73 | const U32 VERTEX_MASK_BUMP = LLVertexBuffer::MAP_VERTEX |LLVertexBuffer::MAP_TEXCOORD | LLVertexBuffer::MAP_TEXCOORD2; | 73 | const U32 VERTEX_MASK_BUMP = LLVertexBuffer::MAP_VERTEX |LLVertexBuffer::MAP_TEXCOORD | LLVertexBuffer::MAP_TEXCOORD2; |
74 | 74 | ||
75 | U32 LLDrawPoolBump::sVertexMask = VERTEX_MASK_SHINY; | 75 | U32 LLDrawPoolBump::sVertexMask = VERTEX_MASK_SHINY; |
76 | static LLCubeMap* sCubeMap = NULL; | 76 | static LLPointer<LLCubeMap> sCubeMap; |
77 | 77 | ||
78 | static LLGLSLShader* shader = NULL; | 78 | static LLGLSLShader* shader = NULL; |
79 | static S32 cube_channel = -1; | 79 | static S32 cube_channel = -1; |
@@ -592,7 +592,7 @@ void LLDrawPoolBump::renderGroup(LLSpatialGroup* group, U32 type, U32 mask, BOOL | |||
592 | { | 592 | { |
593 | sCubeMap->bind(); | 593 | sCubeMap->bind(); |
594 | } | 594 | } |
595 | else | 595 | else if (gSky.mVOSkyp->getCubeMap()) |
596 | { | 596 | { |
597 | gSky.mVOSkyp->getCubeMap()->bind(); | 597 | gSky.mVOSkyp->getCubeMap()->bind(); |
598 | } | 598 | } |
diff --git a/linden/indra/newview/lldrawpoolwlsky.cpp b/linden/indra/newview/lldrawpoolwlsky.cpp index 65d1d20..3e8d1b2 100644 --- a/linden/indra/newview/lldrawpoolwlsky.cpp +++ b/linden/indra/newview/lldrawpoolwlsky.cpp | |||
@@ -68,7 +68,7 @@ LLDrawPoolWLSky::LLDrawPoolWLSky(void) : | |||
68 | 68 | ||
69 | sCloudNoiseRawImage = new LLImageRaw(); | 69 | sCloudNoiseRawImage = new LLImageRaw(); |
70 | 70 | ||
71 | cloudNoiseFile->decode(sCloudNoiseRawImage); | 71 | cloudNoiseFile->decode(sCloudNoiseRawImage, 0.0f); |
72 | 72 | ||
73 | LLImageGL::create(sCloudNoiseTexture, sCloudNoiseRawImage, TRUE); | 73 | LLImageGL::create(sCloudNoiseTexture, sCloudNoiseRawImage, TRUE); |
74 | 74 | ||
diff --git a/linden/indra/newview/llfilepicker.cpp b/linden/indra/newview/llfilepicker.cpp index af68e21..1be1199 100644 --- a/linden/indra/newview/llfilepicker.cpp +++ b/linden/indra/newview/llfilepicker.cpp | |||
@@ -1348,7 +1348,6 @@ const char* LLFilePicker::getDirname() | |||
1348 | 1348 | ||
1349 | void LLFilePicker::reset() | 1349 | void LLFilePicker::reset() |
1350 | { | 1350 | { |
1351 | llinfos << "GTK LLFilePicker::reset()" << llendl; | ||
1352 | mNextFileIndex = 0; | 1351 | mNextFileIndex = 0; |
1353 | mStoreFilenames.win = NULL; | 1352 | mStoreFilenames.win = NULL; |
1354 | mStoreFilenames.fileVector.clear(); | 1353 | mStoreFilenames.fileVector.clear(); |
diff --git a/linden/indra/newview/llfloaterauction.cpp b/linden/indra/newview/llfloaterauction.cpp index 100e4dc..f0086c4 100644 --- a/linden/indra/newview/llfloaterauction.cpp +++ b/linden/indra/newview/llfloaterauction.cpp | |||
@@ -197,7 +197,7 @@ void LLFloaterAuction::onClickSnapshot(void* data) | |||
197 | llinfos << "Writing J2C..." << llendl; | 197 | llinfos << "Writing J2C..." << llendl; |
198 | 198 | ||
199 | LLPointer<LLImageJ2C> j2c = new LLImageJ2C; | 199 | LLPointer<LLImageJ2C> j2c = new LLImageJ2C; |
200 | j2c->encode(raw); | 200 | j2c->encode(raw, 0.0f); |
201 | LLVFile::writeFile(j2c->getData(), j2c->getDataSize(), gVFS, self->mImageID, LLAssetType::AT_TEXTURE); | 201 | LLVFile::writeFile(j2c->getData(), j2c->getDataSize(), gVFS, self->mImageID, LLAssetType::AT_TEXTURE); |
202 | 202 | ||
203 | self->mImage = new LLImageGL((LLImageRaw*)raw, FALSE); | 203 | self->mImage = new LLImageGL((LLImageRaw*)raw, FALSE); |
diff --git a/linden/indra/newview/llfloaterbuycurrency.cpp b/linden/indra/newview/llfloaterbuycurrency.cpp index f4e1118..dd7732d 100644 --- a/linden/indra/newview/llfloaterbuycurrency.cpp +++ b/linden/indra/newview/llfloaterbuycurrency.cpp | |||
@@ -229,6 +229,10 @@ void LLFloaterBuyCurrencyUI::updateUI() | |||
229 | } | 229 | } |
230 | 230 | ||
231 | childSetVisible("error_web", !mManager.errorURI().empty()); | 231 | childSetVisible("error_web", !mManager.errorURI().empty()); |
232 | if (!mManager.errorURI().empty()) | ||
233 | { | ||
234 | childHide("getting_data"); | ||
235 | } | ||
232 | } | 236 | } |
233 | else | 237 | else |
234 | { | 238 | { |
@@ -308,6 +312,11 @@ void LLFloaterBuyCurrencyUI::updateUI() | |||
308 | } | 312 | } |
309 | 313 | ||
310 | childSetEnabled("buy_btn", mManager.canBuy()); | 314 | childSetEnabled("buy_btn", mManager.canBuy()); |
315 | |||
316 | if (!mManager.canBuy() && !childIsVisible("error_web")) | ||
317 | { | ||
318 | childShow("getting_data"); | ||
319 | } | ||
311 | } | 320 | } |
312 | 321 | ||
313 | // static | 322 | // static |
diff --git a/linden/indra/newview/llfloatercustomize.cpp b/linden/indra/newview/llfloatercustomize.cpp index 923c358..f4baa9f 100644 --- a/linden/indra/newview/llfloatercustomize.cpp +++ b/linden/indra/newview/llfloatercustomize.cpp | |||
@@ -1653,7 +1653,7 @@ void LLFloaterCustomize::onBtnSnapshot( void* userdata ) | |||
1653 | if (!success) return; | 1653 | if (!success) return; |
1654 | 1654 | ||
1655 | LLPointer<LLImageJPEG> jpeg_image = new LLImageJPEG; | 1655 | LLPointer<LLImageJPEG> jpeg_image = new LLImageJPEG; |
1656 | success = jpeg_image->encode(raw); | 1656 | success = jpeg_image->encode(raw, 0.0f); |
1657 | if(!success) return; | 1657 | if(!success) return; |
1658 | 1658 | ||
1659 | LLString filepath("C:\\snapshot"); | 1659 | LLString filepath("C:\\snapshot"); |
diff --git a/linden/indra/newview/llfloatereditui.cpp b/linden/indra/newview/llfloatereditui.cpp index 8daaf6a..b68f696 100644 --- a/linden/indra/newview/llfloatereditui.cpp +++ b/linden/indra/newview/llfloatereditui.cpp | |||
@@ -327,7 +327,7 @@ void LLFloaterEditUI::show(void*) | |||
327 | } | 327 | } |
328 | 328 | ||
329 | // static | 329 | // static |
330 | BOOL LLFloaterEditUI::handleKey(KEY key, MASK mask) | 330 | BOOL LLFloaterEditUI::handleKeyEditUI(KEY key, MASK mask) |
331 | { | 331 | { |
332 | if (!LLView::sEditingUIView) return FALSE; | 332 | if (!LLView::sEditingUIView) return FALSE; |
333 | 333 | ||
diff --git a/linden/indra/newview/llfloatereditui.h b/linden/indra/newview/llfloatereditui.h index 2795e54..9012d23 100644 --- a/linden/indra/newview/llfloatereditui.h +++ b/linden/indra/newview/llfloatereditui.h | |||
@@ -53,7 +53,7 @@ public: | |||
53 | static void navigateHierarchyButtonPressed(void* data); | 53 | static void navigateHierarchyButtonPressed(void* data); |
54 | static void show(void* unused = NULL); | 54 | static void show(void* unused = NULL); |
55 | 55 | ||
56 | static BOOL handleKey(KEY key, MASK mask); | 56 | static BOOL handleKeyEditUI(KEY key, MASK mask); |
57 | 57 | ||
58 | static void onCommitLabel(LLUICtrl* ctrl, void* data); | 58 | static void onCommitLabel(LLUICtrl* ctrl, void* data); |
59 | static void onCommitHeight(LLUICtrl* ctrl, void* data); | 59 | static void onCommitHeight(LLUICtrl* ctrl, void* data); |
diff --git a/linden/indra/newview/llfloaterhtmlhelp.cpp b/linden/indra/newview/llfloaterhtmlhelp.cpp index 9a5ba0e..db68bf8 100644 --- a/linden/indra/newview/llfloaterhtmlhelp.cpp +++ b/linden/indra/newview/llfloaterhtmlhelp.cpp | |||
@@ -211,7 +211,10 @@ void LLFloaterMediaBrowser::onClickOpenWebBrowser(void* user_data) | |||
211 | { | 211 | { |
212 | LLFloaterMediaBrowser* self = (LLFloaterMediaBrowser*)user_data; | 212 | LLFloaterMediaBrowser* self = (LLFloaterMediaBrowser*)user_data; |
213 | 213 | ||
214 | LLWeb::loadURLExternal(self->mCurrentURL); | 214 | std::string url = self->mCurrentURL.empty() ? |
215 | self->mBrowser->getHomePageUrl() : | ||
216 | self->mCurrentURL; | ||
217 | LLWeb::loadURLExternal(url); | ||
215 | } | 218 | } |
216 | 219 | ||
217 | void LLFloaterMediaBrowser::onClickAssign(void* user_data) | 220 | void LLFloaterMediaBrowser::onClickAssign(void* user_data) |
diff --git a/linden/indra/newview/llfloaterimagepreview.cpp b/linden/indra/newview/llfloaterimagepreview.cpp index 551ae95..926a117 100644 --- a/linden/indra/newview/llfloaterimagepreview.cpp +++ b/linden/indra/newview/llfloaterimagepreview.cpp | |||
@@ -353,7 +353,7 @@ bool LLFloaterImagePreview::loadImage(const char *src_filename) | |||
353 | return false; | 353 | return false; |
354 | } | 354 | } |
355 | 355 | ||
356 | if (!bmp_image->decode(raw_image)) | 356 | if (!bmp_image->decode(raw_image, 0.0f)) |
357 | { | 357 | { |
358 | return false; | 358 | return false; |
359 | } | 359 | } |
@@ -390,7 +390,7 @@ bool LLFloaterImagePreview::loadImage(const char *src_filename) | |||
390 | return false; | 390 | return false; |
391 | } | 391 | } |
392 | 392 | ||
393 | if (!jpeg_image->decode(raw_image)) | 393 | if (!jpeg_image->decode(raw_image, 0.0f)) |
394 | { | 394 | { |
395 | return false; | 395 | return false; |
396 | } | 396 | } |
@@ -405,7 +405,7 @@ bool LLFloaterImagePreview::loadImage(const char *src_filename) | |||
405 | return false; | 405 | return false; |
406 | } | 406 | } |
407 | 407 | ||
408 | if (!png_image->decode(raw_image)) | 408 | if (!png_image->decode(raw_image, 0.0f)) |
409 | { | 409 | { |
410 | return false; | 410 | return false; |
411 | } | 411 | } |
@@ -589,7 +589,8 @@ BOOL LLFloaterImagePreview::handleScrollWheel(S32 x, S32 y, S32 clicks) | |||
589 | //----------------------------------------------------------------------------- | 589 | //----------------------------------------------------------------------------- |
590 | // onMouseCaptureLost() | 590 | // onMouseCaptureLost() |
591 | //----------------------------------------------------------------------------- | 591 | //----------------------------------------------------------------------------- |
592 | void LLFloaterImagePreview::onMouseCaptureLost(LLMouseHandler* handler) | 592 | // static |
593 | void LLFloaterImagePreview::onMouseCaptureLostImagePreview(LLMouseHandler* handler) | ||
593 | { | 594 | { |
594 | gViewerWindow->showCursor(); | 595 | gViewerWindow->showCursor(); |
595 | } | 596 | } |
diff --git a/linden/indra/newview/llfloaterimagepreview.h b/linden/indra/newview/llfloaterimagepreview.h index cd5d80b..8cf9b85 100644 --- a/linden/indra/newview/llfloaterimagepreview.h +++ b/linden/indra/newview/llfloaterimagepreview.h | |||
@@ -112,7 +112,7 @@ public: | |||
112 | BOOL handleHover(S32 x, S32 y, MASK mask); | 112 | BOOL handleHover(S32 x, S32 y, MASK mask); |
113 | BOOL handleScrollWheel(S32 x, S32 y, S32 clicks); | 113 | BOOL handleScrollWheel(S32 x, S32 y, S32 clicks); |
114 | 114 | ||
115 | static void onMouseCaptureLost(LLMouseHandler*); | 115 | static void onMouseCaptureLostImagePreview(LLMouseHandler*); |
116 | static void setUploadAmount(S32 amount) { sUploadAmount = amount; } | 116 | static void setUploadAmount(S32 amount) { sUploadAmount = amount; } |
117 | 117 | ||
118 | protected: | 118 | protected: |
diff --git a/linden/indra/newview/llfloaterscriptdebug.cpp b/linden/indra/newview/llfloaterscriptdebug.cpp index b88ab78..e25468b 100644 --- a/linden/indra/newview/llfloaterscriptdebug.cpp +++ b/linden/indra/newview/llfloaterscriptdebug.cpp | |||
@@ -181,11 +181,11 @@ LLFloaterScriptDebugOutput::LLFloaterScriptDebugOutput(const LLUUID& object_id) | |||
181 | addChild(mHistoryEditor); | 181 | addChild(mHistoryEditor); |
182 | } | 182 | } |
183 | 183 | ||
184 | void LLFloaterScriptDebugOutput::init(const LLString& title, BOOL resizable, | 184 | void LLFloaterScriptDebugOutput::initFloater(const LLString& title, BOOL resizable, |
185 | S32 min_width, S32 min_height, BOOL drag_on_left, | 185 | S32 min_width, S32 min_height, BOOL drag_on_left, |
186 | BOOL minimizable, BOOL close_btn) | 186 | BOOL minimizable, BOOL close_btn) |
187 | { | 187 | { |
188 | LLFloater::init(title, resizable, min_width, min_height, drag_on_left, minimizable, close_btn); | 188 | LLFloater::initFloater(title, resizable, min_width, min_height, drag_on_left, minimizable, close_btn); |
189 | S32 y = getRect().getHeight() - LLFLOATER_HEADER_SIZE - LLFLOATER_VPAD; | 189 | S32 y = getRect().getHeight() - LLFLOATER_HEADER_SIZE - LLFLOATER_VPAD; |
190 | S32 x = LLFLOATER_HPAD; | 190 | S32 x = LLFLOATER_HPAD; |
191 | // History editor | 191 | // History editor |
diff --git a/linden/indra/newview/llfloaterscriptdebug.h b/linden/indra/newview/llfloaterscriptdebug.h index b20a460..42c3e7f 100644 --- a/linden/indra/newview/llfloaterscriptdebug.h +++ b/linden/indra/newview/llfloaterscriptdebug.h | |||
@@ -62,7 +62,7 @@ public: | |||
62 | LLFloaterScriptDebugOutput(const LLUUID& object_id); | 62 | LLFloaterScriptDebugOutput(const LLUUID& object_id); |
63 | ~LLFloaterScriptDebugOutput(); | 63 | ~LLFloaterScriptDebugOutput(); |
64 | 64 | ||
65 | virtual void init(const LLString& title, BOOL resizable, | 65 | virtual void initFloater(const LLString& title, BOOL resizable, |
66 | S32 min_width, S32 min_height, BOOL drag_on_left, | 66 | S32 min_width, S32 min_height, BOOL drag_on_left, |
67 | BOOL minimizable, BOOL close_btn); | 67 | BOOL minimizable, BOOL close_btn); |
68 | 68 | ||
diff --git a/linden/indra/newview/llfloatersnapshot.cpp b/linden/indra/newview/llfloatersnapshot.cpp index 9c91348..88e9235 100644 --- a/linden/indra/newview/llfloatersnapshot.cpp +++ b/linden/indra/newview/llfloatersnapshot.cpp | |||
@@ -585,10 +585,10 @@ void LLSnapshotLivePreview::onIdle( void* snapshot_preview ) | |||
585 | previewp->mJPEGImage = NULL; // deletes image | 585 | previewp->mJPEGImage = NULL; // deletes image |
586 | previewp->mJPEGImage = new LLImageJPEG(); | 586 | previewp->mJPEGImage = new LLImageJPEG(); |
587 | previewp->mJPEGImage->setEncodeQuality(llclamp(previewp->mSnapshotQuality, 0, 100)); | 587 | previewp->mJPEGImage->setEncodeQuality(llclamp(previewp->mSnapshotQuality, 0, 100)); |
588 | if (previewp->mJPEGImage->encode(previewp->mRawImage)) | 588 | if (previewp->mJPEGImage->encode(previewp->mRawImage, 0.0f)) |
589 | { | 589 | { |
590 | previewp->mDataSize = previewp->mJPEGImage->getDataSize(); | 590 | previewp->mDataSize = previewp->mJPEGImage->getDataSize(); |
591 | previewp->mJPEGImage->decode(previewp->mRawImageEncoded); | 591 | previewp->mJPEGImage->decode(previewp->mRawImageEncoded, 0.0f); |
592 | } | 592 | } |
593 | } | 593 | } |
594 | else if (previewp->getSnapshotType() == SNAPSHOT_TEXTURE) | 594 | else if (previewp->getSnapshotType() == SNAPSHOT_TEXTURE) |
@@ -601,10 +601,10 @@ void LLSnapshotLivePreview::onIdle( void* snapshot_preview ) | |||
601 | 601 | ||
602 | scaled->biasedScaleToPowerOfTwo(512); | 602 | scaled->biasedScaleToPowerOfTwo(512); |
603 | previewp->mImageScaled[previewp->mCurImageIndex] = TRUE; | 603 | previewp->mImageScaled[previewp->mCurImageIndex] = TRUE; |
604 | if (formatted->encode(scaled)) | 604 | if (formatted->encode(scaled, 0.0f)) |
605 | { | 605 | { |
606 | previewp->mDataSize = formatted->getDataSize(); | 606 | previewp->mDataSize = formatted->getDataSize(); |
607 | formatted->decode(previewp->mRawImageEncoded); | 607 | formatted->decode(previewp->mRawImageEncoded, 0.0f); |
608 | } | 608 | } |
609 | } | 609 | } |
610 | else | 610 | else |
@@ -695,7 +695,7 @@ void LLSnapshotLivePreview::saveTexture() | |||
695 | 695 | ||
696 | scaled->biasedScaleToPowerOfTwo(512); | 696 | scaled->biasedScaleToPowerOfTwo(512); |
697 | 697 | ||
698 | if (formatted->encode(scaled)) | 698 | if (formatted->encode(scaled, 0.0f)) |
699 | { | 699 | { |
700 | LLVFile::writeFile(formatted->getData(), formatted->getDataSize(), gVFS, new_asset_id, LLAssetType::AT_TEXTURE); | 700 | LLVFile::writeFile(formatted->getData(), formatted->getDataSize(), gVFS, new_asset_id, LLAssetType::AT_TEXTURE); |
701 | std::string pos_string; | 701 | std::string pos_string; |
diff --git a/linden/indra/newview/llfolderview.cpp b/linden/indra/newview/llfolderview.cpp index 586c466..9c59c7b 100644 --- a/linden/indra/newview/llfolderview.cpp +++ b/linden/indra/newview/llfolderview.cpp | |||
@@ -4563,6 +4563,9 @@ LLInventoryFilter::LLInventoryFilter(const LLString& name) : | |||
4563 | 4563 | ||
4564 | mLastLogoff = gSavedPerAccountSettings.getU32("LastLogoff"); | 4564 | mLastLogoff = gSavedPerAccountSettings.getU32("LastLogoff"); |
4565 | mFilterBehavior = FILTER_NONE; | 4565 | mFilterBehavior = FILTER_NONE; |
4566 | |||
4567 | // copy mFilterOps into mDefaultFilterOps | ||
4568 | markDefault(); | ||
4566 | } | 4569 | } |
4567 | 4570 | ||
4568 | LLInventoryFilter::~LLInventoryFilter() | 4571 | LLInventoryFilter::~LLInventoryFilter() |
diff --git a/linden/indra/newview/llfolderview.h b/linden/indra/newview/llfolderview.h index 0f26dfa..1bd46d7 100644 --- a/linden/indra/newview/llfolderview.h +++ b/linden/indra/newview/llfolderview.h | |||
@@ -286,7 +286,10 @@ class LLInventorySort | |||
286 | { | 286 | { |
287 | public: | 287 | public: |
288 | LLInventorySort() | 288 | LLInventorySort() |
289 | : mSortOrder(0) { } | 289 | : mSortOrder(0), |
290 | mByDate(false), | ||
291 | mSystemToTop(false), | ||
292 | mFoldersByName(false) { } | ||
290 | 293 | ||
291 | // Returns true if order has changed | 294 | // Returns true if order has changed |
292 | bool updateSort(U32 order); | 295 | bool updateSort(U32 order); |
diff --git a/linden/indra/newview/llimview.cpp b/linden/indra/newview/llimview.cpp index 92e46b4..cad8649 100644 --- a/linden/indra/newview/llimview.cpp +++ b/linden/indra/newview/llimview.cpp | |||
@@ -420,6 +420,8 @@ void LLIMMgr::addMessage( | |||
420 | other_participant_id = LLUUID::null; | 420 | other_participant_id = LLUUID::null; |
421 | } | 421 | } |
422 | 422 | ||
423 | |||
424 | |||
423 | LLFloaterIMPanel* floater; | 425 | LLFloaterIMPanel* floater; |
424 | LLUUID new_session_id = session_id; | 426 | LLUUID new_session_id = session_id; |
425 | if (new_session_id.isNull()) | 427 | if (new_session_id.isNull()) |
@@ -871,19 +873,14 @@ public: | |||
871 | 873 | ||
872 | if ( floaterp ) | 874 | if ( floaterp ) |
873 | { | 875 | { |
874 | std::string error_string; | ||
875 | |||
876 | if ( 404 == statusNum ) | 876 | if ( 404 == statusNum ) |
877 | { | 877 | { |
878 | std::string error_string; | ||
878 | error_string = "does not exist"; | 879 | error_string = "does not exist"; |
879 | } | ||
880 | else | ||
881 | { | ||
882 | error_string = "generic"; | ||
883 | } | ||
884 | 880 | ||
885 | floaterp->showSessionStartError( | 881 | floaterp->showSessionStartError( |
886 | error_string); | 882 | error_string); |
883 | } | ||
887 | } | 884 | } |
888 | } | 885 | } |
889 | } | 886 | } |
diff --git a/linden/indra/newview/llinventorymodel.cpp b/linden/indra/newview/llinventorymodel.cpp index feab282..5a91cac 100644 --- a/linden/indra/newview/llinventorymodel.cpp +++ b/linden/indra/newview/llinventorymodel.cpp | |||
@@ -538,7 +538,7 @@ U32 LLInventoryModel::updateItem(const LLViewerInventoryItem* item) | |||
538 | { | 538 | { |
539 | mask |= LLInventoryObserver::LABEL; | 539 | mask |= LLInventoryObserver::LABEL; |
540 | } | 540 | } |
541 | old_item->copy(item); | 541 | old_item->copyViewerItem(item); |
542 | mask |= LLInventoryObserver::INTERNAL; | 542 | mask |= LLInventoryObserver::INTERNAL; |
543 | } | 543 | } |
544 | else | 544 | else |
@@ -654,14 +654,14 @@ void LLInventoryModel::updateCategory(const LLViewerInventoryCategory* cat) | |||
654 | { | 654 | { |
655 | mask |= LLInventoryObserver::LABEL; | 655 | mask |= LLInventoryObserver::LABEL; |
656 | } | 656 | } |
657 | old_cat->copy(cat); | 657 | old_cat->copyViewerCategory(cat); |
658 | addChangedMask(mask, cat->getUUID()); | 658 | addChangedMask(mask, cat->getUUID()); |
659 | } | 659 | } |
660 | else | 660 | else |
661 | { | 661 | { |
662 | // add this category | 662 | // add this category |
663 | LLPointer<LLViewerInventoryCategory> new_cat = new LLViewerInventoryCategory(cat->getParentUUID()); | 663 | LLPointer<LLViewerInventoryCategory> new_cat = new LLViewerInventoryCategory(cat->getParentUUID()); |
664 | new_cat->copy(cat); | 664 | new_cat->copyViewerCategory(cat); |
665 | addCategory(new_cat); | 665 | addCategory(new_cat); |
666 | 666 | ||
667 | // make sure this category is correctly referenced by it's parent. | 667 | // make sure this category is correctly referenced by it's parent. |
diff --git a/linden/indra/newview/llmimetypes.h b/linden/indra/newview/llmimetypes.h index 6267e7f..a6a3fde 100644 --- a/linden/indra/newview/llmimetypes.h +++ b/linden/indra/newview/llmimetypes.h | |||
@@ -68,7 +68,7 @@ public: | |||
68 | static bool findAllowResize(const LLString& mime_type); | 68 | static bool findAllowResize(const LLString& mime_type); |
69 | // accessor for flag to enable/disable media size edit fields | 69 | // accessor for flag to enable/disable media size edit fields |
70 | 70 | ||
71 | static bool LLMIMETypes::findAllowLooping(const LLString& mime_type); | 71 | static bool findAllowLooping(const LLString& mime_type); |
72 | // accessor for flag to enable/disable media looping checkbox | 72 | // accessor for flag to enable/disable media looping checkbox |
73 | 73 | ||
74 | public: | 74 | public: |
diff --git a/linden/indra/newview/llnameeditor.cpp b/linden/indra/newview/llnameeditor.cpp index 2ba25c3..dcb8911 100644 --- a/linden/indra/newview/llnameeditor.cpp +++ b/linden/indra/newview/llnameeditor.cpp | |||
@@ -135,7 +135,7 @@ void LLNameEditor::refreshAll(const LLUUID& id, const char* firstname, | |||
135 | } | 135 | } |
136 | } | 136 | } |
137 | 137 | ||
138 | void LLNameEditor::setValue( LLSD value ) | 138 | void LLNameEditor::setValue( const LLSD& value ) |
139 | { | 139 | { |
140 | setNameID(value.asUUID(), FALSE); | 140 | setNameID(value.asUUID(), FALSE); |
141 | } | 141 | } |
diff --git a/linden/indra/newview/llnameeditor.h b/linden/indra/newview/llnameeditor.h index 02e67aa..1f31f64 100644 --- a/linden/indra/newview/llnameeditor.h +++ b/linden/indra/newview/llnameeditor.h | |||
@@ -78,7 +78,7 @@ public: | |||
78 | virtual LLString getWidgetTag() const { return LL_NAME_EDITOR_TAG; } | 78 | virtual LLString getWidgetTag() const { return LL_NAME_EDITOR_TAG; } |
79 | 79 | ||
80 | // Take/return agent UUIDs | 80 | // Take/return agent UUIDs |
81 | virtual void setValue( LLSD value ); | 81 | virtual void setValue( const LLSD& value ); |
82 | virtual LLSD getValue() const; | 82 | virtual LLSD getValue() const; |
83 | 83 | ||
84 | private: | 84 | private: |
diff --git a/linden/indra/newview/lloverlaybar.h b/linden/indra/newview/lloverlaybar.h index 136c4e7..abbc33f 100644 --- a/linden/indra/newview/lloverlaybar.h +++ b/linden/indra/newview/lloverlaybar.h | |||
@@ -61,7 +61,7 @@ public: | |||
61 | virtual LLString getWidgetTag() const; | 61 | virtual LLString getWidgetTag() const; |
62 | 62 | ||
63 | /*virtual*/ void refresh(); | 63 | /*virtual*/ void refresh(); |
64 | /*virtual*/ void reshape(S32 width, S32 height, BOOL called_from_parent); | 64 | /*virtual*/ void reshape(S32 width, S32 height, BOOL called_from_parent = TRUE); |
65 | /*virtual*/ BOOL postBuild(); | 65 | /*virtual*/ BOOL postBuild(); |
66 | 66 | ||
67 | void layoutButtons(); | 67 | void layoutButtons(); |
diff --git a/linden/indra/newview/llpanelclassified.cpp b/linden/indra/newview/llpanelclassified.cpp index 7b9c3f8..45c4e38 100644 --- a/linden/indra/newview/llpanelclassified.cpp +++ b/linden/indra/newview/llpanelclassified.cpp | |||
@@ -231,14 +231,14 @@ BOOL LLPanelClassified::postBuild() | |||
231 | mNameEditor = LLViewerUICtrlFactory::getLineEditorByName(this, "given_name_editor"); | 231 | mNameEditor = LLViewerUICtrlFactory::getLineEditorByName(this, "given_name_editor"); |
232 | mNameEditor->setMaxTextLength(DB_PARCEL_NAME_LEN); | 232 | mNameEditor->setMaxTextLength(DB_PARCEL_NAME_LEN); |
233 | mNameEditor->setCommitOnFocusLost(TRUE); | 233 | mNameEditor->setCommitOnFocusLost(TRUE); |
234 | mNameEditor->setFocusReceivedCallback(onFocusReceived, this); | 234 | mNameEditor->setFocusReceivedCallback(focusReceived, this); |
235 | mNameEditor->setCommitCallback(onCommitAny); | 235 | mNameEditor->setCommitCallback(onCommitAny); |
236 | mNameEditor->setCallbackUserData(this); | 236 | mNameEditor->setCallbackUserData(this); |
237 | mNameEditor->setPrevalidate( LLLineEditor::prevalidateASCII ); | 237 | mNameEditor->setPrevalidate( LLLineEditor::prevalidateASCII ); |
238 | 238 | ||
239 | mDescEditor = LLUICtrlFactory::getTextEditorByName(this, "desc_editor"); | 239 | mDescEditor = LLUICtrlFactory::getTextEditorByName(this, "desc_editor"); |
240 | mDescEditor->setCommitOnFocusLost(TRUE); | 240 | mDescEditor->setCommitOnFocusLost(TRUE); |
241 | mDescEditor->setFocusReceivedCallback(onFocusReceived, this); | 241 | mDescEditor->setFocusReceivedCallback(focusReceived, this); |
242 | mDescEditor->setCommitCallback(onCommitAny); | 242 | mDescEditor->setCommitCallback(onCommitAny); |
243 | mDescEditor->setCallbackUserData(this); | 243 | mDescEditor->setCallbackUserData(this); |
244 | mDescEditor->setTabsToNextField(TRUE); | 244 | mDescEditor->setTabsToNextField(TRUE); |
@@ -965,7 +965,7 @@ void LLPanelClassified::onCommitAny(LLUICtrl* ctrl, void* data) | |||
965 | } | 965 | } |
966 | 966 | ||
967 | // static | 967 | // static |
968 | void LLPanelClassified::onFocusReceived(LLFocusableElement* ctrl, void* data) | 968 | void LLPanelClassified::focusReceived(LLFocusableElement* ctrl, void* data) |
969 | { | 969 | { |
970 | // allow the data to be saved | 970 | // allow the data to be saved |
971 | onCommitAny((LLUICtrl*)ctrl, data); | 971 | onCommitAny((LLUICtrl*)ctrl, data); |
diff --git a/linden/indra/newview/llpanelclassified.h b/linden/indra/newview/llpanelclassified.h index ecc196a..78f8a90 100644 --- a/linden/indra/newview/llpanelclassified.h +++ b/linden/indra/newview/llpanelclassified.h | |||
@@ -113,7 +113,7 @@ protected: | |||
113 | static void onClickProfile(void* data); | 113 | static void onClickProfile(void* data); |
114 | static void onClickSet(void* data); | 114 | static void onClickSet(void* data); |
115 | 115 | ||
116 | static void onFocusReceived(LLFocusableElement* ctrl, void* data); | 116 | static void focusReceived(LLFocusableElement* ctrl, void* data); |
117 | static void onCommitAny(LLUICtrl* ctrl, void* data); | 117 | static void onCommitAny(LLUICtrl* ctrl, void* data); |
118 | 118 | ||
119 | BOOL checkDirty(); // Update and return mDirty | 119 | BOOL checkDirty(); // Update and return mDirty |
diff --git a/linden/indra/newview/llpaneldirbrowser.cpp b/linden/indra/newview/llpaneldirbrowser.cpp index cd9e6ae..3ce533c 100644 --- a/linden/indra/newview/llpaneldirbrowser.cpp +++ b/linden/indra/newview/llpaneldirbrowser.cpp | |||
@@ -234,7 +234,7 @@ void LLPanelDirBrowser::onClickNext(void* data) | |||
234 | } | 234 | } |
235 | 235 | ||
236 | // static | 236 | // static |
237 | const std::string LLPanelDirBrowser::filter_short_words( const std::string source_string, | 237 | std::string LLPanelDirBrowser::filterShortWords( const std::string source_string, |
238 | int shortest_word_length, | 238 | int shortest_word_length, |
239 | bool& was_filtered ) | 239 | bool& was_filtered ) |
240 | { | 240 | { |
diff --git a/linden/indra/newview/llpaneldirbrowser.h b/linden/indra/newview/llpaneldirbrowser.h index 23df195..fd32e5a 100644 --- a/linden/indra/newview/llpaneldirbrowser.h +++ b/linden/indra/newview/llpaneldirbrowser.h | |||
@@ -121,7 +121,7 @@ public: | |||
121 | static void processDirPopularReply(LLMessageSystem* msg, void**); | 121 | static void processDirPopularReply(LLMessageSystem* msg, void**); |
122 | static void processDirLandReply(LLMessageSystem *msg, void**); | 122 | static void processDirLandReply(LLMessageSystem *msg, void**); |
123 | 123 | ||
124 | const std::string filter_short_words( const std::string source_string, int shortest_word_length, bool& was_filtered ); | 124 | std::string filterShortWords( const std::string source_string, int shortest_word_length, bool& was_filtered ); |
125 | 125 | ||
126 | protected: | 126 | protected: |
127 | void updateResultCount(); | 127 | void updateResultCount(); |
diff --git a/linden/indra/newview/llpaneldirgroups.cpp b/linden/indra/newview/llpaneldirgroups.cpp index ab2ec38..0a0a14d 100644 --- a/linden/indra/newview/llpaneldirgroups.cpp +++ b/linden/indra/newview/llpaneldirgroups.cpp | |||
@@ -82,18 +82,16 @@ void LLPanelDirGroups::draw() | |||
82 | // virtual | 82 | // virtual |
83 | void LLPanelDirGroups::performQuery() | 83 | void LLPanelDirGroups::performQuery() |
84 | { | 84 | { |
85 | if (childGetValue("name").asString().length() < mMinSearchChars) | 85 | std::string group_name = childGetValue("name").asString(); |
86 | if (group_name.length() < mMinSearchChars) | ||
86 | { | 87 | { |
87 | return; | 88 | return; |
88 | } | 89 | } |
89 | 90 | ||
90 | // filter short words out of the query string | 91 | // "hi " is three chars but not a long-enough search |
91 | // and indidate if we did have to filter it | 92 | std::string query_string = group_name; |
92 | bool query_was_filtered = false; | 93 | LLString::trim( query_string ); |
93 | std::string query_string = LLPanelDirBrowser::filter_short_words( | 94 | bool query_was_filtered = (query_string != group_name); |
94 | childGetValue("name").asString(), | ||
95 | mMinSearchChars, | ||
96 | query_was_filtered ); | ||
97 | 95 | ||
98 | // possible we threw away all the short words in the query so check length | 96 | // possible we threw away all the short words in the query so check length |
99 | if ( query_string.length() < mMinSearchChars ) | 97 | if ( query_string.length() < mMinSearchChars ) |
@@ -107,7 +105,7 @@ void LLPanelDirGroups::performQuery() | |||
107 | { | 105 | { |
108 | LLString::format_map_t args; | 106 | LLString::format_map_t args; |
109 | args["[FINALQUERY]"] = query_string; | 107 | args["[FINALQUERY]"] = query_string; |
110 | gViewerWindow->alertXml("SeachFilteredOnShortWords"); | 108 | gViewerWindow->alertXml("SeachFilteredOnShortWords", args); |
111 | }; | 109 | }; |
112 | 110 | ||
113 | setupNewSearch(); | 111 | setupNewSearch(); |
diff --git a/linden/indra/newview/llpaneldirpeople.cpp b/linden/indra/newview/llpaneldirpeople.cpp index 64cde2d..cae2bef 100644 --- a/linden/indra/newview/llpaneldirpeople.cpp +++ b/linden/indra/newview/llpaneldirpeople.cpp | |||
@@ -75,10 +75,12 @@ void LLPanelDirPeople::performQuery() | |||
75 | 75 | ||
76 | // filter short words out of the query string | 76 | // filter short words out of the query string |
77 | // and indidate if we did have to filter it | 77 | // and indidate if we did have to filter it |
78 | // The shortest username is 2 characters long. | ||
79 | const S32 SHORTEST_WORD_LEN = 2; | ||
78 | bool query_was_filtered = false; | 80 | bool query_was_filtered = false; |
79 | std::string query_string = LLPanelDirBrowser::filter_short_words( | 81 | std::string query_string = LLPanelDirBrowser::filterShortWords( |
80 | childGetValue("name").asString(), | 82 | childGetValue("name").asString(), |
81 | mMinSearchChars, | 83 | SHORTEST_WORD_LEN, |
82 | query_was_filtered ); | 84 | query_was_filtered ); |
83 | 85 | ||
84 | // possible we threw away all the short words in the query so check length | 86 | // possible we threw away all the short words in the query so check length |
@@ -93,7 +95,7 @@ void LLPanelDirPeople::performQuery() | |||
93 | { | 95 | { |
94 | LLString::format_map_t args; | 96 | LLString::format_map_t args; |
95 | args["[FINALQUERY]"] = query_string; | 97 | args["[FINALQUERY]"] = query_string; |
96 | gViewerWindow->alertXml("SeachFilteredOnShortWords"); | 98 | gViewerWindow->alertXml("SeachFilteredOnShortWords", args); |
97 | }; | 99 | }; |
98 | 100 | ||
99 | setupNewSearch(); | 101 | setupNewSearch(); |
diff --git a/linden/indra/newview/llpaneldirplaces.cpp b/linden/indra/newview/llpaneldirplaces.cpp index 9a761c4..3e79ec0 100644 --- a/linden/indra/newview/llpaneldirplaces.cpp +++ b/linden/indra/newview/llpaneldirplaces.cpp | |||
@@ -99,19 +99,16 @@ void LLPanelDirPlaces::draw() | |||
99 | // virtual | 99 | // virtual |
100 | void LLPanelDirPlaces::performQuery() | 100 | void LLPanelDirPlaces::performQuery() |
101 | { | 101 | { |
102 | LLString name = childGetValue("name").asString(); | 102 | LLString place_name = childGetValue("name").asString(); |
103 | if (name.length() < mMinSearchChars) | 103 | if (place_name.length() < mMinSearchChars) |
104 | { | 104 | { |
105 | return; | 105 | return; |
106 | } | 106 | } |
107 | 107 | ||
108 | // filter short words out of the query string | 108 | // "hi " is three chars but not a long-enough search |
109 | // and indidate if we did have to filter it | 109 | std::string query_string = place_name; |
110 | bool query_was_filtered = false; | 110 | LLString::trim( query_string ); |
111 | std::string query_string = LLPanelDirBrowser::filter_short_words( | 111 | bool query_was_filtered = (query_string != place_name); |
112 | name, | ||
113 | mMinSearchChars, | ||
114 | query_was_filtered ); | ||
115 | 112 | ||
116 | // possible we threw away all the short words in the query so check length | 113 | // possible we threw away all the short words in the query so check length |
117 | if ( query_string.length() < mMinSearchChars ) | 114 | if ( query_string.length() < mMinSearchChars ) |
@@ -125,7 +122,7 @@ void LLPanelDirPlaces::performQuery() | |||
125 | { | 122 | { |
126 | LLString::format_map_t args; | 123 | LLString::format_map_t args; |
127 | args["[FINALQUERY]"] = query_string; | 124 | args["[FINALQUERY]"] = query_string; |
128 | gViewerWindow->alertXml("SeachFilteredOnShortWords"); | 125 | gViewerWindow->alertXml("SeachFilteredOnShortWords", args); |
129 | }; | 126 | }; |
130 | 127 | ||
131 | LLString catstring = childGetValue("Category").asString(); | 128 | LLString catstring = childGetValue("Category").asString(); |
diff --git a/linden/indra/newview/llpanelgroupnotices.cpp b/linden/indra/newview/llpanelgroupnotices.cpp index ef57aff..30709af 100644 --- a/linden/indra/newview/llpanelgroupnotices.cpp +++ b/linden/indra/newview/llpanelgroupnotices.cpp | |||
@@ -508,8 +508,10 @@ void LLPanelGroupNotices::processNotices(LLMessageSystem* msg) | |||
508 | row["columns"][4]["column"] = "sort"; | 508 | row["columns"][4]["column"] = "sort"; |
509 | row["columns"][4]["value"] = buffer; | 509 | row["columns"][4]["value"] = buffer; |
510 | 510 | ||
511 | mNoticesList->addElement(row, ADD_SORTED); | 511 | mNoticesList->addElement(row, ADD_BOTTOM); |
512 | } | 512 | } |
513 | |||
514 | mNoticesList->sortItems(); | ||
513 | } | 515 | } |
514 | 516 | ||
515 | void LLPanelGroupNotices::onSelectNotice(LLUICtrl* ctrl, void* data) | 517 | void LLPanelGroupNotices::onSelectNotice(LLUICtrl* ctrl, void* data) |
diff --git a/linden/indra/newview/llpanelgroupvoting.cpp b/linden/indra/newview/llpanelgroupvoting.cpp index d0e513c..dae1eda 100644 --- a/linden/indra/newview/llpanelgroupvoting.cpp +++ b/linden/indra/newview/llpanelgroupvoting.cpp | |||
@@ -148,9 +148,9 @@ public: | |||
148 | static std::map<LLUUID, LLPanelGroupVoting::impl*> sGroupIDs; | 148 | static std::map<LLUUID, LLPanelGroupVoting::impl*> sGroupIDs; |
149 | }; | 149 | }; |
150 | 150 | ||
151 | //**************************************** | 151 | // **************************************** |
152 | //** LLPanelGroupVoting::impl Functions ** | 152 | // ** LLPanelGroupVoting::impl Functions ** |
153 | //**************************************** | 153 | // **************************************** |
154 | 154 | ||
155 | LLPanelGroupVoting::impl::impl(LLPanelGroupVoting& panel, const LLUUID& group_id) | 155 | LLPanelGroupVoting::impl::impl(LLPanelGroupVoting& panel, const LLUUID& group_id) |
156 | : mPanel(panel), | 156 | : mPanel(panel), |
@@ -204,6 +204,7 @@ LLPanelGroupVoting::impl::impl(LLPanelGroupVoting& panel, const LLUUID& group_id | |||
204 | mProposalText = NULL; | 204 | mProposalText = NULL; |
205 | mBtnCreateProposal = NULL; | 205 | mBtnCreateProposal = NULL; |
206 | mBtnSubmitProposal = NULL; | 206 | mBtnSubmitProposal = NULL; |
207 | mBtnCancelProposal = NULL; | ||
207 | mBtnViewProposalList = NULL; | 208 | mBtnViewProposalList = NULL; |
208 | mBtnViewProposalItem = NULL; | 209 | mBtnViewProposalItem = NULL; |
209 | 210 | ||
diff --git a/linden/indra/newview/llpanelinventory.cpp b/linden/indra/newview/llpanelinventory.cpp index 0d85e94..3e92760 100644 --- a/linden/indra/newview/llpanelinventory.cpp +++ b/linden/indra/newview/llpanelinventory.cpp | |||
@@ -707,7 +707,7 @@ public: | |||
707 | virtual BOOL isItemRemovable(); | 707 | virtual BOOL isItemRemovable(); |
708 | virtual void buildContextMenu(LLMenuGL& menu, U32 flags); | 708 | virtual void buildContextMenu(LLMenuGL& menu, U32 flags); |
709 | virtual BOOL hasChildren() const; | 709 | virtual BOOL hasChildren() const; |
710 | virtual BOOL startDrag(EDragAndDropType* type, LLUUID* id); | 710 | virtual BOOL startDrag(EDragAndDropType* type, LLUUID* id) const; |
711 | virtual BOOL dragOrDrop(MASK mask, BOOL drop, | 711 | virtual BOOL dragOrDrop(MASK mask, BOOL drop, |
712 | EDragAndDropType cargo_type, | 712 | EDragAndDropType cargo_type, |
713 | void* cargo_data); | 713 | void* cargo_data); |
@@ -757,7 +757,7 @@ BOOL LLTaskCategoryBridge::hasChildren() const | |||
757 | return FALSE; | 757 | return FALSE; |
758 | } | 758 | } |
759 | 759 | ||
760 | BOOL LLTaskCategoryBridge::startDrag(EDragAndDropType* type, LLUUID* id) | 760 | BOOL LLTaskCategoryBridge::startDrag(EDragAndDropType* type, LLUUID* id) const |
761 | { | 761 | { |
762 | //llinfos << "LLTaskInvFVBridge::startDrag()" << llendl; | 762 | //llinfos << "LLTaskInvFVBridge::startDrag()" << llendl; |
763 | if(mPanel) | 763 | if(mPanel) |
diff --git a/linden/indra/newview/llpreview.h b/linden/indra/newview/llpreview.h index 6265943..d7496d6 100644 --- a/linden/indra/newview/llpreview.h +++ b/linden/indra/newview/llpreview.h | |||
@@ -100,7 +100,7 @@ public: | |||
100 | void setAuxItem( const LLInventoryItem* item ) | 100 | void setAuxItem( const LLInventoryItem* item ) |
101 | { | 101 | { |
102 | if ( mAuxItem ) | 102 | if ( mAuxItem ) |
103 | mAuxItem->copy(item); | 103 | mAuxItem->copyItem(item); |
104 | } | 104 | } |
105 | 105 | ||
106 | static void onBtnCopyToInv(void* userdata); | 106 | static void onBtnCopyToInv(void* userdata); |
diff --git a/linden/indra/newview/llpreviewscript.cpp b/linden/indra/newview/llpreviewscript.cpp index e9a0b4a..2f3a8a2 100644 --- a/linden/indra/newview/llpreviewscript.cpp +++ b/linden/indra/newview/llpreviewscript.cpp | |||
@@ -2049,7 +2049,7 @@ void LLLiveLSLEditor::saveIfNeeded() | |||
2049 | LLInventoryItem* inv_item = (LLInventoryItem*)object->getInventoryObject(mItemID); | 2049 | LLInventoryItem* inv_item = (LLInventoryItem*)object->getInventoryObject(mItemID); |
2050 | if(inv_item) | 2050 | if(inv_item) |
2051 | { | 2051 | { |
2052 | mItem->copy(inv_item); | 2052 | mItem->copyItem(inv_item); |
2053 | } | 2053 | } |
2054 | 2054 | ||
2055 | // Don't need to save if we're pristine | 2055 | // Don't need to save if we're pristine |
diff --git a/linden/indra/newview/llpreviewtexture.cpp b/linden/indra/newview/llpreviewtexture.cpp index b8fa668..9f401f4 100644 --- a/linden/indra/newview/llpreviewtexture.cpp +++ b/linden/indra/newview/llpreviewtexture.cpp | |||
@@ -427,6 +427,9 @@ void LLPreviewTexture::updateAspectRatio() | |||
427 | view_height += BTN_HEIGHT + CLIENT_RECT_VPAD; | 427 | view_height += BTN_HEIGHT + CLIENT_RECT_VPAD; |
428 | button_height = BTN_HEIGHT + PREVIEW_PAD; | 428 | button_height = BTN_HEIGHT + PREVIEW_PAD; |
429 | } | 429 | } |
430 | |||
431 | view_width = llmax(view_width, getMinWidth()); | ||
432 | view_height = llmax(view_height, getMinHeight()); | ||
430 | 433 | ||
431 | if (client_height != mLastHeight || client_width != mLastWidth) | 434 | if (client_height != mLastHeight || client_width != mLastWidth) |
432 | { | 435 | { |
diff --git a/linden/indra/newview/llselectmgr.cpp b/linden/indra/newview/llselectmgr.cpp index 45a4ff5..da71c6b 100644 --- a/linden/indra/newview/llselectmgr.cpp +++ b/linden/indra/newview/llselectmgr.cpp | |||
@@ -83,6 +83,7 @@ | |||
83 | 83 | ||
84 | #include "llglheaders.h" | 84 | #include "llglheaders.h" |
85 | 85 | ||
86 | LLViewerObject* getSelectedParentObject(LLViewerObject *object) ; | ||
86 | // | 87 | // |
87 | // Consts | 88 | // Consts |
88 | // | 89 | // |
@@ -262,7 +263,7 @@ void LLSelectMgr::overrideObjectUpdates() | |||
262 | virtual bool apply(LLSelectNode* selectNode) | 263 | virtual bool apply(LLSelectNode* selectNode) |
263 | { | 264 | { |
264 | LLViewerObject* object = selectNode->getObject(); | 265 | LLViewerObject* object = selectNode->getObject(); |
265 | if (object->permMove()) | 266 | if (object && object->permMove()) |
266 | { | 267 | { |
267 | if (!selectNode->mLastPositionLocal.isExactlyZero()) | 268 | if (!selectNode->mLastPositionLocal.isExactlyZero()) |
268 | { | 269 | { |
@@ -1038,10 +1039,19 @@ void LLSelectMgr::getGrid(LLVector3& origin, LLQuaternion &rotation, LLVector3 & | |||
1038 | 1039 | ||
1039 | if (mGridMode == GRID_MODE_LOCAL && mSelectedObjects->getObjectCount()) | 1040 | if (mGridMode == GRID_MODE_LOCAL && mSelectedObjects->getObjectCount()) |
1040 | { | 1041 | { |
1042 | LLViewerObject* root = getSelectedParentObject(mSelectedObjects->getFirstObject()); | ||
1041 | LLBBox bbox = mSavedSelectionBBox; | 1043 | LLBBox bbox = mSavedSelectionBBox; |
1042 | mGridOrigin = mSavedSelectionBBox.getCenterAgent(); | 1044 | mGridOrigin = mSavedSelectionBBox.getCenterAgent(); |
1043 | mGridRotation = mSavedSelectionBBox.getRotation(); | ||
1044 | mGridScale = mSavedSelectionBBox.getExtentLocal() * 0.5f; | 1045 | mGridScale = mSavedSelectionBBox.getExtentLocal() * 0.5f; |
1046 | |||
1047 | if(mSelectedObjects->getObjectCount() < 2 || !root || root->mDrawable.isNull()) | ||
1048 | { | ||
1049 | mGridRotation = mSavedSelectionBBox.getRotation(); | ||
1050 | } | ||
1051 | else //set to the root object | ||
1052 | { | ||
1053 | mGridRotation = root->getRenderRotation(); | ||
1054 | } | ||
1045 | } | 1055 | } |
1046 | else if (mGridMode == GRID_MODE_REF_OBJECT && first_grid_object && first_grid_object->mDrawable.notNull()) | 1056 | else if (mGridMode == GRID_MODE_REF_OBJECT && first_grid_object && first_grid_object->mDrawable.notNull()) |
1047 | { | 1057 | { |
@@ -1317,6 +1327,8 @@ void LLSelectMgr::dump() | |||
1317 | { | 1327 | { |
1318 | LLSelectNode* node = *iter; | 1328 | LLSelectNode* node = *iter; |
1319 | LLViewerObject* objectp = node->getObject(); | 1329 | LLViewerObject* objectp = node->getObject(); |
1330 | if (!objectp) | ||
1331 | continue; | ||
1320 | for (S32 te = 0; te < objectp->getNumTEs(); ++te ) | 1332 | for (S32 te = 0; te < objectp->getNumTEs(); ++te ) |
1321 | { | 1333 | { |
1322 | if (node->isTESelected(te)) | 1334 | if (node->isTESelected(te)) |
@@ -2099,6 +2111,11 @@ void LLSelectMgr::adjustTexturesByScale(BOOL send_to_sim, BOOL stretch) | |||
2099 | LLSelectNode* selectNode = *iter; | 2111 | LLSelectNode* selectNode = *iter; |
2100 | LLViewerObject* object = selectNode->getObject(); | 2112 | LLViewerObject* object = selectNode->getObject(); |
2101 | 2113 | ||
2114 | if (!object) | ||
2115 | { | ||
2116 | continue; | ||
2117 | } | ||
2118 | |||
2102 | if (!object->permModify()) | 2119 | if (!object->permModify()) |
2103 | { | 2120 | { |
2104 | continue; | 2121 | continue; |
@@ -2199,7 +2216,7 @@ BOOL LLSelectMgr::selectGetModify() | |||
2199 | { | 2216 | { |
2200 | LLSelectNode* node = *iter; | 2217 | LLSelectNode* node = *iter; |
2201 | LLViewerObject* object = node->getObject(); | 2218 | LLViewerObject* object = node->getObject(); |
2202 | if( !node->mValid ) | 2219 | if( !object || !node->mValid ) |
2203 | { | 2220 | { |
2204 | return FALSE; | 2221 | return FALSE; |
2205 | } | 2222 | } |
@@ -3259,7 +3276,7 @@ void LLSelectMgr::packBuyObjectIDs(LLSelectNode* node, void* data) | |||
3259 | { | 3276 | { |
3260 | buy->mObjectsSent.push_back(object); | 3277 | buy->mObjectsSent.push_back(object); |
3261 | gMessageSystem->nextBlockFast(_PREHASH_ObjectData); | 3278 | gMessageSystem->nextBlockFast(_PREHASH_ObjectData); |
3262 | gMessageSystem->addU32Fast(_PREHASH_ObjectLocalID, node->getObject()->getLocalID() ); | 3279 | gMessageSystem->addU32Fast(_PREHASH_ObjectLocalID, object->getLocalID() ); |
3263 | gMessageSystem->addU8Fast(_PREHASH_SaleType, buy->mSaleInfo.getSaleType()); | 3280 | gMessageSystem->addU8Fast(_PREHASH_SaleType, buy->mSaleInfo.getSaleType()); |
3264 | gMessageSystem->addS32Fast(_PREHASH_SalePrice, buy->mSaleInfo.getSalePrice()); | 3281 | gMessageSystem->addS32Fast(_PREHASH_SalePrice, buy->mSaleInfo.getSalePrice()); |
3265 | } | 3282 | } |
@@ -3690,6 +3707,10 @@ void LLSelectMgr::saveSelectedObjectTransform(EActionType action_type) | |||
3690 | virtual bool apply(LLSelectNode* selectNode) | 3707 | virtual bool apply(LLSelectNode* selectNode) |
3691 | { | 3708 | { |
3692 | LLViewerObject* object = selectNode->getObject(); | 3709 | LLViewerObject* object = selectNode->getObject(); |
3710 | if (!object) | ||
3711 | { | ||
3712 | return true; // skip | ||
3713 | } | ||
3693 | selectNode->mSavedPositionLocal = object->getPosition(); | 3714 | selectNode->mSavedPositionLocal = object->getPosition(); |
3694 | if (object->isAttachment()) | 3715 | if (object->isAttachment()) |
3695 | { | 3716 | { |
@@ -4020,7 +4041,10 @@ void LLSelectMgr::sendListToRegions(const LLString& message_name, | |||
4020 | push_all(std::queue<LLSelectNode*>& n) : nodes_to_send(n) {} | 4041 | push_all(std::queue<LLSelectNode*>& n) : nodes_to_send(n) {} |
4021 | virtual bool apply(LLSelectNode* node) | 4042 | virtual bool apply(LLSelectNode* node) |
4022 | { | 4043 | { |
4023 | nodes_to_send.push(node); | 4044 | if (node->getObject()) |
4045 | { | ||
4046 | nodes_to_send.push(node); | ||
4047 | } | ||
4024 | return true; | 4048 | return true; |
4025 | } | 4049 | } |
4026 | }; | 4050 | }; |
@@ -4031,29 +4055,20 @@ void LLSelectMgr::sendListToRegions(const LLString& message_name, | |||
4031 | push_some(std::queue<LLSelectNode*>& n, bool roots) : nodes_to_send(n), mRoots(roots) {} | 4055 | push_some(std::queue<LLSelectNode*>& n, bool roots) : nodes_to_send(n), mRoots(roots) {} |
4032 | virtual bool apply(LLSelectNode* node) | 4056 | virtual bool apply(LLSelectNode* node) |
4033 | { | 4057 | { |
4034 | BOOL is_root = node->getObject()->isRootEdit(); | 4058 | if (node->getObject()) |
4035 | if ((mRoots && is_root) || (!mRoots && !is_root)) | ||
4036 | { | 4059 | { |
4037 | nodes_to_send.push(node); | 4060 | BOOL is_root = node->getObject()->isRootEdit(); |
4061 | if ((mRoots && is_root) || (!mRoots && !is_root)) | ||
4062 | { | ||
4063 | nodes_to_send.push(node); | ||
4064 | } | ||
4038 | } | 4065 | } |
4039 | return true; | 4066 | return true; |
4040 | } | 4067 | } |
4041 | }; | 4068 | }; |
4042 | struct push_editable : public LLSelectedNodeFunctor | ||
4043 | { | ||
4044 | std::queue<LLSelectNode*>& nodes_to_send; | ||
4045 | push_editable(std::queue<LLSelectNode*>& n) : nodes_to_send(n) {} | ||
4046 | virtual bool apply(LLSelectNode* node) | ||
4047 | { | ||
4048 | |||
4049 | nodes_to_send.push(node); | ||
4050 | return true; | ||
4051 | } | ||
4052 | }; | ||
4053 | struct push_all pushall(nodes_to_send); | 4069 | struct push_all pushall(nodes_to_send); |
4054 | struct push_some pushroots(nodes_to_send, TRUE); | 4070 | struct push_some pushroots(nodes_to_send, TRUE); |
4055 | struct push_some pushnonroots(nodes_to_send, FALSE); | 4071 | struct push_some pushnonroots(nodes_to_send, FALSE); |
4056 | struct push_editable pusheditable(nodes_to_send); | ||
4057 | 4072 | ||
4058 | switch(send_type) | 4073 | switch(send_type) |
4059 | { | 4074 | { |
@@ -4061,7 +4076,7 @@ void LLSelectMgr::sendListToRegions(const LLString& message_name, | |||
4061 | if(message_name == "ObjectBuy") | 4076 | if(message_name == "ObjectBuy") |
4062 | getSelection()->applyToRootNodes(&pushroots); | 4077 | getSelection()->applyToRootNodes(&pushroots); |
4063 | else | 4078 | else |
4064 | getSelection()->applyToRootNodes(&pusheditable); | 4079 | getSelection()->applyToRootNodes(&pushall); |
4065 | 4080 | ||
4066 | break; | 4081 | break; |
4067 | case SEND_INDIVIDUALS: | 4082 | case SEND_INDIVIDUALS: |
@@ -4125,7 +4140,7 @@ void LLSelectMgr::sendListToRegions(const LLString& message_name, | |||
4125 | } | 4140 | } |
4126 | else | 4141 | else |
4127 | { | 4142 | { |
4128 | node = nodes_to_send.front(); | 4143 | node = nodes_to_send.front(); |
4129 | nodes_to_send.pop(); | 4144 | nodes_to_send.pop(); |
4130 | } | 4145 | } |
4131 | } | 4146 | } |
@@ -4265,7 +4280,7 @@ void LLSelectMgr::processObjectProperties(LLMessageSystem* msg, void** user_data | |||
4265 | f(const LLUUID& id) : mID(id) {} | 4280 | f(const LLUUID& id) : mID(id) {} |
4266 | virtual bool apply(LLSelectNode* node) | 4281 | virtual bool apply(LLSelectNode* node) |
4267 | { | 4282 | { |
4268 | return (node->getObject()->mID == mID); | 4283 | return (node->getObject() && node->getObject()->mID == mID); |
4269 | } | 4284 | } |
4270 | } func(id); | 4285 | } func(id); |
4271 | LLSelectNode* node = gSelectMgr->getSelection()->getFirstNode(&func); | 4286 | LLSelectNode* node = gSelectMgr->getSelection()->getFirstNode(&func); |
@@ -4408,7 +4423,7 @@ void LLSelectMgr::processObjectPropertiesFamily(LLMessageSystem* msg, void** use | |||
4408 | f(const LLUUID& id) : mID(id) {} | 4423 | f(const LLUUID& id) : mID(id) {} |
4409 | virtual bool apply(LLSelectNode* node) | 4424 | virtual bool apply(LLSelectNode* node) |
4410 | { | 4425 | { |
4411 | return (node->getObject()->mID == mID); | 4426 | return (node->getObject() && node->getObject()->mID == mID); |
4412 | } | 4427 | } |
4413 | } func(id); | 4428 | } func(id); |
4414 | LLSelectNode* node = gSelectMgr->getHoverObjects()->getFirstNode(&func); | 4429 | LLSelectNode* node = gSelectMgr->getHoverObjects()->getFirstNode(&func); |
@@ -4516,7 +4531,8 @@ void LLSelectMgr::updateSilhouettes() | |||
4516 | { | 4531 | { |
4517 | LLSelectNode* node = *iter; | 4532 | LLSelectNode* node = *iter; |
4518 | LLViewerObject* objectp = node->getObject(); | 4533 | LLViewerObject* objectp = node->getObject(); |
4519 | 4534 | if (!objectp) | |
4535 | continue; | ||
4520 | // do roots first, then children so that root flags are cleared ASAP | 4536 | // do roots first, then children so that root flags are cleared ASAP |
4521 | BOOL roots_only = (pass == 0); | 4537 | BOOL roots_only = (pass == 0); |
4522 | BOOL is_root = (objectp->isRootEdit()); | 4538 | BOOL is_root = (objectp->isRootEdit()); |
@@ -4589,6 +4605,8 @@ void LLSelectMgr::updateSilhouettes() | |||
4589 | { | 4605 | { |
4590 | LLSelectNode* node = *iter; | 4606 | LLSelectNode* node = *iter; |
4591 | LLViewerObject* objectp = node->getObject(); | 4607 | LLViewerObject* objectp = node->getObject(); |
4608 | if (!objectp) | ||
4609 | continue; | ||
4592 | if (objectp->isRoot() || !select_linked_set) | 4610 | if (objectp->isRoot() || !select_linked_set) |
4593 | { | 4611 | { |
4594 | if (roots.count(objectp) == 0) | 4612 | if (roots.count(objectp) == 0) |
@@ -4677,7 +4695,9 @@ void LLSelectMgr::updateSilhouettes() | |||
4677 | { | 4695 | { |
4678 | LLSelectNode* node = *iter; | 4696 | LLSelectNode* node = *iter; |
4679 | LLViewerObject* objectp = node->getObject(); | 4697 | LLViewerObject* objectp = node->getObject(); |
4680 | 4698 | if (!objectp) | |
4699 | continue; | ||
4700 | |||
4681 | // do roots first, then children so that root flags are cleared ASAP | 4701 | // do roots first, then children so that root flags are cleared ASAP |
4682 | BOOL roots_only = (pass == 0); | 4702 | BOOL roots_only = (pass == 0); |
4683 | BOOL is_root = objectp->isRootEdit(); | 4703 | BOOL is_root = objectp->isRootEdit(); |
@@ -4781,6 +4801,8 @@ void LLSelectMgr::renderSilhouettes(BOOL for_hud) | |||
4781 | { | 4801 | { |
4782 | LLSelectNode* node = *iter; | 4802 | LLSelectNode* node = *iter; |
4783 | LLViewerObject* objectp = node->getObject(); | 4803 | LLViewerObject* objectp = node->getObject(); |
4804 | if (!objectp) | ||
4805 | continue; | ||
4784 | if (objectp->isHUDAttachment() != for_hud) | 4806 | if (objectp->isHUDAttachment() != for_hud) |
4785 | { | 4807 | { |
4786 | continue; | 4808 | continue; |
@@ -4819,6 +4841,8 @@ void LLSelectMgr::renderSilhouettes(BOOL for_hud) | |||
4819 | { | 4841 | { |
4820 | LLSelectNode* node = *iter; | 4842 | LLSelectNode* node = *iter; |
4821 | LLViewerObject* objectp = node->getObject(); | 4843 | LLViewerObject* objectp = node->getObject(); |
4844 | if (!objectp) | ||
4845 | continue; | ||
4822 | if (objectp->isHUDAttachment() != for_hud) | 4846 | if (objectp->isHUDAttachment() != for_hud) |
4823 | { | 4847 | { |
4824 | continue; | 4848 | continue; |
@@ -5414,6 +5438,8 @@ void LLSelectMgr::updateSelectionCenter() | |||
5414 | { | 5438 | { |
5415 | LLSelectNode* node = *iter; | 5439 | LLSelectNode* node = *iter; |
5416 | LLViewerObject* object = node->getObject(); | 5440 | LLViewerObject* object = node->getObject(); |
5441 | if (!object) | ||
5442 | continue; | ||
5417 | LLViewerObject *myAvatar = gAgent.getAvatarObject(); | 5443 | LLViewerObject *myAvatar = gAgent.getAvatarObject(); |
5418 | LLViewerObject *root = object->getRootEdit(); | 5444 | LLViewerObject *root = object->getRootEdit(); |
5419 | if (mSelectedObjects->mSelectType == SELECT_TYPE_WORLD && // not an attachment | 5445 | if (mSelectedObjects->mSelectType == SELECT_TYPE_WORLD && // not an attachment |
@@ -5826,6 +5852,8 @@ S32 LLObjectSelection::getTECount() | |||
5826 | { | 5852 | { |
5827 | LLSelectNode* node = *iter; | 5853 | LLSelectNode* node = *iter; |
5828 | LLViewerObject* object = node->getObject(); | 5854 | LLViewerObject* object = node->getObject(); |
5855 | if (!object) | ||
5856 | continue; | ||
5829 | S32 num_tes = object->getNumTEs(); | 5857 | S32 num_tes = object->getNumTEs(); |
5830 | for (S32 te = 0; te < num_tes; te++) | 5858 | for (S32 te = 0; te < num_tes; te++) |
5831 | { | 5859 | { |
@@ -5858,6 +5886,8 @@ bool LLObjectSelection::applyToObjects(LLSelectedObjectFunctor* func, bool first | |||
5858 | { | 5886 | { |
5859 | iterator nextiter = iter++; | 5887 | iterator nextiter = iter++; |
5860 | LLViewerObject* object = (*nextiter)->getObject(); | 5888 | LLViewerObject* object = (*nextiter)->getObject(); |
5889 | if (!object) | ||
5890 | continue; | ||
5861 | bool r = func->apply(object); | 5891 | bool r = func->apply(object); |
5862 | if (firstonly && r) | 5892 | if (firstonly && r) |
5863 | return true; | 5893 | return true; |
@@ -5874,6 +5904,8 @@ bool LLObjectSelection::applyToRootObjects(LLSelectedObjectFunctor* func, bool f | |||
5874 | { | 5904 | { |
5875 | root_iterator nextiter = iter++; | 5905 | root_iterator nextiter = iter++; |
5876 | LLViewerObject* object = (*nextiter)->getObject(); | 5906 | LLViewerObject* object = (*nextiter)->getObject(); |
5907 | if (!object) | ||
5908 | continue; | ||
5877 | bool r = func->apply(object); | 5909 | bool r = func->apply(object); |
5878 | if (firstonly && r) | 5910 | if (firstonly && r) |
5879 | return true; | 5911 | return true; |
@@ -5891,6 +5923,8 @@ bool LLObjectSelection::applyToTEs(LLSelectedTEFunctor* func, bool firstonly) | |||
5891 | iterator nextiter = iter++; | 5923 | iterator nextiter = iter++; |
5892 | LLSelectNode* node = *nextiter; | 5924 | LLSelectNode* node = *nextiter; |
5893 | LLViewerObject* object = (*nextiter)->getObject(); | 5925 | LLViewerObject* object = (*nextiter)->getObject(); |
5926 | if (!object) | ||
5927 | continue; | ||
5894 | S32 num_tes = llmin((S32)object->getNumTEs(), (S32)object->getNumFaces()); // avatars have TEs but no faces | 5928 | S32 num_tes = llmin((S32)object->getNumTEs(), (S32)object->getNumFaces()); // avatars have TEs but no faces |
5895 | for (S32 te = 0; te < num_tes; ++te) | 5929 | for (S32 te = 0; te < num_tes; ++te) |
5896 | { | 5930 | { |
@@ -6093,7 +6127,7 @@ LLSelectNode* LLObjectSelection::getFirstMoveableNode(BOOL get_root_first) | |||
6093 | bool apply(LLSelectNode* node) | 6127 | bool apply(LLSelectNode* node) |
6094 | { | 6128 | { |
6095 | LLViewerObject* obj = node->getObject(); | 6129 | LLViewerObject* obj = node->getObject(); |
6096 | return obj->permMove(); | 6130 | return obj && obj->permMove(); |
6097 | } | 6131 | } |
6098 | } func; | 6132 | } func; |
6099 | LLSelectNode* res = get_root_first ? getFirstRootNode(&func, TRUE) : getFirstNode(&func); | 6133 | LLSelectNode* res = get_root_first ? getFirstRootNode(&func, TRUE) : getFirstNode(&func); |
@@ -6110,7 +6144,7 @@ LLViewerObject* LLObjectSelection::getFirstCopyableObject(BOOL get_parent) | |||
6110 | bool apply(LLSelectNode* node) | 6144 | bool apply(LLSelectNode* node) |
6111 | { | 6145 | { |
6112 | LLViewerObject* obj = node->getObject(); | 6146 | LLViewerObject* obj = node->getObject(); |
6113 | return obj->permCopy() && !obj->isAttachment(); | 6147 | return obj && obj->permCopy() && !obj->isAttachment(); |
6114 | } | 6148 | } |
6115 | } func; | 6149 | } func; |
6116 | return getFirstSelectedObject(&func, get_parent); | 6150 | return getFirstSelectedObject(&func, get_parent); |
@@ -6131,10 +6165,9 @@ LLViewerObject* LLObjectSelection::getFirstDeleteableObject() | |||
6131 | LLViewerObject* obj = node->getObject(); | 6165 | LLViewerObject* obj = node->getObject(); |
6132 | // you can delete an object if you are the owner | 6166 | // you can delete an object if you are the owner |
6133 | // or you have permission to modify it. | 6167 | // or you have permission to modify it. |
6134 | if( (obj->permModify()) | 6168 | if( obj && ( (obj->permModify()) || |
6135 | || (obj->permYouOwner()) | 6169 | (obj->permYouOwner()) || |
6136 | || (!obj->permAnyOwner()) // public | 6170 | (!obj->permAnyOwner()) )) // public |
6137 | ) | ||
6138 | { | 6171 | { |
6139 | if( !obj->isAttachment() ) | 6172 | if( !obj->isAttachment() ) |
6140 | { | 6173 | { |
@@ -6158,7 +6191,7 @@ LLViewerObject* LLObjectSelection::getFirstEditableObject(BOOL get_parent) | |||
6158 | bool apply(LLSelectNode* node) | 6191 | bool apply(LLSelectNode* node) |
6159 | { | 6192 | { |
6160 | LLViewerObject* obj = node->getObject(); | 6193 | LLViewerObject* obj = node->getObject(); |
6161 | return obj->permModify(); | 6194 | return obj && obj->permModify(); |
6162 | } | 6195 | } |
6163 | } func; | 6196 | } func; |
6164 | return getFirstSelectedObject(&func, get_parent); | 6197 | return getFirstSelectedObject(&func, get_parent); |
@@ -6174,7 +6207,7 @@ LLViewerObject* LLObjectSelection::getFirstMoveableObject(BOOL get_parent) | |||
6174 | bool apply(LLSelectNode* node) | 6207 | bool apply(LLSelectNode* node) |
6175 | { | 6208 | { |
6176 | LLViewerObject* obj = node->getObject(); | 6209 | LLViewerObject* obj = node->getObject(); |
6177 | return obj->permMove(); | 6210 | return obj && obj->permMove(); |
6178 | } | 6211 | } |
6179 | } func; | 6212 | } func; |
6180 | return getFirstSelectedObject(&func, get_parent); | 6213 | return getFirstSelectedObject(&func, get_parent); |
diff --git a/linden/indra/newview/llspatialpartition.cpp b/linden/indra/newview/llspatialpartition.cpp index 774bf6b..b6fbfbf 100644 --- a/linden/indra/newview/llspatialpartition.cpp +++ b/linden/indra/newview/llspatialpartition.cpp | |||
@@ -1602,6 +1602,12 @@ public: | |||
1602 | { | 1602 | { |
1603 | return mCamera->AABBInFrustumNoFarClip(group->mBounds[0], group->mBounds[1]); | 1603 | return mCamera->AABBInFrustumNoFarClip(group->mBounds[0], group->mBounds[1]); |
1604 | } | 1604 | } |
1605 | |||
1606 | virtual S32 frustumCheckObjects(const LLSpatialGroup* group) | ||
1607 | { | ||
1608 | S32 res = mCamera->AABBInFrustumNoFarClip(group->mObjectBounds[0], group->mObjectBounds[1]); | ||
1609 | return res; | ||
1610 | } | ||
1605 | }; | 1611 | }; |
1606 | 1612 | ||
1607 | class LLOctreeSelect : public LLOctreeCull | 1613 | class LLOctreeSelect : public LLOctreeCull |
diff --git a/linden/indra/newview/llstartup.cpp b/linden/indra/newview/llstartup.cpp index 69ac136..c41c4ba 100644 --- a/linden/indra/newview/llstartup.cpp +++ b/linden/indra/newview/llstartup.cpp | |||
@@ -3629,7 +3629,7 @@ void init_start_screen(S32 location_id) | |||
3629 | gStartImageWidth = start_image_bmp->getWidth(); | 3629 | gStartImageWidth = start_image_bmp->getWidth(); |
3630 | gStartImageHeight = start_image_bmp->getHeight(); | 3630 | gStartImageHeight = start_image_bmp->getHeight(); |
3631 | LLPointer<LLImageRaw> raw = new LLImageRaw; | 3631 | LLPointer<LLImageRaw> raw = new LLImageRaw; |
3632 | if (!start_image_bmp->decode(raw)) | 3632 | if (!start_image_bmp->decode(raw, 0.0f)) |
3633 | { | 3633 | { |
3634 | llinfos << "Bitmap decode failed" << llendl; | 3634 | llinfos << "Bitmap decode failed" << llendl; |
3635 | gStartImageGL = NULL; | 3635 | gStartImageGL = NULL; |
diff --git a/linden/indra/newview/llstatgraph.cpp b/linden/indra/newview/llstatgraph.cpp index 992b959..3725228 100644 --- a/linden/indra/newview/llstatgraph.cpp +++ b/linden/indra/newview/llstatgraph.cpp | |||
@@ -134,9 +134,9 @@ void LLStatGraph::draw() | |||
134 | } | 134 | } |
135 | } | 135 | } |
136 | 136 | ||
137 | void LLStatGraph::setValue(const F32 value) | 137 | void LLStatGraph::setValue(const LLSD& value) |
138 | { | 138 | { |
139 | mValue = value; | 139 | mValue = (F32)value.asReal(); |
140 | } | 140 | } |
141 | 141 | ||
142 | void LLStatGraph::setMin(const F32 min) | 142 | void LLStatGraph::setMin(const F32 min) |
diff --git a/linden/indra/newview/llstatgraph.h b/linden/indra/newview/llstatgraph.h index 2c71e4d..be44985 100644 --- a/linden/indra/newview/llstatgraph.h +++ b/linden/indra/newview/llstatgraph.h | |||
@@ -55,7 +55,8 @@ public: | |||
55 | void setMin(const F32 min); | 55 | void setMin(const F32 min); |
56 | void setMax(const F32 max); | 56 | void setMax(const F32 max); |
57 | 57 | ||
58 | void setValue(const F32 value); | 58 | /*virtual*/ void setValue(const LLSD& value); |
59 | |||
59 | LLStat *mStatp; | 60 | LLStat *mStatp; |
60 | BOOL mPerSec; | 61 | BOOL mPerSec; |
61 | private: | 62 | private: |
diff --git a/linden/indra/newview/llstatview.h b/linden/indra/newview/llstatview.h index 0db0850..523b2af 100644 --- a/linden/indra/newview/llstatview.h +++ b/linden/indra/newview/llstatview.h | |||
@@ -48,7 +48,7 @@ public: | |||
48 | virtual LLString getWidgetTag() const; | 48 | virtual LLString getWidgetTag() const; |
49 | /* | 49 | /* |
50 | virtual void draw(); | 50 | virtual void draw(); |
51 | virtual void reshape(S32 width, S32 height); | 51 | virtual void reshape(S32 width, S32 height, BOOL called_from_parent = TRUE); |
52 | virtual LLRect getRequiredRect(); // Return the height of this object, given the set options. | 52 | virtual LLRect getRequiredRect(); // Return the height of this object, given the set options. |
53 | */ | 53 | */ |
54 | 54 | ||
diff --git a/linden/indra/newview/lltexturectrl.cpp b/linden/indra/newview/lltexturectrl.cpp index 2ca9f99..ec8d91c 100644 --- a/linden/indra/newview/lltexturectrl.cpp +++ b/linden/indra/newview/lltexturectrl.cpp | |||
@@ -1380,7 +1380,7 @@ BOOL LLTextureCtrl::handleUnicodeCharHere(llwchar uni_char, BOOL called_from_par | |||
1380 | return LLUICtrl::handleUnicodeCharHere(uni_char, called_from_parent); | 1380 | return LLUICtrl::handleUnicodeCharHere(uni_char, called_from_parent); |
1381 | } | 1381 | } |
1382 | 1382 | ||
1383 | void LLTextureCtrl::setValue( LLSD value ) | 1383 | void LLTextureCtrl::setValue( const LLSD& value ) |
1384 | { | 1384 | { |
1385 | setImageAssetID(value.asUUID()); | 1385 | setImageAssetID(value.asUUID()); |
1386 | } | 1386 | } |
diff --git a/linden/indra/newview/lltexturectrl.h b/linden/indra/newview/lltexturectrl.h index 91dee4f..ec45159 100644 --- a/linden/indra/newview/lltexturectrl.h +++ b/linden/indra/newview/lltexturectrl.h | |||
@@ -100,7 +100,7 @@ public: | |||
100 | virtual void clear(); | 100 | virtual void clear(); |
101 | 101 | ||
102 | // Takes a UUID, wraps get/setImageAssetID | 102 | // Takes a UUID, wraps get/setImageAssetID |
103 | virtual void setValue( LLSD value ); | 103 | virtual void setValue(const LLSD& value ); |
104 | virtual LLSD getValue() const; | 104 | virtual LLSD getValue() const; |
105 | 105 | ||
106 | // LLTextureCtrl interface | 106 | // LLTextureCtrl interface |
diff --git a/linden/indra/newview/lltexturefetch.cpp b/linden/indra/newview/lltexturefetch.cpp index 1b02970..3201055 100644 --- a/linden/indra/newview/lltexturefetch.cpp +++ b/linden/indra/newview/lltexturefetch.cpp | |||
@@ -55,6 +55,7 @@ class LLTextureFetchWorker : public LLWorkerClass | |||
55 | friend class LLTextureFetch; | 55 | friend class LLTextureFetch; |
56 | 56 | ||
57 | private: | 57 | private: |
58 | #if 0 | ||
58 | class URLResponder : public LLHTTPClient::Responder | 59 | class URLResponder : public LLHTTPClient::Responder |
59 | { | 60 | { |
60 | public: | 61 | public: |
@@ -131,7 +132,8 @@ private: | |||
131 | LLTextureFetch* mFetcher; | 132 | LLTextureFetch* mFetcher; |
132 | LLUUID mID; | 133 | LLUUID mID; |
133 | }; | 134 | }; |
134 | 135 | #endif | |
136 | |||
135 | class CacheReadResponder : public LLTextureCache::ReadResponder | 137 | class CacheReadResponder : public LLTextureCache::ReadResponder |
136 | { | 138 | { |
137 | public: | 139 | public: |
diff --git a/linden/indra/newview/lltoolbar.h b/linden/indra/newview/lltoolbar.h index d42d7bb..dcefb98 100644 --- a/linden/indra/newview/lltoolbar.h +++ b/linden/indra/newview/lltoolbar.h | |||
@@ -58,7 +58,7 @@ public: | |||
58 | EAcceptance* accept, | 58 | EAcceptance* accept, |
59 | LLString& tooltip_msg); | 59 | LLString& tooltip_msg); |
60 | 60 | ||
61 | /*virtual*/ void reshape(S32 width, S32 height, BOOL called_from_parent); | 61 | /*virtual*/ void reshape(S32 width, S32 height, BOOL called_from_parent = TRUE); |
62 | 62 | ||
63 | static void toggle(void*); | 63 | static void toggle(void*); |
64 | static BOOL visible(void*); | 64 | static BOOL visible(void*); |
diff --git a/linden/indra/newview/llurlsimstring.cpp b/linden/indra/newview/llurlsimstring.cpp index 5829e73..931cf7b 100644 --- a/linden/indra/newview/llurlsimstring.cpp +++ b/linden/indra/newview/llurlsimstring.cpp | |||
@@ -77,7 +77,7 @@ S32 LLURLSimString::parseGridIdx(const LLString& in_string, S32 idx0, S32* res, | |||
77 | { | 77 | { |
78 | if (idx0 == LLString::npos || in_string[idx0] != '/') | 78 | if (idx0 == LLString::npos || in_string[idx0] != '/') |
79 | { | 79 | { |
80 | return LLString::npos; // parse error | 80 | return (S32)LLString::npos; // parse error |
81 | } | 81 | } |
82 | idx0++; | 82 | idx0++; |
83 | LLString::size_type idx1 = in_string.find_first_of('/', idx0); | 83 | LLString::size_type idx1 = in_string.find_first_of('/', idx0); |
diff --git a/linden/indra/newview/llviewerdisplay.cpp b/linden/indra/newview/llviewerdisplay.cpp index 1e4958b..9395b97 100644 --- a/linden/indra/newview/llviewerdisplay.cpp +++ b/linden/indra/newview/llviewerdisplay.cpp | |||
@@ -1114,7 +1114,7 @@ void render_disconnected_background() | |||
1114 | 1114 | ||
1115 | gDisconnectedImagep = new LLImageGL( FALSE ); | 1115 | gDisconnectedImagep = new LLImageGL( FALSE ); |
1116 | LLPointer<LLImageRaw> raw = new LLImageRaw; | 1116 | LLPointer<LLImageRaw> raw = new LLImageRaw; |
1117 | if (!image_bmp->decode(raw)) | 1117 | if (!image_bmp->decode(raw, 0.0f)) |
1118 | { | 1118 | { |
1119 | llinfos << "Bitmap decode failed" << llendl; | 1119 | llinfos << "Bitmap decode failed" << llendl; |
1120 | gDisconnectedImagep = NULL; | 1120 | gDisconnectedImagep = NULL; |
diff --git a/linden/indra/newview/llviewerimagelist.cpp b/linden/indra/newview/llviewerimagelist.cpp index 0e29f76..faa0afb 100644 --- a/linden/indra/newview/llviewerimagelist.cpp +++ b/linden/indra/newview/llviewerimagelist.cpp | |||
@@ -888,7 +888,24 @@ F32 LLViewerImageList::updateImagesFetchTextures(F32 max_time) | |||
888 | image_priority_list_t::iterator iter1 = mImageList.begin(); | 888 | image_priority_list_t::iterator iter1 = mImageList.begin(); |
889 | while(update_counter > 0) | 889 | while(update_counter > 0) |
890 | { | 890 | { |
891 | entries.insert(*iter1); | 891 | // added extra granularity and verbosity for crash logging during 1.19.1 RC. -Brad |
892 | if(iter1 == mImageList.end()) | ||
893 | { | ||
894 | llerrs << "DEV-12002: update_counter not calculated correctly!" << llendl; | ||
895 | } | ||
896 | |||
897 | LLPointer<LLViewerImage> const & ptr = *iter1; | ||
898 | |||
899 | LLViewerImage * img = ptr.get(); | ||
900 | |||
901 | // added extra granularity and verbosity for crash logging during 1.19.1 RC. -Brad | ||
902 | if(img == NULL) | ||
903 | { | ||
904 | llwarns << "DEV-12002: image is NULL!" << llendl; | ||
905 | } | ||
906 | |||
907 | entries.insert(img); | ||
908 | |||
892 | ++iter1; | 909 | ++iter1; |
893 | update_counter--; | 910 | update_counter--; |
894 | } | 911 | } |
@@ -1021,7 +1038,7 @@ BOOL LLViewerImageList::createUploadFile(const LLString& filename, | |||
1021 | return FALSE; | 1038 | return FALSE; |
1022 | } | 1039 | } |
1023 | 1040 | ||
1024 | if (!bmp_image->decode(raw_image)) | 1041 | if (!bmp_image->decode(raw_image, 0.0f)) |
1025 | { | 1042 | { |
1026 | return FALSE; | 1043 | return FALSE; |
1027 | } | 1044 | } |
@@ -1058,7 +1075,7 @@ BOOL LLViewerImageList::createUploadFile(const LLString& filename, | |||
1058 | return FALSE; | 1075 | return FALSE; |
1059 | } | 1076 | } |
1060 | 1077 | ||
1061 | if (!jpeg_image->decode(raw_image)) | 1078 | if (!jpeg_image->decode(raw_image, 0.0f)) |
1062 | { | 1079 | { |
1063 | return FALSE; | 1080 | return FALSE; |
1064 | } | 1081 | } |
@@ -1073,7 +1090,7 @@ BOOL LLViewerImageList::createUploadFile(const LLString& filename, | |||
1073 | return FALSE; | 1090 | return FALSE; |
1074 | } | 1091 | } |
1075 | 1092 | ||
1076 | if (!png_image->decode(raw_image)) | 1093 | if (!png_image->decode(raw_image, 0.0f)) |
1077 | { | 1094 | { |
1078 | return FALSE; | 1095 | return FALSE; |
1079 | } | 1096 | } |
@@ -1114,7 +1131,7 @@ LLPointer<LLImageJ2C> LLViewerImageList::convertToUploadFile(LLPointer<LLImageRa | |||
1114 | (raw_image->getHeight() <= LL_IMAGE_REZ_LOSSLESS_CUTOFF)) | 1131 | (raw_image->getHeight() <= LL_IMAGE_REZ_LOSSLESS_CUTOFF)) |
1115 | compressedImage->setReversible(TRUE); | 1132 | compressedImage->setReversible(TRUE); |
1116 | 1133 | ||
1117 | compressedImage->encode(raw_image); | 1134 | compressedImage->encode(raw_image, 0.0f); |
1118 | 1135 | ||
1119 | return compressedImage; | 1136 | return compressedImage; |
1120 | } | 1137 | } |
diff --git a/linden/indra/newview/llviewerinventory.cpp b/linden/indra/newview/llviewerinventory.cpp index bbd6cd4..db005c7 100644 --- a/linden/indra/newview/llviewerinventory.cpp +++ b/linden/indra/newview/llviewerinventory.cpp | |||
@@ -97,7 +97,7 @@ LLViewerInventoryItem::LLViewerInventoryItem() : | |||
97 | LLViewerInventoryItem::LLViewerInventoryItem(const LLViewerInventoryItem* other) : | 97 | LLViewerInventoryItem::LLViewerInventoryItem(const LLViewerInventoryItem* other) : |
98 | LLInventoryItem() | 98 | LLInventoryItem() |
99 | { | 99 | { |
100 | copy(other); | 100 | copyViewerItem(other); |
101 | if (!mIsComplete) | 101 | if (!mIsComplete) |
102 | { | 102 | { |
103 | llwarns << "LLViewerInventoryItem copy constructor for incomplete item" | 103 | llwarns << "LLViewerInventoryItem copy constructor for incomplete item" |
@@ -116,23 +116,22 @@ LLViewerInventoryItem::~LLViewerInventoryItem() | |||
116 | { | 116 | { |
117 | } | 117 | } |
118 | 118 | ||
119 | // virtual | 119 | void LLViewerInventoryItem::copyViewerItem(const LLViewerInventoryItem* other) |
120 | void LLViewerInventoryItem::copy(const LLViewerInventoryItem* other) | ||
121 | { | 120 | { |
122 | LLInventoryItem::copy(other); | 121 | LLInventoryItem::copyItem(other); |
123 | mIsComplete = other->mIsComplete; | 122 | mIsComplete = other->mIsComplete; |
124 | mTransactionID = other->mTransactionID; | 123 | mTransactionID = other->mTransactionID; |
125 | } | 124 | } |
126 | 125 | ||
127 | void LLViewerInventoryItem::copy(const LLInventoryItem *other) | 126 | // virtual |
127 | void LLViewerInventoryItem::copyItem(const LLInventoryItem *other) | ||
128 | { | 128 | { |
129 | LLInventoryItem::copy(other); | 129 | LLInventoryItem::copyItem(other); |
130 | mIsComplete = true; | 130 | mIsComplete = true; |
131 | mTransactionID.setNull(); | 131 | mTransactionID.setNull(); |
132 | } | 132 | } |
133 | 133 | ||
134 | // virtual | 134 | void LLViewerInventoryItem::cloneViewerItem(LLPointer<LLViewerInventoryItem>& newitem) const |
135 | void LLViewerInventoryItem::clone(LLPointer<LLViewerInventoryItem>& newitem) const | ||
136 | { | 135 | { |
137 | newitem = new LLViewerInventoryItem(this); | 136 | newitem = new LLViewerInventoryItem(this); |
138 | if(newitem.notNull()) | 137 | if(newitem.notNull()) |
@@ -348,17 +347,16 @@ LLViewerInventoryCategory::LLViewerInventoryCategory(const LLUUID& owner_id) : | |||
348 | 347 | ||
349 | LLViewerInventoryCategory::LLViewerInventoryCategory(const LLViewerInventoryCategory* other) | 348 | LLViewerInventoryCategory::LLViewerInventoryCategory(const LLViewerInventoryCategory* other) |
350 | { | 349 | { |
351 | copy(other); | 350 | copyViewerCategory(other); |
352 | } | 351 | } |
353 | 352 | ||
354 | LLViewerInventoryCategory::~LLViewerInventoryCategory() | 353 | LLViewerInventoryCategory::~LLViewerInventoryCategory() |
355 | { | 354 | { |
356 | } | 355 | } |
357 | 356 | ||
358 | // virtual | 357 | void LLViewerInventoryCategory::copyViewerCategory(const LLViewerInventoryCategory* other) |
359 | void LLViewerInventoryCategory::copy(const LLViewerInventoryCategory* other) | ||
360 | { | 358 | { |
361 | LLInventoryCategory::copy(other); | 359 | copyCategory(other); |
362 | mOwnerID = other->mOwnerID; | 360 | mOwnerID = other->mOwnerID; |
363 | mVersion = other->mVersion; | 361 | mVersion = other->mVersion; |
364 | mDescendentCount = other->mDescendentCount; | 362 | mDescendentCount = other->mDescendentCount; |
diff --git a/linden/indra/newview/llviewerinventory.h b/linden/indra/newview/llviewerinventory.h index 016f7c8..05dc19a 100644 --- a/linden/indra/newview/llviewerinventory.h +++ b/linden/indra/newview/llviewerinventory.h | |||
@@ -83,13 +83,13 @@ public: | |||
83 | LLViewerInventoryItem(const LLViewerInventoryItem* other); | 83 | LLViewerInventoryItem(const LLViewerInventoryItem* other); |
84 | LLViewerInventoryItem(const LLInventoryItem* other); | 84 | LLViewerInventoryItem(const LLInventoryItem* other); |
85 | 85 | ||
86 | virtual void copy(const LLViewerInventoryItem* other); | 86 | void copyViewerItem(const LLViewerInventoryItem* other); |
87 | virtual void copy(const LLInventoryItem* other); | 87 | /*virtual*/ void copyItem(const LLInventoryItem* other); |
88 | 88 | ||
89 | // construct a new clone of this item - it creates a new viewer | 89 | // construct a new clone of this item - it creates a new viewer |
90 | // inventory item using the copy constructor, and returns it. | 90 | // inventory item using the copy constructor, and returns it. |
91 | // It is up to the caller to delete (unref) the item. | 91 | // It is up to the caller to delete (unref) the item. |
92 | virtual void clone(LLPointer<LLViewerInventoryItem>& newitem) const; | 92 | void cloneViewerItem(LLPointer<LLViewerInventoryItem>& newitem) const; |
93 | 93 | ||
94 | // virtual methods | 94 | // virtual methods |
95 | virtual void removeFromServer( void ); | 95 | virtual void removeFromServer( void ); |
@@ -156,7 +156,7 @@ public: | |||
156 | // Note: Because InventoryCategorys are ref counted, reference copy (a = b) | 156 | // Note: Because InventoryCategorys are ref counted, reference copy (a = b) |
157 | // is prohibited | 157 | // is prohibited |
158 | LLViewerInventoryCategory(const LLViewerInventoryCategory* other); | 158 | LLViewerInventoryCategory(const LLViewerInventoryCategory* other); |
159 | virtual void copy(const LLViewerInventoryCategory* other); | 159 | void copyViewerCategory(const LLViewerInventoryCategory* other); |
160 | 160 | ||
161 | virtual void removeFromServer(); | 161 | virtual void removeFromServer(); |
162 | virtual void updateParentOnServer(BOOL restamp_children) const; | 162 | virtual void updateParentOnServer(BOOL restamp_children) const; |
diff --git a/linden/indra/newview/llviewerjoint.cpp b/linden/indra/newview/llviewerjoint.cpp index 0aa9112..9e243a0 100644 --- a/linden/indra/newview/llviewerjoint.cpp +++ b/linden/indra/newview/llviewerjoint.cpp | |||
@@ -519,7 +519,7 @@ LLViewerJointCollisionVolume::LLViewerJointCollisionVolume(const std::string &na | |||
519 | 519 | ||
520 | } | 520 | } |
521 | 521 | ||
522 | void LLViewerJointCollisionVolume::render() | 522 | void LLViewerJointCollisionVolume::renderCollision() |
523 | { | 523 | { |
524 | updateWorldMatrix(); | 524 | updateWorldMatrix(); |
525 | glMatrixMode(GL_MODELVIEW); | 525 | glMatrixMode(GL_MODELVIEW); |
diff --git a/linden/indra/newview/llviewerjoint.h b/linden/indra/newview/llviewerjoint.h index ea0202e..d223c42 100644 --- a/linden/indra/newview/llviewerjoint.h +++ b/linden/indra/newview/llviewerjoint.h | |||
@@ -152,7 +152,7 @@ public: | |||
152 | 152 | ||
153 | virtual BOOL inheritScale() { return TRUE; } | 153 | virtual BOOL inheritScale() { return TRUE; } |
154 | 154 | ||
155 | void render(); | 155 | void renderCollision(); |
156 | LLVector3 getVolumePos(LLVector3 &offset); | 156 | LLVector3 getVolumePos(LLVector3 &offset); |
157 | }; | 157 | }; |
158 | 158 | ||
diff --git a/linden/indra/newview/llviewerjointattachment.cpp b/linden/indra/newview/llviewerjointattachment.cpp index 0747f68..ad7d5df 100644 --- a/linden/indra/newview/llviewerjointattachment.cpp +++ b/linden/indra/newview/llviewerjointattachment.cpp | |||
@@ -197,7 +197,7 @@ BOOL LLViewerJointAttachment::addObject(LLViewerObject* object) | |||
197 | //if object is active, make it static | 197 | //if object is active, make it static |
198 | if(drawablep->isActive()) | 198 | if(drawablep->isActive()) |
199 | { | 199 | { |
200 | drawablep->makeStatic() ; | 200 | drawablep->makeStatic(FALSE) ; |
201 | } | 201 | } |
202 | 202 | ||
203 | setupDrawable(drawablep); | 203 | setupDrawable(drawablep); |
@@ -238,7 +238,7 @@ void LLViewerJointAttachment::removeObject(LLViewerObject *object) | |||
238 | //if object is active, make it static | 238 | //if object is active, make it static |
239 | if(object->mDrawable->isActive()) | 239 | if(object->mDrawable->isActive()) |
240 | { | 240 | { |
241 | object->mDrawable->makeStatic() ; | 241 | object->mDrawable->makeStatic(FALSE) ; |
242 | } | 242 | } |
243 | 243 | ||
244 | LLVector3 cur_position = object->getRenderPosition(); | 244 | LLVector3 cur_position = object->getRenderPosition(); |
diff --git a/linden/indra/newview/llviewermenu.cpp b/linden/indra/newview/llviewermenu.cpp index 0f48d7d..d531455 100644 --- a/linden/indra/newview/llviewermenu.cpp +++ b/linden/indra/newview/llviewermenu.cpp | |||
@@ -885,13 +885,15 @@ void init_client_menu(LLMenuGL* menu) | |||
885 | NULL, | 885 | NULL, |
886 | &get_visibility, | 886 | &get_visibility, |
887 | (void*)gDebugView->mFastTimerView, | 887 | (void*)gDebugView->mFastTimerView, |
888 | '9', MASK_CONTROL|MASK_SHIFT ) ); | 888 | '9', MASK_CONTROL|MASK_SHIFT ) ); |
889 | #if MEM_TRACK_MEM | ||
889 | sub->append(new LLMenuItemCheckGL("Memory", | 890 | sub->append(new LLMenuItemCheckGL("Memory", |
890 | &toggle_visibility, | 891 | &toggle_visibility, |
891 | NULL, | 892 | NULL, |
892 | &get_visibility, | 893 | &get_visibility, |
893 | (void*)gDebugView->mMemoryView, | 894 | (void*)gDebugView->mMemoryView, |
894 | '0', MASK_CONTROL|MASK_SHIFT ) ); | 895 | '0', MASK_CONTROL|MASK_SHIFT ) ); |
896 | #endif | ||
895 | sub->appendSeparator(); | 897 | sub->appendSeparator(); |
896 | sub->append(new LLMenuItemCallGL("Region Info to Debug Console", | 898 | sub->append(new LLMenuItemCallGL("Region Info to Debug Console", |
897 | &handle_region_dump_settings, NULL)); | 899 | &handle_region_dump_settings, NULL)); |
@@ -1099,6 +1101,12 @@ void init_client_menu(LLMenuGL* menu) | |||
1099 | menu->appendMenu(sub); | 1101 | menu->appendMenu(sub); |
1100 | } | 1102 | } |
1101 | 1103 | ||
1104 | menu->append(new LLMenuItemCheckGL( "Output Debug Minidump", | ||
1105 | &menu_toggle_control, | ||
1106 | NULL, | ||
1107 | &menu_check_control, | ||
1108 | (void*)"SaveMinidump")); | ||
1109 | |||
1102 | // TomY Temporary menu item so we can test this floater | 1110 | // TomY Temporary menu item so we can test this floater |
1103 | menu->append(new LLMenuItemCheckGL("Clothing...", | 1111 | menu->append(new LLMenuItemCheckGL("Clothing...", |
1104 | &handle_clothing, | 1112 | &handle_clothing, |
@@ -5263,7 +5271,7 @@ class LLShowFloater : public view_listener_t | |||
5263 | { | 5271 | { |
5264 | if (gAgent.getWearablesLoaded()) | 5272 | if (gAgent.getWearablesLoaded()) |
5265 | { | 5273 | { |
5266 | gAgent.changeCameraToCustomizeAvatar(gSavedSettings.getBOOL("AppearanceCameraMovement")); | 5274 | gAgent.changeCameraToCustomizeAvatar(); |
5267 | } | 5275 | } |
5268 | } | 5276 | } |
5269 | else if (floater_name == "friends") | 5277 | else if (floater_name == "friends") |
diff --git a/linden/indra/newview/llviewerobject.cpp b/linden/indra/newview/llviewerobject.cpp index 056475b..9c895cb 100644 --- a/linden/indra/newview/llviewerobject.cpp +++ b/linden/indra/newview/llviewerobject.cpp | |||
@@ -3650,7 +3650,12 @@ S32 LLViewerObject::setTETexture(const U8 te, const LLUUID& uuid) | |||
3650 | } | 3650 | } |
3651 | 3651 | ||
3652 | 3652 | ||
3653 | S32 LLViewerObject::setTEColor(const U8 te, const LLColor4 &color) | 3653 | S32 LLViewerObject::setTEColor(const U8 te, const LLColor3& color) |
3654 | { | ||
3655 | return setTEColor(te, LLColor4(color)); | ||
3656 | } | ||
3657 | |||
3658 | S32 LLViewerObject::setTEColor(const U8 te, const LLColor4& color) | ||
3654 | { | 3659 | { |
3655 | S32 retval = 0; | 3660 | S32 retval = 0; |
3656 | const LLTextureEntry *tep = getTE(te); | 3661 | const LLTextureEntry *tep = getTE(te); |
@@ -4857,7 +4862,7 @@ void LLViewerObject::dirtySpatialGroup() const | |||
4857 | } | 4862 | } |
4858 | } | 4863 | } |
4859 | 4864 | ||
4860 | void LLViewerObject::dirtyMesh() const | 4865 | void LLViewerObject::dirtyMesh() |
4861 | { | 4866 | { |
4862 | if (mDrawable) | 4867 | if (mDrawable) |
4863 | { | 4868 | { |
diff --git a/linden/indra/newview/llviewerobject.h b/linden/indra/newview/llviewerobject.h index 798edf8..329ef6a 100644 --- a/linden/indra/newview/llviewerobject.h +++ b/linden/indra/newview/llviewerobject.h | |||
@@ -280,6 +280,7 @@ public: | |||
280 | /*virtual*/ void setTE(const U8 te, const LLTextureEntry &texture_entry); | 280 | /*virtual*/ void setTE(const U8 te, const LLTextureEntry &texture_entry); |
281 | /*virtual*/ S32 setTETexture(const U8 te, const LLUUID &uuid); | 281 | /*virtual*/ S32 setTETexture(const U8 te, const LLUUID &uuid); |
282 | S32 setTETextureCore(const U8 te, const LLUUID& uuid, LLHost host); | 282 | S32 setTETextureCore(const U8 te, const LLUUID& uuid, LLHost host); |
283 | /*virtual*/ S32 setTEColor(const U8 te, const LLColor3 &color); | ||
283 | /*virtual*/ S32 setTEColor(const U8 te, const LLColor4 &color); | 284 | /*virtual*/ S32 setTEColor(const U8 te, const LLColor4 &color); |
284 | /*virtual*/ S32 setTEScale(const U8 te, const F32 s, const F32 t); | 285 | /*virtual*/ S32 setTEScale(const U8 te, const F32 s, const F32 t); |
285 | /*virtual*/ S32 setTEScaleS(const U8 te, const F32 s); | 286 | /*virtual*/ S32 setTEScaleS(const U8 te, const F32 s); |
@@ -453,7 +454,7 @@ public: | |||
453 | virtual S32 getLOD() const { return 3; } | 454 | virtual S32 getLOD() const { return 3; } |
454 | virtual U32 getPartitionType() const; | 455 | virtual U32 getPartitionType() const; |
455 | virtual void dirtySpatialGroup() const; | 456 | virtual void dirtySpatialGroup() const; |
456 | virtual void dirtyMesh() const; | 457 | virtual void dirtyMesh(); |
457 | 458 | ||
458 | virtual LLNetworkData* getParameterEntry(U16 param_type) const; | 459 | virtual LLNetworkData* getParameterEntry(U16 param_type) const; |
459 | virtual bool setParameterEntry(U16 param_type, const LLNetworkData& new_value, bool local_origin); | 460 | virtual bool setParameterEntry(U16 param_type, const LLNetworkData& new_value, bool local_origin); |
diff --git a/linden/indra/newview/llviewerparcelmedia.cpp b/linden/indra/newview/llviewerparcelmedia.cpp index 2925b8d..9180fb2 100644 --- a/linden/indra/newview/llviewerparcelmedia.cpp +++ b/linden/indra/newview/llviewerparcelmedia.cpp | |||
@@ -41,6 +41,7 @@ | |||
41 | #include "lluuid.h" | 41 | #include "lluuid.h" |
42 | #include "message.h" | 42 | #include "message.h" |
43 | #include "llviewerparcelmediaautoplay.h" | 43 | #include "llviewerparcelmediaautoplay.h" |
44 | #include "llviewerwindow.h" | ||
44 | #include "llfirstuse.h" | 45 | #include "llfirstuse.h" |
45 | 46 | ||
46 | // Static Variables | 47 | // Static Variables |
@@ -48,6 +49,9 @@ | |||
48 | S32 LLViewerParcelMedia::sMediaParcelLocalID = 0; | 49 | S32 LLViewerParcelMedia::sMediaParcelLocalID = 0; |
49 | LLUUID LLViewerParcelMedia::sMediaRegionID; | 50 | LLUUID LLViewerParcelMedia::sMediaRegionID; |
50 | 51 | ||
52 | // Local functions | ||
53 | void callback_play_media(S32 option, void* data); | ||
54 | |||
51 | // Move this to its own file. | 55 | // Move this to its own file. |
52 | // helper class that tries to download a URL from a web site and calls a method | 56 | // helper class that tries to download a URL from a web site and calls a method |
53 | // on the Panel Land Media and to discover the MIME type | 57 | // on the Panel Land Media and to discover the MIME type |
@@ -152,6 +156,14 @@ void LLViewerParcelMedia::update(LLParcel* parcel) | |||
152 | LLViewerMedia::setMimeType(parcel->getMediaType()); | 156 | LLViewerMedia::setMimeType(parcel->getMediaType()); |
153 | } | 157 | } |
154 | 158 | ||
159 | // First use warning | ||
160 | if( gSavedSettings.getWarning("FirstStreamingVideo") ) | ||
161 | { | ||
162 | gViewerWindow->alertXml("ParcelCanPlayMedia", | ||
163 | callback_play_media, (void*)parcel); | ||
164 | |||
165 | } | ||
166 | |||
155 | } | 167 | } |
156 | } | 168 | } |
157 | else | 169 | else |
@@ -361,3 +373,20 @@ void LLViewerParcelMedia::processParcelMediaUpdate( LLMessageSystem *msg, void * | |||
361 | } | 373 | } |
362 | } | 374 | } |
363 | } | 375 | } |
376 | |||
377 | void callback_play_media(S32 option, void* data) | ||
378 | { | ||
379 | LLParcel* parcel = (LLParcel*)data; | ||
380 | if (option == 0) | ||
381 | { | ||
382 | gSavedSettings.setBOOL("AudioStreamingVideo", TRUE); | ||
383 | LLViewerParcelMedia::play(parcel); | ||
384 | } | ||
385 | else | ||
386 | { | ||
387 | gSavedSettings.setBOOL("AudioStreamingVideo", FALSE); | ||
388 | } | ||
389 | gSavedSettings.setWarning("FirstStreamingVideo", FALSE); | ||
390 | |||
391 | } | ||
392 | |||
diff --git a/linden/indra/newview/llviewerpartsim.cpp b/linden/indra/newview/llviewerpartsim.cpp index 0766a01..267f0c8 100644 --- a/linden/indra/newview/llviewerpartsim.cpp +++ b/linden/indra/newview/llviewerpartsim.cpp | |||
@@ -75,7 +75,11 @@ F32 calc_desired_size(LLVector3 pos, LLVector2 scale) | |||
75 | return llclamp(desired_size, scale.magVec()*0.5f, PART_SIM_BOX_SIDE*2); | 75 | return llclamp(desired_size, scale.magVec()*0.5f, PART_SIM_BOX_SIDE*2); |
76 | } | 76 | } |
77 | 77 | ||
78 | LLViewerPart::LLViewerPart() | 78 | LLViewerPart::LLViewerPart() : |
79 | mPartID(0), | ||
80 | mLastUpdateTime(0.f), | ||
81 | mVPCallback(NULL), | ||
82 | mImagep(NULL) | ||
79 | { | 83 | { |
80 | LLMemType mt(LLMemType::MTYPE_PARTICLES); | 84 | LLMemType mt(LLMemType::MTYPE_PARTICLES); |
81 | mPartSourcep = NULL; | 85 | mPartSourcep = NULL; |
diff --git a/linden/indra/newview/llviewerpartsource.cpp b/linden/indra/newview/llviewerpartsource.cpp index d0ef2aa..0f30edf 100644 --- a/linden/indra/newview/llviewerpartsource.cpp +++ b/linden/indra/newview/llviewerpartsource.cpp | |||
@@ -46,7 +46,8 @@ | |||
46 | 46 | ||
47 | LLViewerPartSource::LLViewerPartSource(const U32 type) : | 47 | LLViewerPartSource::LLViewerPartSource(const U32 type) : |
48 | mType(type), | 48 | mType(type), |
49 | mOwnerUUID(LLUUID::null) | 49 | mOwnerUUID(LLUUID::null), |
50 | mPartFlags(0) | ||
50 | { | 51 | { |
51 | mLastUpdateTime = 0.f; | 52 | mLastUpdateTime = 0.f; |
52 | mLastPartTime = 0.f; | 53 | mLastPartTime = 0.f; |
diff --git a/linden/indra/newview/llviewerwindow.cpp b/linden/indra/newview/llviewerwindow.cpp index eaaa4d2..0e5218c 100644 --- a/linden/indra/newview/llviewerwindow.cpp +++ b/linden/indra/newview/llviewerwindow.cpp | |||
@@ -2415,7 +2415,7 @@ BOOL LLViewerWindow::handleKey(KEY key, MASK mask) | |||
2415 | // HACK look for UI editing keys | 2415 | // HACK look for UI editing keys |
2416 | if (LLView::sEditingUI) | 2416 | if (LLView::sEditingUI) |
2417 | { | 2417 | { |
2418 | if (LLFloaterEditUI::handleKey(key, mask)) | 2418 | if (LLFloaterEditUI::handleKeyEditUI(key, mask)) |
2419 | { | 2419 | { |
2420 | return TRUE; | 2420 | return TRUE; |
2421 | } | 2421 | } |
@@ -3042,8 +3042,8 @@ BOOL LLViewerWindow::handlePerFrameHover() | |||
3042 | { | 3042 | { |
3043 | floater_rect.mBottom = bar_rect.mBottom+1; | 3043 | floater_rect.mBottom = bar_rect.mBottom+1; |
3044 | // Don't bounce the floaters up and down. | 3044 | // Don't bounce the floaters up and down. |
3045 | gFloaterView->reshape(floater_rect.getWidth(), floater_rect.getHeight(), | 3045 | gFloaterView->reshapeFloater(floater_rect.getWidth(), floater_rect.getHeight(), |
3046 | TRUE, ADJUST_VERTICAL_NO); | 3046 | TRUE, ADJUST_VERTICAL_NO); |
3047 | gFloaterView->setRect(floater_rect); | 3047 | gFloaterView->setRect(floater_rect); |
3048 | } | 3048 | } |
3049 | 3049 | ||
@@ -4165,7 +4165,7 @@ BOOL LLViewerWindow::saveImageNumbered(LLImageRaw *raw, const LLString& extensio | |||
4165 | 4165 | ||
4166 | LLPointer<LLImageFormatted> formatted_image = LLImageFormatted::createFromExtension(extension); | 4166 | LLPointer<LLImageFormatted> formatted_image = LLImageFormatted::createFromExtension(extension); |
4167 | LLImageBase::setSizeOverride(TRUE); | 4167 | LLImageBase::setSizeOverride(TRUE); |
4168 | BOOL success = formatted_image->encode(raw); | 4168 | BOOL success = formatted_image->encode(raw, 0.0f); |
4169 | if( success ) | 4169 | if( success ) |
4170 | { | 4170 | { |
4171 | success = formatted_image->save(filepath); | 4171 | success = formatted_image->save(filepath); |
@@ -4323,7 +4323,7 @@ BOOL LLViewerWindow::saveSnapshot( const LLString& filepath, S32 image_width, S3 | |||
4323 | if (success) | 4323 | if (success) |
4324 | { | 4324 | { |
4325 | LLPointer<LLImageBMP> bmp_image = new LLImageBMP; | 4325 | LLPointer<LLImageBMP> bmp_image = new LLImageBMP; |
4326 | success = bmp_image->encode(raw); | 4326 | success = bmp_image->encode(raw, 0.0f); |
4327 | if( success ) | 4327 | if( success ) |
4328 | { | 4328 | { |
4329 | success = bmp_image->save(filepath); | 4329 | success = bmp_image->save(filepath); |
@@ -4463,6 +4463,10 @@ BOOL LLViewerWindow::rawSnapshot(LLImageRaw *raw, S32 image_width, S32 image_hei | |||
4463 | image_buffer_y = llfloor(snapshot_height *scale_factor) ; | 4463 | image_buffer_y = llfloor(snapshot_height *scale_factor) ; |
4464 | } | 4464 | } |
4465 | raw->resize(image_buffer_x, image_buffer_y, type == SNAPSHOT_TYPE_DEPTH ? 4 : 3); | 4465 | raw->resize(image_buffer_x, image_buffer_y, type == SNAPSHOT_TYPE_DEPTH ? 4 : 3); |
4466 | if(!raw->getData()) | ||
4467 | { | ||
4468 | return FALSE ; | ||
4469 | } | ||
4466 | 4470 | ||
4467 | BOOL high_res = scale_factor > 1.f; | 4471 | BOOL high_res = scale_factor > 1.f; |
4468 | if (high_res) | 4472 | if (high_res) |
diff --git a/linden/indra/newview/llvoavatar.cpp b/linden/indra/newview/llvoavatar.cpp index 5d04009..957ea5c 100644 --- a/linden/indra/newview/llvoavatar.cpp +++ b/linden/indra/newview/llvoavatar.cpp | |||
@@ -1930,7 +1930,7 @@ void LLVOAvatar::buildCharacter() | |||
1930 | { | 1930 | { |
1931 | if (gAttachBodyPartPieMenus[i]) | 1931 | if (gAttachBodyPartPieMenus[i]) |
1932 | { | 1932 | { |
1933 | gAttachPieMenu->appendMenu( gAttachBodyPartPieMenus[i] ); | 1933 | gAttachPieMenu->appendPieMenu( gAttachBodyPartPieMenus[i] ); |
1934 | } | 1934 | } |
1935 | else | 1935 | else |
1936 | { | 1936 | { |
@@ -1964,7 +1964,7 @@ void LLVOAvatar::buildCharacter() | |||
1964 | 1964 | ||
1965 | if (gDetachBodyPartPieMenus[i]) | 1965 | if (gDetachBodyPartPieMenus[i]) |
1966 | { | 1966 | { |
1967 | gDetachPieMenu->appendMenu( gDetachBodyPartPieMenus[i] ); | 1967 | gDetachPieMenu->appendPieMenu( gDetachBodyPartPieMenus[i] ); |
1968 | } | 1968 | } |
1969 | else | 1969 | else |
1970 | { | 1970 | { |
@@ -4143,7 +4143,7 @@ void LLVOAvatar::renderCollisionVolumes() | |||
4143 | { | 4143 | { |
4144 | for (S32 i = 0; i < mNumCollisionVolumes; i++) | 4144 | for (S32 i = 0; i < mNumCollisionVolumes; i++) |
4145 | { | 4145 | { |
4146 | mCollisionVolumes[i].render(); | 4146 | mCollisionVolumes[i].renderCollision(); |
4147 | } | 4147 | } |
4148 | } | 4148 | } |
4149 | 4149 | ||
diff --git a/linden/indra/newview/llvosurfacepatch.cpp b/linden/indra/newview/llvosurfacepatch.cpp index 3665ec7..c0474f2 100644 --- a/linden/indra/newview/llvosurfacepatch.cpp +++ b/linden/indra/newview/llvosurfacepatch.cpp | |||
@@ -920,7 +920,7 @@ void LLVOSurfacePatch::updateSpatialExtents(LLVector3& newMin, LLVector3 &newMax | |||
920 | { | 920 | { |
921 | LLVector3 posAgent = getPositionAgent(); | 921 | LLVector3 posAgent = getPositionAgent(); |
922 | LLVector3 scale = getScale(); | 922 | LLVector3 scale = getScale(); |
923 | newMin = posAgent-scale*0.5f; | 923 | newMin = posAgent-scale*0.5f; // Changing to 2.f makes the culling a -little- better, but still wrong |
924 | newMax = posAgent+scale*0.5f; | 924 | newMax = posAgent+scale*0.5f; |
925 | mDrawable->setPositionGroup((newMin+newMax)*0.5f); | 925 | mDrawable->setPositionGroup((newMin+newMax)*0.5f); |
926 | } | 926 | } |
@@ -935,7 +935,7 @@ LLTerrainPartition::LLTerrainPartition() | |||
935 | { | 935 | { |
936 | mOcclusionEnabled = FALSE; | 936 | mOcclusionEnabled = FALSE; |
937 | mRenderByGroup = FALSE; | 937 | mRenderByGroup = FALSE; |
938 | mInfiniteFarClip = FALSE; | 938 | mInfiniteFarClip = TRUE; |
939 | mBufferUsage = GL_DYNAMIC_DRAW_ARB; | 939 | mBufferUsage = GL_DYNAMIC_DRAW_ARB; |
940 | mDrawableType = LLPipeline::RENDER_TYPE_TERRAIN; | 940 | mDrawableType = LLPipeline::RENDER_TYPE_TERRAIN; |
941 | mPartitionType = LLViewerRegion::PARTITION_TERRAIN; | 941 | mPartitionType = LLViewerRegion::PARTITION_TERRAIN; |
diff --git a/linden/indra/newview/llvotextbubble.cpp b/linden/indra/newview/llvotextbubble.cpp index d4af0da..4f5ca38 100644 --- a/linden/indra/newview/llvotextbubble.cpp +++ b/linden/indra/newview/llvotextbubble.cpp | |||
@@ -61,7 +61,7 @@ LLVOTextBubble::LLVOTextBubble(const LLUUID &id, const LLPCode pcode, LLViewerRe | |||
61 | volume_params.setBeginAndEndT(0.f, 1.f); | 61 | volume_params.setBeginAndEndT(0.f, 1.f); |
62 | volume_params.setRatio(0.25f, 0.25f); | 62 | volume_params.setRatio(0.25f, 0.25f); |
63 | volume_params.setShear(0.f, 0.f); | 63 | volume_params.setShear(0.f, 0.f); |
64 | setVolume(volume_params); | 64 | setVolume(volume_params, 0); |
65 | mColor = LLColor4(1.0f, 0.0f, 0.0f, 1.f); | 65 | mColor = LLColor4(1.0f, 0.0f, 0.0f, 1.f); |
66 | S32 i; | 66 | S32 i; |
67 | for (i = 0; i < getNumTEs(); i++) | 67 | for (i = 0; i < getNumTEs(); i++) |
@@ -165,8 +165,8 @@ LLDrawable *LLVOTextBubble::createDrawable(LLPipeline *pipeline) | |||
165 | return mDrawable; | 165 | return mDrawable; |
166 | } | 166 | } |
167 | 167 | ||
168 | 168 | // virtual | |
169 | BOOL LLVOTextBubble::setVolume(const LLVolumeParams &volume_params) | 169 | BOOL LLVOTextBubble::setVolume(const LLVolumeParams &volume_params, const S32 detail, bool unique_volume) |
170 | { | 170 | { |
171 | if (LLPrimitive::setVolume(volume_params, mLOD)) | 171 | if (LLPrimitive::setVolume(volume_params, mLOD)) |
172 | { | 172 | { |
@@ -194,7 +194,7 @@ BOOL LLVOTextBubble::updateGeometry(LLDrawable *drawable) | |||
194 | if (mVolumeChanged) | 194 | if (mVolumeChanged) |
195 | { | 195 | { |
196 | LLVolumeParams volume_params = getVolume()->getParams(); | 196 | LLVolumeParams volume_params = getVolume()->getParams(); |
197 | setVolume(volume_params); | 197 | setVolume(volume_params, 0); |
198 | 198 | ||
199 | LLPipeline::sCompiles++; | 199 | LLPipeline::sCompiles++; |
200 | 200 | ||
diff --git a/linden/indra/newview/llvotextbubble.h b/linden/indra/newview/llvotextbubble.h index 5f83f56..cf50cb1 100644 --- a/linden/indra/newview/llvotextbubble.h +++ b/linden/indra/newview/llvotextbubble.h | |||
@@ -64,7 +64,7 @@ public: | |||
64 | 64 | ||
65 | protected: | 65 | protected: |
66 | ~LLVOTextBubble(); | 66 | ~LLVOTextBubble(); |
67 | BOOL setVolume(const LLVolumeParams &volume_params); | 67 | BOOL setVolume(const LLVolumeParams &volume_params, const S32 detail, bool unique_volume = false); |
68 | LLFrameTimer mUpdateTimer; | 68 | LLFrameTimer mUpdateTimer; |
69 | }; | 69 | }; |
70 | 70 | ||
diff --git a/linden/indra/newview/llvovolume.cpp b/linden/indra/newview/llvovolume.cpp index 494e0fa..e4318ff 100644 --- a/linden/indra/newview/llvovolume.cpp +++ b/linden/indra/newview/llvovolume.cpp | |||
@@ -1124,30 +1124,36 @@ BOOL LLVOVolume::updateGeometry(LLDrawable *drawable) | |||
1124 | } | 1124 | } |
1125 | else if ((mLODChanged) || (mSculptChanged)) | 1125 | else if ((mLODChanged) || (mSculptChanged)) |
1126 | { | 1126 | { |
1127 | LLPointer<LLVolume> old_volumep, new_volumep; | 1127 | LLVolume *old_volumep, *new_volumep; |
1128 | F32 old_lod, new_lod; | 1128 | F32 old_lod, new_lod; |
1129 | S32 old_num_faces, new_num_faces ; | ||
1129 | 1130 | ||
1130 | old_volumep = getVolume(); | 1131 | old_volumep = getVolume(); |
1131 | old_lod = old_volumep->getDetail(); | 1132 | old_lod = old_volumep->getDetail(); |
1133 | old_num_faces = old_volumep->getNumFaces() ; | ||
1134 | old_volumep = NULL ; | ||
1132 | 1135 | ||
1133 | { | 1136 | { |
1134 | LLFastTimer ftm(LLFastTimer::FTM_GEN_VOLUME); | 1137 | LLFastTimer ftm(LLFastTimer::FTM_GEN_VOLUME); |
1135 | LLVolumeParams volume_params = getVolume()->getParams(); | 1138 | LLVolumeParams volume_params = getVolume()->getParams(); |
1136 | setVolume(volume_params, 0); | 1139 | setVolume(volume_params, 0); |
1137 | } | 1140 | } |
1141 | |||
1138 | new_volumep = getVolume(); | 1142 | new_volumep = getVolume(); |
1139 | new_lod = new_volumep->getDetail(); | 1143 | new_lod = new_volumep->getDetail(); |
1144 | new_num_faces = new_volumep->getNumFaces() ; | ||
1145 | new_volumep = NULL ; | ||
1140 | 1146 | ||
1141 | if ((new_lod != old_lod) || mSculptChanged) | 1147 | if ((new_lod != old_lod) || mSculptChanged) |
1142 | { | 1148 | { |
1143 | compiled = TRUE; | 1149 | compiled = TRUE; |
1144 | sNumLODChanges += getVolume()->getNumFaces(); | 1150 | sNumLODChanges += new_num_faces ; |
1145 | 1151 | ||
1146 | drawable->setState(LLDrawable::REBUILD_VOLUME); // for face->genVolumeTriangles() | 1152 | drawable->setState(LLDrawable::REBUILD_VOLUME); // for face->genVolumeTriangles() |
1147 | 1153 | ||
1148 | { | 1154 | { |
1149 | LLFastTimer t(LLFastTimer::FTM_GEN_TRIANGLES); | 1155 | LLFastTimer t(LLFastTimer::FTM_GEN_TRIANGLES); |
1150 | if (new_volumep->getNumFaces() != old_volumep->getNumFaces()) | 1156 | if (new_num_faces != old_num_faces) |
1151 | { | 1157 | { |
1152 | regenFaces(); | 1158 | regenFaces(); |
1153 | } | 1159 | } |
@@ -1225,7 +1231,12 @@ S32 LLVOVolume::setTETexture(const U8 te, const LLUUID &uuid) | |||
1225 | return res; | 1231 | return res; |
1226 | } | 1232 | } |
1227 | 1233 | ||
1228 | S32 LLVOVolume::setTEColor(const U8 te, const LLColor4 &color) | 1234 | S32 LLVOVolume::setTEColor(const U8 te, const LLColor3& color) |
1235 | { | ||
1236 | return setTEColor(te, LLColor4(color)); | ||
1237 | } | ||
1238 | |||
1239 | S32 LLVOVolume::setTEColor(const U8 te, const LLColor4& color) | ||
1229 | { | 1240 | { |
1230 | S32 res = LLViewerObject::setTEColor(te, color); | 1241 | S32 res = LLViewerObject::setTEColor(te, color); |
1231 | if (res) | 1242 | if (res) |
@@ -2458,6 +2469,7 @@ void LLVolumeGeometryManager::rebuildGeom(LLSpatialGroup* group) | |||
2458 | if (facep->mGeomCount + index_offset > 65535) | 2469 | if (facep->mGeomCount + index_offset > 65535) |
2459 | { //cut off alpha nodes at 64k vertices | 2470 | { //cut off alpha nodes at 64k vertices |
2460 | facep->mVertexBuffer = NULL ; | 2471 | facep->mVertexBuffer = NULL ; |
2472 | facep->mLastVertexBuffer = NULL ; | ||
2461 | continue ; | 2473 | continue ; |
2462 | } | 2474 | } |
2463 | 2475 | ||
diff --git a/linden/indra/newview/llvovolume.h b/linden/indra/newview/llvovolume.h index c3b25bf..6177340 100644 --- a/linden/indra/newview/llvovolume.h +++ b/linden/indra/newview/llvovolume.h | |||
@@ -141,6 +141,7 @@ public: | |||
141 | 141 | ||
142 | /*virtual*/ void setTEImage(const U8 te, LLViewerImage *imagep); | 142 | /*virtual*/ void setTEImage(const U8 te, LLViewerImage *imagep); |
143 | /*virtual*/ S32 setTETexture(const U8 te, const LLUUID &uuid); | 143 | /*virtual*/ S32 setTETexture(const U8 te, const LLUUID &uuid); |
144 | /*virtual*/ S32 setTEColor(const U8 te, const LLColor3 &color); | ||
144 | /*virtual*/ S32 setTEColor(const U8 te, const LLColor4 &color); | 145 | /*virtual*/ S32 setTEColor(const U8 te, const LLColor4 &color); |
145 | /*virtual*/ S32 setTEBumpmap(const U8 te, const U8 bump); | 146 | /*virtual*/ S32 setTEBumpmap(const U8 te, const U8 bump); |
146 | /*virtual*/ S32 setTEShiny(const U8 te, const U8 shiny); | 147 | /*virtual*/ S32 setTEShiny(const U8 te, const U8 shiny); |
diff --git a/linden/indra/newview/llwebbrowserctrl.cpp b/linden/indra/newview/llwebbrowserctrl.cpp index 763f73d..79f5a21 100644 --- a/linden/indra/newview/llwebbrowserctrl.cpp +++ b/linden/indra/newview/llwebbrowserctrl.cpp | |||
@@ -88,17 +88,20 @@ LLWebBrowserCtrl::LLWebBrowserCtrl( const std::string& name, const LLRect& rect | |||
88 | if ( !mMediaSource ) | 88 | if ( !mMediaSource ) |
89 | { | 89 | { |
90 | llwarns << "media source create failed " << llendl; | 90 | llwarns << "media source create failed " << llendl; |
91 | return; | 91 | // return; |
92 | } | 92 | } |
93 | else | ||
94 | { | ||
93 | 95 | ||
94 | // mMediaSource->init(); | 96 | // mMediaSource->init(); |
95 | mMediaSource->addCommand( LLMediaBase::COMMAND_START ); | 97 | mMediaSource->addCommand( LLMediaBase::COMMAND_START ); |
96 | 98 | ||
97 | // observe the browser so we can trap HREF events) | 99 | // observe the browser so we can trap HREF events) |
98 | mMediaSource->addObserver(this); | 100 | mMediaSource->addObserver(this); |
99 | 101 | ||
100 | // create a new texture (based on LLDynamic texture) that will be used to display the output | 102 | // create a new texture (based on LLDynamic texture) that will be used to display the output |
101 | mWebBrowserImage = new LLWebBrowserTexture( screen_width, screen_height, this, mMediaSource ); | 103 | mWebBrowserImage = new LLWebBrowserTexture( screen_width, screen_height, this, mMediaSource ); |
104 | } | ||
102 | 105 | ||
103 | LLRect border_rect( 0, getRect().getHeight() + 2, getRect().getWidth() + 2, 0 ); | 106 | LLRect border_rect( 0, getRect().getHeight() + 2, getRect().getWidth() + 2, 0 ); |
104 | mBorder = new LLViewBorder( "web control border", border_rect, LLViewBorder::BEVEL_IN ); | 107 | mBorder = new LLViewBorder( "web control border", border_rect, LLViewBorder::BEVEL_IN ); |
@@ -409,14 +412,20 @@ bool LLWebBrowserCtrl::canNavigateForward() | |||
409 | 412 | ||
410 | bool LLWebBrowserCtrl::set404RedirectUrl( std::string redirect_url ) | 413 | bool LLWebBrowserCtrl::set404RedirectUrl( std::string redirect_url ) |
411 | { | 414 | { |
412 | return mMediaSource->set404RedirectUrl( redirect_url ); | 415 | if(mMediaSource) |
416 | return mMediaSource->set404RedirectUrl( redirect_url ); | ||
417 | else | ||
418 | return false; | ||
413 | } | 419 | } |
414 | 420 | ||
415 | //////////////////////////////////////////////////////////////////////////////// | 421 | //////////////////////////////////////////////////////////////////////////////// |
416 | // | 422 | // |
417 | bool LLWebBrowserCtrl::clr404RedirectUrl() | 423 | bool LLWebBrowserCtrl::clr404RedirectUrl() |
418 | { | 424 | { |
419 | return mMediaSource->clr404RedirectUrl(); | 425 | if(mMediaSource) |
426 | return mMediaSource->clr404RedirectUrl(); | ||
427 | else | ||
428 | return false; | ||
420 | } | 429 | } |
421 | 430 | ||
422 | //////////////////////////////////////////////////////////////////////////////// | 431 | //////////////////////////////////////////////////////////////////////////////// |
diff --git a/linden/indra/newview/llwebbrowserctrl.h b/linden/indra/newview/llwebbrowserctrl.h index 251d453..abfb18b 100644 --- a/linden/indra/newview/llwebbrowserctrl.h +++ b/linden/indra/newview/llwebbrowserctrl.h | |||
@@ -228,7 +228,7 @@ class LLWebBrowserCtrl : | |||
228 | // over-rides | 228 | // over-rides |
229 | virtual BOOL handleKey( KEY key, MASK mask, BOOL called_from_parent ); | 229 | virtual BOOL handleKey( KEY key, MASK mask, BOOL called_from_parent ); |
230 | virtual BOOL handleUnicodeChar(llwchar uni_char, BOOL called_from_parent); | 230 | virtual BOOL handleUnicodeChar(llwchar uni_char, BOOL called_from_parent); |
231 | virtual void reshape( S32 width, S32 height, BOOL called_from_parent ); | 231 | virtual void reshape( S32 width, S32 height, BOOL called_from_parent = TRUE); |
232 | virtual void draw(); | 232 | virtual void draw(); |
233 | virtual void onVisibilityChange ( BOOL curVisibilityIn ); | 233 | virtual void onVisibilityChange ( BOOL curVisibilityIn ); |
234 | 234 | ||
diff --git a/linden/indra/newview/llwindebug.cpp b/linden/indra/newview/llwindebug.cpp index e6c11d8..1b52a14 100644 --- a/linden/indra/newview/llwindebug.cpp +++ b/linden/indra/newview/llwindebug.cpp | |||
@@ -633,6 +633,44 @@ BOOL LLWinDebug::setupExceptionHandler() | |||
633 | // Internal builds don't mess with exception handling. | 633 | // Internal builds don't mess with exception handling. |
634 | //return TRUE; | 634 | //return TRUE; |
635 | } | 635 | } |
636 | |||
637 | void LLWinDebug::writeDumpToFile(MINIDUMP_TYPE type, MINIDUMP_EXCEPTION_INFORMATION *ExInfop, const char *filename) | ||
638 | { | ||
639 | if(f_mdwp == NULL || gDirUtilp == NULL) | ||
640 | { | ||
641 | return; | ||
642 | //write_debug("No way to generate a minidump, no MiniDumpWriteDump function!\n"); | ||
643 | } | ||
644 | else | ||
645 | { | ||
646 | std::string dump_path = gDirUtilp->getExpandedFilename(LL_PATH_LOGS, | ||
647 | filename); | ||
648 | |||
649 | HANDLE hFile = CreateFileA(dump_path.c_str(), | ||
650 | GENERIC_WRITE, | ||
651 | FILE_SHARE_WRITE, | ||
652 | NULL, | ||
653 | CREATE_ALWAYS, | ||
654 | FILE_ATTRIBUTE_NORMAL, | ||
655 | NULL); | ||
656 | |||
657 | if (hFile != INVALID_HANDLE_VALUE) | ||
658 | { | ||
659 | // Write the dump, ignoring the return value | ||
660 | f_mdwp(GetCurrentProcess(), | ||
661 | GetCurrentProcessId(), | ||
662 | hFile, | ||
663 | type, | ||
664 | ExInfop, | ||
665 | NULL, | ||
666 | NULL); | ||
667 | |||
668 | CloseHandle(hFile); | ||
669 | } | ||
670 | |||
671 | } | ||
672 | } | ||
673 | |||
636 | // static | 674 | // static |
637 | LONG LLWinDebug::handleException(struct _EXCEPTION_POINTERS *exception_infop) | 675 | LONG LLWinDebug::handleException(struct _EXCEPTION_POINTERS *exception_infop) |
638 | { | 676 | { |
@@ -648,6 +686,18 @@ LONG LLWinDebug::handleException(struct _EXCEPTION_POINTERS *exception_infop) | |||
648 | 686 | ||
649 | if (exception_infop) | 687 | if (exception_infop) |
650 | { | 688 | { |
689 | if(gSavedSettings.getControl("SaveMinidump") != NULL && gSavedSettings.getBOOL("SaveMinidump")) | ||
690 | { | ||
691 | _MINIDUMP_EXCEPTION_INFORMATION ExInfo; | ||
692 | |||
693 | ExInfo.ThreadId = ::GetCurrentThreadId(); | ||
694 | ExInfo.ExceptionPointers = exception_infop; | ||
695 | ExInfo.ClientPointers = NULL; | ||
696 | |||
697 | writeDumpToFile(MiniDumpNormal, &ExInfo, "SecondLife.dmp"); | ||
698 | writeDumpToFile((MINIDUMP_TYPE)(MiniDumpWithDataSegs | MiniDumpWithIndirectlyReferencedMemory), &ExInfo, "SecondLifePlus.dmp"); | ||
699 | } | ||
700 | |||
651 | 701 | ||
652 | std::string dump_path = gDirUtilp->getExpandedFilename(LL_PATH_LOGS, | 702 | std::string dump_path = gDirUtilp->getExpandedFilename(LL_PATH_LOGS, |
653 | "SecondLifeException"); | 703 | "SecondLifeException"); |
diff --git a/linden/indra/newview/llwindebug.h b/linden/indra/newview/llwindebug.h index fdc9a52..b11cdf6 100644 --- a/linden/indra/newview/llwindebug.h +++ b/linden/indra/newview/llwindebug.h | |||
@@ -41,7 +41,7 @@ public: | |||
41 | static BOOL setupExceptionHandler(); | 41 | static BOOL setupExceptionHandler(); |
42 | 42 | ||
43 | static LONG WINAPI handleException(struct _EXCEPTION_POINTERS *pExceptionInfo); | 43 | static LONG WINAPI handleException(struct _EXCEPTION_POINTERS *pExceptionInfo); |
44 | //static void writeDumpToFile(MINIDUMP_TYPE type, MINIDUMP_EXCEPTION_INFORMATION *ExInfop, const char *filename); | 44 | static void writeDumpToFile(MINIDUMP_TYPE type, MINIDUMP_EXCEPTION_INFORMATION *ExInfop, const char *filename); |
45 | }; | 45 | }; |
46 | 46 | ||
47 | #endif // LL_LLWINDEBUG_H | 47 | #endif // LL_LLWINDEBUG_H |
diff --git a/linden/indra/newview/lsl_guide.html b/linden/indra/newview/lsl_guide.html index 03a0a58..9f8c673 100644 --- a/linden/indra/newview/lsl_guide.html +++ b/linden/indra/newview/lsl_guide.html | |||
@@ -10631,7 +10631,8 @@ CLASS="FUNCDEF" | |||
10631 | CLASS="parameter" | 10631 | CLASS="parameter" |
10632 | >category</CODE | 10632 | >category</CODE |
10633 | > in the | 10633 | > in the |
10634 | recipients inventory. If the recipient is an object, the same | 10634 | recipients inventory. The avatar must be, or have recently been, within the same |
10635 | Region as the sending object. If the recipient is an object, the same | ||
10635 | permissions apply as if you were dragging inventory onto the | 10636 | permissions apply as if you were dragging inventory onto the |
10636 | object by hand, ie if <A | 10637 | object by hand, ie if <A |
10637 | HREF="#AEN1047" | 10638 | HREF="#AEN1047" |
@@ -22069,4 +22070,4 @@ CLASS="variablelist" | |||
22069 | ></DIV | 22070 | ></DIV |
22070 | ></BODY | 22071 | ></BODY |
22071 | ></HTML | 22072 | ></HTML |
22072 | > \ No newline at end of file | 22073 | > |
diff --git a/linden/indra/newview/releasenotes.txt b/linden/indra/newview/releasenotes.txt index 5c9dc87..8e96127 100644 --- a/linden/indra/newview/releasenotes.txt +++ b/linden/indra/newview/releasenotes.txt | |||
@@ -1,8 +1,67 @@ | |||
1 | Release Notes for Second Life 1.19.1(0) March 5th, 2008 | 1 | Release Notes for Second Life 1.19.1(2) March 19th, 2008 |
2 | ===================================== | ||
3 | Chnages and fixes: | ||
4 | * Fix for crash in LLViewerPartGroup::updateParticles | ||
5 | * VWR-5372 Specific Search (People, Places, etc) queries are modified and words less then 3 characters are removed. Now allow searches for resident names of 2 characters, and place/group names containing 1 char words. | ||
6 | * VWR-5517: Search failure dialog doesn't fill in [FINAL SEARCH]. | ||
7 | * Updated help text for llGiveInventoryList. | ||
8 | * Notecards crash users when passed from person to person | ||
9 | * Add "getting data" progress display to buy currency dialog. | ||
10 | * Raw SVG doesn't render correctly on a parcel media prim | ||
11 | * First use media present enabling dialog doesnt show | ||
12 | * Feature table and gpu table changes to help with lenovo. | ||
13 | * Open in My Web Browser" doesn't work if the page failed to load | ||
14 | * VWR-2628: Fix for crash in operator*(LLVector3 const&, LLQuaternion const&) / LL ... | ||
15 | * VWR-2682: Possible crash fix when accessing dead cubemap | ||
16 | * About land > Access doesnt look correct at the minimum window size | ||
17 | * Crash: linux regression - 'Error parsing skeleton XML file' | ||
18 | * VWR-1852: Edit Manipulators have Wrong Orientation with Local Ruler Mode on Linked Objects | ||
19 | * Notecards/Texture windows don't open completely when opened from inventory | ||
20 | * VWR-4963: Group archive freezes viewer | ||
21 | * SL Viewer's Client Memory Tool is missing | ||
22 | * Fix for terrain culling to patch 1.19.0 | ||
23 | * VWR-5499: Fix for Crash on Mac when looking with option-E | ||
24 | * Fix for Crash in VLLVolume::unref | ||
25 | * Fix for Crash in LLVertexBuffer::destroyGLBuffer | ||
26 | * Fix for white areas on lenovo with ATI FireGL 5200 | ||
27 | |||
28 | Installer fixes: | ||
29 | * Unauthorised users could gain access to an SL account after a real user had uninstalled. | ||
30 | * Mac autoupdater was failing. Now uses /tmp instead of asking the OS for what tmpdir to use. | ||
31 | |||
32 | Loclization fixes: | ||
33 | * DEV-12125 floater_media_browser.xml was not getting localized | ||
34 | * Out of date Portuguese localization files wound cause a crash; removed. | ||
35 | |||
36 | |||
37 | Open Source fixes: | ||
38 | * VWR-5519 - Errors in lltimer.h while compiling llmediaimplquicktime | ||
39 | * VWR-5323 - Probable fixes for gcc-4.1 problems. | ||
40 | * VWR-5515 - OpenSSL required on MS Windows now | ||
41 | * VWR-5519 - Errors in lltimer.h while compiling llmediaimplquicktime | ||
42 | * VWR-5460: llmozlib2 is missing from 1.19.1.0 source distribution (Macintosh library bundle) | ||
43 | |||
44 | Release Notes for Second Life 1.19.1(1) March 12th, 2008 | ||
45 | ===================================== | ||
46 | Changes and fixes: | ||
47 | * VWR-5479: The option "Save Texture As" from File menu is not active in 1.19.1 (0) (Second Life Release Candidate) | ||
48 | * VWR-5087: Attach To... from inventory ignores selected postion and attaches to stored location. | ||
49 | * VWR-4899: Windlight Particle System - burst severely weakened | ||
50 | * crash when quitting from login screen | ||
51 | * SVC-1764: Setting parcel media for a single agent is broken with new media functionality ( PARCEL_MEDIA_COMMAND_AGENT broken) | ||
52 | * Scripted object for playing movies no longer functions under 1-19-1 | ||
53 | * FireGL and Quadros no longer show 'unsupported' dialog | ||
54 | * Crash: 'Error parsing skeleton XML file' | ||
55 | * Crash when opening the expanded media control | ||
56 | * VWR-4959: WindLight: "Sculpted Prim" preview makes a huge distorted mess of polygons | ||
57 | * Propagate client language setting into search URL | ||
58 | |||
59 | |||
60 | Release Notes for Second Life 1.19.1(0) March 6th, 2008 | ||
2 | ===================================== | 61 | ===================================== |
3 | New features and changes: | 62 | New features and changes: |
4 | 63 | ||
5 | * WindLight - Physically accurate atmospheric rendering and lighting | 64 | * Physically accurate atmospheric rendering and lighting (previously code named WindLight) |
6 | ** Animateable day cycles | 65 | ** Animateable day cycles |
7 | ** Vastly improved realistic water with reflections and glimmer | 66 | ** Vastly improved realistic water with reflections and glimmer |
8 | ** "Glow" as new object attribute | 67 | ** "Glow" as new object attribute |
diff --git a/linden/indra/newview/res/newViewRes.rc b/linden/indra/newview/res/newViewRes.rc index ed4539f..3f2f76e 100644 --- a/linden/indra/newview/res/newViewRes.rc +++ b/linden/indra/newview/res/newViewRes.rc | |||
@@ -231,8 +231,8 @@ TOOLMEDIAOPEN CURSOR "toolmediaopen.cur" | |||
231 | // | 231 | // |
232 | 232 | ||
233 | VS_VERSION_INFO VERSIONINFO | 233 | VS_VERSION_INFO VERSIONINFO |
234 | FILEVERSION 1,19,1,1 | 234 | FILEVERSION 1,19,1,2 |
235 | PRODUCTVERSION 1,19,1,1 | 235 | PRODUCTVERSION 1,19,1,2 |
236 | FILEFLAGSMASK 0x3fL | 236 | FILEFLAGSMASK 0x3fL |
237 | #ifdef _DEBUG | 237 | #ifdef _DEBUG |
238 | FILEFLAGS 0x1L | 238 | FILEFLAGS 0x1L |
@@ -249,12 +249,12 @@ BEGIN | |||
249 | BEGIN | 249 | BEGIN |
250 | VALUE "CompanyName", "Linden Lab" | 250 | VALUE "CompanyName", "Linden Lab" |
251 | VALUE "FileDescription", "Second Life" | 251 | VALUE "FileDescription", "Second Life" |
252 | VALUE "FileVersion", "1.19.1.1" | 252 | VALUE "FileVersion", "1.19.1.2" |
253 | VALUE "InternalName", "Second Life" | 253 | VALUE "InternalName", "Second Life" |
254 | VALUE "LegalCopyright", "Copyright 2001-2008, Linden Research, Inc." | 254 | VALUE "LegalCopyright", "Copyright 2001-2008, Linden Research, Inc." |
255 | VALUE "OriginalFilename", "SecondLife.exe" | 255 | VALUE "OriginalFilename", "SecondLife.exe" |
256 | VALUE "ProductName", "Second Life" | 256 | VALUE "ProductName", "Second Life" |
257 | VALUE "ProductVersion", "1.19.1.1" | 257 | VALUE "ProductVersion", "1.19.1.2" |
258 | END | 258 | END |
259 | END | 259 | END |
260 | BLOCK "VarFileInfo" | 260 | BLOCK "VarFileInfo" |
diff --git a/linden/indra/newview/secondlife setup build A08T01.bat b/linden/indra/newview/secondlife setup build A08T01.bat new file mode 100644 index 0000000..230319c --- /dev/null +++ b/linden/indra/newview/secondlife setup build A08T01.bat | |||
@@ -0,0 +1,4 @@ | |||
1 | @rem Invoke the script which preps then runs the installer. | ||
2 | @rem This batch file is customized per grid. | ||
3 | |||
4 | @"secondlife setup build.bat" --login_channel="Second Life Release A08T01" | ||
diff --git a/linden/indra/newview/secondlife setup build B08T01.bat b/linden/indra/newview/secondlife setup build B08T01.bat new file mode 100644 index 0000000..19ea7d0 --- /dev/null +++ b/linden/indra/newview/secondlife setup build B08T01.bat | |||
@@ -0,0 +1,4 @@ | |||
1 | @rem Invoke the script which preps then runs the installer. | ||
2 | @rem This batch file is customized per grid. | ||
3 | |||
4 | @"secondlife setup build.bat" --login_channel="Second Life Release B08T01" | ||
diff --git a/linden/indra/newview/skins/xui/de/alerts.xml b/linden/indra/newview/skins/xui/de/alerts.xml index a534508..d3fd64f 100644 --- a/linden/indra/newview/skins/xui/de/alerts.xml +++ b/linden/indra/newview/skins/xui/de/alerts.xml | |||
@@ -727,6 +727,52 @@ Möchten Sie auf www.secondlife.com ein Konto anlegen? | |||
727 | Abbrechen | 727 | Abbrechen |
728 | </option> | 728 | </option> |
729 | </alert> | 729 | </alert> |
730 | <alert name="UnsupportedGLRequirements"> | ||
731 | <message name="message"> | ||
732 | Ihr Computer entspricht nicht den Hardwareanforderungen von Second Life. Second Life setzt eine OpenGL-Grafikkarte mit Multitextur-Unterstützung voraus. Falls Ihre Grafikkarte diese Funktion unterstützt, installieren Sie die neuesten Treiber sowie die aktuellen Service Packs und Patches für Ihr Betriebssystem. | ||
733 | |||
734 | Sollte das Problem fortbestehen, finden Sie weitere Hilfestellung unter: http://www.secondlife.com/support | ||
735 | </message> | ||
736 | </alert> | ||
737 | <alert name="UnsupportedHardware"> | ||
738 | <message name="message"> | ||
739 | Achtung: Ihr System erfüllt nicht die Mindestanforderungen von Second Life. Dies kann eine schlechte Darstellungsleistung in Second Life zur Folge haben. Für nicht unterstützte Systemkonfigurationen bieten wir keinen technischen Support. | ||
740 | |||
741 | MINDESTANF. | ||
742 | Die Seite [_URL] für weitere Informationen öffnen? | ||
743 | </message> | ||
744 | <option name="Yes"> | ||
745 | Ja | ||
746 | </option> | ||
747 | <option name="No"> | ||
748 | Nein | ||
749 | </option> | ||
750 | </alert> | ||
751 | <alert name="UnsupportedGPU"> | ||
752 | <message name="message"> | ||
753 | - Ihre Grafikkarte entspricht nicht den Mindestanforderungen. | ||
754 | </message> | ||
755 | </alert> | ||
756 | <alert name="UnsupportedCPU"> | ||
757 | <message name="message"> | ||
758 | - Ihre CPU-Geschwindigkeit entspricht nicht den Mindestanforderungen. | ||
759 | </message> | ||
760 | </alert> | ||
761 | <alert name="UnsupportedCPUAmount"> | ||
762 | <message name="message"> | ||
763 | 796 | ||
764 | </message> | ||
765 | </alert> | ||
766 | <alert name="UnsupportedRAM"> | ||
767 | <message name="message"> | ||
768 | - Ihr Arbeitsspeicher entspricht nicht den Mindestanforderungen. | ||
769 | </message> | ||
770 | </alert> | ||
771 | <alert name="UnsupportedRAMAmount"> | ||
772 | <message name="message"> | ||
773 | 510 | ||
774 | </message> | ||
775 | </alert> | ||
730 | <alert name="QuickTimeOutOfDate"> | 776 | <alert name="QuickTimeOutOfDate"> |
731 | <ignore name="ignore"> | 777 | <ignore name="ignore"> |
732 | QuickTime wurde deaktiviert, weil Sie eine alte Version verwenden | 778 | QuickTime wurde deaktiviert, weil Sie eine alte Version verwenden |
@@ -1024,10 +1070,10 @@ Anzeige-Einstellungen gewählt. | |||
1024 | <alert name="DisplaySettingsNoShaders"> | 1070 | <alert name="DisplaySettingsNoShaders"> |
1025 | <message name="message"> | 1071 | <message name="message"> |
1026 | [SECOND_LIFE] ist bei der Initialisierung der Grafiktreiber abgestürzt. | 1072 | [SECOND_LIFE] ist bei der Initialisierung der Grafiktreiber abgestürzt. |
1027 | Um allgemeine Treiberprobleme zu umgehen, werden Shader deaktiviert. | 1073 | Die Grafikqualität wird auf eine niedrige Stufe zurückgesetzt, um einige typische Treiberfehler zu vermeiden. |
1028 | Einige Grafikfunktionen werden ausgeschaltet. | 1074 | Einige Grafikfunktionen werden ausgeschaltet. |
1029 | Wir empfehlen die Aktualisierung Ihrer Grafikkartentreiber. | 1075 | Wir empfehlen die Aktualisierung Ihrer Grafikkartentreiber. |
1030 | Die Shader können unter 'Einstellungen' > 'Grafikdetails' wieder aktiviert werden. | 1076 | Sie können die Grafikqualität unter 'Einstellungen' > 'Grafik' wieder erhöhen. |
1031 | </message> | 1077 | </message> |
1032 | </alert> | 1078 | </alert> |
1033 | <alert name="CannotRequestDomain"> | 1079 | <alert name="CannotRequestDomain"> |
@@ -1272,6 +1318,15 @@ Standard: aus | |||
1272 | - die öffentlichen Objekte dieser Parzelle | 1318 | - die öffentlichen Objekte dieser Parzelle |
1273 | </message> | 1319 | </message> |
1274 | </alert> | 1320 | </alert> |
1321 | <alert name="HelpEstateAbuseEmailAddress" | ||
1322 | title="E-Mail-Adresse für Missbrauchsmeldungen"> | ||
1323 | <message name="message"> | ||
1324 | Geben Sie hier eine E-Mail-Adresse ein, an die | ||
1325 | Missbrauchsmeldungen von diesem Grundstück gesendet werden. | ||
1326 | Wenn dieses Feld leer ist, werden Missbrauchsmeldungen | ||
1327 | nur an Linden Lab gesendet. | ||
1328 | </message> | ||
1329 | </alert> | ||
1275 | <alert name="HelpEstateVoiceChat" title="Voice-Chat erlauben"> | 1330 | <alert name="HelpEstateVoiceChat" title="Voice-Chat erlauben"> |
1276 | <message name="message"> | 1331 | <message name="message"> |
1277 | Die Parzellen auf diesem Grundstück können über eigene Voice- | 1332 | Die Parzellen auf diesem Grundstück können über eigene Voice- |
@@ -1286,6 +1341,20 @@ Standard: aus | |||
1286 | Diese Version von Second ist mit dem Voice-Chat-Feature in dieser Region nicht kompatibel. Damit Voice-Chat funktioniert, müssen Sie Second Life aktualisieren. | 1341 | Diese Version von Second ist mit dem Voice-Chat-Feature in dieser Region nicht kompatibel. Damit Voice-Chat funktioniert, müssen Sie Second Life aktualisieren. |
1287 | </message> | 1342 | </message> |
1288 | </alert> | 1343 | </alert> |
1344 | <alert name="RetryFetchInventoryDescendents"> | ||
1345 | <message name="message"> | ||
1346 | Zeitüberschreitung bei Inventarabfrage vom Server. Wiederholen? | ||
1347 | </message> | ||
1348 | <ignore name="ignore"> | ||
1349 | Inventarobjekt-Abfrage wiederholen | ||
1350 | </ignore> | ||
1351 | <option name="Retry"> | ||
1352 | Wiederholen | ||
1353 | </option> | ||
1354 | <option name="Cancel"> | ||
1355 | Abbrechen | ||
1356 | </option> | ||
1357 | </alert> | ||
1289 | <alert name="ConfirmQuit"> | 1358 | <alert name="ConfirmQuit"> |
1290 | <message name="message"> | 1359 | <message name="message"> |
1291 | Wirklich beenden? | 1360 | Wirklich beenden? |
@@ -3902,7 +3971,7 @@ Standard: aus | |||
3902 | <message name="message"> | 3971 | <message name="message"> |
3903 | Der Zugang zu diesem Grundstück wird auf die hier | 3972 | Der Zugang zu diesem Grundstück wird auf die hier |
3904 | aufgeführten Einwohner und Gruppen beschränkt. Diese Einstellung ist | 3973 | aufgeführten Einwohner und Gruppen beschränkt. Diese Einstellung ist |
3905 | nur verfügbar, wenn 'Vom Festland aus sichtbar' | 3974 | nur verfügbar, wenn 'Öffentlich' |
3906 | deaktiviert ist. | 3975 | deaktiviert ist. |
3907 | </message> | 3976 | </message> |
3908 | </alert> | 3977 | </alert> |
@@ -3910,7 +3979,7 @@ deaktiviert ist. | |||
3910 | <message name="message"> | 3979 | <message name="message"> |
3911 | Der Zugang zu diesem Grundstück wird auf die hier | 3980 | Der Zugang zu diesem Grundstück wird auf die hier |
3912 | aufgeführten Einwohner und Gruppen beschränkt. Diese Einstellung ist | 3981 | aufgeführten Einwohner und Gruppen beschränkt. Diese Einstellung ist |
3913 | nur verfügbar, wenn 'Vom Festland aus sichtbar' | 3982 | nur verfügbar, wenn 'Öffentlich' |
3914 | deaktiviert ist. | 3983 | deaktiviert ist. |
3915 | </message> | 3984 | </message> |
3916 | </alert> | 3985 | </alert> |
@@ -4351,6 +4420,17 @@ wirklich löschen? | |||
4351 | Abbrechen | 4420 | Abbrechen |
4352 | </option> | 4421 | </option> |
4353 | </alert> | 4422 | </alert> |
4423 | <alert name="ConfirmClearMediaUrlList"> | ||
4424 | <message name="message"> | ||
4425 | Die Liste mit gespeicherten URLs wirklich löschen? | ||
4426 | </message> | ||
4427 | <option name="Yes"> | ||
4428 | Ja | ||
4429 | </option> | ||
4430 | <option name="No"> | ||
4431 | Abbrechen | ||
4432 | </option> | ||
4433 | </alert> | ||
4354 | <alert name="ConfirmEmptyLostAndFound"> | 4434 | <alert name="ConfirmEmptyLostAndFound"> |
4355 | <message name="message"> | 4435 | <message name="message"> |
4356 | Möchten Sie den Inhalt Ihres Fundstücke-Ordners | 4436 | Möchten Sie den Inhalt Ihres Fundstücke-Ordners |
@@ -4414,6 +4494,360 @@ zu erleichtern, oder testen Sie sie, indem Sie sie in die Adressleiste Ihres Bro | |||
4414 | OK | 4494 | OK |
4415 | </option> | 4495 | </option> |
4416 | </alert> | 4496 | </alert> |
4497 | <alert name="GraphicsPreferencesHelp"> | ||
4498 | <message name="message"> | ||
4499 | Die Optionen in diesem Dialog steuern Fenstergröße und Auflösung sowie die Qualität der Grafikdarstellung auf dem Client. Vier grundlegende Grafikeinstellungen stehen zur Wahl: Niedrig, Mittel, Hoch und Ultra. Wenn Sie das Kontrollkästchen "Benutzerdefiniert" anklicken, können Sie folgende Grafikeinstellungen selbst vornehmen: | ||
4500 | |||
4501 | Shader: Aktivieren oder deaktivieren Sie die verschiedenen Pixel-Shader. | ||
4502 | |||
4503 | Spiegelung: Legen Sie hier fest, welche Objekte sich in Wasser spiegeln. | ||
4504 | |||
4505 | Avatar-Darstellung: Einige Optionen, die über die Darstellung Ihres Avatars bestimmen. | ||
4506 | |||
4507 | Sichtweite: Legt fest, bis zu welcher Entfernung von Ihrem Avatar die Objekte in der Szene berechnet und dargestellt werden. | ||
4508 | |||
4509 | Max. Partikelzahl: Legt fest, wie viele Partikel gleichzeitig berechnet und angezeigt werden. | ||
4510 | |||
4511 | Post-Processing-Qualität: Legt fest, mit welcher Auflösung der Glüheffekt berechnet wird. | ||
4512 | |||
4513 | Gitterdetails: Legt den Detailgrad bei der Berechnung bestimmter Objekte fest. | ||
4514 | |||
4515 | Beleuchtungsdetails: Legt fest, welche Lichtquellen berechnet werden. | ||
4516 | |||
4517 | Terraindetails: Legt den Detailgrad bei der Berechnung des Terrains fest. | ||
4518 | |||
4519 | Himmeldetails: Steuert die Gitterauflösung der Himmelskuppel. Höhere Werte führen zu einer runderen Sonnendarstellung, dauern aber länger in der Berechnung. | ||
4520 | </message> | ||
4521 | </alert> | ||
4522 | <alert name="WLSavePresetAlert"> | ||
4523 | <message name="message"> | ||
4524 | Die gespeicherte Voreinstellung überschreiben? | ||
4525 | </message> | ||
4526 | <option name="Save"> | ||
4527 | Ja | ||
4528 | </option> | ||
4529 | <option name="Cancel"> | ||
4530 | Nein | ||
4531 | </option> | ||
4532 | </alert> | ||
4533 | <alert name="WLDeletePresetAlert"> | ||
4534 | <message name="message"> | ||
4535 | [SKY] löschen? | ||
4536 | </message> | ||
4537 | <option name="Delete"> | ||
4538 | Ja | ||
4539 | </option> | ||
4540 | <option name="Cancel"> | ||
4541 | Nein | ||
4542 | </option> | ||
4543 | </alert> | ||
4544 | <alert name="WLNoEditDefault"> | ||
4545 | <message name="message"> | ||
4546 | Standardvoreinstellungen können nicht bearbeitet oder gelöscht werden. | ||
4547 | </message> | ||
4548 | </alert> | ||
4549 | <alert name="WLMissingSky"> | ||
4550 | <message name="message"> | ||
4551 | Diese Tageszyklusdatei verweist auf eine fehlende Himmel-Datei: [SKY]. | ||
4552 | </message> | ||
4553 | </alert> | ||
4554 | <alert name="PPSaveEffectAlert"> | ||
4555 | <message name="message"> | ||
4556 | Post-Processing-Effekt bereits vorhanden. Möchten Sie ihn überschreiben? | ||
4557 | </message> | ||
4558 | <option name="Save"> | ||
4559 | Ja | ||
4560 | </option> | ||
4561 | <option name="Cancel"> | ||
4562 | Nein | ||
4563 | </option> | ||
4564 | </alert> | ||
4565 | <alert name="HelpEditSky"> | ||
4566 | <message name="message"> | ||
4567 | Verschieben Sie die WindLight-Regler, um verschiedene Himmelsansichten zu erstellen und zu speichern. | ||
4568 | </message> | ||
4569 | </alert> | ||
4570 | <alert name="HelpEditDayCycle"> | ||
4571 | <message name="message"> | ||
4572 | Wählen Sie für jede Tageszeit eine Himmelsansicht aus. | ||
4573 | </message> | ||
4574 | </alert> | ||
4575 | <alert name="EnvSettingsHelpButton"> | ||
4576 | <message name="message"> | ||
4577 | Diese Einstellungen haben Auswirkung auf die lokale Darstellung der Umwelt auf Ihrem Computer. Zugriff auf alle Einstellungen haben Sie nur, wenn Ihre Grafikkarte Atmosphären-Shader unterstützt. | ||
4578 | |||
4579 | Mit dem Regler "Tageszeit" stellen Sie die lokal in Ihrem Viewer dargestellte Tageszeit ein. | ||
4580 | |||
4581 | Mit dem Regler "Wolkendecke" steuern Sie die Wolkendichte am Himmel. | ||
4582 | |||
4583 | Unter "Wasserfarbe" können Sie eine Farbe für die Wasserdarstellung auswählen. | ||
4584 | |||
4585 | Mit dem Regler "Wassertrübung" steuern Sie die Sichtweite unter Wasser. | ||
4586 | |||
4587 | Klicken Sie auf "Grundstückszeit verw.", um die aktuelle Zeit in der Region fest als Tageszeit einzustellen. | ||
4588 | |||
4589 | Klicken Sie auf "Himmel (erweitert)", um einen Editor mit erweiterten Einstellungen für die Himmeldarstellung anzuzeigen. | ||
4590 | |||
4591 | Klicken Sie auf "Wasser (erweitert)", um einen Editor mit erweiterten Einstellungen für die Wasserdarstellung anzuzeigen. | ||
4592 | </message> | ||
4593 | </alert> | ||
4594 | <alert name="HelpDayCycle"> | ||
4595 | <message name="message"> | ||
4596 | Im Tageszyklus-Editor steuern Sie den Tag-/Nachtzyklus am Second Life Himmel. Dabei handelt es sich um den Zyklus, der mit dem Tageszeit-Regler im Umwelt-Basiseditor gesteuert wird. | ||
4597 | |||
4598 | Der Tageszyklus-Editor verwendet sogenannte Keyframes zur Steuerung des Tag-/Nachtablaufs. Dabei handelt es sich um "Schlüsselbilder" (die grauen Kreise auf der Zeitskala), für die bestimmte Himmelseinstellungen definiert wurden. Bei voranschreitender Tageszeit interpoliert WindLight den Übergang zwischen diesen Keyframes und erzeugt eine entsprechende Himmelsanimation. | ||
4599 | |||
4600 | Der gelbe Pfeil über der Zeitskala repräsentiert die aktuelle Tageszeit-Darstellung. Ziehen Sie den Pfeil, um die Tagesanimation anzuzeigen. Mit "Key hinzu" und "Key löschen" rechts neben der Zeitskala können Sie neue Keys einfügen und vorhandene löschen. | ||
4601 | |||
4602 | Keyframes lassen sich einfach entlang der Zeitskala verschieben, oder Sie geben die Werte manuell unter "Keyframe-Einstellungen" ein. Hier wählen Sie auch eine WindLight-Voreinstellung für den Keyframe aus. | ||
4603 | |||
4604 | "Zykluslänge" bestimmt die Gesamtlänge eines "Tages". Ein niedriger Wert (z.B. 2 Minuten) führt dazu, dass ein ganzer 24-Stunden-Tag innerhalb von zwei Minuten Echtzeit abgespult wird! Wenn Sie alle Einstellungen auf der Zeitskala und für die einzelnen Keyframes vorgenommen haben, können Sie mit "Start" und "Stopp" die Animation anzeigen. Das funktioniert natürlich genauso interaktiv, indem Sie den gelben Pfeil über der Zeitskala verschieben. Mit der Schaltfläche "Grundstückszeit verw." synchronisieren Sie die Tageszeit und -länge mit den auf dem Grundstück geltenden Einstellungen. | ||
4605 | |||
4606 | Ihre Tageszyklus-Einstellungen lassen sich mit den Schaltflächen "Testtag speichern" und "Testtag laden" speichern bzw. laden. Bis dato kann nur ein Tageszyklus gleichzeitig in Verwendung sein. | ||
4607 | </message> | ||
4608 | </alert> | ||
4609 | <alert name="HelpBlueHorizon"> | ||
4610 | <message name="message"> | ||
4611 | Mit den Reglern für Rot/Grün/Blau (RGB) steuern Sie die Farbe des Himmels. Verwenden Sie den Intensitätsregler (I), um alle drei RGB-Regler gleichzeitig zu verschieben. | ||
4612 | </message> | ||
4613 | </alert> | ||
4614 | <alert name="HelpHazeHorizon"> | ||
4615 | <message name="message"> | ||
4616 | Horizonttrübung ist einer der wichtigsten Parameter, um | ||
4617 | die Gesamtlichtsituation in der Szene zu steuern. Damit | ||
4618 | lassen sich viele Belichtungseinstellungen simulieren, | ||
4619 | z.B. ein Überstrahlen durch die Sonne oder | ||
4620 | starker Dunst. | ||
4621 | </message> | ||
4622 | </alert> | ||
4623 | <alert name="HelpBlueDensity"> | ||
4624 | <message name="message"> | ||
4625 | Farbintensität steuert die Gesamtfarbsättigung von Himmel und Nebel. Je weiter Sie den Intensitätsregler (I) nach rechts verschieben, desto heller und lebendiger werden die Farben. Wenn Sie ihn ganz nach links verschieben, verlieren die Farben an Intensität und gehen in Schwarz oder Weiß über. Volle Kontrolle über die Farbsättigung des Himmels bieten ihnen die Regler für Rot/Grün/Blau (RGB). | ||
4626 | </message> | ||
4627 | </alert> | ||
4628 | <alert name="HelpHazeDensity"> | ||
4629 | <message name="message"> | ||
4630 | Trübungsintensität steuert die Stärke des grauen | ||
4631 | Dunsts in der Atmosphäre. Damit lassen sich | ||
4632 | zum Beispiel starker Rauch oder Luftverschmutzung | ||
4633 | simulieren. Auch für Nebel und | ||
4634 | Sprühregen geeignet. | ||
4635 | </message> | ||
4636 | </alert> | ||
4637 | <alert name="HelpDensityMult"> | ||
4638 | <message name="message"> | ||
4639 | Der Dichtemultiplikator beeinflusst die Gesamtdichte der Atmosphäre. Niedrige Einstellungen erzeugen die Anmutung "dünner, sauberer Luft", hohe Einstellungen erzeugen den Eindruck schweren Smogs. | ||
4640 | </message> | ||
4641 | </alert> | ||
4642 | <alert name="HelpDistanceMult"> | ||
4643 | <message name="message"> | ||
4644 | Steuert die Entfernungswirkung von WindLight. Ein Wert von | ||
4645 | Null schaltet den Einfluss von WindLight auf Terrain und | ||
4646 | Objekte praktisch aus. Werte über 1 simulieren | ||
4647 | größere Entfernungen und verstärken den Atmosphäreneffekt. | ||
4648 | </message> | ||
4649 | </alert> | ||
4650 | <alert name="HelpMaxAltitude"> | ||
4651 | <message name="message"> | ||
4652 | Max. Höhe steuert die Höhenberechnungen von WindLight | ||
4653 | bei der Berechnung der atmosphärischen Beleuchtung. Zu | ||
4654 | späteren Tageszeiten lässt sich damit zum Beispiel | ||
4655 | die "Intensität" des Sonnenuntergangs beeinflussen. | ||
4656 | </message> | ||
4657 | </alert> | ||
4658 | <alert name="HelpSunlightColor"> | ||
4659 | <message name="message"> | ||
4660 | Steuert Farbe und Intensität von direktem Licht in der Szene. | ||
4661 | </message> | ||
4662 | </alert> | ||
4663 | <alert name="HelpSunAmbient"> | ||
4664 | <message name="message"> | ||
4665 | Steuert Farbe und Intensität von atmosphärischem Umgebungslicht in der Szene. | ||
4666 | </message> | ||
4667 | </alert> | ||
4668 | <alert name="HelpSunGlow"> | ||
4669 | <message name="message"> | ||
4670 | Der Regler "Größe" steuert die Größe der Sonne. | ||
4671 | Der Regler "Fokus" steuert, wie unscharf die Sonne | ||
4672 | am Himmel erscheint. | ||
4673 | </message> | ||
4674 | </alert> | ||
4675 | <alert name="HelpSceneGamma"> | ||
4676 | <message name="message"> | ||
4677 | Regelt den Hell/Dunkel-Wert des Bildschirms. | ||
4678 | </message> | ||
4679 | </alert> | ||
4680 | <alert name="HelpStarBrightness"> | ||
4681 | <message name="message"> | ||
4682 | Regelt die Helligkeit der Sterne am Himmel. | ||
4683 | </message> | ||
4684 | </alert> | ||
4685 | <alert name="HelpTimeOfDay"> | ||
4686 | <message name="message"> | ||
4687 | Steuert die Sonnenstellung am Himmel. | ||
4688 | Entspricht der Elevation. | ||
4689 | </message> | ||
4690 | </alert> | ||
4691 | <alert name="HelpEastAngle"> | ||
4692 | <message name="message"> | ||
4693 | Steuert die Sonnenstellung am Himmel. | ||
4694 | Entspricht dem Azimut. | ||
4695 | </message> | ||
4696 | </alert> | ||
4697 | <alert name="HelpCloudColor"> | ||
4698 | <message name="message"> | ||
4699 | Steuert die Wolkenfarbe. Generell empfiehlt | ||
4700 | sich hier ein Weißton, aber hey, | ||
4701 | warum nicht ein bisschen Spaß haben? | ||
4702 | </message> | ||
4703 | </alert> | ||
4704 | <alert name="HelpCloudDetail"> | ||
4705 | <message name="message"> | ||
4706 | Steuert das Detailbild, welches über das Wolken- | ||
4707 | Hauptbild gelegt wird. X und Y bestimmen | ||
4708 | seine Position. D (Dichte) regelt, wie ausgebeult oder | ||
4709 | zerrissen die Wolken wirken. | ||
4710 | </message> | ||
4711 | </alert> | ||
4712 | <alert name="HelpCloudDensity"> | ||
4713 | <message name="message"> | ||
4714 | Mit den X- und Y-Reglern steuern Sie die | ||
4715 | Position der Wolken, mit dem Regler D die | ||
4716 | Wolkendichte. | ||
4717 | </message> | ||
4718 | </alert> | ||
4719 | <alert name="HelpCloudCoverage"> | ||
4720 | <message name="message"> | ||
4721 | Steuert, wie stark die Wolken den Himmel bedecken. | ||
4722 | </message> | ||
4723 | </alert> | ||
4724 | <alert name="HelpCloudScale"> | ||
4725 | <message name="message"> | ||
4726 | Steuert die Skalierung des Wolkenbilds auf der Himmelskuppel. | ||
4727 | </message> | ||
4728 | </alert> | ||
4729 | <alert name="HelpCloudScrollX"> | ||
4730 | <message name="message"> | ||
4731 | Steuert die Bewegungsgeschwindigkeit der Wolken in X-Richtung. | ||
4732 | </message> | ||
4733 | </alert> | ||
4734 | <alert name="HelpCloudScrollY"> | ||
4735 | <message name="message"> | ||
4736 | Steuert die Bewegungsgeschwindigkeit der Wolken in Y-Richtung. | ||
4737 | </message> | ||
4738 | </alert> | ||
4739 | <alert name="HelpClassicClouds"> | ||
4740 | <message name="message"> | ||
4741 | Aktivieren Sie dieses Kontrollkästchen, um die Darstellung der klassischen Second Life Wolken zusätzlich zu den WindLight-Wolken zu erzwingen. | ||
4742 | </message> | ||
4743 | </alert> | ||
4744 | <alert name="HelpWaterFogColor"> | ||
4745 | <message name="message"> | ||
4746 | Steuert die Farbe der Wassertrübung | ||
4747 | </message> | ||
4748 | </alert> | ||
4749 | <alert name="HelpWaterFogDensity"> | ||
4750 | <message name="message"> | ||
4751 | Steuert die Dichte der Wassertrübung und wie weit Sie unter Wasser sehen können. | ||
4752 | </message> | ||
4753 | </alert> | ||
4754 | <alert name="HelpUnderWaterFogMod"> | ||
4755 | <message name="message"> | ||
4756 | Beeinflusst die Auswirkung des Wassertrübungs-Exponenten und regelt die Sichtweite Ihres Avatars unter Wasser. | ||
4757 | </message> | ||
4758 | </alert> | ||
4759 | <alert name="HelpWaterGlow"> | ||
4760 | <message name="message"> | ||
4761 | Steuert, wie groß der Anteil der leuchtenden Wasseroberfläche ist. | ||
4762 | </message> | ||
4763 | </alert> | ||
4764 | <alert name="HelpWaterNormalScale"> | ||
4765 | <message name="message"> | ||
4766 | Steuert die Skalierung der drei Elementarwellen, die das Wasser ausmachen. | ||
4767 | </message> | ||
4768 | </alert> | ||
4769 | <alert name="HelpWaterFresnelScale"> | ||
4770 | <message name="message"> | ||
4771 | Steuert die winkelabhängige Lichtreflexion. | ||
4772 | </message> | ||
4773 | </alert> | ||
4774 | <alert name="HelpWaterFresnelOffset"> | ||
4775 | <message name="message"> | ||
4776 | Steuert die Intensität des reflektierten Lichts. | ||
4777 | </message> | ||
4778 | </alert> | ||
4779 | <alert name="HelpWaterScaleAbove"> | ||
4780 | <message name="message"> | ||
4781 | Steuert die Stärke der Lichtbrechung von oberhalb der Wasseroberfläche aus gesehen. | ||
4782 | </message> | ||
4783 | </alert> | ||
4784 | <alert name="HelpWaterScaleBelow"> | ||
4785 | <message name="message"> | ||
4786 | Steuert die Stärke der Lichtbrechung von unterhalb der Wasseroberfläche aus gesehen. | ||
4787 | </message> | ||
4788 | </alert> | ||
4789 | <alert name="HelpWaterBlurMultiplier"> | ||
4790 | <message name="message"> | ||
4791 | Steuert die Mischung von Wellen und Reflexionen. | ||
4792 | </message> | ||
4793 | </alert> | ||
4794 | <alert name="HelpWaterNormalMap"> | ||
4795 | <message name="message"> | ||
4796 | Ermöglicht die Auswahl einer Normal-Map zur | ||
4797 | Berechnung von Reflexionen/Brechungen auf dem Wasser. | ||
4798 | </message> | ||
4799 | </alert> | ||
4800 | <alert name="HelpWaterWave1"> | ||
4801 | <message name="message"> | ||
4802 | Steuert die Bewegungsgeschwindigkeit und -richtung der großen | ||
4803 | Normal-Map-Version in X- und Y-Richtung. | ||
4804 | </message> | ||
4805 | </alert> | ||
4806 | <alert name="HelpWaterWave2"> | ||
4807 | <message name="message"> | ||
4808 | Steuert die Bewegungsgeschwindigkeit und -richtung der kleinen | ||
4809 | Normal-Map-Version in X- und Y-Richtung. | ||
4810 | </message> | ||
4811 | </alert> | ||
4812 | <alert name="NewSkyPreset"> | ||
4813 | <message name="message"> | ||
4814 | Wählen Sie einen Namen für den neuen Himmel. | ||
4815 | </message> | ||
4816 | <option name="OK"> | ||
4817 | OK | ||
4818 | </option> | ||
4819 | <option name="Cancel"> | ||
4820 | Abbrechen | ||
4821 | </option> | ||
4822 | Neue Voreinstellung | ||
4823 | </alert> | ||
4824 | <alert name="ExistsSkyPresetAlert"> | ||
4825 | <message name="message"> | ||
4826 | Voreinstellung bereits vorhanden! | ||
4827 | </message> | ||
4828 | </alert> | ||
4829 | <alert name="NewWaterPreset"> | ||
4830 | <message name="message"> | ||
4831 | Wählen Sie einen Namen für die neue Wasservoreinstellung. | ||
4832 | </message> | ||
4833 | <option name="OK"> | ||
4834 | OK | ||
4835 | </option> | ||
4836 | <option name="Cancel"> | ||
4837 | Abbrechen | ||
4838 | </option> | ||
4839 | Neue Voreinstellung | ||
4840 | </alert> | ||
4841 | <alert name="ExistsWaterPresetAlert"> | ||
4842 | <message name="message"> | ||
4843 | Voreinstellung bereits vorhanden! | ||
4844 | </message> | ||
4845 | </alert> | ||
4846 | <alert name="WaterNoEditDefault"> | ||
4847 | <message name="message"> | ||
4848 | Standardvoreinstellungen können nicht bearbeitet oder gelöscht werden. | ||
4849 | </message> | ||
4850 | </alert> | ||
4417 | <alert name="ChatterBoxSessionStartError"> | 4851 | <alert name="ChatterBoxSessionStartError"> |
4418 | <message name="message"> | 4852 | <message name="message"> |
4419 | Fehler beim Starten einer neuen Chat-Sitzung mit [RECIPIENT]. | 4853 | Fehler beim Starten einer neuen Chat-Sitzung mit [RECIPIENT]. |
diff --git a/linden/indra/newview/skins/xui/de/floater_about.xml b/linden/indra/newview/skins/xui/de/floater_about.xml index f05a7d5..17bed86 100644 --- a/linden/indra/newview/skins/xui/de/floater_about.xml +++ b/linden/indra/newview/skins/xui/de/floater_about.xml | |||
@@ -1,11 +1,9 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <floater name="floater_about" title="Über Second Life"> | 2 | <floater name="floater_about" title="Über Second Life"> |
3 | <text_editor name="credits_editor"> | 3 | <text_editor name="credits_editor"> |
4 | Second Life wird Ihnen präsentiert von Philip, Andrew, Tessa, Cory, Frank, James, Doug, Hunter, Richard, John, Eric, Avi, AaronB, AaronY, Ian, Peter, Mark, Robin, Stephen, Tracy, Ryan, Alberto, Haney, Tanya, JimJ, Dan, Ben, Stephanie, Tim, Evan, Catherine, Colin, Chris, Reuben, Charity, Jeska, James, JonHenry, Kelly, Callum, Char, Daniel, DavidF, Don, Jeff, Lauren, Lee, Michael, Ramzi, Vektor, Steve, TomY, Tess, Kona, Brent, Clarissa, PeterP, Jesse, Annette, Cyn, Blue, Ginsu, Jonathan, Karen, Adam, Nova, Deana, Lizzie, Patsy, DavidK, Isaac, Pathfinder, Monroe, Jill, Benny, Altruima, Rheya, Jennifer, Jack, DaveP, Brad, Mick, Babbage, Elisabeth, Brian, Beth, Data, Ethan, Wendy, Nicole, Sky, Jeffrey, Zero, Coffee, Tesla, Kenny, Makiko, Nigel, Teeple, Lucy, Mia, Dee, Guy, Harry, Liana, Branka, Jimbo, Aura, Vasuda, SarahD, bethanye, Torley, Runitai, MikeS, PaulM, Milo, Hermia, JoeM, Melanie, Rejean, DSmith, SMiller, Susan, Jose, DongYun, Justin, Andrey, Syrah, Donovan, Henrik, Nora, Lexie, AC, Donna, ChrisC, Alex, Leyla, Kyle, Mathew, Devin, Joshua, DanC, Jessica, Harmony, Claudia, Tramel, Glenn, Betsy, Fritz, Jun, Adam, Cassandra, Ken, RyanW, Spike, Tofu, Varas, Andy, Luke, RobLa, Chiyo, JohnZ, Dustin, George, Del, PeterP, Migyeong, Matthew, RMullane, CChampion, JTurbin, JamesC, Viola, Lightfoot, Jacqui, Sturm, Adrian, Buttercup, Alfred, Sunil, Alfred, Noel, Irfan, Jill, Yool, Jane, Yuki, Yoz, Matthew, Arthur, Jennifer, Karl, Brian, Ben, Janine, Christopher, Madhavi, Everett, Anthony, Joon, Jake, sean, Adreanne, Stephany, KellyJo, Jeremy, Pramod, Joshua, Sean, Christopher, Amy, Ceren, Katherine, jon, Sudheendra, James, Stephan, Kari, Kartic, Todd, Thomas, Joki, Rebecca, Belinda, Bert, Roger, Bridie, Kristi, Brian, Maria, John, Aric, Nathanel, Melinda, Darrell, Jennifer, Sandy, Greg, Rob, Brad, Chris, Eric, Palmer, Asi, Katja, Lisa, Minda, Jen, Aaron, Bryan, Mark, Jonathan, Jamie, Laurel, William, Matthew, Steve, David, Remy, James, Tim, Lee, Brian, Ashlei, Sam, Mike, Ethan, Austin, Wanda, Paul, Brian, Rachel, Valentyn, Emma Williams, Autum, Steven, Laley, Charles, Jessica, Sue, Gillian, CG, Kip, Kristen, Shamiran, Blake, Brett, Erica, Kent, Joel, Plexus, Twilight, Joppa und vielen anderen. | 4 | Second Life wird Ihnen präsentiert von Philip, Andrew, Tessa, Cory, Frank, James, Doug, Hunter, Richard, John, Eric, Avi, AaronB, AaronY, Ian, Peter, Mark, Robin, Stephen, Tracy, Ryan, Alberto, Haney, Tanya, JimJ, Dan, Ben, Stephanie, Tim, Evan, Catherine, Colin, Chris, Reuben, Charity, Jeska, James, JonHenry, Kelly, Callum, Char, Daniel, DavidF, Don, Jeff, Lauren, Lee, Michael, Ramzi, Vektor, Steve, TomY, Tess, Kona, Brent, Clarissa, PeterP, Jesse, Annette, Cyn, Blue, Ginsu, Jonathan, Karen, Adam, Nova, Deana, Lizzie, Patsy, DavidK, Isaac, Pathfinder, Monroe, Jill, Benny, Altruima, Rheya, Jennifer, Jack, DaveP, Brad, Mick, Babbage, Elisabeth, Brian, Beth, Data, Ethan, Wendy, Nicole, Sky, Jeffrey, Zero, Coffee, Tesla, Kenny, Makiko, Nigel, Teeple, Lucy, Mia, Dee, Guy, Harry, Liana, Branka, Jimbo, Aura, Vasuda, SarahD, bethanye, Torley, Runitai, MikeS, PaulM, Milo, Hermia, JoeM, Melanie, Rejean, DSmith, SMiller, Susan, Jose, DongYun, Justin, Andrey, Syrah, Donovan, Henrik, Nora, Lexie, AC, Donna, ChrisC, Alex, Leyla, Kyle, Mathew, Devin, Joshua, DanC, Jessica, Harmony, Claudia, Tramel, Glenn, Betsy, Fritz, Jun, Adam, Cassandra, Ken, RyanW, Spike, Tofu, Varas, Andy, Luke, RobLa, Chiyo, JohnZ, Dustin, George, Del, PeterP, Migyeong, Matthew, RMullane, CChampion, JTurbin, JamesC, Viola, Lightfoot, Jacqui, Sturm, Adrian, Buttercup, Alfred, Sunil, Alfred, Noel, Irfan, Jill, Yool, Jane, Yuki, Yoz, Matthew, Arthur, Jennifer, Karl, Brian, Ben, Janine, Christopher, Madhavi, Everett, Anthony, Joon, Jake, sean, Adreanne, Stephany, KellyJo, Jeremy, Pramod, Joshua, Sean, Christopher, Amy, Ceren, Katherine, jon, Sudheendra, James, Stephan, Kari, Kartic, Todd, Thomas, Joki, Rebecca, Belinda, Bert, Roger, Bridie, Kristi, Brian, Maria, John, Aric, Nathanel, Melinda, Darrell, Jennifer, Sandy, Greg, Rob, Brad, Chris, Eric, Palmer, Asi, Katja, Lisa, Minda, Jen, Aaron, Bryan, Mark, Jonathan, Jamie, Laurel, William, Matthew, Steve, David, Remy, James, Tim, Lee, Brian, Ashlei, Sam, Mike, Ethan, Austin, Wanda, Paul, Brian, Rachel, Valentyn, Emma Williams, Autum, Steven, Laley, Charles, Jessica, Sue, Gillian, CG, Kip, Kristen, Shamiran, Blake, Brett, Erica, Kent, Joel, Plexus, Twilight, Joppa, Enus, Kraft, Naveen, Simon, Q, Ronp, Laurap, Ram, KyleJM, Marty, Kend, Daveh, Prospero, Melissa, Nat, Hamilton, Green, Seraph, Ekim, Miz, Jimmy, Kosmo, Rome, Doris, JT, Benoc, Whump, Mango, Trinity, Patch, TJ, Christy, Bao, Joohwan, Kate, Oreh, Angela, Johan, Cheah, Lan, Matias, Brandy, Cogsworth, Aleks, Mitchell, Space, Einstein, Bambers, Colton, Malbers, Maggie, Umesh, Santosh, Rose, Stash, Rothman, Winnie, Stella, Niall und vielen anderen. |
5 | 5 | ||
6 | Im Gedenken an Jesse Malthus. Du wirst allen in Erinnerung bleiben, die deine Stimme hören durften. | 6 | Vielen Dank den folgenden Einwohnern, die uns geholfen haben, dies zur bisher besten Version zu machen: aaron23 decuir, Abelv Vollmar, Abyssin Otoro, ActingIll Igaly, Adamas Carter, Addy Broome, Adelia Menges, Alexandra Rucker, Alexandrea Fride, Alissa Sabre, Alyx Jonson, Ann Otoole, Anton Fargis, Aradia Dielli, Araina jewell, Arcane Clawtooth, arcangelo vantelli, Are Sperber, Argent Stonecutter, arkady yost, Ashcroft Burnham, Ashen Arida, Auron Forcella, Azadine Umarov, Azildin Furst, Balp Allen, Balpien Hammerer, Barney Boomslang, Barrett Slade, becky pippen, Beeflin Grut, Beer Dailey, Behemoth Greenwood, bigmanu greene, bitova loon, Bonca Chikuwa, Bonnie Bechir, Brandon Catteneo, buttonpusher jones, Carina Raymaker, Ceera Murakami, Celierra Darling, ChatNoir Moonsoo, Cheetah Hammerer, chet neurocam, Cinthya Loveless, Cold Spitteler, Coral Quinnell, Crash Pointe, CrazyTB Oh, Creem Pye, Crom Chaffe, ctrl althouse, dade carver, Dael Ra, dakota schwade, Dale Innis, Damian McLeod, Danger Lytton, danielluh ashton, DanOfWA Flanagan, Davec Horsforth, Davidius Morigi, davie zinner, Day Oh, DBDigital Epsilon, Deany Fall, deBruce Munro, Decaf Coffey, Dedric Mauriac, Deeso Saeed, Dekka Raymaker, dexter eberhart, Dildo Spitz, Dizzy Banjo, djcabello klaar, Dnali Anabuki, Domchi Underwood, Doran Zemlja, Drew Dwi, Duckless Vandyke, Duncan Stenvaag, Dylan Rickenbacker, dzogchen Moody, Dzonatas Sol, Eddy Stryker, Edward Griffith, Edward Pearse, ein duesenburg, Elle Pollack, Elle74 Zaftig, Emileigh Starbrook, Emma Nowhere, ener bing, Erdrick Balbozar, eric domela, Evangeline Biedermann, Excalibur Longstaff, Fake Fitzgerald, Feldspar Millgrove, Feynt Mistral, Fluf Fredriksson, Forbid Utorid, Fortyniner Beck, Francesco Despres, Francisco Koolhoven, Franta Burt, Fury Rosewood, garde Burrel, Garmin Kawaguichi, Gavin Ichigo, Gellan Glenelg, Genie Demina, Gennifer Meredith, Gigs Taggart, Goldie Katsu, Gwyneth Llewelyn, Haravikk Mistral, Harleen Gretzky, Haruki Watanabe, Heather Manatiso, Henri Beauchamp, Honey Fairweather, Hypatia Callisto, Ice Brodie, icktoofay Kamachi, IntLibber Brautigan, Janise Dreamscape, Jay Shinobu, Jenni Ryba, Jeremy Ondricek, JetZep Zabelin, Jims Smythe, Jini Hammerer, Jopy Weber, JustOneMore Loon, Kaluura Boa, Kara Markova, Kevin Susenko, Khyra Ares, Kii Lilliehook, Kitty Barnett, Kris Kuttelwascher, Lanita Wingtips, Laura18 Streeter, Lee Ludd, Lettrius Jewell, Liberty Tesla, LilyAnna Carter, Lindal Kidd, Lisa Lowe, Lisa McConnell, Lola Machin, luca peck, Lupus Clawtooth, M1sha Dallin, Macsima Dagostino, Mana Janus, Mani Canning, Manjusri Binder, marceledward edman, march Korda, marchino villota, Marcus Llewellyn, MartinRJ Fayray, Matthew Dowd, Max Kleiber, mazzy fastback, McCabe Maxsted, Mckailen Kohnke, Meghan Dench, Melvin Starbrook, Mercia Mcmahon, Miakoda Carnell, Michelle2 Zenovka, Michi Lumin, mick parnall, Milla Michinaga, Millie Thompson, miranda Ashby, Mircea Lobo, MIssSara Beck, mouse mimistrobell, Myria Boa, Nanci Barthelmess, Nargus Asturias, Natalya Debevec, Nedrae Messmer, Nexeus Fatale, Niky Zenovka, Nimrod Szondi, Ninane Yoshikawa, Noch Tripsa, nokithecat writer, Nyko Merlin, Onyx Halberd, oryx tempel, Osprey Therian, Pac Hyun, Panagea McMillan, Patrick Ferrentino, PattehPh0x Katsu, ponk bing, Poppy Linden, Prajna Vella, Precious Rhiano, Prokofy Neva, Randall Lovenkraft, Rascal Ratelle, Raydon Writer, Rhaorth Antonelli, Rock Hayek, Ron Crimson, Ron Khondji, Ronald Richez, Rui Clary, Ruud Lathrop, Sakkano Imako, Sam Reinard, Sascha Vandyke, Scrippy Scofield, Sean18 McCarey, Sedona Mills, Sekonda Huet, Seraph Nephilim, Sergei Milos, Shadowquine Maltz, shai khalifa, sheilah flatley, Sheri Underwood, Shuggy Husky, Sierra Janus, Sigma Avro, Simil Miles, simon kline, Simon Nolan, Sindy Tsure, Sparks Keynes, Squirrel Wood, Stahi Columbia, StarSong Bright, Summer Seale, Sunn Thunders, Susan Koltai, Syler Zhora, Synack Fitzgerald, Tayra Dagostino, Tee Cramer, Teravus Ousley, Thomas Shikami, Tia Araw, Tillie Ariantho, Topher Brooks, Torley Linden, Twosteppin Jewell, tx Oh, urantia jewell, vaguegirl Petty, VeC Merlin, venus petrov, vv33d Beck, vynka dean, zann canto, zeebster colasanti, Zi Ree, Zion Tristan, Zorin Frobozz, Zyzzy Zarf |
7 | |||
8 | Vielen Dank den folgenden Einwohnern, die uns geholfen haben, dies zur bisher besten Version zu machen: Aces Spade, Adrian Buckler, Adrienne LeShelle, Amanda Ascot, AnnaQuay Heart, Aquamina Khalifa, Arienne Anatine, Aston Hildyard, Ayami Kamachi, Badinage Odets, Biffy Berjis, Bigfox Pye, BigJohn Jade, BigRick Byrd, Brettus Tripsa, Brock Fitzgerald, Broker Allen, Browse by Name, Chiria Celt, Christopher Prudhomme, dale Cao, dale Lynch, Dante Tucker, DaQbet Kish, Dargon Pacer, Darius Antonelli, Deira Llanfair, DeviantBone Xi, Dore Dorado, Englishwob Etchegaray, Enya Masala, Eric Renneville, Fairfax Michinaga, FireFox Bancroft, FOXI Cortes, Frederick Earp, Geo Meek, Gotthilf Fischer, Hallo Loon, Hawk Carter, Hazel Kyrgyz, Hecter Barbosa, Hex Link, Ice Pak, Ideasu Mukerji, Itoku Kamachi, Jared Halleck, Jaykob Carter, Jennifer Drumheller, JensMartin Tomsen, JIAB Boa, Jim Gustafson, JimmyJet Fossett, Joseph Rustamova, Jt Volos, Karilyn Kidomen, Kaysha Sion, Keaton Nacon, Kevin Susenko, Khashai Steinbeck, Kira Cuddihy, Kit Massiel, Kojo Dixon, KUieTSToRm Lightcloud, Kwai Kyong, Kyrtis Daehlie, LazyGunGuy Bartlett, Lewcas Zapedzki, Lioc Cioc, LLIB Utu, Lou Liebknecht, Luca Draken, Maci Homewood, Major Sewell, Mari Todriya, MarieElize Noel, matt27 Churchill, Maverick Miasma, maydaysos Young, Mediaho Ball, Mikayla Gillespie, Mike Faulkland, Modfire Milland, MollyBrown Foxley, Mosley Jewell, Nuahs Zapedzki, Nyx Divine, Panther Farber, Paul Bumi, Preciousse Moody, PrincessNina Prefect, Prio Serpentine, Rainbow Drake, Randall Rall, Randy Kazan, Reinhart Mokeev, Rhyph Somme, Rico Roizman, Ruge Dryke, Ryan Orbit, Safira Rosher, Samantha Bainbridge, Sammy Foxley, Sash Furst, Saturn Ariantho, Sienna Summers, Skye Enoch, Sofie Kanno, Solar Legion, Sonic Oki, Sunra Saenz, Taina Heart, Taryn Sprawl, tenerife Wei, TomDragon Nilsson, Trebla Reve, Trouble Carnell, user1cat Orbit, Vance Merlin, Veritas Variscan, Web Page, Wi3g3ht3s Ihnen, WinDrftr DeFarge, Yuu Nakamichi, Zac Delec, Zed Fairweather, Zimmo Hallard. | ||
9 | 7 | ||
10 | APR Copyright (C) 2000-2004 The Apache Software Foundation | 8 | APR Copyright (C) 2000-2004 The Apache Software Foundation |
11 | cURL Copyright (C) 1996-2002, Daniel Stenberg, (daniel@haxx.se) | 9 | cURL Copyright (C) 1996-2002, Daniel Stenberg, (daniel@haxx.se) |
@@ -27,7 +25,7 @@ Alle Rechte vorbehalten. Details siehe licenses.txt. | |||
27 | Voice-Chat-Audiocoding: Polycom(R) Siren14(TM) (ITU-T Empf. G.722.1 Anhang C) | 25 | Voice-Chat-Audiocoding: Polycom(R) Siren14(TM) (ITU-T Empf. G.722.1 Anhang C) |
28 | 26 | ||
29 | 27 | ||
30 | Mr. Watson – kommen Sie bitte her – ich möchte Sie sehen. | 28 | Happiness is a warm puppy. -- Charles M. Schulz |
31 | </text_editor> | 29 | </text_editor> |
32 | <text name="you_are_at"> | 30 | <text name="you_are_at"> |
33 | Sie befinden sich in [POSITION] | 31 | Sie befinden sich in [POSITION] |
diff --git a/linden/indra/newview/skins/xui/de/floater_about_land.xml b/linden/indra/newview/skins/xui/de/floater_about_land.xml index fe9542f..fdb7257 100644 --- a/linden/indra/newview/skins/xui/de/floater_about_land.xml +++ b/linden/indra/newview/skins/xui/de/floater_about_land.xml | |||
@@ -441,13 +441,58 @@ | |||
441 | </text> | 441 | </text> |
442 | </panel> | 442 | </panel> |
443 | <panel label="Medien" name="land_media_panel"> | 443 | <panel label="Medien" name="land_media_panel"> |
444 | <text name="at URL:"> | ||
445 | Medien-URL: | ||
446 | </text> | ||
447 | <button label="Einstellen..." label_selected="Einstellen..." name="set_media_url" /> | ||
448 | <text name="with media:"> | ||
449 | Medientyp: | ||
450 | </text> | ||
451 | <combo_box name="media type" | ||
452 | tool_tip="Geben Sie einen URL für den Film, die Webseite oder ein anderes Medium ein" /> | ||
453 | <text name="Description:"> | ||
454 | Beschreibung: | ||
455 | </text> | ||
456 | <line_editor name="url_description" | ||
457 | tool_tip="Text, der neben der Abspielen/Laden-Schaltfläche angezeigt wird" /> | ||
458 | <text name="replace_texture_help"> | ||
459 | (Objekte mit dieser Textur zeigen nach Anklicken | ||
460 | des Abspielen-Pfeils den Film oder die Webseite an.) | ||
461 | </text> | ||
462 | <text name="Options:"> | ||
463 | Medien- | ||
464 | Optionen: | ||
465 | </text> | ||
466 | <check_box label="Als Schleife wiedergeben" name="media_loop" | ||
467 | tool_tip="Spielt das Medium in einer Schleife ab. Der Abspielvorgang wird immer wieder von vorne fortgesetzt." /> | ||
468 | <check_box label="Medien-URL verstecken" name="hide_media_url" | ||
469 | tool_tip="Aktivieren Sie diese Option, wenn Sie nicht möchten, dass unautorisierte Personen die Medien-URL sehen können. Diese Option ist für HTML-Medien nicht verfügbar." /> | ||
470 | <check_box label="Musik-URL verstecken" name="hide_music_url" | ||
471 | tool_tip="Aktivieren Sie diese Option, wenn Sie nicht möchten, dass unautorisierte Personen die Musik-URL sehen können." /> | ||
472 | <text name="media_size" | ||
473 | tool_tip="Darstellungsgröße von Webmedien, für Standard bei 0 belassen."> | ||
474 | Mediengröße: | ||
475 | </text> | ||
476 | <spinner name="media_size_width" | ||
477 | tool_tip="Darstellungsgröße von Webmedien, für Standard bei 0 belassen." /> | ||
478 | <spinner name="media_size_height" | ||
479 | tool_tip="Darstellungsgröße von Webmedien, für Standard bei 0 belassen." /> | ||
480 | <text name="pixels"> | ||
481 | Pixel | ||
482 | </text> | ||
483 | <text name="MusicURL:"> | ||
484 | Musik-URL: | ||
485 | </text> | ||
486 | <text name="Sound:"> | ||
487 | Sound: | ||
488 | </text> | ||
444 | <check_box label="Umgebungssound auf diese Parzelle beschränken" name="check sound local" /> | 489 | <check_box label="Umgebungssound auf diese Parzelle beschränken" name="check sound local" /> |
445 | <text type="string" length="1" name="Music URL:"> | 490 | <text type="string" length="1" name="Music URL:"> |
446 | Musik-URL: | 491 | Musik-URL: |
447 | </text> | 492 | </text> |
448 | <text type="string" length="1" name="Media texture:"> | 493 | <text type="string" length="1" name="Media texture:"> |
449 | Sound- | 494 | Textur |
450 | Einstellungen: | 495 | ersetzen: |
451 | </text> | 496 | </text> |
452 | <text type="string" length="1" name="Replace this texture:"> | 497 | <text type="string" length="1" name="Replace this texture:"> |
453 | Diese Textur ersetzen: | 498 | Diese Textur ersetzen: |
@@ -457,12 +502,10 @@ Einstellungen: | |||
457 | <text type="string" length="1" name="with content from this URL:"> | 502 | <text type="string" length="1" name="with content from this URL:"> |
458 | mit Inhalt von diesem URL ersetzen: | 503 | mit Inhalt von diesem URL ersetzen: |
459 | </text> | 504 | </text> |
460 | <check_box label="Inhalt automatisch skalieren (langsamer und reduzierte Bildqualität)" | 505 | <check_box label="Automatisch skalieren" name="media_auto_scale" |
461 | name="media_auto_scale" | ||
462 | tool_tip="Aktivieren Sie diese Option, um den Inhalt für diese Parzelle automatisch zu skalieren. Dies ist eventuell langsamer und die Qualität ist schlechter, aber Sie müssen keine weitere Texturskalierung oder -anpassung vornehmen." /> | 506 | tool_tip="Aktivieren Sie diese Option, um den Inhalt für diese Parzelle automatisch zu skalieren. Dies ist eventuell langsamer und die Qualität ist schlechter, aber Sie müssen keine weitere Texturskalierung oder -anpassung vornehmen." /> |
463 | <text name="Voice settings:"> | 507 | <text name="Voice settings:"> |
464 | Sprach- | 508 | Voice: |
465 | Einstellungen: | ||
466 | </text> | 509 | </text> |
467 | <radio_group name="parcel_voice_channel"> | 510 | <radio_group name="parcel_voice_channel"> |
468 | <radio_item name="Estate"> | 511 | <radio_item name="Estate"> |
@@ -503,6 +546,9 @@ Einstellungen: | |||
503 | Gruppe | 546 | Gruppe |
504 | </combo_item> | 547 | </combo_item> |
505 | </combo_box> | 548 | </combo_box> |
549 | <text label="Immer erlauben" name="AllowedText"> | ||
550 | Zulässige Einwohner | ||
551 | </text> | ||
506 | <button label="Hinzufügen..." label_selected="Hinzufügen..." name="add_allowed" /> | 552 | <button label="Hinzufügen..." label_selected="Hinzufügen..." name="add_allowed" /> |
507 | <button label="Entfernen" label_selected="Entfernen" name="remove_allowed" /> | 553 | <button label="Entfernen" label_selected="Entfernen" name="remove_allowed" /> |
508 | <check_box label="Verbannen" name="AccessCheck"> | 554 | <check_box label="Verbannen" name="AccessCheck"> |
@@ -517,6 +563,9 @@ Einstellungen: | |||
517 | tool_tip="Ermöglicht befristeten Zugang zu dieser Parzelle" /> | 563 | tool_tip="Ermöglicht befristeten Zugang zu dieser Parzelle" /> |
518 | <spinner label="Preis in L$:" name="PriceSpin" /> | 564 | <spinner label="Preis in L$:" name="PriceSpin" /> |
519 | <spinner label="Online-Zeit:" name="HoursSpin" /> | 565 | <spinner label="Online-Zeit:" name="HoursSpin" /> |
566 | <text label="Verbannen" name="BannedText"> | ||
567 | Verbannte Einwohner | ||
568 | </text> | ||
520 | <name_list name="BannedList" tool_tip="([LISTED] angezeigt, max. [MAX])" /> | 569 | <name_list name="BannedList" tool_tip="([LISTED] angezeigt, max. [MAX])" /> |
521 | <button label="Hinzufügen..." label_selected="Hinzufügen..." name="add_banned" /> | 570 | <button label="Hinzufügen..." label_selected="Hinzufügen..." name="add_banned" /> |
522 | <button label="Entfernen" label_selected="Entfernen" name="remove_banned" /> | 571 | <button label="Entfernen" label_selected="Entfernen" name="remove_banned" /> |
diff --git a/linden/indra/newview/skins/xui/de/floater_buy_object.xml b/linden/indra/newview/skins/xui/de/floater_buy_object.xml index 96717b5..910df26 100644 --- a/linden/indra/newview/skins/xui/de/floater_buy_object.xml +++ b/linden/indra/newview/skins/xui/de/floater_buy_object.xml | |||
@@ -9,8 +9,11 @@ | |||
9 | <button label="Abbrechen" label_selected="Abbrechen" name="cancel_btn" /> | 9 | <button label="Abbrechen" label_selected="Abbrechen" name="cancel_btn" /> |
10 | <button label="Kaufen" label_selected="Kaufen" name="buy_btn" /> | 10 | <button label="Kaufen" label_selected="Kaufen" name="buy_btn" /> |
11 | <text name="title_buy_text"> | 11 | <text name="title_buy_text"> |
12 | [NAME] kaufen | 12 | Kaufen |
13 | </text> | 13 | </text> |
14 | <string name="title_buy_copy_text"> | ||
15 | Kopie kaufen von | ||
16 | </string> | ||
14 | <text name="no_copy_text"> | 17 | <text name="no_copy_text"> |
15 | (kein Kopieren) | 18 | (kein Kopieren) |
16 | </text> | 19 | </text> |
diff --git a/linden/indra/newview/skins/xui/de/floater_day_cycle_options.xml b/linden/indra/newview/skins/xui/de/floater_day_cycle_options.xml new file mode 100644 index 0000000..78f6d87 --- /dev/null +++ b/linden/indra/newview/skins/xui/de/floater_day_cycle_options.xml | |||
@@ -0,0 +1,96 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | ||
2 | <floater name="Day Cycle Floater" title="Tageszyklus-Editor"> | ||
3 | <tab_container name="Day Cycle Tabs"> | ||
4 | <panel label="Tageszyklus" name="Day Cycle"> | ||
5 | <button label=" ?" name="WLDayCycleHelp" /> | ||
6 | <text name="WL12am"> | ||
7 | 24:00 | ||
8 | </text> | ||
9 | <text name="WL3am"> | ||
10 | 03:00 | ||
11 | </text> | ||
12 | <text name="WL6am"> | ||
13 | 06:00 | ||
14 | </text> | ||
15 | <text name="WL9amHash"> | ||
16 | 09:00 | ||
17 | </text> | ||
18 | <text name="WL12pmHash"> | ||
19 | 12:00 | ||
20 | </text> | ||
21 | <text name="WL3pm"> | ||
22 | 15:00 | ||
23 | </text> | ||
24 | <text name="WL6pm"> | ||
25 | 18:00 | ||
26 | </text> | ||
27 | <text name="WL9pm"> | ||
28 | 21:00 | ||
29 | </text> | ||
30 | <text name="WL12am2"> | ||
31 | 24:00 | ||
32 | </text> | ||
33 | <text name="WL12amHash"> | ||
34 | | | ||
35 | </text> | ||
36 | <text name="WL3amHash"> | ||
37 | I | ||
38 | </text> | ||
39 | <text name="WL6amHash"> | ||
40 | | | ||
41 | </text> | ||
42 | <text name="WL9amHash2"> | ||
43 | I | ||
44 | </text> | ||
45 | <text name="WL12pmHash2"> | ||
46 | | | ||
47 | </text> | ||
48 | <text name="WL3pmHash"> | ||
49 | I | ||
50 | </text> | ||
51 | <text name="WL6pmHash"> | ||
52 | | | ||
53 | </text> | ||
54 | <text name="WL9pmHash"> | ||
55 | I | ||
56 | </text> | ||
57 | <text name="WL12amHash2"> | ||
58 | | | ||
59 | </text> | ||
60 | <button label="Key hinzu" label_selected="Key hinzu" name="WLAddKey" /> | ||
61 | <button label="Key löschen" label_selected="Key löschen" name="WLDeleteKey" /> | ||
62 | <text name="WLCurKeyFrameText"> | ||
63 | Keyframe-Einstellungen: | ||
64 | </text> | ||
65 | <text name="WLCurKeyTimeText"> | ||
66 | Key-Zeit: | ||
67 | </text> | ||
68 | <spinner label="Std." name="WLCurKeyHour" /> | ||
69 | <spinner label="Min." name="WLCurKeyMin" /> | ||
70 | <text name="WLCurKeyTimeText2"> | ||
71 | Key-Voreinstellung: | ||
72 | </text> | ||
73 | <combo_box label="Voreinstellung" name="WLKeyPresets" /> | ||
74 | <text name="DayCycleText"> | ||
75 | Einrasten: | ||
76 | </text> | ||
77 | <combo_box label="5 min" name="WLSnapOptions" /> | ||
78 | <text name="DayCycleText2"> | ||
79 | Zykluslänge: | ||
80 | </text> | ||
81 | <spinner label="Std." name="WLLengthOfDayHour" /> | ||
82 | <spinner label="Min." name="WLLengthOfDayMin" /> | ||
83 | <spinner label="Sek." name="WLLengthOfDaySec" /> | ||
84 | <text name="DayCycleText3"> | ||
85 | Vorschau: | ||
86 | </text> | ||
87 | <button label="Start" label_selected="Start" name="WLAnimSky" /> | ||
88 | <button label="Stopp" label_selected="Stopp" name="WLStopAnimSky" /> | ||
89 | <button label="Grundstückszeit verw." label_selected="Zur Grundstückszeit" | ||
90 | name="WLUseLindenTime" /> | ||
91 | <button label="Testtag speichern" label_selected="Testtag speichern" | ||
92 | name="WLSaveDayCycle" /> | ||
93 | <button label="Testtag laden" label_selected="Testtag laden" name="WLLoadDayCycle" /> | ||
94 | </panel> | ||
95 | </tab_container> | ||
96 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/de/floater_env_settings.xml b/linden/indra/newview/skins/xui/de/floater_env_settings.xml new file mode 100644 index 0000000..2848e92 --- /dev/null +++ b/linden/indra/newview/skins/xui/de/floater_env_settings.xml | |||
@@ -0,0 +1,23 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | ||
2 | <floater name="Environment Editor Floater" title="Umwelt-Editor"> | ||
3 | <text name="EnvTimeText"> | ||
4 | Tageszeit | ||
5 | </text> | ||
6 | <text name="EnvTimeText2"> | ||
7 | 12:00 | ||
8 | </text> | ||
9 | <text name="EnvCloudText"> | ||
10 | Wolkendecke | ||
11 | </text> | ||
12 | <text name="EnvWaterColorText"> | ||
13 | Wasserfarbe | ||
14 | </text> | ||
15 | <color_swatch name="EnvWaterColor" tool_tip="Klicken Sie hier, um die Farbauswahl zu öffnen" /> | ||
16 | <text name="EnvWaterFogText"> | ||
17 | Wassertrübung | ||
18 | </text> | ||
19 | <button label="Grundstückszeit verw." name="EnvUseEstateTimeButton" /> | ||
20 | <button label="Himmel (erweitert)" name="EnvAdvancedSkyButton" /> | ||
21 | <button label="Wasser (erweitert)" name="EnvAdvancedWaterButton" /> | ||
22 | <button label=" ?" name="EnvSettingsHelpButton" /> | ||
23 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/de/floater_hardware_settings.xml b/linden/indra/newview/skins/xui/de/floater_hardware_settings.xml new file mode 100644 index 0000000..dd645ea --- /dev/null +++ b/linden/indra/newview/skins/xui/de/floater_hardware_settings.xml | |||
@@ -0,0 +1,20 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | ||
2 | <floater name="Hardware Settings Floater" title="Hardware-Einstellungen"> | ||
3 | <text name="Filtering:"> | ||
4 | Filtern: | ||
5 | </text> | ||
6 | <check_box label="Anisotropische Filterung (langsamer, wenn aktiviert)" name="ani" /> | ||
7 | <spinner label="Gamma:" name="gamma" /> | ||
8 | <text name="(brightness, lower is brighter)"> | ||
9 | (Helligkeit, niedriger ist heller, 0=Standard) | ||
10 | </text> | ||
11 | <text name="Enable VBO:"> | ||
12 | VBO aktivieren: | ||
13 | </text> | ||
14 | <check_box label="OpenGL Vertex-Buffer-Objekte aktivieren" name="vbo" | ||
15 | tool_tip="Wenn Sie über moderne Grafikhardware verfügen, können Sie durch Aktivieren dieser Option die Geschwindigkeit verbessern. Bei alter Hardware sind die VBO oft schlecht implementiert, was zu Abstürzen führen kann, wenn diese Option aktiviert ist." /> | ||
16 | <slider label="Texturspeicher (MB):" name="GrapicsCardTextureMemory" | ||
17 | tool_tip="Speicherplatz, der für Texturen zur Verfügung steht. In der Regel handelt es sich um Grafikkartenspeicher. Ein kleinerer Wert kann die Geschwindigkeit erhöhen, aber auch zu Texturunschärfen führen." /> | ||
18 | <spinner label="Nebeldistanzverhältnis:" name="fog" /> | ||
19 | <button label="OK" label_selected="OK" name="OK" /> | ||
20 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/de/floater_instant_message.xml b/linden/indra/newview/skins/xui/de/floater_instant_message.xml index 84e8206..094588c 100644 --- a/linden/indra/newview/skins/xui/de/floater_instant_message.xml +++ b/linden/indra/newview/skins/xui/de/floater_instant_message.xml | |||
@@ -15,8 +15,11 @@ | |||
15 | <string name="voice_icon"> | 15 | <string name="voice_icon"> |
16 | icn_voice-pvtfocus.tga | 16 | icn_voice-pvtfocus.tga |
17 | </string> | 17 | </string> |
18 | <string name="default_text_label"> | ||
19 | Für Instant Message hier klicken. | ||
20 | </string> | ||
18 | <button label="Profil..." name="profile_callee_btn" /> | 21 | <button label="Profil..." name="profile_callee_btn" /> |
19 | <button label="Anrufen" name="start_call_btn" halign="" pad_right="7" /> | 22 | <button halign="" label="Anrufen" name="start_call_btn" pad_right="7" /> |
20 | <button label="Anruf beenden" name="end_call_btn" /> | 23 | <button label="Anruf beenden" name="end_call_btn" /> |
21 | <panel name="speaker_controls"> | 24 | <panel name="speaker_controls"> |
22 | <check_box label="Voice-Chat stummschalten" name="mute_btn" tool_tip="Voice stummschalten" /> | 25 | <check_box label="Voice-Chat stummschalten" name="mute_btn" tool_tip="Voice stummschalten" /> |
diff --git a/linden/indra/newview/skins/xui/de/floater_instant_message_ad_hoc.xml b/linden/indra/newview/skins/xui/de/floater_instant_message_ad_hoc.xml index 8dc0fdd..02ed913 100644 --- a/linden/indra/newview/skins/xui/de/floater_instant_message_ad_hoc.xml +++ b/linden/indra/newview/skins/xui/de/floater_instant_message_ad_hoc.xml | |||
@@ -37,6 +37,9 @@ | |||
37 | <string name="voice_icon"> | 37 | <string name="voice_icon"> |
38 | icn_voice-groupfocus.tga | 38 | icn_voice-groupfocus.tga |
39 | </string> | 39 | </string> |
40 | <string name="default_text_label"> | ||
41 | Für Instant Message hier klicken. | ||
42 | </string> | ||
40 | <text name="live_help_dialog"> | 43 | <text name="live_help_dialog"> |
41 | *** Willkommen bei Help Request *** | 44 | *** Willkommen bei Help Request *** |
42 | Bitte werfen Sie zuerst einen Blick auf unsere SL-Hilfeseiten. Drücken Sie dazu F1. Oder rufen Sie unter http://secondlife.com/knowledgebase/ die Knowledge Base auf. | 45 | Bitte werfen Sie zuerst einen Blick auf unsere SL-Hilfeseiten. Drücken Sie dazu F1. Oder rufen Sie unter http://secondlife.com/knowledgebase/ die Knowledge Base auf. |
diff --git a/linden/indra/newview/skins/xui/de/floater_live_lsleditor.xml b/linden/indra/newview/skins/xui/de/floater_live_lsleditor.xml index 4d0fa18..7b656f5 100644 --- a/linden/indra/newview/skins/xui/de/floater_live_lsleditor.xml +++ b/linden/indra/newview/skins/xui/de/floater_live_lsleditor.xml | |||
@@ -5,4 +5,7 @@ | |||
5 | <text name="not_allowed"> | 5 | <text name="not_allowed"> |
6 | Sie können dieses Skript nicht anzeigen. | 6 | Sie können dieses Skript nicht anzeigen. |
7 | </text> | 7 | </text> |
8 | <string name="script_running"> | ||
9 | Läuft | ||
10 | </string> | ||
8 | </floater> | 11 | </floater> |
diff --git a/linden/indra/newview/skins/xui/de/floater_media_browser.xml b/linden/indra/newview/skins/xui/de/floater_media_browser.xml new file mode 100644 index 0000000..5dda873 --- /dev/null +++ b/linden/indra/newview/skins/xui/de/floater_media_browser.xml | |||
@@ -0,0 +1,19 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | ||
2 | <floater name="floater_about" title="Medienbrowser"> | ||
3 | <layout_stack name="stack1"> | ||
4 | <layout_panel name="nav_controls"> | ||
5 | <button label="Zurück" name="back" /> | ||
6 | <button label="Weiter" name="forward" /> | ||
7 | <button label="Neu laden" name="reload" /> | ||
8 | <button label="Los" name="go" /> | ||
9 | </layout_panel> | ||
10 | <layout_panel name="parcel_owner_controls"> | ||
11 | <button label="Aktuelle URL an Parzelle senden" name="assign" /> | ||
12 | </layout_panel> | ||
13 | <layout_panel name="external_controls"> | ||
14 | <button label="In meinem Browser öffnen" name="open_browser" /> | ||
15 | <check_box label="Immer in meinem Browser öffnen" name="open_always" /> | ||
16 | <button label="Schließen" name="close" /> | ||
17 | </layout_panel> | ||
18 | </layout_stack> | ||
19 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/de/floater_post_process.xml b/linden/indra/newview/skins/xui/de/floater_post_process.xml new file mode 100644 index 0000000..f2abb9c --- /dev/null +++ b/linden/indra/newview/skins/xui/de/floater_post_process.xml | |||
@@ -0,0 +1,53 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | ||
2 | <floater name="Post-Process Floater" title="Post-Processing-Einstellungen"> | ||
3 | <tab_container name="Post-Process Tabs"> | ||
4 | <panel label="Farbfilter" name="wmiColorFilterPanel"> | ||
5 | <check_box label="Ein" name="wmiColorFilterToggle" /> | ||
6 | <text name="wmiColorFilterBrightnessText"> | ||
7 | Helligkeit | ||
8 | </text> | ||
9 | <text name="wmiColorFilterSaturationText"> | ||
10 | Sättigung | ||
11 | </text> | ||
12 | <text name="wmiColorFilterContrastText"> | ||
13 | Kontrast | ||
14 | </text> | ||
15 | <text name="wmiColorFilterBaseText"> | ||
16 | Kontrast-Grundfarbe | ||
17 | </text> | ||
18 | <slider label="R" name="wmiColorFilterBaseR" /> | ||
19 | <slider label="G" name="wmiColorFilterBaseG" /> | ||
20 | <slider label="B" name="wmiColorFilterBaseB" /> | ||
21 | <slider label="I" name="wmiColorFilterBaseI" /> | ||
22 | </panel> | ||
23 | <panel label="Nachtsicht" name="wmiNightVisionPanel"> | ||
24 | <check_box label="Ein" name="wmiNightVisionToggle" /> | ||
25 | <text name="wmiNightVisionBrightMultText"> | ||
26 | Lichtverstärkungsmultiplikator | ||
27 | </text> | ||
28 | <text name="wmiNightVisionNoiseSizeText"> | ||
29 | Rauschen-Größe | ||
30 | </text> | ||
31 | <text name="wmiNightVisionNoiseStrengthText"> | ||
32 | Rauschen-Stärke | ||
33 | </text> | ||
34 | </panel> | ||
35 | <panel label="Bloom" name="wmiBloomPanel"> | ||
36 | <check_box label="Ein" name="wmiBloomToggle" /> | ||
37 | <text name="wmiBloomExtractText"> | ||
38 | Luminanz-Extraktion | ||
39 | </text> | ||
40 | <text name="wmiBloomSizeText"> | ||
41 | Bloom-Größe | ||
42 | </text> | ||
43 | <text name="wmiBloomStrengthText"> | ||
44 | Bloom-Stärke | ||
45 | </text> | ||
46 | </panel> | ||
47 | <panel label="Extras" name="Extras"> | ||
48 | <button label="Effekt laden" label_selected="Effekt laden" name="PPLoadEffect" /> | ||
49 | <button label="Effekt speichern" label_selected="Effekt speichern" name="PPSaveEffect" /> | ||
50 | <line_editor label="Effektname" name="PPEffectNameEditor" /> | ||
51 | </panel> | ||
52 | </tab_container> | ||
53 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/de/floater_snapshot.xml b/linden/indra/newview/skins/xui/de/floater_snapshot.xml index c649e08..70d09ec 100644 --- a/linden/indra/newview/skins/xui/de/floater_snapshot.xml +++ b/linden/indra/newview/skins/xui/de/floater_snapshot.xml | |||
@@ -14,6 +14,8 @@ | |||
14 | Foto auf Festplatte speichern | 14 | Foto auf Festplatte speichern |
15 | </radio_item> | 15 | </radio_item> |
16 | </radio_group> | 16 | </radio_group> |
17 | <button label="Mehr >>" name="more_btn" tool_tip="Erweiterte Optionen" /> | ||
18 | <button label="<< Weniger" name="less_btn" tool_tip="Erweiterte Optionen" /> | ||
17 | <text name="type_label2"> | 19 | <text name="type_label2"> |
18 | Welche Bildgröße benötigen Sie? | 20 | Welche Bildgröße benötigen Sie? |
19 | </text> | 21 | </text> |
@@ -95,19 +97,19 @@ | |||
95 | </combo_item> | 97 | </combo_item> |
96 | </combo_box> | 98 | </combo_box> |
97 | <text name="file_size_label"> | 99 | <text name="file_size_label"> |
98 | Dateigröße: [SIZE] Byte | 100 | Dateigröße: [SIZE] KB |
99 | </text> | 101 | </text> |
100 | <check_box label="Interface auf Foto anzeigen" name="ui_check" /> | 102 | <check_box label="Interface auf Foto anzeigen" name="ui_check" /> |
101 | <check_box label="HUD-Objekte auf Foto anzeigen" name="hud_check" /> | 103 | <check_box label="HUD-Objekte auf Foto anzeigen" name="hud_check" /> |
102 | <check_box label="Nach dem Speichern offen lassen" name="keep_open_check" /> | 104 | <check_box label="Nach dem Speichern offen lassen" name="keep_open_check" /> |
103 | <check_box label="Aspektverhältnis beibehalten" name="keep_aspect_check" /> | 105 | <check_box label="Seitenverhältnis beibehalten" name="keep_aspect_check" /> |
104 | <check_box label="Frame einfrieren (Vollbildvorschau)" name="freeze_frame_check" /> | 106 | <check_box label="Frame einfrieren (Vollbildvorschau)" name="freeze_frame_check" /> |
105 | <button label="Neues Foto" name="new_snapshot_btn" /> | 107 | <button label="Foto aktualisieren" name="new_snapshot_btn" /> |
106 | <check_box label="Automatisches Foto" name="auto_snapshot_check" /> | 108 | <check_box label="Automatisches Foto" name="auto_snapshot_check" /> |
107 | <button label="Hochladen (10 L$)" name="upload_btn" /> | 109 | <button label="Hochladen (10 L$)" name="upload_btn" /> |
108 | <button label="Senden" name="send_btn" /> | 110 | <button label="Senden" name="send_btn" /> |
109 | <button label="Speichern" name="save_btn" /> | 111 | <button label="Speichern" name="save_btn" /> |
110 | <button label="Verwerfen" name="discard_btn" /> | 112 | <button label="Abbrechen" name="discard_btn" /> |
111 | <text name="unknown"> | 113 | <text name="unknown"> |
112 | unbekannt | 114 | unbekannt |
113 | </text> | 115 | </text> |
diff --git a/linden/indra/newview/skins/xui/de/floater_test.xml b/linden/indra/newview/skins/xui/de/floater_test.xml index 8258dbc..923c396 100644 --- a/linden/indra/newview/skins/xui/de/floater_test.xml +++ b/linden/indra/newview/skins/xui/de/floater_test.xml | |||
@@ -1,15 +1,2 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <floater name="avatarpicker" title="Einwohner auswählen"> | 2 | <floater name="Test" title="Test" /> |
3 | <text name="Type part of the resident's name:"> | ||
4 | Geben Sie einen Teil des Namens des Einwohners ein: | ||
5 | </text> | ||
6 | <button label="Suchen" label_selected="Suchen" name="Find" /> | ||
7 | <text name="Or select their calling card:"> | ||
8 | Oder wählen Sie eine Visitenkarte: | ||
9 | </text> | ||
10 | <button label="Auswählen" label_selected="Auswählen" name="Select" /> | ||
11 | <button label="Schließen" label_selected="Schließen" name="Close" /> | ||
12 | <text name="NotFound"> | ||
13 | ' | ||
14 | </text> | ||
15 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/de/floater_tools.xml b/linden/indra/newview/skins/xui/de/floater_tools.xml index f5f16af..e428e21 100644 --- a/linden/indra/newview/skins/xui/de/floater_tools.xml +++ b/linden/indra/newview/skins/xui/de/floater_tools.xml | |||
@@ -178,6 +178,12 @@ | |||
178 | <combo_item name="Open"> | 178 | <combo_item name="Open"> |
179 | Öffnen | 179 | Öffnen |
180 | </combo_item> | 180 | </combo_item> |
181 | <combo_item name="Play"> | ||
182 | Parzellenmedien wiedergeben | ||
183 | </combo_item> | ||
184 | <combo_item name="Opemmedia"> | ||
185 | Parzellenmedien öffnen | ||
186 | </combo_item> | ||
181 | </combo_box> | 187 | </combo_box> |
182 | <text name="B:"> | 188 | <text name="B:"> |
183 | B: | 189 | B: |
@@ -425,6 +431,9 @@ | |||
425 | <text name="color trans"> | 431 | <text name="color trans"> |
426 | Transparenz % | 432 | Transparenz % |
427 | </text> | 433 | </text> |
434 | <text name="glow label"> | ||
435 | Leuchten | ||
436 | </text> | ||
428 | <check_box label="Ganz hell" name="checkbox fullbright" /> | 437 | <check_box label="Ganz hell" name="checkbox fullbright" /> |
429 | <text name="tex gen"> | 438 | <text name="tex gen"> |
430 | Zuordnung | 439 | Zuordnung |
diff --git a/linden/indra/newview/skins/xui/de/floater_url_entry.xml b/linden/indra/newview/skins/xui/de/floater_url_entry.xml new file mode 100644 index 0000000..370b4f0 --- /dev/null +++ b/linden/indra/newview/skins/xui/de/floater_url_entry.xml | |||
@@ -0,0 +1,13 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | ||
2 | <floater name="url_entry"> | ||
3 | <text name="media_label"> | ||
4 | Medien-URL: | ||
5 | </text> | ||
6 | <button label="OK" name="ok_btn" /> | ||
7 | <button label="Abbrechen" name="cancel_btn" /> | ||
8 | <button label="Abbrechen" name="cancel_btn2" /> | ||
9 | <button label="Löschen" name="clear_btn" /> | ||
10 | <text name="loading_label"> | ||
11 | Wird geladen... | ||
12 | </text> | ||
13 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/de/floater_water.xml b/linden/indra/newview/skins/xui/de/floater_water.xml new file mode 100644 index 0000000..2fd8247 --- /dev/null +++ b/linden/indra/newview/skins/xui/de/floater_water.xml | |||
@@ -0,0 +1,88 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | ||
2 | <floater name="Water Floater" title="Erweiterter Wasser-Editor"> | ||
3 | <text name="KeyFramePresetsText"> | ||
4 | Voreinstellungen: | ||
5 | </text> | ||
6 | <button label="Neu" label_selected="Neu" name="WaterNewPreset" /> | ||
7 | <button label="Speichern" label_selected="Speichern" name="WaterSavePreset" /> | ||
8 | <button label="Löschen" label_selected="Löschen" name="WaterDeletePreset" /> | ||
9 | <tab_container name="Water Tabs"> | ||
10 | <panel label="Einstellungen" name="Settings"> | ||
11 | <text name="BHText"> | ||
12 | Wassertrübungsfarbe | ||
13 | </text> | ||
14 | <button label=" ?" name="WaterFogColorHelp" /> | ||
15 | <color_swatch name="WaterFogColor" tool_tip="Klicken Sie hier, um die Farbauswahl zu öffnen" /> | ||
16 | <text name="WaterFogDensText"> | ||
17 | Wassertrübungsdichte-Exponent | ||
18 | </text> | ||
19 | <button label=" ?" name="WaterFogDensityHelp" /> | ||
20 | <text name="WaterUnderWaterFogModText"> | ||
21 | Wassertrübungs-Modifikator | ||
22 | </text> | ||
23 | <button label=" ?" name="WaterUnderWaterFogModHelp" /> | ||
24 | <text name="BDensText"> | ||
25 | Reflexionswellengröße | ||
26 | </text> | ||
27 | <button label=" ?" name="WaterNormalScaleHelp" /> | ||
28 | <text name="BHText2"> | ||
29 | 1 | ||
30 | </text> | ||
31 | <text name="BHText3"> | ||
32 | 2 | ||
33 | </text> | ||
34 | <text name="BHText4"> | ||
35 | 3 | ||
36 | </text> | ||
37 | <text name="HDText"> | ||
38 | Fresnel-Skalierung | ||
39 | </text> | ||
40 | <button label=" ?" name="WaterFresnelScaleHelp" /> | ||
41 | <text name="FresnelOffsetText"> | ||
42 | Fresnel-Versatz | ||
43 | </text> | ||
44 | <button label=" ?" name="WaterFresnelOffsetHelp" /> | ||
45 | <text name="DensMultText"> | ||
46 | Brechungsstärke oben | ||
47 | </text> | ||
48 | <button label=" ?" name="WaterScaleAboveHelp" /> | ||
49 | <text name="WaterScaleBelowText"> | ||
50 | Brechungsstärke unten | ||
51 | </text> | ||
52 | <button label=" ?" name="WaterScaleBelowHelp" /> | ||
53 | <text name="MaxAltText"> | ||
54 | Mischungsmultiplikator | ||
55 | </text> | ||
56 | <button label=" ?" name="WaterBlurMultiplierHelp" /> | ||
57 | </panel> | ||
58 | <panel label="Bild" name="Waves"> | ||
59 | <text name="BHText"> | ||
60 | Richtung große Welle | ||
61 | </text> | ||
62 | <button label=" ?" name="WaterWave1Help" /> | ||
63 | <text name="WaterWave1DirXText"> | ||
64 | X | ||
65 | </text> | ||
66 | <text name="WaterWave1DirYText"> | ||
67 | Y | ||
68 | </text> | ||
69 | <text name="BHText2"> | ||
70 | Richtung kleine Welle | ||
71 | </text> | ||
72 | <button label=" ?" name="WaterWave2Help" /> | ||
73 | <text name="WaterWave2DirXText"> | ||
74 | X | ||
75 | </text> | ||
76 | <text name="WaterWave2DirYText"> | ||
77 | Y | ||
78 | </text> | ||
79 | <text name="BHText3"> | ||
80 | Normal-Map | ||
81 | </text> | ||
82 | <button label=" ?" name="WaterNormalMapHelp" /> | ||
83 | </panel> | ||
84 | </tab_container> | ||
85 | <string name="WLDefaultWaterNames"> | ||
86 | Default:Glassy:Pond:Murky:Second Plague:SNAKE!!!:Valdez | ||
87 | </string> | ||
88 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/de/floater_windlight_options.xml b/linden/indra/newview/skins/xui/de/floater_windlight_options.xml new file mode 100644 index 0000000..b875126 --- /dev/null +++ b/linden/indra/newview/skins/xui/de/floater_windlight_options.xml | |||
@@ -0,0 +1,190 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | ||
2 | <floater name="WindLight floater" title="Erweiterter Himmel-Editor"> | ||
3 | <text name="KeyFramePresetsText"> | ||
4 | Voreinstellungen: | ||
5 | </text> | ||
6 | <button label="Neu" label_selected="Neu" name="WLNewPreset" /> | ||
7 | <button label="Speichern" label_selected="Speichern" name="WLSavePreset" /> | ||
8 | <button label="Löschen" label_selected="Löschen" name="WLDeletePreset" /> | ||
9 | <button label="Tageszyklus-Editor" label_selected="Tageszyklus-Editor" | ||
10 | name="WLDayCycleMenuButton" /> | ||
11 | <tab_container name="WindLight Tabs"> | ||
12 | <panel label="Atmosphäre" name="Atmosphere"> | ||
13 | <text name="BHText"> | ||
14 | Horizontfarbe | ||
15 | </text> | ||
16 | <button label=" ?" name="WLBlueHorizonHelp" /> | ||
17 | <text name="BHText2"> | ||
18 | R | ||
19 | </text> | ||
20 | <text name="BHText3"> | ||
21 | G | ||
22 | </text> | ||
23 | <text name="BHText4"> | ||
24 | B | ||
25 | </text> | ||
26 | <text name="BHText5"> | ||
27 | I | ||
28 | </text> | ||
29 | <text name="BDensText"> | ||
30 | Horizonttrübung | ||
31 | </text> | ||
32 | <button label=" ?" name="WLHazeHorizonHelp" /> | ||
33 | <text name="BDensText2"> | ||
34 | Farbintensität | ||
35 | </text> | ||
36 | <button label=" ?" name="WLBlueDensityHelp" /> | ||
37 | <text name="BHText6"> | ||
38 | R | ||
39 | </text> | ||
40 | <text name="BHText7"> | ||
41 | G | ||
42 | </text> | ||
43 | <text name="BHText8"> | ||
44 | B | ||
45 | </text> | ||
46 | <text name="BHText9"> | ||
47 | I | ||
48 | </text> | ||
49 | <text name="HDText"> | ||
50 | Trübungsintensität | ||
51 | </text> | ||
52 | <button label=" ?" name="WLHazeDensityHelp" /> | ||
53 | <text name="DensMultText"> | ||
54 | Dichtemultiplikator | ||
55 | </text> | ||
56 | <button label=" ?" name="WLDensityMultHelp" /> | ||
57 | <text name="WLDistanceMultText"> | ||
58 | Entfernungsmultiplikator | ||
59 | </text> | ||
60 | <button label=" ?" name="WLDistanceMultHelp" /> | ||
61 | <text name="MaxAltText"> | ||
62 | Max. Höhe | ||
63 | </text> | ||
64 | <button label=" ?" name="WLMaxAltitudeHelp" /> | ||
65 | </panel> | ||
66 | <panel label="Licht" name="Lighting"> | ||
67 | <text name="SLCText"> | ||
68 | Sonne/Mond-Farbe | ||
69 | </text> | ||
70 | <button label=" ?" name="WLSunlightColorHelp" /> | ||
71 | <text name="BHText"> | ||
72 | R | ||
73 | </text> | ||
74 | <text name="BHText2"> | ||
75 | G | ||
76 | </text> | ||
77 | <text name="BHText3"> | ||
78 | B | ||
79 | </text> | ||
80 | <text name="BHText4"> | ||
81 | I | ||
82 | </text> | ||
83 | <text name="TODText"> | ||
84 | Sonne/Mond-Stand | ||
85 | </text> | ||
86 | <button label=" ?" name="WLTimeOfDayHelp" /> | ||
87 | <text name="WLAmbientText"> | ||
88 | Umgebung | ||
89 | </text> | ||
90 | <button label=" ?" name="WLAmbientHelp" /> | ||
91 | <text name="BHText5"> | ||
92 | R | ||
93 | </text> | ||
94 | <text name="BHText6"> | ||
95 | G | ||
96 | </text> | ||
97 | <text name="BHText7"> | ||
98 | B | ||
99 | </text> | ||
100 | <text name="BHText8"> | ||
101 | I | ||
102 | </text> | ||
103 | <text name="WLEastAngleText"> | ||
104 | Ostausrichtung | ||
105 | </text> | ||
106 | <button label=" ?" name="WLEastAngleHelp" /> | ||
107 | <text name="SunGlowText"> | ||
108 | Sonnenleuchtkraft | ||
109 | </text> | ||
110 | <button label=" ?" name="WLSunGlowHelp" /> | ||
111 | <slider label="Fokus " name="WLGlowB" /> | ||
112 | <slider label="Größe " name="WLGlowR" /> | ||
113 | <text name="SceneGammaText"> | ||
114 | Gamma in Szene | ||
115 | </text> | ||
116 | <button label=" ?" name="WLSceneGammaHelp" /> | ||
117 | <text name="WLStarText"> | ||
118 | Sternenleuchtkraft | ||
119 | </text> | ||
120 | <button label=" ?" name="WLStarBrightnessHelp" /> | ||
121 | </panel> | ||
122 | <panel label="Wolken" name="Clouds"> | ||
123 | <text name="WLCloudColorText"> | ||
124 | Wolkenfarbe | ||
125 | </text> | ||
126 | <button label=" ?" name="WLCloudColorHelp" /> | ||
127 | <text name="BHText"> | ||
128 | R | ||
129 | </text> | ||
130 | <text name="BHText2"> | ||
131 | G | ||
132 | </text> | ||
133 | <text name="BHText3"> | ||
134 | B | ||
135 | </text> | ||
136 | <text name="BHText4"> | ||
137 | I | ||
138 | </text> | ||
139 | <text name="WLCloudColorText2"> | ||
140 | Wolken-XY/Dichte | ||
141 | </text> | ||
142 | <button label=" ?" name="WLCloudDensityHelp" /> | ||
143 | <text name="BHText5"> | ||
144 | X | ||
145 | </text> | ||
146 | <text name="BHText6"> | ||
147 | Y | ||
148 | </text> | ||
149 | <text name="BHText7"> | ||
150 | D | ||
151 | </text> | ||
152 | <text name="WLCloudCoverageText"> | ||
153 | Wolkendichte | ||
154 | </text> | ||
155 | <button label=" ?" name="WLCloudCoverageHelp" /> | ||
156 | <text name="WLCloudScaleText"> | ||
157 | Wolkenskalierung | ||
158 | </text> | ||
159 | <button label=" ?" name="WLCloudScaleHelp" /> | ||
160 | <text name="WLCloudDetailText"> | ||
161 | Wolkendetails (XY/Dichte) | ||
162 | </text> | ||
163 | <button label=" ?" name="WLCloudDetailHelp" /> | ||
164 | <text name="BHText8"> | ||
165 | X | ||
166 | </text> | ||
167 | <text name="BHText9"> | ||
168 | Y | ||
169 | </text> | ||
170 | <text name="BHText10"> | ||
171 | D | ||
172 | </text> | ||
173 | <text name="WLCloudScrollXText"> | ||
174 | Wolkenbewegung X | ||
175 | </text> | ||
176 | <button label=" ?" name="WLCloudScrollXHelp" /> | ||
177 | <check_box label="Fest" name="WLCloudLockX" /> | ||
178 | <text name="WLCloudScrollYText"> | ||
179 | Wolkenbewegung Y | ||
180 | </text> | ||
181 | <button label=" ?" name="WLCloudScrollYHelp" /> | ||
182 | <check_box label="Fest" name="WLCloudLockY" /> | ||
183 | <check_box label="Klassische Wolken" name="DrawClassicClouds" /> | ||
184 | <button label=" ?" name="WLClassicCloudsHelp" /> | ||
185 | </panel> | ||
186 | </tab_container> | ||
187 | <string name="WLDefaultSkyNames"> | ||
188 | A-12AM:A-12PM:A-3AM:A-3PM:A-4.30PM:A-6AM:A-6PM:A-9AM:A-9PM:Barcelona:Blizzard:Blue Midday:Coastal Afternoon:Coastal Sunset:Default:Desert Sunset:Fine Day:Fluffy Big Clouds:Foggy:Funky Funky:Funky Funky Funky:Gelatto:Ghost:Incongruent Truths:Midday 1:Midday 2:Midday 3:Midday 4:Night:Pirate:Purple:Sailor's Delight:Sheer Sensuality | ||
189 | </string> | ||
190 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/de/menu_viewer.xml b/linden/indra/newview/skins/xui/de/menu_viewer.xml index 0fce2f0..1e20642 100644 --- a/linden/indra/newview/skins/xui/de/menu_viewer.xml +++ b/linden/indra/newview/skins/xui/de/menu_viewer.xml | |||
@@ -75,8 +75,8 @@ | |||
75 | <menu_item_call label="Letzten Chatter ansehen" name="Look at Last Chatter" /> | 75 | <menu_item_call label="Letzten Chatter ansehen" name="Look at Last Chatter" /> |
76 | <menu_item_separator label="-----------" name="separator" /> | 76 | <menu_item_separator label="-----------" name="separator" /> |
77 | <menu_item_check label="Symbolleiste" name="Toolbar" /> | 77 | <menu_item_check label="Symbolleiste" name="Toolbar" /> |
78 | <menu_item_check label="Chat-Verlauf" name="Chat History" /> | 78 | <menu_item_check label="Lokaler Chat" name="Chat History" /> |
79 | <menu_item_check label="Instant Message" name="Instant Message" /> | 79 | <menu_item_check label="Unterhalten" name="Instant Message" /> |
80 | <menu_item_call label="Inventar" name="Inventory" /> | 80 | <menu_item_call label="Inventar" name="Inventory" /> |
81 | <menu_item_check label="Aktive Lautsprecher" name="Active Speakers" /> | 81 | <menu_item_check label="Aktive Lautsprecher" name="Active Speakers" /> |
82 | <menu_item_check label="Stummschalten-Liste" name="Mute List" /> | 82 | <menu_item_check label="Stummschalten-Liste" name="Mute List" /> |
@@ -109,7 +109,15 @@ | |||
109 | <menu_item_check label="Glanzlichter anzeigen" name="Render Highlights" /> | 109 | <menu_item_check label="Glanzlichter anzeigen" name="Render Highlights" /> |
110 | <menu_item_check label="Beacons anzeigen" name="Render Beacons" /> | 110 | <menu_item_check label="Beacons anzeigen" name="Render Beacons" /> |
111 | <menu_item_separator label="-----------" name="separator" /> | 111 | <menu_item_separator label="-----------" name="separator" /> |
112 | <menu_item_separator label=" -----------" name="separator2" /> | ||
112 | <menu_item_check label="Partikel ausblenden" name="Hide Particles" /> | 113 | <menu_item_check label="Partikel ausblenden" name="Hide Particles" /> |
114 | <menu_item_separator label=" -----------" name="separator3" /> | ||
115 | <menu label="Beacon-Breite" name="Beacon Width"> | ||
116 | <menu_item_call label=" 1" name="Beacon Width 1" /> | ||
117 | <menu_item_call label=" 4" name="Beacon Width 4" /> | ||
118 | <menu_item_call label=" 16" name="Beacon Width 16" /> | ||
119 | <menu_item_call label=" 32" name="Beacon Width 32" /> | ||
120 | </menu> | ||
113 | </menu> | 121 | </menu> |
114 | <menu_item_check label="HUD-Anhänge anzeigen" name="Show HUD Attachments" /> | 122 | <menu_item_check label="HUD-Anhänge anzeigen" name="Show HUD Attachments" /> |
115 | <menu_item_separator label="-----------" name="separator5" /> | 123 | <menu_item_separator label="-----------" name="separator5" /> |
@@ -151,6 +159,15 @@ | |||
151 | <menu_item_separator label="-----------" name="separator" /> | 159 | <menu_item_separator label="-----------" name="separator" /> |
152 | <menu_item_call label="Auf Regionsstandard zurücksetzen" name="Revert to Region Default" /> | 160 | <menu_item_call label="Auf Regionsstandard zurücksetzen" name="Revert to Region Default" /> |
153 | </menu> | 161 | </menu> |
162 | <menu label="Umwelt-Einstellungen" name="Environment Settings"> | ||
163 | <menu_item_call label="Sonnenaufgang" name="Sunrise" /> | ||
164 | <menu_item_call label="Mittag" name="Noon" /> | ||
165 | <menu_item_call label="Sonnenuntergang" name="Sunset" /> | ||
166 | <menu_item_call label="Mitternacht" name="Midnight" /> | ||
167 | <menu_item_call label="Auf Regionsstandard zurücksetzen" name="Revert to Region Default" /> | ||
168 | <menu_item_separator label=" -----------" name="separator" /> | ||
169 | <menu_item_call label="Umwelt-Editor" name="Environment Editor" /> | ||
170 | </menu> | ||
154 | </menu> | 171 | </menu> |
155 | <menu label="Werkzeug" name="Tools"> | 172 | <menu label="Werkzeug" name="Tools"> |
156 | <menu label="Fehlermeldungen" name="Select Tool"> | 173 | <menu label="Fehlermeldungen" name="Select Tool"> |
@@ -216,6 +233,7 @@ | |||
216 | <menu_item_call label="Sicherheitsfragen..." name="Security Issues..." /> | 233 | <menu_item_call label="Sicherheitsfragen..." name="Security Issues..." /> |
217 | <menu_item_call label="QA-Wiki..." name="QA Wiki..." /> | 234 | <menu_item_call label="QA-Wiki..." name="QA Wiki..." /> |
218 | <menu_item_separator label="-----------" name="separator7" /> | 235 | <menu_item_separator label="-----------" name="separator7" /> |
236 | <menu_item_separator label=" -----------" name="separator72" /> | ||
219 | <menu_item_call label="Fehler melden..." name="Report Bug..." /> | 237 | <menu_item_call label="Fehler melden..." name="Report Bug..." /> |
220 | </menu> | 238 | </menu> |
221 | </menu> | 239 | </menu> |
diff --git a/linden/indra/newview/skins/xui/de/need_to_long.xml b/linden/indra/newview/skins/xui/de/need_to_long.xml index 3e584c6..0fb0587 100644 --- a/linden/indra/newview/skins/xui/de/need_to_long.xml +++ b/linden/indra/newview/skins/xui/de/need_to_long.xml | |||
@@ -1,5 +1,238 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | 2 | ||
3 | <strings> | 3 | <strings> |
4 | <string><a_file>alerts.xml</a_file> | ||
5 | <b_path>//GraphicsPreferencesHelp/message</b_path> | ||
6 | <c_attribute></c_attribute> | ||
7 | <d_old></d_old> | ||
8 | <e_new> | ||
9 | This panel controls window size and resolution and the quality of the client's graphics. The graphics preferences interface allows you to choose between four graphics levels: Low, Mid, High, and Ultra. One may customize their graphics settings by checking the Custom checkbox and manipulating the following settings: | ||
4 | 10 | ||
11 | Shaders: Enable or disable various types of pixel shaders. | ||
12 | |||
13 | Reflection Detail: Sets the types of objects that water can reflect. | ||
14 | |||
15 | Avatar Rendering: Sets options that affect how the client renders avatars. | ||
16 | |||
17 | Draw Distance: Affects how far out from your viewpoint objects will be rendered in the scene. | ||
18 | |||
19 | Max Particle Count: Sets the maximum number of particles you are able to see on your screen at once. | ||
20 | |||
21 | Post Process Quality: Sets the resolution with which Glow is rendered. | ||
22 | |||
23 | Mesh Detail: Sets the amout of detail used in rendering certain objects. | ||
24 | |||
25 | Lighting Detail: Selects what types of lights you would like to render. | ||
26 | |||
27 | Terrain Detail: Sets the amount of terrain detail you would like to see. | ||
28 | |||
29 | Sky Detail: Sets the amount of tesselation of the sky dome. A higher value takes longer to render, but makes the sun look more rounded. | ||
30 | </e_new> | ||
31 | <f_translation> | ||
32 | Die Optionen in diesem Dialog steuern Fenstergröße und Auflösung sowie die Qualität der Grafikdarstellung auf dem Client. Vier grundlegende Grafikeinstellungen stehen zur Wahl: Niedrig, Mittel, Hoch und Ultra. Wenn Sie das Kontrollkästchen "Benutzerdefiniert" anklicken, können Sie folgende Grafikeinstellungen selbst vornehmen: | ||
33 | |||
34 | Shader: Aktivieren oder deaktivieren Sie die verschiedenen Pixel-Shader. | ||
35 | |||
36 | Spiegelung: Legen Sie hier fest, welche Objekte sich in Wasser spiegeln. | ||
37 | |||
38 | Avatar-Darstellung: Einige Optionen, die über die Darstellung Ihres Avatars bestimmen. | ||
39 | |||
40 | Sichtweite: Legt fest, bis zu welcher Entfernung von Ihrem Avatar die Objekte in der Szene berechnet und dargestellt werden. | ||
41 | |||
42 | Max. Partikelzahl: Legt fest, wie viele Partikel gleichzeitig berechnet und angezeigt werden. | ||
43 | |||
44 | Post-Processing-Qualität: Legt fest, mit welcher Auflösung der Glüheffekt berechnet wird. | ||
45 | |||
46 | Gitterdetails: Legt den Detailgrad bei der Berechnung bestimmter Objekte fest. | ||
47 | |||
48 | Beleuchtungsdetails: Legt fest, welche Lichtquellen berechnet werden. | ||
49 | |||
50 | Terraindetails: Legt den Detailgrad bei der Berechnung des Terrains fest. | ||
51 | |||
52 | Himmeldetails: Steuert die Gitterauflösung der Himmelskuppel. Höhere Werte führen zu einer runderen Sonnendarstellung, dauern aber länger in der Berechnung. | ||
53 | </f_translation> | ||
54 | </string><string><a_file>alerts.xml</a_file> | ||
55 | <b_path>//EnvSettingsHelpButton/message</b_path> | ||
56 | <c_attribute></c_attribute> | ||
57 | <d_old></d_old> | ||
58 | <e_new> | ||
59 | These settings adjust the way the environment looks locally on your computer. Your graphics card needs to support atmospheric shaders in order to have access to all of the settings. | ||
60 | |||
61 | Adjust the "Time of Day" slider to change the day's phase locally on the viewer. | ||
62 | |||
63 | Adjust the "Cloud Cover" slider to control how much the clouds cover the sky. | ||
64 | |||
65 | Pick a color in the "Water Color" color picker to change the color of the water. | ||
66 | |||
67 | Adjust the "Water Fog" slider to control how dense the fog is underwater. | ||
68 | |||
69 | Click "Use Estate Time" to reset the time of day to the region's current time of day and remain linked to it. | ||
70 | |||
71 | Click "Advanced Sky" to bring up an editor with more advanced settings for the sky. | ||
72 | |||
73 | Click "Advanced Water" to bring up an editor with more advanced settings for the water. | ||
74 | </e_new> | ||
75 | <f_translation> | ||
76 | Diese Einstellungen haben Auswirkung auf die lokale Darstellung der Umwelt auf Ihrem Computer. Zugriff auf alle Einstellungen haben Sie nur, wenn Ihre Grafikkarte Atmosphären-Shader unterstützt. | ||
77 | |||
78 | Mit dem Regler "Tageszeit" stellen Sie die lokal in Ihrem Viewer dargestellte Tageszeit ein. | ||
79 | |||
80 | Mit dem Regler "Wolkendecke" steuern Sie die Wolkendichte am Himmel. | ||
81 | |||
82 | Unter "Wasserfarbe" können Sie eine Farbe für die Wasserdarstellung auswählen. | ||
83 | |||
84 | Mit dem Regler "Wassertrübung" steuern Sie die Sichtweite unter Wasser. | ||
85 | |||
86 | Klicken Sie auf "Grundstückszeit verw.", um die aktuelle Zeit in der Region fest als Tageszeit einzustellen. | ||
87 | |||
88 | Klicken Sie auf "Himmel (erweitert)", um einen Editor mit erweiterten Einstellungen für die Himmeldarstellung anzuzeigen. | ||
89 | |||
90 | Klicken Sie auf "Wasser (erweitert)", um einen Editor mit erweiterten Einstellungen für die Wasserdarstellung anzuzeigen. | ||
91 | </f_translation> | ||
92 | </string><string><a_file>alerts.xml</a_file> | ||
93 | <b_path>//HelpDayCycle/message</b_path> | ||
94 | <c_attribute></c_attribute> | ||
95 | <d_old></d_old> | ||
96 | <e_new> | ||
97 | The Day Cycle Editor gives you control over the sky during Second Life's day/night cycle. This is the cycle that is used by the Basic Environment Editor's Time of Day slider. | ||
98 | |||
99 | The Day Cycle Editor works by setting keyframes. These are nodes (represented by the gray blips on the time graph) that have Sky Presets associated with them. As the Time of Day progresses, the WindLight sky "animates" as it interpolates between these keyframes. | ||
100 | |||
101 | The yellow arrow above the timeline represents your current view, based on Time of Day. Click and drag it to see how your day will animate. You may add or delete keyframes by pressing the Add Key and Delete Key buttons to the right of the timeline. | ||
102 | |||
103 | You can set the time position of a keyframe by either dragging it along the timeline, or by setting its value manually in the Key Frame Settings frame. Within the Key Frame Settings frame, you'll be able to associate the keyframe with its respective WindLight preset. | ||
104 | |||
105 | Length of Cycle dictates the overall duration of a "day". Setting this to a low value (for instance, 2 min.) will mean your entire 24-hour timeline will animate in only two real minutes! Once you are satisfied with your timeline and keyframe cycle, use the Play and Stop buttons to preview the results. Remember- you can also move the yellow time-indicator arrow above the timeline to see the cycle animate interactively. Using the Use Estate Time button will synchronize your day length and time of day with the Estate's day cycle. | ||
106 | |||
107 | Once you are pleased with your Day Cycle, you can save and load it with the Save Test Day and Load Test Day buttons. Note that, for now, we only allow one Day Cycle. | ||
108 | </e_new> | ||
109 | <f_translation> | ||
110 | Im Tageszyklus-Editor steuern Sie den Tag-/Nachtzyklus am Second Life Himmel. Dabei handelt es sich um den Zyklus, der mit dem Tageszeit-Regler im Umwelt-Basiseditor gesteuert wird. | ||
111 | |||
112 | Der Tageszyklus-Editor verwendet sogenannte Keyframes zur Steuerung des Tag-/Nachtablaufs. Dabei handelt es sich um "Schlüsselbilder" (die grauen Kreise auf der Zeitskala), für die bestimmte Himmelseinstellungen definiert wurden. Bei voranschreitender Tageszeit interpoliert WindLight den Übergang zwischen diesen Keyframes und erzeugt eine entsprechende Himmelsanimation. | ||
113 | |||
114 | Der gelbe Pfeil über der Zeitskala repräsentiert die aktuelle Tageszeit-Darstellung. Ziehen Sie den Pfeil, um die Tagesanimation anzuzeigen. Mit "Key hinzu" und "Key löschen" rechts neben der Zeitskala können Sie neue Keys einfügen und vorhandene löschen. | ||
115 | |||
116 | Keyframes lassen sich einfach entlang der Zeitskala verschieben, oder Sie geben die Werte manuell unter "Keyframe-Einstellungen" ein. Hier wählen Sie auch eine WindLight-Voreinstellung für den Keyframe aus. | ||
117 | |||
118 | "Zykluslänge" bestimmt die Gesamtlänge eines "Tages". Ein niedriger Wert (z.B. 2 Minuten) führt dazu, dass ein ganzer 24-Stunden-Tag innerhalb von zwei Minuten Echtzeit abgespult wird! Wenn Sie alle Einstellungen auf der Zeitskala und für die einzelnen Keyframes vorgenommen haben, können Sie mit "Start" und "Stopp" die Animation anzeigen. Das funktioniert natürlich genauso interaktiv, indem Sie den gelben Pfeil über der Zeitskala verschieben. Mit der Schaltfläche "Grundstückszeit verw." synchronisieren Sie die Tageszeit und -länge mit den auf dem Grundstück geltenden Einstellungen. | ||
119 | |||
120 | Ihre Tageszyklus-Einstellungen lassen sich mit den Schaltflächen "Testtag speichern" und "Testtag laden" speichern bzw. laden. Bis dato kann nur ein Tageszyklus gleichzeitig in Verwendung sein. | ||
121 | </f_translation> | ||
122 | </string><string><a_file>floater_about.xml</a_file> | ||
123 | <b_path>/floater_about/credits_editor</b_path> | ||
124 | <c_attribute></c_attribute> | ||
125 | <d_old> | ||
126 | Second Life is brought to you by Philip, Andrew, Tessa, Cory, Frank, James, Doug, Hunter, Richard, John, Eric, Avi, AaronB, AaronY, Ian, Peter, Mark, Robin, Stephen, Tracy, Ryan, Alberto, Haney, Tanya, JimJ, Dan, Ben, Stephanie, Tim, Evan, Catherine, Colin, Chris, Reuben, Charity, Jeska, James, JonHenry, Kelly, Callum, Char, Daniel, DavidF, Don, Jeff, Lauren, Lee, Michael, Ramzi, Vektor, Steve, TomY, Tess, Kona, Brent, Clarissa, PeterP, Jesse, Annette, Cyn, Blue, Ginsu, Jonathan, Karen, Adam, Nova, Deana, Lizzie, Patsy, DavidK, Isaac, Pathfinder, Monroe, Jill, Benny, Altruima, Rheya, Jennifer, Jack, DaveP, Brad, Mick, Babbage, Elisabeth, Brian, Beth, Data, Ethan, Wendy, Nicole, Sky, Jeffrey, Zero, Coffee, Tesla, Kenny, Makiko, Nigel, Teeple, Lucy, Mia, Dee, Guy, Harry, Liana, Branka, Jimbo, Aura, Vasuda, SarahD, bethanye, Torley, Runitai, MikeS, PaulM, Milo, Hermia, JoeM, Melanie, Rejean, DSmith, SMiller, Susan, Jose, DongYun, Justin, Andrey, Syrah, Donovan, Henrik, Nora, Lexie, AC, Donna, ChrisC, Alex, Leyla, Kyle, Mathew, Devin, Joshua, DanC, Jessica, Harmony, Claudia, Tramel, Glenn, Betsy, Fritz, Jun, Adam, Cassandra, Ken, RyanW, Spike, Tofu, Varas, Andy, Luke, RobLa, Chiyo, JohnZ, Dustin, George, Del, PeterP, Migyeong, Matthew, RMullane, CChampion, JTurbin, JamesC, Viola, Lightfoot, Jacqui, Sturm, Adrian, Buttercup, Alfred, Sunil, Alfred, Noel, Irfan, Jill, Yool, Jane, Yuki, Yoz, Matthew, Arthur, Jennifer, Karl, Brian, Ben, Janine, Christopher, Madhavi, Everett, Anthony, Joon, Jake, sean, Adreanne, Stephany, KellyJo, Jeremy, Pramod, Joshua, Sean, Christopher, Amy, Ceren, Katherine, jon, Sudheendra, James, Stephan, Kari, Kartic, Todd, Thomas, Joki, Rebecca, Belinda, Bert, Roger, Bridie, Kristi, Brian, Maria, John, Aric, Nathanel, Melinda, Darrell, Jennifer, Sandy, Greg, Rob, Brad, Chris, Eric, Palmer, Asi, Katja, Lisa, Minda, Jen, Aaron, Bryan, Mark, Jonathan, Jamie, Laurel, William, Matthew, Steve, David, Remy, James, Tim, Lee, Brian, Ashlei, Sam, Mike, Ethan, Austin, Wanda, Paul, Brian, Rachel, Valentyn, Emma Williams, Autum, Steven, Laley, Charles, Jessica, Sue, Gillian, CG, Kip, Kristen, Shamiran, Blake, Brett, Erica, Kent, Joel, Plexus, Twilight, Joppa and many others. | ||
127 | |||
128 | In Memory of Jesse Malthus, you will be fondly remembered by all who heard your voice. | ||
129 | |||
130 | Thank you to the following residents for helping to ensure that this is the best version yet: Aces Spade, Adrian Buckler, Adrienne LeShelle, Amanda Ascot, AnnaQuay Heart, Aquamina Khalifa, Arienne Anatine, Aston Hildyard, Ayami Kamachi, Badinage Odets, Biffy Berjis, Bigfox Pye, BigJohn Jade, BigRick Byrd, Brettus Tripsa, Brock Fitzgerald, Broker Allen, Browse by Name, Chiria Celt, Christopher Prudhomme, dale Cao, dale Lynch, Dante Tucker, DaQbet Kish, Dargon Pacer, Darius Antonelli, Deira Llanfair, DeviantBone Xi, Dore Dorado, Englishwob Etchegaray, Enya Masala, Eric Renneville, Fairfax Michinaga, FireFox Bancroft, FOXI Cortes, Frederick Earp, Geo Meek, Gotthilf Fischer, Hallo Loon, Hawk Carter, Hazel Kyrgyz, Hecter Barbosa, Hex Link, Ice Pak, Ideasu Mukerji, Itoku Kamachi, Jared Halleck, Jaykob Carter, Jennifer Drumheller, JensMartin Tomsen, JIAB Boa, Jim Gustafson, JimmyJet Fossett, Joseph Rustamova, Jt Volos, Karilyn Kidomen, Kaysha Sion, Keaton Nacon, Kevin Susenko, Khashai Steinbeck, Kira Cuddihy, Kit Massiel, Kojo Dixon, KUieTSToRm Lightcloud, Kwai Kyong, Kyrtis Daehlie, LazyGunGuy Bartlett, Lewcas Zapedzki, Lioc Cioc, LLIB Utu, Lou Liebknecht, Luca Draken, Maci Homewood, Major Sewell, Mari Todriya, MarieElize Noel, matt27 Churchill, Maverick Miasma, maydaysos Young, Mediaho Ball, Mikayla Gillespie, Mike Faulkland, Modfire Milland, MollyBrown Foxley, Mosley Jewell, Nuahs Zapedzki, Nyx Divine, Panther Farber, Paul Bumi, Preciousse Moody, PrincessNina Prefect, Prio Serpentine, Rainbow Drake, Randall Rall, Randy Kazan, Reinhart Mokeev, Rhyph Somme, Rico Roizman, Ruge Dryke, Ryan Orbit, Safira Rosher, Samantha Bainbridge, Sammy Foxley, Sash Furst, Saturn Ariantho, Sienna Summers, Skye Enoch, Sofie Kanno, Solar Legion, Sonic Oki, Sunra Saenz, Taina Heart, Taryn Sprawl, tenerife Wei, TomDragon Nilsson, Trebla Reve, Trouble Carnell, user1cat Orbit, Vance Merlin, Veritas Variscan, Web Page, Wi3g3ht3s Ihnen, WinDrftr DeFarge, Yuu Nakamichi, Zac Delec, Zed Fairweather, Zimmo Hallard. | ||
131 | |||
132 | APR Copyright (C) 2000-2004 The Apache Software Foundation | ||
133 | cURL Copyright (C) 1996-2002, Daniel Stenberg, (daniel@haxx.se) | ||
134 | expat Copyright (C) 1998, 1999, 2000 Thai Open Source Software Center Ltd. | ||
135 | FreeType Copyright (C) 1996-2002, The FreeType Project (www.freetype.org). | ||
136 | GL Copyright (C) 1999-2004 Brian Paul. | ||
137 | Havok.com(TM) Copyright (C) 1999-2001, Telekinesys Research Limited. | ||
138 | jpeg2000 Copyright (C) 2001, David Taubman, The University of New South Wales (UNSW) | ||
139 | jpeglib Copyright (C) 1991-1998, Thomas G. Lane. | ||
140 | ogg/vorbis Copyright (C) 2001, Xiphophorus | ||
141 | OpenSSL Copyright (C) 1998-2002 The OpenSSL Project. | ||
142 | SDL Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002 Sam Lantinga | ||
143 | SSLeay Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | ||
144 | xmlrpc-epi Copyright (C) 2000 Epinions, Inc. | ||
145 | zlib Copyright (C) 1995-2002 Jean-loup Gailly and Mark Adler. | ||
146 | |||
147 | All rights reserved. See licenses.txt for details. | ||
148 | |||
149 | Voice chat Audio coding: Polycom(R) Siren14(TM) (ITU-T Rec. G.722.1 Annex C) | ||
150 | |||
151 | |||
152 | Mr. Watson -- come here -- I want to see you. | ||
153 | </d_old> | ||
154 | <e_new> | ||
155 | Second Life is brought to you by Philip, Andrew, Tessa, Cory, Frank, James, Doug, Hunter, Richard, John, Eric, Avi, AaronB, AaronY, Ian, Peter, Mark, Robin, Stephen, Tracy, Ryan, Alberto, Haney, Tanya, JimJ, Dan, Ben, Stephanie, Tim, Evan, Catherine, Colin, Chris, Reuben, Charity, Jeska, James, JonHenry, Kelly, Callum, Char, Daniel, DavidF, Don, Jeff, Lauren, Lee, Michael, Ramzi, Vektor, Steve, TomY, Tess, Kona, Brent, Clarissa, PeterP, Jesse, Annette, Cyn, Blue, Ginsu, Jonathan, Karen, Adam, Nova, Deana, Lizzie, Patsy, DavidK, Isaac, Pathfinder, Monroe, Jill, Benny, Altruima, Rheya, Jennifer, Jack, DaveP, Brad, Mick, Babbage, Elisabeth, Brian, Beth, Data, Ethan, Wendy, Nicole, Sky, Jeffrey, Zero, Coffee, Tesla, Kenny, Makiko, Nigel, Teeple, Lucy, Mia, Dee, Guy, Harry, Liana, Branka, Jimbo, Aura, Vasuda, SarahD, bethanye, Torley, Runitai, MikeS, PaulM, Milo, Hermia, JoeM, Melanie, Rejean, DSmith, SMiller, Susan, Jose, DongYun, Justin, Andrey, Syrah, Donovan, Henrik, Nora, Lexie, AC, Donna, ChrisC, Alex, Leyla, Kyle, Mathew, Devin, Joshua, DanC, Jessica, Harmony, Claudia, Tramel, Glenn, Betsy, Fritz, Jun, Adam, Cassandra, Ken, RyanW, Spike, Tofu, Varas, Andy, Luke, RobLa, Chiyo, JohnZ, Dustin, George, Del, PeterP, Migyeong, Matthew, RMullane, CChampion, JTurbin, JamesC, Viola, Lightfoot, Jacqui, Sturm, Adrian, Buttercup, Alfred, Sunil, Alfred, Noel, Irfan, Jill, Yool, Jane, Yuki, Yoz, Matthew, Arthur, Jennifer, Karl, Brian, Ben, Janine, Christopher, Madhavi, Everett, Anthony, Joon, Jake, sean, Adreanne, Stephany, KellyJo, Jeremy, Pramod, Joshua, Sean, Christopher, Amy, Ceren, Katherine, jon, Sudheendra, James, Stephan, Kari, Kartic, Todd, Thomas, Joki, Rebecca, Belinda, Bert, Roger, Bridie, Kristi, Brian, Maria, John, Aric, Nathanel, Melinda, Darrell, Jennifer, Sandy, Greg, Rob, Brad, Chris, Eric, Palmer, Asi, Katja, Lisa, Minda, Jen, Aaron, Bryan, Mark, Jonathan, Jamie, Laurel, William, Matthew, Steve, David, Remy, James, Tim, Lee, Brian, Ashlei, Sam, Mike, Ethan, Austin, Wanda, Paul, Brian, Rachel, Valentyn, Emma Williams, Autum, Steven, Laley, Charles, Jessica, Sue, Gillian, CG, Kip, Kristen, Shamiran, Blake, Brett, Erica, Kent, Joel, Plexus, Twilight, Joppa, Enus, Kraft, Naveen, Simon, Q, Ronp, Laurap, Ram, KyleJM, Marty, Kend, Daveh, Prospero, Melissa, Nat, Hamilton, Green, Seraph, Ekim, Miz, Jimmy, Kosmo, Rome, Doris, JT, Benoc, Whump, Mango, Trinity, Patch, TJ, Christy, Bao, Joohwan, Kate, Oreh, Angela, Johan, Cheah, Lan, Matias, Brandy, Cogsworth, Aleks, Mitchell, Space, Einstein, Bambers, Colton, Malbers, Maggie, Umesh, Santosh, Rose, Stash, Rothman, Winnie, Stella, Niall and many others. | ||
156 | |||
157 | Thank you to the following residents for helping to ensure that this is the best version yet: aaron23 decuir, Abelv Vollmar, Abyssin Otoro, ActingIll Igaly, Adamas Carter, Addy Broome, Adelia Menges, Alexandra Rucker, Alexandrea Fride, Alissa Sabre, Alyx Jonson, Ann Otoole, Anton Fargis, Aradia Dielli, Araina jewell, Arcane Clawtooth, arcangelo vantelli, Are Sperber, Argent Stonecutter, arkady yost, Ashcroft Burnham, Ashen Arida, Auron Forcella, Azadine Umarov, Azildin Furst, Balp Allen, Balpien Hammerer, Barney Boomslang, Barrett Slade, becky pippen, Beeflin Grut, Beer Dailey, Behemoth Greenwood, bigmanu greene, bitova loon, Bonca Chikuwa, Bonnie Bechir, Brandon Catteneo, buttonpusher jones, Carina Raymaker, Ceera Murakami, Celierra Darling, ChatNoir Moonsoo, Cheetah Hammerer, chet neurocam, Cinthya Loveless, Cold Spitteler, Coral Quinnell, Crash Pointe, CrazyTB Oh, Creem Pye, Crom Chaffe, ctrl althouse, dade carver, Dael Ra, dakota schwade, Dale Innis, Damian McLeod, Danger Lytton, danielluh ashton, DanOfWA Flanagan, Davec Horsforth, Davidius Morigi, davie zinner, Day Oh, DBDigital Epsilon, Deany Fall, deBruce Munro, Decaf Coffey, Dedric Mauriac, Deeso Saeed, Dekka Raymaker, dexter eberhart, Dildo Spitz, Dizzy Banjo, djcabello klaar, Dnali Anabuki, Domchi Underwood, Doran Zemlja, Drew Dwi, Duckless Vandyke, Duncan Stenvaag, Dylan Rickenbacker, dzogchen Moody, Dzonatas Sol, Eddy Stryker, Edward Griffith, Edward Pearse, ein duesenburg, Elle Pollack, Elle74 Zaftig, Emileigh Starbrook, Emma Nowhere, ener bing, Erdrick Balbozar, eric domela, Evangeline Biedermann, Excalibur Longstaff, Fake Fitzgerald, Feldspar Millgrove, Feynt Mistral, Fluf Fredriksson, Forbid Utorid, Fortyniner Beck, Francesco Despres, Francisco Koolhoven, Franta Burt, Fury Rosewood, garde Burrel, Garmin Kawaguichi, Gavin Ichigo, Gellan Glenelg, Genie Demina, Gennifer Meredith, Gigs Taggart, Goldie Katsu, Gwyneth Llewelyn, Haravikk Mistral, Harleen Gretzky, Haruki Watanabe, Heather Manatiso, Henri Beauchamp, Honey Fairweather, Hypatia Callisto, Ice Brodie, icktoofay Kamachi, IntLibber Brautigan, Janise Dreamscape, Jay Shinobu, Jenni Ryba, Jeremy Ondricek, JetZep Zabelin, Jims Smythe, Jini Hammerer, Jopy Weber, JustOneMore Loon, Kaluura Boa, Kara Markova, Kevin Susenko, Khyra Ares, Kii Lilliehook, Kitty Barnett, Kris Kuttelwascher, Lanita Wingtips, Laura18 Streeter, Lee Ludd, Lettrius Jewell, Liberty Tesla, LilyAnna Carter, Lindal Kidd, Lisa Lowe, Lisa McConnell, Lola Machin, luca peck, Lupus Clawtooth, M1sha Dallin, Macsima Dagostino, Mana Janus, Mani Canning, Manjusri Binder, marceledward edman, march Korda, marchino villota, Marcus Llewellyn, MartinRJ Fayray, Matthew Dowd, Max Kleiber, mazzy fastback, McCabe Maxsted, Mckailen Kohnke, Meghan Dench, Melvin Starbrook, Mercia Mcmahon, Miakoda Carnell, Michelle2 Zenovka, Michi Lumin, mick parnall, Milla Michinaga, Millie Thompson, miranda Ashby, Mircea Lobo, MIssSara Beck, mouse mimistrobell, Myria Boa, Nanci Barthelmess, Nargus Asturias, Natalya Debevec, Nedrae Messmer, Nexeus Fatale, Niky Zenovka, Nimrod Szondi, Ninane Yoshikawa, Noch Tripsa, nokithecat writer, Nyko Merlin, Onyx Halberd, oryx tempel, Osprey Therian, Pac Hyun, Panagea McMillan, Patrick Ferrentino, PattehPh0x Katsu, ponk bing, Poppy Linden, Prajna Vella, Precious Rhiano, Prokofy Neva, Randall Lovenkraft, Rascal Ratelle, Raydon Writer, Rhaorth Antonelli, Rock Hayek, Ron Crimson, Ron Khondji, Ronald Richez, Rui Clary, Ruud Lathrop, Sakkano Imako, Sam Reinard, Sascha Vandyke, Scrippy Scofield, Sean18 McCarey, Sedona Mills, Sekonda Huet, Seraph Nephilim, Sergei Milos, Shadowquine Maltz, shai khalifa, sheilah flatley, Sheri Underwood, Shuggy Husky, Sierra Janus, Sigma Avro, Simil Miles, simon kline, Simon Nolan, Sindy Tsure, Sparks Keynes, Squirrel Wood, Stahi Columbia, StarSong Bright, Summer Seale, Sunn Thunders, Susan Koltai, Syler Zhora, Synack Fitzgerald, Tayra Dagostino, Tee Cramer, Teravus Ousley, Thomas Shikami, Tia Araw, Tillie Ariantho, Topher Brooks, Torley Linden, Twosteppin Jewell, tx Oh, urantia jewell, vaguegirl Petty, VeC Merlin, venus petrov, vv33d Beck, vynka dean, zann canto, zeebster colasanti, Zi Ree, Zion Tristan, Zorin Frobozz, Zyzzy Zarf | ||
158 | |||
159 | APR Copyright (C) 2000-2004 The Apache Software Foundation | ||
160 | cURL Copyright (C) 1996-2002, Daniel Stenberg, (daniel@haxx.se) | ||
161 | expat Copyright (C) 1998, 1999, 2000 Thai Open Source Software Center Ltd. | ||
162 | FreeType Copyright (C) 1996-2002, The FreeType Project (www.freetype.org). | ||
163 | GL Copyright (C) 1999-2004 Brian Paul. | ||
164 | Havok.com(TM) Copyright (C) 1999-2001, Telekinesys Research Limited. | ||
165 | jpeg2000 Copyright (C) 2001, David Taubman, The University of New South Wales (UNSW) | ||
166 | jpeglib Copyright (C) 1991-1998, Thomas G. Lane. | ||
167 | ogg/vorbis Copyright (C) 2001, Xiphophorus | ||
168 | OpenSSL Copyright (C) 1998-2002 The OpenSSL Project. | ||
169 | SDL Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002 Sam Lantinga | ||
170 | SSLeay Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | ||
171 | xmlrpc-epi Copyright (C) 2000 Epinions, Inc. | ||
172 | zlib Copyright (C) 1995-2002 Jean-loup Gailly and Mark Adler. | ||
173 | |||
174 | All rights reserved. See licenses.txt for details. | ||
175 | |||
176 | Voice chat Audio coding: Polycom(R) Siren14(TM) (ITU-T Rec. G.722.1 Annex C) | ||
177 | |||
178 | |||
179 | Happiness is a warm puppy. -- Charles M. Schulz | ||
180 | </e_new> | ||
181 | <f_translation> | ||
182 | Second Life wird Ihnen präsentiert von Philip, Andrew, Tessa, Cory, Frank, James, Doug, Hunter, Richard, John, Eric, Avi, AaronB, AaronY, Ian, Peter, Mark, Robin, Stephen, Tracy, Ryan, Alberto, Haney, Tanya, JimJ, Dan, Ben, Stephanie, Tim, Evan, Catherine, Colin, Chris, Reuben, Charity, Jeska, James, JonHenry, Kelly, Callum, Char, Daniel, DavidF, Don, Jeff, Lauren, Lee, Michael, Ramzi, Vektor, Steve, TomY, Tess, Kona, Brent, Clarissa, PeterP, Jesse, Annette, Cyn, Blue, Ginsu, Jonathan, Karen, Adam, Nova, Deana, Lizzie, Patsy, DavidK, Isaac, Pathfinder, Monroe, Jill, Benny, Altruima, Rheya, Jennifer, Jack, DaveP, Brad, Mick, Babbage, Elisabeth, Brian, Beth, Data, Ethan, Wendy, Nicole, Sky, Jeffrey, Zero, Coffee, Tesla, Kenny, Makiko, Nigel, Teeple, Lucy, Mia, Dee, Guy, Harry, Liana, Branka, Jimbo, Aura, Vasuda, SarahD, bethanye, Torley, Runitai, MikeS, PaulM, Milo, Hermia, JoeM, Melanie, Rejean, DSmith, SMiller, Susan, Jose, DongYun, Justin, Andrey, Syrah, Donovan, Henrik, Nora, Lexie, AC, Donna, ChrisC, Alex, Leyla, Kyle, Mathew, Devin, Joshua, DanC, Jessica, Harmony, Claudia, Tramel, Glenn, Betsy, Fritz, Jun, Adam, Cassandra, Ken, RyanW, Spike, Tofu, Varas, Andy, Luke, RobLa, Chiyo, JohnZ, Dustin, George, Del, PeterP, Migyeong, Matthew, RMullane, CChampion, JTurbin, JamesC, Viola, Lightfoot, Jacqui, Sturm, Adrian, Buttercup, Alfred, Sunil, Alfred, Noel, Irfan, Jill, Yool, Jane, Yuki, Yoz, Matthew, Arthur, Jennifer, Karl, Brian, Ben, Janine, Christopher, Madhavi, Everett, Anthony, Joon, Jake, sean, Adreanne, Stephany, KellyJo, Jeremy, Pramod, Joshua, Sean, Christopher, Amy, Ceren, Katherine, jon, Sudheendra, James, Stephan, Kari, Kartic, Todd, Thomas, Joki, Rebecca, Belinda, Bert, Roger, Bridie, Kristi, Brian, Maria, John, Aric, Nathanel, Melinda, Darrell, Jennifer, Sandy, Greg, Rob, Brad, Chris, Eric, Palmer, Asi, Katja, Lisa, Minda, Jen, Aaron, Bryan, Mark, Jonathan, Jamie, Laurel, William, Matthew, Steve, David, Remy, James, Tim, Lee, Brian, Ashlei, Sam, Mike, Ethan, Austin, Wanda, Paul, Brian, Rachel, Valentyn, Emma Williams, Autum, Steven, Laley, Charles, Jessica, Sue, Gillian, CG, Kip, Kristen, Shamiran, Blake, Brett, Erica, Kent, Joel, Plexus, Twilight, Joppa, Enus, Kraft, Naveen, Simon, Q, Ronp, Laurap, Ram, KyleJM, Marty, Kend, Daveh, Prospero, Melissa, Nat, Hamilton, Green, Seraph, Ekim, Miz, Jimmy, Kosmo, Rome, Doris, JT, Benoc, Whump, Mango, Trinity, Patch, TJ, Christy, Bao, Joohwan, Kate, Oreh, Angela, Johan, Cheah, Lan, Matias, Brandy, Cogsworth, Aleks, Mitchell, Space, Einstein, Bambers, Colton, Malbers, Maggie, Umesh, Santosh, Rose, Stash, Rothman, Winnie, Stella, Niall und vielen anderen. | ||
183 | |||
184 | Vielen Dank den folgenden Einwohnern, die uns geholfen haben, dies zur bisher besten Version zu machen: aaron23 decuir, Abelv Vollmar, Abyssin Otoro, ActingIll Igaly, Adamas Carter, Addy Broome, Adelia Menges, Alexandra Rucker, Alexandrea Fride, Alissa Sabre, Alyx Jonson, Ann Otoole, Anton Fargis, Aradia Dielli, Araina jewell, Arcane Clawtooth, arcangelo vantelli, Are Sperber, Argent Stonecutter, arkady yost, Ashcroft Burnham, Ashen Arida, Auron Forcella, Azadine Umarov, Azildin Furst, Balp Allen, Balpien Hammerer, Barney Boomslang, Barrett Slade, becky pippen, Beeflin Grut, Beer Dailey, Behemoth Greenwood, bigmanu greene, bitova loon, Bonca Chikuwa, Bonnie Bechir, Brandon Catteneo, buttonpusher jones, Carina Raymaker, Ceera Murakami, Celierra Darling, ChatNoir Moonsoo, Cheetah Hammerer, chet neurocam, Cinthya Loveless, Cold Spitteler, Coral Quinnell, Crash Pointe, CrazyTB Oh, Creem Pye, Crom Chaffe, ctrl althouse, dade carver, Dael Ra, dakota schwade, Dale Innis, Damian McLeod, Danger Lytton, danielluh ashton, DanOfWA Flanagan, Davec Horsforth, Davidius Morigi, davie zinner, Day Oh, DBDigital Epsilon, Deany Fall, deBruce Munro, Decaf Coffey, Dedric Mauriac, Deeso Saeed, Dekka Raymaker, dexter eberhart, Dildo Spitz, Dizzy Banjo, djcabello klaar, Dnali Anabuki, Domchi Underwood, Doran Zemlja, Drew Dwi, Duckless Vandyke, Duncan Stenvaag, Dylan Rickenbacker, dzogchen Moody, Dzonatas Sol, Eddy Stryker, Edward Griffith, Edward Pearse, ein duesenburg, Elle Pollack, Elle74 Zaftig, Emileigh Starbrook, Emma Nowhere, ener bing, Erdrick Balbozar, eric domela, Evangeline Biedermann, Excalibur Longstaff, Fake Fitzgerald, Feldspar Millgrove, Feynt Mistral, Fluf Fredriksson, Forbid Utorid, Fortyniner Beck, Francesco Despres, Francisco Koolhoven, Franta Burt, Fury Rosewood, garde Burrel, Garmin Kawaguichi, Gavin Ichigo, Gellan Glenelg, Genie Demina, Gennifer Meredith, Gigs Taggart, Goldie Katsu, Gwyneth Llewelyn, Haravikk Mistral, Harleen Gretzky, Haruki Watanabe, Heather Manatiso, Henri Beauchamp, Honey Fairweather, Hypatia Callisto, Ice Brodie, icktoofay Kamachi, IntLibber Brautigan, Janise Dreamscape, Jay Shinobu, Jenni Ryba, Jeremy Ondricek, JetZep Zabelin, Jims Smythe, Jini Hammerer, Jopy Weber, JustOneMore Loon, Kaluura Boa, Kara Markova, Kevin Susenko, Khyra Ares, Kii Lilliehook, Kitty Barnett, Kris Kuttelwascher, Lanita Wingtips, Laura18 Streeter, Lee Ludd, Lettrius Jewell, Liberty Tesla, LilyAnna Carter, Lindal Kidd, Lisa Lowe, Lisa McConnell, Lola Machin, luca peck, Lupus Clawtooth, M1sha Dallin, Macsima Dagostino, Mana Janus, Mani Canning, Manjusri Binder, marceledward edman, march Korda, marchino villota, Marcus Llewellyn, MartinRJ Fayray, Matthew Dowd, Max Kleiber, mazzy fastback, McCabe Maxsted, Mckailen Kohnke, Meghan Dench, Melvin Starbrook, Mercia Mcmahon, Miakoda Carnell, Michelle2 Zenovka, Michi Lumin, mick parnall, Milla Michinaga, Millie Thompson, miranda Ashby, Mircea Lobo, MIssSara Beck, mouse mimistrobell, Myria Boa, Nanci Barthelmess, Nargus Asturias, Natalya Debevec, Nedrae Messmer, Nexeus Fatale, Niky Zenovka, Nimrod Szondi, Ninane Yoshikawa, Noch Tripsa, nokithecat writer, Nyko Merlin, Onyx Halberd, oryx tempel, Osprey Therian, Pac Hyun, Panagea McMillan, Patrick Ferrentino, PattehPh0x Katsu, ponk bing, Poppy Linden, Prajna Vella, Precious Rhiano, Prokofy Neva, Randall Lovenkraft, Rascal Ratelle, Raydon Writer, Rhaorth Antonelli, Rock Hayek, Ron Crimson, Ron Khondji, Ronald Richez, Rui Clary, Ruud Lathrop, Sakkano Imako, Sam Reinard, Sascha Vandyke, Scrippy Scofield, Sean18 McCarey, Sedona Mills, Sekonda Huet, Seraph Nephilim, Sergei Milos, Shadowquine Maltz, shai khalifa, sheilah flatley, Sheri Underwood, Shuggy Husky, Sierra Janus, Sigma Avro, Simil Miles, simon kline, Simon Nolan, Sindy Tsure, Sparks Keynes, Squirrel Wood, Stahi Columbia, StarSong Bright, Summer Seale, Sunn Thunders, Susan Koltai, Syler Zhora, Synack Fitzgerald, Tayra Dagostino, Tee Cramer, Teravus Ousley, Thomas Shikami, Tia Araw, Tillie Ariantho, Topher Brooks, Torley Linden, Twosteppin Jewell, tx Oh, urantia jewell, vaguegirl Petty, VeC Merlin, venus petrov, vv33d Beck, vynka dean, zann canto, zeebster colasanti, Zi Ree, Zion Tristan, Zorin Frobozz, Zyzzy Zarf | ||
185 | |||
186 | APR Copyright (C) 2000-2004 The Apache Software Foundation | ||
187 | cURL Copyright (C) 1996-2002, Daniel Stenberg, (daniel@haxx.se) | ||
188 | expat Copyright (C) 1998, 1999, 2000 Thai Open Source Software Center Ltd. | ||
189 | FreeType Copyright (C) 1996-2002, The FreeType Project (www.freetype.org). | ||
190 | GL Copyright (C) 1999-2004 Brian Paul. | ||
191 | Havok.com(TM) Copyright (C) 1999-2001, Telekinesys Research Limited. | ||
192 | jpeg2000 Copyright (C) 2001, David Taubman, The University of New South Wales (UNSW) | ||
193 | jpeglib Copyright (C) 1991-1998, Thomas G. Lane. | ||
194 | ogg/vorbis Copyright (C) 2001, Xiphophorus | ||
195 | OpenSSL Copyright (C) 1998-2002 The OpenSSL Project. | ||
196 | SDL Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002 Sam Lantinga | ||
197 | SSLeay Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | ||
198 | xmlrpc-epi Copyright (C) 2000 Epinions, Inc. | ||
199 | zlib Copyright (C) 1995-2002 Jean-loup Gailly und Mark Adler. | ||
200 | |||
201 | Alle Rechte vorbehalten. Details siehe licenses.txt. | ||
202 | |||
203 | Voice-Chat-Audiocoding: Polycom(R) Siren14(TM) (ITU-T Empf. G.722.1 Anhang C) | ||
204 | |||
205 | |||
206 | Happiness is a warm puppy. -- Charles M. Schulz | ||
207 | </f_translation> | ||
208 | <f_old_trans> | ||
209 | Second Life wird Ihnen präsentiert von Philip, Andrew, Tessa, Cory, Frank, James, Doug, Hunter, Richard, John, Eric, Avi, AaronB, AaronY, Ian, Peter, Mark, Robin, Stephen, Tracy, Ryan, Alberto, Haney, Tanya, JimJ, Dan, Ben, Stephanie, Tim, Evan, Catherine, Colin, Chris, Reuben, Charity, Jeska, James, JonHenry, Kelly, Callum, Char, Daniel, DavidF, Don, Jeff, Lauren, Lee, Michael, Ramzi, Vektor, Steve, TomY, Tess, Kona, Brent, Clarissa, PeterP, Jesse, Annette, Cyn, Blue, Ginsu, Jonathan, Karen, Adam, Nova, Deana, Lizzie, Patsy, DavidK, Isaac, Pathfinder, Monroe, Jill, Benny, Altruima, Rheya, Jennifer, Jack, DaveP, Brad, Mick, Babbage, Elisabeth, Brian, Beth, Data, Ethan, Wendy, Nicole, Sky, Jeffrey, Zero, Coffee, Tesla, Kenny, Makiko, Nigel, Teeple, Lucy, Mia, Dee, Guy, Harry, Liana, Branka, Jimbo, Aura, Vasuda, SarahD, bethanye, Torley, Runitai, MikeS, PaulM, Milo, Hermia, JoeM, Melanie, Rejean, DSmith, SMiller, Susan, Jose, DongYun, Justin, Andrey, Syrah, Donovan, Henrik, Nora, Lexie, AC, Donna, ChrisC, Alex, Leyla, Kyle, Mathew, Devin, Joshua, DanC, Jessica, Harmony, Claudia, Tramel, Glenn, Betsy, Fritz, Jun, Adam, Cassandra, Ken, RyanW, Spike, Tofu, Varas, Andy, Luke, RobLa, Chiyo, JohnZ, Dustin, George, Del, PeterP, Migyeong, Matthew, RMullane, CChampion, JTurbin, JamesC, Viola, Lightfoot, Jacqui, Sturm, Adrian, Buttercup, Alfred, Sunil, Alfred, Noel, Irfan, Jill, Yool, Jane, Yuki, Yoz, Matthew, Arthur, Jennifer, Karl, Brian, Ben, Janine, Christopher, Madhavi, Everett, Anthony, Joon, Jake, sean, Adreanne, Stephany, KellyJo, Jeremy, Pramod, Joshua, Sean, Christopher, Amy, Ceren, Katherine, jon, Sudheendra, James, Stephan, Kari, Kartic, Todd, Thomas, Joki, Rebecca, Belinda, Bert, Roger, Bridie, Kristi, Brian, Maria, John, Aric, Nathanel, Melinda, Darrell, Jennifer, Sandy, Greg, Rob, Brad, Chris, Eric, Palmer, Asi, Katja, Lisa, Minda, Jen, Aaron, Bryan, Mark, Jonathan, Jamie, Laurel, William, Matthew, Steve, David, Remy, James, Tim, Lee, Brian, Ashlei, Sam, Mike, Ethan, Austin, Wanda, Paul, Brian, Rachel, Valentyn, Emma Williams, Autum, Steven, Laley, Charles, Jessica, Sue, Gillian, CG, Kip, Kristen, Shamiran, Blake, Brett, Erica, Kent, Joel, Plexus, Twilight, Joppa und vielen anderen. | ||
210 | |||
211 | Im Gedenken an Jesse Malthus. Du wirst allen in Erinnerung bleiben, die deine Stimme hören durften. | ||
212 | |||
213 | Vielen Dank den folgenden Einwohnern, die uns geholfen haben, dies zur bisher besten Version zu machen: Aces Spade, Adrian Buckler, Adrienne LeShelle, Amanda Ascot, AnnaQuay Heart, Aquamina Khalifa, Arienne Anatine, Aston Hildyard, Ayami Kamachi, Badinage Odets, Biffy Berjis, Bigfox Pye, BigJohn Jade, BigRick Byrd, Brettus Tripsa, Brock Fitzgerald, Broker Allen, Browse by Name, Chiria Celt, Christopher Prudhomme, dale Cao, dale Lynch, Dante Tucker, DaQbet Kish, Dargon Pacer, Darius Antonelli, Deira Llanfair, DeviantBone Xi, Dore Dorado, Englishwob Etchegaray, Enya Masala, Eric Renneville, Fairfax Michinaga, FireFox Bancroft, FOXI Cortes, Frederick Earp, Geo Meek, Gotthilf Fischer, Hallo Loon, Hawk Carter, Hazel Kyrgyz, Hecter Barbosa, Hex Link, Ice Pak, Ideasu Mukerji, Itoku Kamachi, Jared Halleck, Jaykob Carter, Jennifer Drumheller, JensMartin Tomsen, JIAB Boa, Jim Gustafson, JimmyJet Fossett, Joseph Rustamova, Jt Volos, Karilyn Kidomen, Kaysha Sion, Keaton Nacon, Kevin Susenko, Khashai Steinbeck, Kira Cuddihy, Kit Massiel, Kojo Dixon, KUieTSToRm Lightcloud, Kwai Kyong, Kyrtis Daehlie, LazyGunGuy Bartlett, Lewcas Zapedzki, Lioc Cioc, LLIB Utu, Lou Liebknecht, Luca Draken, Maci Homewood, Major Sewell, Mari Todriya, MarieElize Noel, matt27 Churchill, Maverick Miasma, maydaysos Young, Mediaho Ball, Mikayla Gillespie, Mike Faulkland, Modfire Milland, MollyBrown Foxley, Mosley Jewell, Nuahs Zapedzki, Nyx Divine, Panther Farber, Paul Bumi, Preciousse Moody, PrincessNina Prefect, Prio Serpentine, Rainbow Drake, Randall Rall, Randy Kazan, Reinhart Mokeev, Rhyph Somme, Rico Roizman, Ruge Dryke, Ryan Orbit, Safira Rosher, Samantha Bainbridge, Sammy Foxley, Sash Furst, Saturn Ariantho, Sienna Summers, Skye Enoch, Sofie Kanno, Solar Legion, Sonic Oki, Sunra Saenz, Taina Heart, Taryn Sprawl, tenerife Wei, TomDragon Nilsson, Trebla Reve, Trouble Carnell, user1cat Orbit, Vance Merlin, Veritas Variscan, Web Page, Wi3g3ht3s Ihnen, WinDrftr DeFarge, Yuu Nakamichi, Zac Delec, Zed Fairweather, Zimmo Hallard. | ||
214 | |||
215 | APR Copyright (C) 2000-2004 The Apache Software Foundation | ||
216 | cURL Copyright (C) 1996-2002, Daniel Stenberg, (daniel@haxx.se) | ||
217 | expat Copyright (C) 1998, 1999, 2000 Thai Open Source Software Center Ltd. | ||
218 | FreeType Copyright (C) 1996-2002, The FreeType Project (www.freetype.org). | ||
219 | GL Copyright (C) 1999-2004 Brian Paul. | ||
220 | Havok.com(TM) Copyright (C) 1999-2001, Telekinesys Research Limited. | ||
221 | jpeg2000 Copyright (C) 2001, David Taubman, The University of New South Wales (UNSW) | ||
222 | jpeglib Copyright (C) 1991-1998, Thomas G. Lane. | ||
223 | ogg/vorbis Copyright (C) 2001, Xiphophorus | ||
224 | OpenSSL Copyright (C) 1998-2002 The OpenSSL Project. | ||
225 | SDL Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002 Sam Lantinga | ||
226 | SSLeay Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | ||
227 | xmlrpc-epi Copyright (C) 2000 Epinions, Inc. | ||
228 | zlib Copyright (C) 1995-2002 Jean-loup Gailly und Mark Adler. | ||
229 | |||
230 | Alle Rechte vorbehalten. Details siehe licenses.txt. | ||
231 | |||
232 | Voice-Chat-Audiocoding: Polycom(R) Siren14(TM) (ITU-T Empf. G.722.1 Anhang C) | ||
233 | |||
234 | |||
235 | Mr. Watson - kommen Sie bitte her - ich möchte Sie sehen. | ||
236 | </f_old_trans> | ||
237 | </string> | ||
5 | </strings> | 238 | </strings> |
diff --git a/linden/indra/newview/skins/xui/de/need_to_translate.xml b/linden/indra/newview/skins/xui/de/need_to_translate.xml index af07d4c..a0c4dca 100644 --- a/linden/indra/newview/skins/xui/de/need_to_translate.xml +++ b/linden/indra/newview/skins/xui/de/need_to_translate.xml | |||
@@ -1,27 +1,1154 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | 2 | ||
3 | <strings> | 3 | <strings> |
4 | <string><a_file>floater_about_land.xml</a_file> | 4 | <string><a_file>alerts.xml</a_file> |
5 | <b_path>/floaterland/landtab/land_objects_panel/owner list/</b_path> | 5 | <b_path>//UnsupportedGLRequirements/message</b_path> |
6 | <c_attribute></c_attribute> | ||
7 | <d_old></d_old> | ||
8 | <e_new> | ||
9 | You do not appear to have the proper hardware requirements for Second Life. Second Life requires an OpenGL graphics card that has multitexture support. If this is the case, you may want to make sure that you have the latest drivers for your graphics card, and service packs and patches for your operating system. | ||
10 | |||
11 | If you continue to have problems, please visit: http://www.secondlife.com/support | ||
12 | </e_new> | ||
13 | <f_old_trans></f_old_trans> | ||
14 | <f_translation> | ||
15 | Ihr Computer entspricht nicht den Hardwareanforderungen von Second Life. Second Life setzt eine OpenGL-Grafikkarte mit Multitextur-Unterstützung voraus. Falls Ihre Grafikkarte diese Funktion unterstützt, installieren Sie die neuesten Treiber sowie die aktuellen Service Packs und Patches für Ihr Betriebssystem. | ||
16 | |||
17 | Sollte das Problem fortbestehen, finden Sie weitere Hilfestellung unter: http://www.secondlife.com/support | ||
18 | </f_translation> | ||
19 | </string><string><a_file>alerts.xml</a_file> | ||
20 | <b_path>//UnsupportedHardware/message</b_path> | ||
21 | <c_attribute></c_attribute> | ||
22 | <d_old></d_old> | ||
23 | <e_new> | ||
24 | Warning: Your system does not meet Second Life's minimum system requirements. If you continue using Second Life, you may experience poor performance. Unfortunately, we cannot provide technical support for unsupported system configurations. | ||
25 | |||
26 | MINSPECS | ||
27 | Do you wish to visit [_URL] for more information? | ||
28 | </e_new> | ||
29 | <f_old_trans></f_old_trans> | ||
30 | <f_translation> | ||
31 | Achtung: Ihr System erfüllt nicht die Mindestanforderungen von Second Life. Dies kann eine schlechte Darstellungsleistung in Second Life zur Folge haben. Für nicht unterstützte Systemkonfigurationen bieten wir keinen technischen Support. | ||
32 | |||
33 | MINDESTANF. | ||
34 | Die Seite [_URL] für weitere Informationen öffnen? | ||
35 | </f_translation> | ||
36 | </string><string><a_file>alerts.xml</a_file> | ||
37 | <b_path>//UnsupportedHardware/Yes</b_path> | ||
38 | <c_attribute></c_attribute> | ||
39 | <d_old></d_old> | ||
40 | <e_new> | ||
41 | Yes | ||
42 | </e_new> | ||
43 | <f_old_trans></f_old_trans> | ||
44 | <f_translation> | ||
45 | Ja | ||
46 | </f_translation> | ||
47 | </string><string><a_file>alerts.xml</a_file> | ||
48 | <b_path>//UnsupportedHardware/No</b_path> | ||
49 | <c_attribute></c_attribute> | ||
50 | <d_old></d_old> | ||
51 | <e_new> | ||
52 | No | ||
53 | </e_new> | ||
54 | <f_old_trans></f_old_trans> | ||
55 | <f_translation> | ||
56 | Nein | ||
57 | </f_translation> | ||
58 | </string><string><a_file>alerts.xml</a_file> | ||
59 | <b_path>//UnsupportedGPU/message</b_path> | ||
60 | <c_attribute></c_attribute> | ||
61 | <d_old></d_old> | ||
62 | <e_new> | ||
63 | - Your graphics card does not meet the minimum requirements. | ||
64 | </e_new> | ||
65 | <f_old_trans></f_old_trans> | ||
66 | <f_translation> | ||
67 | - Ihre Grafikkarte entspricht nicht den Mindestanforderungen. | ||
68 | </f_translation> | ||
69 | </string><string><a_file>alerts.xml</a_file> | ||
70 | <b_path>//UnsupportedCPU/message</b_path> | ||
71 | <c_attribute></c_attribute> | ||
72 | <d_old></d_old> | ||
73 | <e_new> | ||
74 | - Your CPU speed does not meet the minimum requirements. | ||
75 | </e_new> | ||
76 | <f_old_trans></f_old_trans> | ||
77 | <f_translation> | ||
78 | - Ihre CPU-Geschwindigkeit entspricht nicht den Mindestanforderungen. | ||
79 | </f_translation> | ||
80 | </string><string><a_file>alerts.xml</a_file> | ||
81 | <b_path>//UnsupportedCPUAmount/message</b_path> | ||
82 | <c_attribute></c_attribute> | ||
83 | <d_old></d_old> | ||
84 | <e_new> | ||
85 | 796 | ||
86 | </e_new> | ||
87 | <f_old_trans></f_old_trans> | ||
88 | <f_translation> | ||
89 | 796 | ||
90 | </f_translation> | ||
91 | </string><string><a_file>alerts.xml</a_file> | ||
92 | <b_path>//UnsupportedRAM/message</b_path> | ||
93 | <c_attribute></c_attribute> | ||
94 | <d_old></d_old> | ||
95 | <e_new> | ||
96 | - Your system memory does not meet the minimum requirements. | ||
97 | </e_new> | ||
98 | <f_old_trans></f_old_trans> | ||
99 | <f_translation> | ||
100 | - Ihr Arbeitsspeicher entspricht nicht den Mindestanforderungen. | ||
101 | </f_translation> | ||
102 | </string><string><a_file>alerts.xml</a_file> | ||
103 | <b_path>//UnsupportedRAMAmount/message</b_path> | ||
104 | <c_attribute></c_attribute> | ||
105 | <d_old></d_old> | ||
106 | <e_new> | ||
107 | 510 | ||
108 | </e_new> | ||
109 | <f_old_trans></f_old_trans> | ||
110 | <f_translation> | ||
111 | 510 | ||
112 | </f_translation> | ||
113 | </string><string><a_file>alerts.xml</a_file> | ||
114 | <b_path>//HelpEstateAbuseEmailAddress</b_path> | ||
115 | <c_attribute>title</c_attribute> | ||
116 | <d_old></d_old> | ||
117 | <e_new>Abuse Email Address</e_new> | ||
118 | <f_old_trans></f_old_trans> | ||
119 | <f_translation>E-Mail-Adresse für Missbrauchsmeldungen</f_translation> | ||
120 | </string><string><a_file>alerts.xml</a_file> | ||
121 | <b_path>//HelpEstateAbuseEmailAddress/message</b_path> | ||
122 | <c_attribute></c_attribute> | ||
123 | <d_old></d_old> | ||
124 | <e_new> | ||
125 | Setting this to a valid email address will cause | ||
126 | abuse reports on this estate to be sent to that address. | ||
127 | Setting it blank will cause abuse reports to be sent | ||
128 | only to Linden Lab. | ||
129 | </e_new> | ||
130 | <f_old_trans></f_old_trans> | ||
131 | <f_translation> | ||
132 | Geben Sie hier eine E-Mail-Adresse ein, an die | ||
133 | Missbrauchsmeldungen von diesem Grundstück gesendet werden. | ||
134 | Wenn dieses Feld leer ist, werden Missbrauchsmeldungen | ||
135 | nur an Linden Lab gesendet. | ||
136 | </f_translation> | ||
137 | </string><string><a_file>alerts.xml</a_file> | ||
138 | <b_path>//RetryFetchInventoryDescendents/message</b_path> | ||
139 | <c_attribute></c_attribute> | ||
140 | <d_old></d_old> | ||
141 | <e_new> | ||
142 | Inventory fetch from server timed out. Retry? | ||
143 | </e_new> | ||
144 | <f_old_trans></f_old_trans> | ||
145 | <f_translation> | ||
146 | Zeitüberschreitung bei Inventarabfrage vom Server. Wiederholen? | ||
147 | </f_translation> | ||
148 | </string><string><a_file>alerts.xml</a_file> | ||
149 | <b_path>//RetryFetchInventoryDescendents/ignore</b_path> | ||
150 | <c_attribute></c_attribute> | ||
151 | <d_old></d_old> | ||
152 | <e_new> | ||
153 | Retry Fetch Inventory Descendents | ||
154 | </e_new> | ||
155 | <f_old_trans></f_old_trans> | ||
156 | <f_translation> | ||
157 | Inventarobjekt-Abfrage wiederholen | ||
158 | </f_translation> | ||
159 | </string><string><a_file>alerts.xml</a_file> | ||
160 | <b_path>//RetryFetchInventoryDescendents/Retry</b_path> | ||
161 | <c_attribute></c_attribute> | ||
162 | <d_old></d_old> | ||
163 | <e_new> | ||
164 | Retry | ||
165 | </e_new> | ||
166 | <f_old_trans></f_old_trans> | ||
167 | <f_translation> | ||
168 | Wiederholen | ||
169 | </f_translation> | ||
170 | </string><string><a_file>alerts.xml</a_file> | ||
171 | <b_path>//RetryFetchInventoryDescendents/Cancel</b_path> | ||
172 | <c_attribute></c_attribute> | ||
173 | <d_old></d_old> | ||
174 | <e_new> | ||
175 | Cancel | ||
176 | </e_new> | ||
177 | <f_old_trans></f_old_trans> | ||
178 | <f_translation> | ||
179 | Abbrechen | ||
180 | </f_translation> | ||
181 | </string><string><a_file>alerts.xml</a_file> | ||
182 | <b_path>//ConfirmClearMediaUrlList/message</b_path> | ||
183 | <c_attribute></c_attribute> | ||
184 | <d_old></d_old> | ||
185 | <e_new> | ||
186 | Are you sure you want to clear your list of saved URLs? | ||
187 | </e_new> | ||
188 | <f_old_trans></f_old_trans> | ||
189 | <f_translation> | ||
190 | Die Liste mit gespeicherten URLs wirklich löschen? | ||
191 | </f_translation> | ||
192 | </string><string><a_file>alerts.xml</a_file> | ||
193 | <b_path>//ConfirmClearMediaUrlList/Yes</b_path> | ||
194 | <c_attribute></c_attribute> | ||
195 | <d_old></d_old> | ||
196 | <e_new> | ||
197 | Yes | ||
198 | </e_new> | ||
199 | <f_old_trans></f_old_trans> | ||
200 | <f_translation> | ||
201 | Ja | ||
202 | </f_translation> | ||
203 | </string><string><a_file>alerts.xml</a_file> | ||
204 | <b_path>//ConfirmClearMediaUrlList/No</b_path> | ||
205 | <c_attribute></c_attribute> | ||
206 | <d_old></d_old> | ||
207 | <e_new> | ||
208 | Cancel | ||
209 | </e_new> | ||
210 | <f_old_trans></f_old_trans> | ||
211 | <f_translation> | ||
212 | Abbrechen | ||
213 | </f_translation> | ||
214 | </string><string><a_file>alerts.xml</a_file> | ||
215 | <b_path>//WLSavePresetAlert/message</b_path> | ||
216 | <c_attribute></c_attribute> | ||
217 | <d_old></d_old> | ||
218 | <e_new> | ||
219 | Do you wish to overwrite the saved preset? | ||
220 | </e_new> | ||
221 | <f_old_trans></f_old_trans> | ||
222 | <f_translation> | ||
223 | Die gespeicherte Voreinstellung überschreiben? | ||
224 | </f_translation> | ||
225 | <f_old_trans></f_old_trans> | ||
226 | </string><string><a_file>alerts.xml</a_file> | ||
227 | <b_path>//WLSavePresetAlert/Save</b_path> | ||
228 | <c_attribute></c_attribute> | ||
229 | <d_old></d_old> | ||
230 | <e_new> | ||
231 | Yes | ||
232 | </e_new> | ||
233 | <f_old_trans></f_old_trans> | ||
234 | <f_translation> | ||
235 | Ja | ||
236 | </f_translation> | ||
237 | </string><string><a_file>alerts.xml</a_file> | ||
238 | <b_path>//WLSavePresetAlert/Cancel</b_path> | ||
239 | <c_attribute></c_attribute> | ||
240 | <d_old></d_old> | ||
241 | <e_new> | ||
242 | No | ||
243 | </e_new> | ||
244 | <f_old_trans></f_old_trans> | ||
245 | <f_translation> | ||
246 | Nein | ||
247 | </f_translation> | ||
248 | </string><string><a_file>alerts.xml</a_file> | ||
249 | <b_path>//WLDeletePresetAlert/message</b_path> | ||
250 | <c_attribute></c_attribute> | ||
251 | <d_old></d_old> | ||
252 | <e_new> | ||
253 | Do you wish to delete [SKY]? | ||
254 | </e_new> | ||
255 | <f_old_trans></f_old_trans> | ||
256 | <f_translation> | ||
257 | [SKY] löschen? | ||
258 | </f_translation> | ||
259 | </string><string><a_file>alerts.xml</a_file> | ||
260 | <b_path>//WLDeletePresetAlert/Delete</b_path> | ||
261 | <c_attribute></c_attribute> | ||
262 | <d_old></d_old> | ||
263 | <e_new> | ||
264 | Yes | ||
265 | </e_new> | ||
266 | <f_old_trans></f_old_trans> | ||
267 | <f_translation> | ||
268 | Ja | ||
269 | </f_translation> | ||
270 | </string><string><a_file>alerts.xml</a_file> | ||
271 | <b_path>//WLDeletePresetAlert/Cancel</b_path> | ||
272 | <c_attribute></c_attribute> | ||
273 | <d_old></d_old> | ||
274 | <e_new> | ||
275 | No | ||
276 | </e_new> | ||
277 | <f_old_trans></f_old_trans> | ||
278 | <f_translation> | ||
279 | Nein | ||
280 | </f_translation> | ||
281 | </string><string><a_file>alerts.xml</a_file> | ||
282 | <b_path>//WLNoEditDefault/message</b_path> | ||
283 | <c_attribute></c_attribute> | ||
284 | <d_old></d_old> | ||
285 | <e_new> | ||
286 | You cannot edit or delete a default preset. | ||
287 | </e_new> | ||
288 | <f_old_trans></f_old_trans> | ||
289 | <f_translation> | ||
290 | Standardvoreinstellungen können nicht bearbeitet oder gelöscht werden. | ||
291 | </f_translation> | ||
292 | </string><string><a_file>alerts.xml</a_file> | ||
293 | <b_path>//WLMissingSky/message</b_path> | ||
294 | <c_attribute></c_attribute> | ||
295 | <d_old></d_old> | ||
296 | <e_new> | ||
297 | This day cycle file references a missing sky file: [SKY]. | ||
298 | </e_new> | ||
299 | <f_old_trans></f_old_trans> | ||
300 | <f_translation> | ||
301 | Diese Tageszyklusdatei verweist auf eine fehlende Himmel-Datei: [SKY]. | ||
302 | </f_translation> | ||
303 | </string><string><a_file>alerts.xml</a_file> | ||
304 | <b_path>//PPSaveEffectAlert/message</b_path> | ||
305 | <c_attribute></c_attribute> | ||
306 | <d_old></d_old> | ||
307 | <e_new> | ||
308 | PostProcess Effect exists. Do you still wish overwrite it? | ||
309 | </e_new> | ||
310 | <f_old_trans></f_old_trans> | ||
311 | <f_translation> | ||
312 | Post-Processing-Effekt bereits vorhanden. Möchten Sie ihn überschreiben? | ||
313 | </f_translation> | ||
314 | </string><string><a_file>alerts.xml</a_file> | ||
315 | <b_path>//PPSaveEffectAlert/Save</b_path> | ||
316 | <c_attribute></c_attribute> | ||
317 | <d_old></d_old> | ||
318 | <e_new> | ||
319 | Yes | ||
320 | </e_new> | ||
321 | <f_old_trans></f_old_trans> | ||
322 | <f_translation> | ||
323 | Ja | ||
324 | </f_translation> | ||
325 | </string><string><a_file>alerts.xml</a_file> | ||
326 | <b_path>//PPSaveEffectAlert/Cancel</b_path> | ||
327 | <c_attribute></c_attribute> | ||
328 | <d_old></d_old> | ||
329 | <e_new> | ||
330 | No | ||
331 | </e_new> | ||
332 | <f_old_trans></f_old_trans> | ||
333 | <f_translation> | ||
334 | Nein | ||
335 | </f_translation> | ||
336 | </string><string><a_file>alerts.xml</a_file> | ||
337 | <b_path>//HelpEditSky/message</b_path> | ||
338 | <c_attribute></c_attribute> | ||
339 | <d_old></d_old> | ||
340 | <e_new> | ||
341 | Edit the WindLight sliders to create and save a set of skies. | ||
342 | </e_new> | ||
343 | <f_old_trans></f_old_trans> | ||
344 | <f_translation> | ||
345 | Verschieben Sie die WindLight-Regler, um verschiedene Himmelsansichten zu erstellen und zu speichern. | ||
346 | </f_translation> | ||
347 | </string><string><a_file>alerts.xml</a_file> | ||
348 | <b_path>//HelpEditDayCycle/message</b_path> | ||
349 | <c_attribute></c_attribute> | ||
350 | <d_old></d_old> | ||
351 | <e_new> | ||
352 | Set which skies to turn to throughout the day. | ||
353 | </e_new> | ||
354 | <f_old_trans></f_old_trans> | ||
355 | <f_translation> | ||
356 | Wählen Sie für jede Tageszeit eine Himmelsansicht aus. | ||
357 | </f_translation> | ||
358 | </string><string><a_file>alerts.xml</a_file> | ||
359 | <b_path>//HelpBlueHorizon/message</b_path> | ||
360 | <c_attribute></c_attribute> | ||
361 | <d_old></d_old> | ||
362 | <e_new> | ||
363 | Use the Red/Green/Blue (RGB) sliders to adjust the color of the sky. You can use the Intensity (I) slider to move all three RGB sliders in unison. | ||
364 | </e_new> | ||
365 | <f_old_trans></f_old_trans> | ||
366 | <f_translation> | ||
367 | Mit den Reglern für Rot/Grün/Blau (RGB) steuern Sie die Farbe des Himmels. Verwenden Sie den Intensitätsregler (I), um alle drei RGB-Regler gleichzeitig zu verschieben. | ||
368 | </f_translation> | ||
369 | </string><string><a_file>alerts.xml</a_file> | ||
370 | <b_path>//HelpHazeHorizon/message</b_path> | ||
371 | <c_attribute></c_attribute> | ||
372 | <d_old></d_old> | ||
373 | <e_new> | ||
374 | Haze Horizon is one of the most useful parameters for | ||
375 | adjusting overall light exposure in the scene. It is | ||
376 | effective for simulating many exposure settings, | ||
377 | such as white-outs from the sun and darker, | ||
378 | closed-iris settings. | ||
379 | </e_new> | ||
380 | <f_old_trans></f_old_trans> | ||
381 | <f_translation> | ||
382 | Horizonttrübung ist einer der wichtigsten Parameter, um | ||
383 | die Gesamtlichtsituation in der Szene zu steuern. Damit | ||
384 | lassen sich viele Belichtungseinstellungen simulieren, | ||
385 | z.B. ein Überstrahlen durch die Sonne oder | ||
386 | starker Dunst. | ||
387 | </f_translation> | ||
388 | </string><string><a_file>alerts.xml</a_file> | ||
389 | <b_path>//HelpBlueDensity/message</b_path> | ||
390 | <c_attribute></c_attribute> | ||
391 | <d_old></d_old> | ||
392 | <e_new> | ||
393 | Blue Density affects the overall color saturation of the sky and fog. If you move the Intensity (I) slider to the right, colors will become brighter and more vibrant. If you move it all the way to the left, the colors will become duller, eventually fading to black and white. If you want to fine-tune the sky's color balance, you can control individual elements of saturation by using the Red/Green/Blue (RGB) sliders. | ||
394 | </e_new> | ||
395 | <f_old_trans></f_old_trans> | ||
396 | <f_translation> | ||
397 | Farbintensität steuert die Gesamtfarbsättigung von Himmel und Nebel. Je weiter Sie den Intensitätsregler (I) nach rechts verschieben, desto heller und lebendiger werden die Farben. Wenn Sie ihn ganz nach links verschieben, verlieren die Farben an Intensität und gehen in Schwarz oder Weiß über. Volle Kontrolle über die Farbsättigung des Himmels bieten ihnen die Regler für Rot/Grün/Blau (RGB). | ||
398 | </f_translation> | ||
399 | </string><string><a_file>alerts.xml</a_file> | ||
400 | <b_path>//HelpHazeDensity/message</b_path> | ||
401 | <c_attribute></c_attribute> | ||
402 | <d_old></d_old> | ||
403 | <e_new> | ||
404 | Haze Density controls the level of dull, gray | ||
405 | haze in the atmosphere. It is effective for | ||
406 | simulating scenes with high levels of smoke | ||
407 | and man-made pollutants. It is also effective | ||
408 | for simulating fog and mist. | ||
409 | </e_new> | ||
410 | <f_old_trans></f_old_trans> | ||
411 | <f_translation> | ||
412 | Trübungsintensität steuert die Stärke des grauen | ||
413 | Dunsts in der Atmosphäre. Damit lassen sich | ||
414 | zum Beispiel starker Rauch oder Luftverschmutzung | ||
415 | simulieren. Auch für Nebel und | ||
416 | Sprühregen geeignet. | ||
417 | </f_translation> | ||
418 | </string><string><a_file>alerts.xml</a_file> | ||
419 | <b_path>//HelpDensityMult/message</b_path> | ||
420 | <c_attribute></c_attribute> | ||
421 | <d_old></d_old> | ||
422 | <e_new> | ||
423 | The Density Multiplier can be used to affect the overall atmospheric density. At lower settings, it creates a feeling of "thin air", and at higher settings, it creates a very heavy, smoggy effect. | ||
424 | </e_new> | ||
425 | <f_old_trans></f_old_trans> | ||
426 | <f_translation> | ||
427 | Der Dichtemultiplikator beeinflusst die Gesamtdichte der Atmosphäre. Niedrige Einstellungen erzeugen die Anmutung "dünner, sauberer Luft", hohe Einstellungen erzeugen den Eindruck schweren Smogs. | ||
428 | </f_translation> | ||
429 | </string><string><a_file>alerts.xml</a_file> | ||
430 | <b_path>//HelpDistanceMult/message</b_path> | ||
431 | <c_attribute></c_attribute> | ||
432 | <d_old></d_old> | ||
433 | <e_new> | ||
434 | Adjusts WindLight's perceived distance. A value of | ||
435 | zero effectively turns off WindLight's influence | ||
436 | on terrain and objects. Values greater than 1 simulate | ||
437 | greater distances for thicker atmospheric effects. | ||
438 | </e_new> | ||
439 | <f_old_trans></f_old_trans> | ||
440 | <f_translation> | ||
441 | Steuert die Entfernungswirkung von WindLight. Ein Wert von | ||
442 | Null schaltet den Einfluss von WindLight auf Terrain und | ||
443 | Objekte praktisch aus. Werte über 1 simulieren | ||
444 | größere Entfernungen und verstärken den Atmosphäreneffekt. | ||
445 | </f_translation> | ||
446 | </string><string><a_file>alerts.xml</a_file> | ||
447 | <b_path>//HelpMaxAltitude/message</b_path> | ||
448 | <c_attribute></c_attribute> | ||
449 | <d_old></d_old> | ||
450 | <e_new> | ||
451 | Max Altitude adjusts the altitude calculations WindLight | ||
452 | performs when computing its atmospheric lighting. At | ||
453 | later times of day, it is useful for adjusting how | ||
454 | "deep" the sunset appears. | ||
455 | </e_new> | ||
456 | <f_old_trans></f_old_trans> | ||
457 | <f_translation> | ||
458 | Max. Höhe steuert die Höhenberechnungen von WindLight | ||
459 | bei der Berechnung der atmosphärischen Beleuchtung. Zu | ||
460 | späteren Tageszeiten lässt sich damit zum Beispiel | ||
461 | die "Intensität" des Sonnenuntergangs beeinflussen. | ||
462 | </f_translation> | ||
463 | </string><string><a_file>alerts.xml</a_file> | ||
464 | <b_path>//HelpSunlightColor/message</b_path> | ||
465 | <c_attribute></c_attribute> | ||
466 | <d_old></d_old> | ||
467 | <e_new> | ||
468 | Adjusts the color and intensity of the direct light in the scene. | ||
469 | </e_new> | ||
470 | <f_old_trans></f_old_trans> | ||
471 | <f_translation> | ||
472 | Steuert Farbe und Intensität von direktem Licht in der Szene. | ||
473 | </f_translation> | ||
474 | </string><string><a_file>alerts.xml</a_file> | ||
475 | <b_path>//HelpSunAmbient/message</b_path> | ||
476 | <c_attribute></c_attribute> | ||
477 | <d_old></d_old> | ||
478 | <e_new> | ||
479 | Adjusts the color and intensity of ambient atmospheric light in the scene. | ||
480 | </e_new> | ||
481 | <f_old_trans></f_old_trans> | ||
482 | <f_translation> | ||
483 | Steuert Farbe und Intensität von atmosphärischem Umgebungslicht in der Szene. | ||
484 | </f_translation> | ||
485 | </string><string><a_file>alerts.xml</a_file> | ||
486 | <b_path>//HelpSunGlow/message</b_path> | ||
487 | <c_attribute></c_attribute> | ||
488 | <d_old></d_old> | ||
489 | <e_new> | ||
490 | The Size slider controls the size of the sun. | ||
491 | The Focus slider controls how blurred the sun | ||
492 | is over the sky. | ||
493 | </e_new> | ||
494 | <f_old_trans></f_old_trans> | ||
495 | <f_translation> | ||
496 | Der Regler "Größe" steuert die Größe der Sonne. | ||
497 | Der Regler "Fokus" steuert, wie unscharf die Sonne | ||
498 | am Himmel erscheint. | ||
499 | </f_translation> | ||
500 | </string><string><a_file>alerts.xml</a_file> | ||
501 | <b_path>//HelpSceneGamma/message</b_path> | ||
502 | <c_attribute></c_attribute> | ||
503 | <d_old></d_old> | ||
504 | <e_new> | ||
505 | Adjust the screen's distribution of light and dark. | ||
506 | </e_new> | ||
507 | <f_old_trans></f_old_trans> | ||
508 | <f_translation> | ||
509 | Regelt den Hell/Dunkel-Wert des Bildschirms. | ||
510 | </f_translation> | ||
511 | </string><string><a_file>alerts.xml</a_file> | ||
512 | <b_path>//HelpStarBrightness/message</b_path> | ||
513 | <c_attribute></c_attribute> | ||
514 | <d_old></d_old> | ||
515 | <e_new> | ||
516 | Adjusts the brightness of the stars in the sky. | ||
517 | </e_new> | ||
518 | <f_old_trans></f_old_trans> | ||
519 | <f_translation> | ||
520 | Regelt die Helligkeit der Sterne am Himmel. | ||
521 | </f_translation> | ||
522 | </string><string><a_file>alerts.xml</a_file> | ||
523 | <b_path>//HelpTimeOfDay/message</b_path> | ||
524 | <c_attribute></c_attribute> | ||
525 | <d_old></d_old> | ||
526 | <e_new> | ||
527 | Controls the location of the sun in the sky. | ||
528 | Similar to elevation. | ||
529 | </e_new> | ||
530 | <f_old_trans></f_old_trans> | ||
531 | <f_translation> | ||
532 | Steuert die Sonnenstellung am Himmel. | ||
533 | Entspricht der Elevation. | ||
534 | </f_translation> | ||
535 | </string><string><a_file>alerts.xml</a_file> | ||
536 | <b_path>//HelpEastAngle/message</b_path> | ||
537 | <c_attribute></c_attribute> | ||
538 | <d_old></d_old> | ||
539 | <e_new> | ||
540 | Controls the location of the sun in the sky. | ||
541 | Similar to azimuth. | ||
542 | </e_new> | ||
543 | <f_old_trans></f_old_trans> | ||
544 | <f_translation> | ||
545 | Steuert die Sonnenstellung am Himmel. | ||
546 | Entspricht dem Azimut. | ||
547 | </f_translation> | ||
548 | </string><string><a_file>alerts.xml</a_file> | ||
549 | <b_path>//HelpCloudColor/message</b_path> | ||
550 | <c_attribute></c_attribute> | ||
551 | <d_old></d_old> | ||
552 | <e_new> | ||
553 | Edits the color of the clouds. It is generally | ||
554 | recommended to keep it whitish, | ||
555 | but hey, have fun if you want. | ||
556 | </e_new> | ||
557 | <f_old_trans></f_old_trans> | ||
558 | <f_translation> | ||
559 | Steuert die Wolkenfarbe. Generell empfiehlt | ||
560 | sich hier ein Weißton, aber hey, | ||
561 | warum nicht ein bisschen Spaß haben? | ||
562 | </f_translation> | ||
563 | </string><string><a_file>alerts.xml</a_file> | ||
564 | <b_path>//HelpCloudDetail/message</b_path> | ||
565 | <c_attribute></c_attribute> | ||
566 | <d_old></d_old> | ||
567 | <e_new> | ||
568 | Controls the detail image layered on top | ||
569 | of the main cloud image. X and Y control | ||
570 | its position. D (Density) controls how puffy or | ||
571 | fractured the clouds appear. | ||
572 | </e_new> | ||
573 | <f_old_trans></f_old_trans> | ||
574 | <f_translation> | ||
575 | Steuert das Detailbild, welches über das Wolken- | ||
576 | Hauptbild gelegt wird. X und Y bestimmen | ||
577 | seine Position. D (Dichte) regelt, wie ausgebeult oder | ||
578 | zerrissen die Wolken wirken. | ||
579 | </f_translation> | ||
580 | </string><string><a_file>alerts.xml</a_file> | ||
581 | <b_path>//HelpCloudDensity/message</b_path> | ||
582 | <c_attribute></c_attribute> | ||
583 | <d_old></d_old> | ||
584 | <e_new> | ||
585 | Allows you to control the position of the clouds | ||
586 | with the X and Y sliders and how dense they are | ||
587 | with the the D slider. | ||
588 | </e_new> | ||
589 | <f_old_trans></f_old_trans> | ||
590 | <f_translation> | ||
591 | Mit den X- und Y-Reglern steuern Sie die | ||
592 | Position der Wolken, mit dem Regler D die | ||
593 | Wolkendichte. | ||
594 | </f_translation> | ||
595 | </string><string><a_file>alerts.xml</a_file> | ||
596 | <b_path>//HelpCloudCoverage/message</b_path> | ||
597 | <c_attribute></c_attribute> | ||
598 | <d_old></d_old> | ||
599 | <e_new> | ||
600 | Controls how much the clouds cover the sky. | ||
601 | </e_new> | ||
602 | <f_old_trans></f_old_trans> | ||
603 | <f_translation> | ||
604 | Steuert, wie stark die Wolken den Himmel bedecken. | ||
605 | </f_translation> | ||
606 | </string><string><a_file>alerts.xml</a_file> | ||
607 | <b_path>//HelpCloudScale/message</b_path> | ||
608 | <c_attribute></c_attribute> | ||
609 | <d_old></d_old> | ||
610 | <e_new> | ||
611 | Controls the scaling of the cloud image on the sky dome. | ||
612 | </e_new> | ||
613 | <f_old_trans></f_old_trans> | ||
614 | <f_translation> | ||
615 | Steuert die Skalierung des Wolkenbilds auf der Himmelskuppel. | ||
616 | </f_translation> | ||
617 | </string><string><a_file>alerts.xml</a_file> | ||
618 | <b_path>//HelpCloudScrollX/message</b_path> | ||
619 | <c_attribute></c_attribute> | ||
620 | <d_old></d_old> | ||
621 | <e_new> | ||
622 | Controls the speed of the clouds as they move in the X direction. | ||
623 | </e_new> | ||
624 | <f_old_trans></f_old_trans> | ||
625 | <f_translation> | ||
626 | Steuert die Bewegungsgeschwindigkeit der Wolken in X-Richtung. | ||
627 | </f_translation> | ||
628 | </string><string><a_file>alerts.xml</a_file> | ||
629 | <b_path>//HelpCloudScrollY/message</b_path> | ||
630 | <c_attribute></c_attribute> | ||
631 | <d_old></d_old> | ||
632 | <e_new> | ||
633 | Controls the speed of the clouds as they move in the Y direction. | ||
634 | </e_new> | ||
635 | <f_old_trans></f_old_trans> | ||
636 | <f_translation> | ||
637 | Steuert die Bewegungsgeschwindigkeit der Wolken in Y-Richtung. | ||
638 | </f_translation> | ||
639 | </string><string><a_file>alerts.xml</a_file> | ||
640 | <b_path>//HelpClassicClouds/message</b_path> | ||
641 | <c_attribute></c_attribute> | ||
642 | <d_old></d_old> | ||
643 | <e_new> | ||
644 | Check this box to enable rendering of Second Life's older classic clouds in addition to WindLight's clouds. | ||
645 | </e_new> | ||
646 | <f_old_trans></f_old_trans> | ||
647 | <f_translation> | ||
648 | Aktivieren Sie dieses Kontrollkästchen, um die Darstellung der klassischen Second Life Wolken zusätzlich zu den WindLight-Wolken zu erzwingen. | ||
649 | </f_translation> | ||
650 | </string><string><a_file>alerts.xml</a_file> | ||
651 | <b_path>//HelpWaterFogColor/message</b_path> | ||
652 | <c_attribute></c_attribute> | ||
653 | <d_old></d_old> | ||
654 | <e_new> | ||
655 | Chooses the color of the underwater fog. | ||
656 | </e_new> | ||
657 | <f_old_trans></f_old_trans> | ||
658 | <f_translation> | ||
659 | Steuert die Farbe der Wassertrübung | ||
660 | </f_translation> | ||
661 | </string><string><a_file>alerts.xml</a_file> | ||
662 | <b_path>//HelpWaterFogDensity/message</b_path> | ||
663 | <c_attribute></c_attribute> | ||
664 | <d_old></d_old> | ||
665 | <e_new> | ||
666 | Controls how dense the water fog is and how far you can see underwater. | ||
667 | </e_new> | ||
668 | <f_old_trans></f_old_trans> | ||
669 | <f_translation> | ||
670 | Steuert die Dichte der Wassertrübung und wie weit Sie unter Wasser sehen können. | ||
671 | </f_translation> | ||
672 | </string><string><a_file>alerts.xml</a_file> | ||
673 | <b_path>//HelpUnderWaterFogMod/message</b_path> | ||
674 | <c_attribute></c_attribute> | ||
675 | <d_old></d_old> | ||
676 | <e_new> | ||
677 | Modifies the effect of the Fog Density Exponent to control how far you can see when your avatar is underwater. | ||
678 | </e_new> | ||
679 | <f_old_trans></f_old_trans> | ||
680 | <f_translation> | ||
681 | Beeinflusst die Auswirkung des Wassertrübungs-Exponenten und regelt die Sichtweite Ihres Avatars unter Wasser. | ||
682 | </f_translation> | ||
683 | </string><string><a_file>alerts.xml</a_file> | ||
684 | <b_path>//HelpWaterGlow/message</b_path> | ||
685 | <c_attribute></c_attribute> | ||
686 | <d_old></d_old> | ||
687 | <e_new> | ||
688 | Controls how much the surface of the water glows. | ||
689 | </e_new> | ||
690 | <f_old_trans></f_old_trans> | ||
691 | <f_translation> | ||
692 | Steuert, wie groß der Anteil der leuchtenden Wasseroberfläche ist. | ||
693 | </f_translation> | ||
694 | </string><string><a_file>alerts.xml</a_file> | ||
695 | <b_path>//HelpWaterNormalScale/message</b_path> | ||
696 | <c_attribute></c_attribute> | ||
697 | <d_old></d_old> | ||
698 | <e_new> | ||
699 | Controls the scaling of the three wavelets that make up the water. | ||
700 | </e_new> | ||
701 | <f_old_trans></f_old_trans> | ||
702 | <f_translation> | ||
703 | Steuert die Skalierung der drei Elementarwellen, die das Wasser ausmachen. | ||
704 | </f_translation> | ||
705 | </string><string><a_file>alerts.xml</a_file> | ||
706 | <b_path>//HelpWaterFresnelScale/message</b_path> | ||
707 | <c_attribute></c_attribute> | ||
708 | <d_old></d_old> | ||
709 | <e_new> | ||
710 | Controls how much light is reflected at different angles. | ||
711 | </e_new> | ||
712 | <f_old_trans></f_old_trans> | ||
713 | <f_translation> | ||
714 | Steuert die winkelabhängige Lichtreflexion. | ||
715 | </f_translation> | ||
716 | </string><string><a_file>alerts.xml</a_file> | ||
717 | <b_path>//HelpWaterFresnelOffset/message</b_path> | ||
718 | <c_attribute></c_attribute> | ||
719 | <d_old></d_old> | ||
720 | <e_new> | ||
721 | Controls how much light intensity is reflected. | ||
722 | </e_new> | ||
723 | <f_old_trans></f_old_trans> | ||
724 | <f_translation> | ||
725 | Steuert die Intensität des reflektierten Lichts. | ||
726 | </f_translation> | ||
727 | </string><string><a_file>alerts.xml</a_file> | ||
728 | <b_path>//HelpWaterScaleAbove/message</b_path> | ||
729 | <c_attribute></c_attribute> | ||
730 | <d_old></d_old> | ||
731 | <e_new> | ||
732 | Controls how much light is refracted from looking above the surface of the water. | ||
733 | </e_new> | ||
734 | <f_old_trans></f_old_trans> | ||
735 | <f_translation> | ||
736 | Steuert die Stärke der Lichtbrechung von oberhalb der Wasseroberfläche aus gesehen. | ||
737 | </f_translation> | ||
738 | </string><string><a_file>alerts.xml</a_file> | ||
739 | <b_path>//HelpWaterScaleBelow/message</b_path> | ||
740 | <c_attribute></c_attribute> | ||
741 | <d_old></d_old> | ||
742 | <e_new> | ||
743 | Controls how much light is refracted from looking from below the surface of the water. | ||
744 | </e_new> | ||
745 | <f_old_trans></f_old_trans> | ||
746 | <f_translation> | ||
747 | Steuert die Stärke der Lichtbrechung von unterhalb der Wasseroberfläche aus gesehen. | ||
748 | </f_translation> | ||
749 | </string><string><a_file>alerts.xml</a_file> | ||
750 | <b_path>//HelpWaterBlurMultiplier/message</b_path> | ||
751 | <c_attribute></c_attribute> | ||
752 | <d_old></d_old> | ||
753 | <e_new> | ||
754 | Controls how waves and reflections are mixed. | ||
755 | </e_new> | ||
756 | <f_old_trans></f_old_trans> | ||
757 | <f_translation> | ||
758 | Steuert die Mischung von Wellen und Reflexionen. | ||
759 | </f_translation> | ||
760 | </string><string><a_file>alerts.xml</a_file> | ||
761 | <b_path>//HelpWaterNormalMap/message</b_path> | ||
762 | <c_attribute></c_attribute> | ||
763 | <d_old></d_old> | ||
764 | <e_new> | ||
765 | Controls what normal map is layered across the water | ||
766 | to determine reflections/refractions. | ||
767 | </e_new> | ||
768 | <f_old_trans></f_old_trans> | ||
769 | <f_translation> | ||
770 | Ermöglicht die Auswahl einer Normal-Map zur | ||
771 | Berechnung von Reflexionen/Brechungen auf dem Wasser. | ||
772 | </f_translation> | ||
773 | </string><string><a_file>alerts.xml</a_file> | ||
774 | <b_path>//HelpWaterWave1/message</b_path> | ||
775 | <c_attribute></c_attribute> | ||
776 | <d_old></d_old> | ||
777 | <e_new> | ||
778 | Controls where and how fast the large scaled version of the normal | ||
779 | map moves in the X and Y direction. | ||
780 | </e_new> | ||
781 | <f_old_trans></f_old_trans> | ||
782 | <f_translation> | ||
783 | Steuert die Bewegungsgeschwindigkeit und -richtung der großen | ||
784 | Normal-Map-Version in X- und Y-Richtung. | ||
785 | </f_translation> | ||
786 | </string><string><a_file>alerts.xml</a_file> | ||
787 | <b_path>//HelpWaterWave2/message</b_path> | ||
788 | <c_attribute></c_attribute> | ||
789 | <d_old></d_old> | ||
790 | <e_new> | ||
791 | Controls where and how fast the the small scaled version of the | ||
792 | normal map moves in the X and Y direction. | ||
793 | </e_new> | ||
794 | <f_old_trans></f_old_trans> | ||
795 | <f_translation> | ||
796 | Steuert die Bewegungsgeschwindigkeit und -richtung der kleinen | ||
797 | Normal-Map-Version in X- und Y-Richtung. | ||
798 | </f_translation> | ||
799 | </string><string><a_file>alerts.xml</a_file> | ||
800 | <b_path>//NewSkyPreset/message</b_path> | ||
801 | <c_attribute></c_attribute> | ||
802 | <d_old></d_old> | ||
803 | <e_new> | ||
804 | Give me a name for the new sky. | ||
805 | </e_new> | ||
806 | <f_old_trans></f_old_trans> | ||
807 | <f_translation> | ||
808 | Wählen Sie einen Namen für den neuen Himmel. | ||
809 | </f_translation> | ||
810 | </string><string><a_file>alerts.xml</a_file> | ||
811 | <b_path>//NewSkyPreset/</b_path> | ||
812 | <c_attribute></c_attribute> | ||
813 | <d_old></d_old> | ||
814 | <e_new> | ||
815 | New Preset | ||
816 | </e_new> | ||
817 | <f_old_trans></f_old_trans> | ||
818 | <f_translation> | ||
819 | Neue Voreinstellung | ||
820 | </f_translation> | ||
821 | </string><string><a_file>alerts.xml</a_file> | ||
822 | <b_path>//NewSkyPreset/OK</b_path> | ||
823 | <c_attribute></c_attribute> | ||
824 | <d_old></d_old> | ||
825 | <e_new> | ||
826 | OK | ||
827 | </e_new> | ||
828 | <f_old_trans></f_old_trans> | ||
829 | <f_translation> | ||
830 | OK | ||
831 | </f_translation> | ||
832 | </string><string><a_file>alerts.xml</a_file> | ||
833 | <b_path>//NewSkyPreset/Cancel</b_path> | ||
834 | <c_attribute></c_attribute> | ||
835 | <d_old></d_old> | ||
836 | <e_new> | ||
837 | Cancel | ||
838 | </e_new> | ||
839 | <f_old_trans></f_old_trans> | ||
840 | <f_translation> | ||
841 | Abbrechen | ||
842 | </f_translation> | ||
843 | </string><string><a_file>alerts.xml</a_file> | ||
844 | <b_path>//ExistsSkyPresetAlert/message</b_path> | ||
845 | <c_attribute></c_attribute> | ||
846 | <d_old></d_old> | ||
847 | <e_new> | ||
848 | Preset already exists! | ||
849 | </e_new> | ||
850 | <f_old_trans></f_old_trans> | ||
851 | <f_translation> | ||
852 | Voreinstellung bereits vorhanden! | ||
853 | </f_translation> | ||
854 | </string><string><a_file>alerts.xml</a_file> | ||
855 | <b_path>//NewWaterPreset/message</b_path> | ||
856 | <c_attribute></c_attribute> | ||
857 | <d_old></d_old> | ||
858 | <e_new> | ||
859 | Give me a name for the new water preset. | ||
860 | </e_new> | ||
861 | <f_old_trans></f_old_trans> | ||
862 | <f_translation> | ||
863 | Wählen Sie einen Namen für die neue Wasservoreinstellung. | ||
864 | </f_translation> | ||
865 | </string><string><a_file>alerts.xml</a_file> | ||
866 | <b_path>//NewWaterPreset/</b_path> | ||
867 | <c_attribute></c_attribute> | ||
868 | <d_old></d_old> | ||
869 | <e_new> | ||
870 | New Preset | ||
871 | </e_new> | ||
872 | <f_old_trans></f_old_trans> | ||
873 | <f_translation> | ||
874 | Neue Voreinstellung | ||
875 | </f_translation> | ||
876 | </string><string><a_file>alerts.xml</a_file> | ||
877 | <b_path>//NewWaterPreset/OK</b_path> | ||
878 | <c_attribute></c_attribute> | ||
879 | <d_old></d_old> | ||
880 | <e_new> | ||
881 | OK | ||
882 | </e_new> | ||
883 | <f_old_trans></f_old_trans> | ||
884 | <f_translation> | ||
885 | OK | ||
886 | </f_translation> | ||
887 | </string><string><a_file>alerts.xml</a_file> | ||
888 | <b_path>//NewWaterPreset/Cancel</b_path> | ||
889 | <c_attribute></c_attribute> | ||
890 | <d_old></d_old> | ||
891 | <e_new> | ||
892 | Cancel | ||
893 | </e_new> | ||
894 | <f_old_trans></f_old_trans> | ||
895 | <f_translation> | ||
896 | Abbrechen | ||
897 | </f_translation> | ||
898 | </string><string><a_file>alerts.xml</a_file> | ||
899 | <b_path>//ExistsWaterPresetAlert/message</b_path> | ||
900 | <c_attribute></c_attribute> | ||
901 | <d_old></d_old> | ||
902 | <e_new> | ||
903 | Preset already exists! | ||
904 | </e_new> | ||
905 | <f_old_trans></f_old_trans> | ||
906 | <f_translation> | ||
907 | Voreinstellung bereits vorhanden! | ||
908 | </f_translation> | ||
909 | </string><string><a_file>alerts.xml</a_file> | ||
910 | <b_path>//WaterNoEditDefault/message</b_path> | ||
911 | <c_attribute></c_attribute> | ||
912 | <d_old></d_old> | ||
913 | <e_new> | ||
914 | You cannot edit or delete a default preset. | ||
915 | </e_new> | ||
916 | <f_old_trans></f_old_trans> | ||
917 | <f_translation> | ||
918 | Standardvoreinstellungen können nicht bearbeitet oder gelöscht werden. | ||
919 | </f_translation> | ||
920 | </string><string><a_file>floater_about_land.xml</a_file> | ||
921 | <b_path>/floaterland/landtab/land_media_panel/with media:</b_path> | ||
922 | <c_attribute></c_attribute> | ||
923 | <d_old></d_old> | ||
924 | <e_new> | ||
925 | Media Type: | ||
926 | </e_new> | ||
927 | <f_old_trans></f_old_trans> | ||
928 | <f_translation> | ||
929 | Medientyp: | ||
930 | </f_translation> | ||
931 | </string><string><a_file>floater_about_land.xml</a_file> | ||
932 | <b_path>/floaterland/landtab/land_media_panel/media type</b_path> | ||
933 | <c_attribute>tool_tip</c_attribute> | ||
934 | <d_old></d_old> | ||
935 | <e_new>Specify if the URL is a movie, web page, or other media</e_new> | ||
936 | <f_old_trans></f_old_trans> | ||
937 | <f_translation>Geben Sie einen URL für den Film, die Webseite oder ein anderes Medium ein</f_translation> | ||
938 | </string><string><a_file>floater_about_land.xml</a_file> | ||
939 | <b_path>/floaterland/landtab/land_media_panel/at URL:</b_path> | ||
940 | <c_attribute></c_attribute> | ||
941 | <d_old></d_old> | ||
942 | <e_new> | ||
943 | Media URL: | ||
944 | </e_new> | ||
945 | <f_old_trans></f_old_trans> | ||
946 | <f_translation> | ||
947 | Medien-URL: | ||
948 | </f_translation> | ||
949 | </string><string><a_file>floater_about_land.xml</a_file> | ||
950 | <b_path>/floaterland/landtab/land_media_panel/set_media_url</b_path> | ||
6 | <c_attribute>label</c_attribute> | 951 | <c_attribute>label</c_attribute> |
7 | <d_old></d_old> | 952 | <d_old></d_old> |
8 | <e_new>Type</e_new> | 953 | <e_new>Set...</e_new> |
954 | <f_old_trans></f_old_trans> | ||
955 | <f_translation>Einstellen...</f_translation> | ||
956 | </string><string><a_file>floater_about_land.xml</a_file> | ||
957 | <b_path>/floaterland/landtab/land_media_panel/set_media_url</b_path> | ||
958 | <c_attribute>label_selected</c_attribute> | ||
959 | <d_old></d_old> | ||
960 | <e_new>Set...</e_new> | ||
961 | <f_old_trans></f_old_trans> | ||
962 | <f_translation>Einstellen...</f_translation> | ||
963 | </string><string><a_file>floater_about_land.xml</a_file> | ||
964 | <b_path>/floaterland/landtab/land_media_panel/Description:</b_path> | ||
965 | <c_attribute></c_attribute> | ||
966 | <d_old></d_old> | ||
967 | <e_new> | ||
968 | Description: | ||
969 | </e_new> | ||
970 | <f_old_trans></f_old_trans> | ||
971 | <f_translation> | ||
972 | Beschreibung: | ||
973 | </f_translation> | ||
974 | <f_old_trans></f_old_trans> | ||
975 | </string><string><a_file>floater_about_land.xml</a_file> | ||
976 | <b_path>/floaterland/landtab/land_media_panel/url_description</b_path> | ||
977 | <c_attribute>tool_tip</c_attribute> | ||
978 | <d_old></d_old> | ||
979 | <e_new>Text displayed next to play/load button</e_new> | ||
980 | <f_old_trans></f_old_trans> | ||
981 | <f_translation>Text, der neben der Abspielen/Laden-Schaltfläche angezeigt wird</f_translation> | ||
982 | </string><string><a_file>floater_about_land.xml</a_file> | ||
983 | <b_path>/floaterland/landtab/land_media_panel/replace_texture_help</b_path> | ||
984 | <c_attribute></c_attribute> | ||
985 | <d_old></d_old> | ||
986 | <e_new> | ||
987 | (Objects using this texture will show the movie or | ||
988 | web page after you click the play arrow.) | ||
989 | </e_new> | ||
990 | <f_old_trans></f_old_trans> | ||
991 | <f_translation> | ||
992 | (Objekte mit dieser Textur zeigen nach Anklicken | ||
993 | des Abspielen-Pfeils den Film oder die Webseite an.) | ||
994 | </f_translation> | ||
995 | </string><string><a_file>floater_about_land.xml</a_file> | ||
996 | <b_path>/floaterland/landtab/land_media_panel/Options:</b_path> | ||
997 | <c_attribute></c_attribute> | ||
998 | <d_old></d_old> | ||
999 | <e_new> | ||
1000 | Media | ||
1001 | Options: | ||
1002 | </e_new> | ||
9 | <f_old_trans></f_old_trans> | 1003 | <f_old_trans></f_old_trans> |
10 | <f_translation>Typ</f_translation> | 1004 | <f_translation> |
1005 | Medien- | ||
1006 | Optionen: | ||
1007 | </f_translation> | ||
11 | </string><string><a_file>floater_about_land.xml</a_file> | 1008 | </string><string><a_file>floater_about_land.xml</a_file> |
12 | <b_path>/floaterland/landtab/land_objects_panel/owner list/</b_path> | 1009 | <b_path>/floaterland/landtab/land_media_panel/media_loop</b_path> |
13 | <c_attribute>label</c_attribute> | 1010 | <c_attribute>label</c_attribute> |
14 | <d_old></d_old> | 1011 | <d_old></d_old> |
15 | <e_new>Name</e_new> | 1012 | <e_new>Loop Media</e_new> |
16 | <f_old_trans></f_old_trans> | 1013 | <f_old_trans></f_old_trans> |
17 | <f_translation>Name</f_translation> | 1014 | <f_translation>Als Schleife wiedergeben</f_translation> |
18 | </string><string><a_file>floater_about_land.xml</a_file> | 1015 | </string><string><a_file>floater_about_land.xml</a_file> |
19 | <b_path>/floaterland/landtab/land_objects_panel/owner list/</b_path> | 1016 | <b_path>/floaterland/landtab/land_media_panel/media_loop</b_path> |
1017 | <c_attribute>tool_tip</c_attribute> | ||
1018 | <d_old></d_old> | ||
1019 | <e_new>Play media in a loop. When the media has finished playing, it will restart from the beginning.</e_new> | ||
1020 | <f_old_trans></f_old_trans> | ||
1021 | <f_translation>Spielt das Medium in einer Schleife ab. Der Abspielvorgang wird immer wieder von vorne fortgesetzt.</f_translation> | ||
1022 | </string><string><a_file>floater_about_land.xml</a_file> | ||
1023 | <b_path>/floaterland/landtab/land_media_panel/hide_media_url</b_path> | ||
20 | <c_attribute>label</c_attribute> | 1024 | <c_attribute>label</c_attribute> |
21 | <d_old></d_old> | 1025 | <d_old></d_old> |
22 | <e_new>Count</e_new> | 1026 | <e_new>Hide Media URL</e_new> |
23 | <f_old_trans></f_old_trans> | 1027 | <f_old_trans></f_old_trans> |
24 | <f_translation>Zählen</f_translation> | 1028 | <f_translation>Medien-URL verstecken</f_translation> |
1029 | </string><string><a_file>floater_about_land.xml</a_file> | ||
1030 | <b_path>/floaterland/landtab/land_media_panel/hide_media_url</b_path> | ||
1031 | <c_attribute>tool_tip</c_attribute> | ||
1032 | <d_old></d_old> | ||
1033 | <e_new>Checking this option will hide the media url to any non-authorized viewers of this parcel information. Note this is not available for HTML types.</e_new> | ||
1034 | <f_old_trans></f_old_trans> | ||
1035 | <f_translation>Aktivieren Sie diese Option, wenn Sie nicht möchten, dass unautorisierte Personen die Medien-URL sehen können. Diese Option ist für HTML-Medien nicht verfügbar.</f_translation> | ||
1036 | </string><string><a_file>floater_about_land.xml</a_file> | ||
1037 | <b_path>/floaterland/landtab/land_media_panel/hide_music_url</b_path> | ||
1038 | <c_attribute>label</c_attribute> | ||
1039 | <d_old></d_old> | ||
1040 | <e_new>Hide Music URL</e_new> | ||
1041 | <f_old_trans></f_old_trans> | ||
1042 | <f_translation>Musik-URL verstecken</f_translation> | ||
1043 | </string><string><a_file>floater_about_land.xml</a_file> | ||
1044 | <b_path>/floaterland/landtab/land_media_panel/hide_music_url</b_path> | ||
1045 | <c_attribute>tool_tip</c_attribute> | ||
1046 | <d_old></d_old> | ||
1047 | <e_new>Checking this option will hide the music url to any non-authorized viewers of this parcel information</e_new> | ||
1048 | <f_old_trans></f_old_trans> | ||
1049 | <f_translation>Aktivieren Sie diese Option, wenn Sie nicht möchten, dass unautorisierte Personen die Musik-URL sehen können.</f_translation> | ||
1050 | </string><string><a_file>floater_about_land.xml</a_file> | ||
1051 | <b_path>/floaterland/landtab/land_media_panel/media_size</b_path> | ||
1052 | <c_attribute>tool_tip</c_attribute> | ||
1053 | <d_old></d_old> | ||
1054 | <e_new>Size to render Web media, leave 0 for default.</e_new> | ||
1055 | <f_old_trans></f_old_trans> | ||
1056 | <f_translation>Darstellungsgröße von Webmedien, für Standard bei 0 belassen.</f_translation> | ||
1057 | </string><string><a_file>floater_about_land.xml</a_file> | ||
1058 | <b_path>/floaterland/landtab/land_media_panel/media_size</b_path> | ||
1059 | <c_attribute></c_attribute> | ||
1060 | <d_old></d_old> | ||
1061 | <e_new> | ||
1062 | Media size: | ||
1063 | </e_new> | ||
1064 | <f_old_trans></f_old_trans> | ||
1065 | <f_translation> | ||
1066 | Mediengröße: | ||
1067 | </f_translation> | ||
1068 | </string><string><a_file>floater_about_land.xml</a_file> | ||
1069 | <b_path>/floaterland/landtab/land_media_panel/media_size_width</b_path> | ||
1070 | <c_attribute>tool_tip</c_attribute> | ||
1071 | <d_old></d_old> | ||
1072 | <e_new>Size to render Web media, leave 0 for default.</e_new> | ||
1073 | <f_old_trans></f_old_trans> | ||
1074 | <f_translation>Darstellungsgröße von Webmedien, für Standard bei 0 belassen.</f_translation> | ||
1075 | </string><string><a_file>floater_about_land.xml</a_file> | ||
1076 | <b_path>/floaterland/landtab/land_media_panel/media_size_height</b_path> | ||
1077 | <c_attribute>tool_tip</c_attribute> | ||
1078 | <d_old></d_old> | ||
1079 | <e_new>Size to render Web media, leave 0 for default.</e_new> | ||
1080 | <f_old_trans></f_old_trans> | ||
1081 | <f_translation>Darstellungsgröße von Webmedien, für Standard bei 0 belassen.</f_translation> | ||
1082 | </string><string><a_file>floater_about_land.xml</a_file> | ||
1083 | <b_path>/floaterland/landtab/land_media_panel/pixels</b_path> | ||
1084 | <c_attribute></c_attribute> | ||
1085 | <d_old></d_old> | ||
1086 | <e_new> | ||
1087 | pixels | ||
1088 | </e_new> | ||
1089 | <f_old_trans></f_old_trans> | ||
1090 | <f_translation> | ||
1091 | Pixel | ||
1092 | </f_translation> | ||
1093 | <f_old_trans></f_old_trans> | ||
1094 | </string><string><a_file>floater_about_land.xml</a_file> | ||
1095 | <b_path>/floaterland/landtab/land_media_panel/MusicURL:</b_path> | ||
1096 | <c_attribute></c_attribute> | ||
1097 | <d_old></d_old> | ||
1098 | <e_new> | ||
1099 | Music URL: | ||
1100 | </e_new> | ||
1101 | <f_old_trans></f_old_trans> | ||
1102 | <f_translation> | ||
1103 | Musik-URL: | ||
1104 | </f_translation> | ||
1105 | </string><string><a_file>floater_about_land.xml</a_file> | ||
1106 | <b_path>/floaterland/landtab/land_media_panel/Sound:</b_path> | ||
1107 | <c_attribute></c_attribute> | ||
1108 | <d_old></d_old> | ||
1109 | <e_new> | ||
1110 | Sound: | ||
1111 | </e_new> | ||
1112 | <f_old_trans></f_old_trans> | ||
1113 | <f_translation> | ||
1114 | Sound: | ||
1115 | </f_translation> | ||
1116 | </string><string><a_file>floater_about_land.xml</a_file> | ||
1117 | <b_path>/floaterland/landtab/land_access_panel/AllowedText</b_path> | ||
1118 | <c_attribute>label</c_attribute> | ||
1119 | <d_old></d_old> | ||
1120 | <e_new>Always Allow</e_new> | ||
1121 | <f_old_trans></f_old_trans> | ||
1122 | <f_translation>Immer erlauben</f_translation> | ||
1123 | </string><string><a_file>floater_about_land.xml</a_file> | ||
1124 | <b_path>/floaterland/landtab/land_access_panel/AllowedText</b_path> | ||
1125 | <c_attribute></c_attribute> | ||
1126 | <d_old></d_old> | ||
1127 | <e_new> | ||
1128 | Allowed Residents | ||
1129 | </e_new> | ||
1130 | <f_old_trans></f_old_trans> | ||
1131 | <f_translation> | ||
1132 | Zulässige Einwohner | ||
1133 | </f_translation> | ||
1134 | </string><string><a_file>floater_about_land.xml</a_file> | ||
1135 | <b_path>/floaterland/landtab/land_access_panel/BannedText</b_path> | ||
1136 | <c_attribute>label</c_attribute> | ||
1137 | <d_old></d_old> | ||
1138 | <e_new>Ban</e_new> | ||
1139 | <f_old_trans></f_old_trans> | ||
1140 | <f_translation>Verbannen</f_translation> | ||
1141 | </string><string><a_file>floater_about_land.xml</a_file> | ||
1142 | <b_path>/floaterland/landtab/land_access_panel/BannedText</b_path> | ||
1143 | <c_attribute></c_attribute> | ||
1144 | <d_old></d_old> | ||
1145 | <e_new> | ||
1146 | Banned Residents | ||
1147 | </e_new> | ||
1148 | <f_old_trans></f_old_trans> | ||
1149 | <f_translation> | ||
1150 | Verbannte Einwohner | ||
1151 | </f_translation> | ||
25 | </string><string><a_file>floater_active_speakers.xml</a_file> | 1152 | </string><string><a_file>floater_active_speakers.xml</a_file> |
26 | <b_path>/active_speakers/active_speakers_panel/speakers_list/speaking_status</b_path> | 1153 | <b_path>/active_speakers/active_speakers_panel/speakers_list/speaking_status</b_path> |
27 | <c_attribute>label</c_attribute> | 1154 | <c_attribute>label</c_attribute> |
@@ -29,6 +1156,17 @@ | |||
29 | <e_new></e_new> | 1156 | <e_new></e_new> |
30 | <f_old_trans></f_old_trans> | 1157 | <f_old_trans></f_old_trans> |
31 | <f_translation></f_translation> | 1158 | <f_translation></f_translation> |
1159 | </string><string><a_file>floater_buy_object.xml</a_file> | ||
1160 | <b_path>/contents/title_buy_copy_text</b_path> | ||
1161 | <c_attribute></c_attribute> | ||
1162 | <d_old></d_old> | ||
1163 | <e_new> | ||
1164 | Buy a copy of | ||
1165 | </e_new> | ||
1166 | <f_old_trans></f_old_trans> | ||
1167 | <f_translation> | ||
1168 | Kopie kaufen von | ||
1169 | </f_translation> | ||
32 | </string><string><a_file>floater_chatterbox.xml</a_file> | 1170 | </string><string><a_file>floater_chatterbox.xml</a_file> |
33 | <b_path>/floater_chatterbox</b_path> | 1171 | <b_path>/floater_chatterbox</b_path> |
34 | <c_attribute>title</c_attribute> | 1172 | <c_attribute>title</c_attribute> |
@@ -36,139 +1174,459 @@ | |||
36 | <e_new>Communicate</e_new> | 1174 | <e_new>Communicate</e_new> |
37 | <f_old_trans></f_old_trans> | 1175 | <f_old_trans></f_old_trans> |
38 | <f_translation>Unterhalten</f_translation> | 1176 | <f_translation>Unterhalten</f_translation> |
39 | </string><string><a_file>floater_device_settings.xml</a_file> | 1177 | </string><string><a_file>floater_day_cycle_options.xml</a_file> |
40 | <b_path>/floater_device_settings</b_path> | 1178 | <b_path>/Day Cycle Floater</b_path> |
41 | <c_attribute>title</c_attribute> | 1179 | <c_attribute>title</c_attribute> |
42 | <d_old></d_old> | 1180 | <d_old></d_old> |
43 | <e_new>Voice Chat Device Settings</e_new> | 1181 | <e_new>Day Cycle Editor</e_new> |
44 | <f_old_trans></f_old_trans> | 1182 | <f_old_trans></f_old_trans> |
45 | <f_translation>Zubehör-Einstellungen für Voice-Chat</f_translation> | 1183 | <f_translation>Tageszyklus-Editor</f_translation> |
46 | </string><string><a_file>floater_directory.xml</a_file> | 1184 | </string><string><a_file>floater_day_cycle_options.xml</a_file> |
47 | <b_path>/directory/Directory Tabs/find_all_panel/searching_text</b_path> | 1185 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle</b_path> |
1186 | <c_attribute>label</c_attribute> | ||
1187 | <d_old></d_old> | ||
1188 | <e_new>Day Cycle</e_new> | ||
1189 | <f_old_trans></f_old_trans> | ||
1190 | <f_translation>Tageszyklus</f_translation> | ||
1191 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1192 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WLDayCycleHelp</b_path> | ||
1193 | <c_attribute>label</c_attribute> | ||
1194 | <d_old></d_old> | ||
1195 | <e_new>?</e_new> | ||
1196 | <f_old_trans></f_old_trans> | ||
1197 | <f_translation> ?</f_translation> | ||
1198 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1199 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WLTimeSlider</b_path> | ||
1200 | <c_attribute>label</c_attribute> | ||
1201 | <d_old></d_old> | ||
1202 | <e_new></e_new> | ||
1203 | <f_old_trans></f_old_trans> | ||
1204 | <f_translation></f_translation> | ||
1205 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1206 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WLDayCycleKeys</b_path> | ||
1207 | <c_attribute>label</c_attribute> | ||
1208 | <d_old></d_old> | ||
1209 | <e_new></e_new> | ||
1210 | <f_old_trans></f_old_trans> | ||
1211 | <f_translation></f_translation> | ||
1212 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1213 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WL12am</b_path> | ||
48 | <c_attribute></c_attribute> | 1214 | <c_attribute></c_attribute> |
49 | <d_old></d_old> | 1215 | <d_old></d_old> |
50 | <e_new>Searching...</e_new> | 1216 | <e_new> |
1217 | 12am | ||
1218 | </e_new> | ||
51 | <f_old_trans></f_old_trans> | 1219 | <f_old_trans></f_old_trans> |
52 | <f_translation>Suchen...</f_translation> | 1220 | <f_translation> |
53 | </string><string><a_file>floater_directory.xml</a_file> | 1221 | 24:00 |
54 | <b_path>/directory/Directory Tabs/find_all_panel/not_found_text</b_path> | 1222 | </f_translation> |
1223 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1224 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WL3am</b_path> | ||
55 | <c_attribute></c_attribute> | 1225 | <c_attribute></c_attribute> |
56 | <d_old></d_old> | 1226 | <d_old></d_old> |
57 | <e_new>None Found.</e_new> | 1227 | <e_new> |
1228 | 3am | ||
1229 | </e_new> | ||
58 | <f_old_trans></f_old_trans> | 1230 | <f_old_trans></f_old_trans> |
59 | <f_translation>Nicht gefunden.</f_translation> | 1231 | <f_translation> |
60 | </string><string><a_file>floater_directory.xml</a_file> | 1232 | 03:00 |
61 | <b_path>/directory/Directory Tabs/classified_panel/searching_text</b_path> | 1233 | </f_translation> |
1234 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1235 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WL6am</b_path> | ||
62 | <c_attribute></c_attribute> | 1236 | <c_attribute></c_attribute> |
63 | <d_old></d_old> | 1237 | <d_old></d_old> |
64 | <e_new>Searching...</e_new> | 1238 | <e_new> |
1239 | 6am | ||
1240 | </e_new> | ||
65 | <f_old_trans></f_old_trans> | 1241 | <f_old_trans></f_old_trans> |
66 | <f_translation>Suchen...</f_translation> | 1242 | <f_translation> |
67 | </string><string><a_file>floater_directory.xml</a_file> | 1243 | 06:00 |
68 | <b_path>/directory/Directory Tabs/classified_panel/not_found_text</b_path> | 1244 | </f_translation> |
1245 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1246 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WL9amHash</b_path> | ||
69 | <c_attribute></c_attribute> | 1247 | <c_attribute></c_attribute> |
70 | <d_old></d_old> | 1248 | <d_old></d_old> |
71 | <e_new>None Found.</e_new> | 1249 | <e_new> |
1250 | 9am | ||
1251 | </e_new> | ||
72 | <f_old_trans></f_old_trans> | 1252 | <f_old_trans></f_old_trans> |
73 | <f_translation>Nicht gefunden.</f_translation> | 1253 | <f_translation> |
74 | </string><string><a_file>floater_directory.xml</a_file> | 1254 | 09:00 |
75 | <b_path>/directory/Directory Tabs/events_panel/searching_text</b_path> | 1255 | </f_translation> |
1256 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1257 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WL12pmHash</b_path> | ||
76 | <c_attribute></c_attribute> | 1258 | <c_attribute></c_attribute> |
77 | <d_old></d_old> | 1259 | <d_old></d_old> |
78 | <e_new>Searching...</e_new> | 1260 | <e_new> |
1261 | 12pm | ||
1262 | </e_new> | ||
79 | <f_old_trans></f_old_trans> | 1263 | <f_old_trans></f_old_trans> |
80 | <f_translation>Suchen...</f_translation> | 1264 | <f_translation> |
81 | </string><string><a_file>floater_directory.xml</a_file> | 1265 | 12:00 |
82 | <b_path>/directory/Directory Tabs/events_panel/not_found_text</b_path> | 1266 | </f_translation> |
1267 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1268 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WL3pm</b_path> | ||
83 | <c_attribute></c_attribute> | 1269 | <c_attribute></c_attribute> |
84 | <d_old></d_old> | 1270 | <d_old></d_old> |
85 | <e_new>None Found.</e_new> | 1271 | <e_new> |
1272 | 3pm | ||
1273 | </e_new> | ||
86 | <f_old_trans></f_old_trans> | 1274 | <f_old_trans></f_old_trans> |
87 | <f_translation>Nicht gefunden.</f_translation> | 1275 | <f_translation> |
88 | </string><string><a_file>floater_directory.xml</a_file> | 1276 | 15:00 |
89 | <b_path>/directory/Directory Tabs/popular_panel/searching_text</b_path> | 1277 | </f_translation> |
1278 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1279 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WL6pm</b_path> | ||
90 | <c_attribute></c_attribute> | 1280 | <c_attribute></c_attribute> |
91 | <d_old></d_old> | 1281 | <d_old></d_old> |
92 | <e_new>Searching...</e_new> | 1282 | <e_new> |
1283 | 6pm | ||
1284 | </e_new> | ||
93 | <f_old_trans></f_old_trans> | 1285 | <f_old_trans></f_old_trans> |
94 | <f_translation>Suchen...</f_translation> | 1286 | <f_translation> |
95 | </string><string><a_file>floater_directory.xml</a_file> | 1287 | 18:00 |
96 | <b_path>/directory/Directory Tabs/popular_panel/not_found_text</b_path> | 1288 | </f_translation> |
1289 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1290 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WL9pm</b_path> | ||
97 | <c_attribute></c_attribute> | 1291 | <c_attribute></c_attribute> |
98 | <d_old></d_old> | 1292 | <d_old></d_old> |
99 | <e_new>None Found.</e_new> | 1293 | <e_new> |
1294 | 9pm | ||
1295 | </e_new> | ||
100 | <f_old_trans></f_old_trans> | 1296 | <f_old_trans></f_old_trans> |
101 | <f_translation>Nicht gefunden.</f_translation> | 1297 | <f_translation> |
102 | </string><string><a_file>floater_directory.xml</a_file> | 1298 | 21:00 |
103 | <b_path>/directory/Directory Tabs/land_sales_panel/searching_text</b_path> | 1299 | </f_translation> |
1300 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1301 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WL12am2</b_path> | ||
104 | <c_attribute></c_attribute> | 1302 | <c_attribute></c_attribute> |
105 | <d_old></d_old> | 1303 | <d_old></d_old> |
106 | <e_new>Searching...</e_new> | 1304 | <e_new> |
1305 | 12am | ||
1306 | </e_new> | ||
107 | <f_old_trans></f_old_trans> | 1307 | <f_old_trans></f_old_trans> |
108 | <f_translation>Suchen...</f_translation> | 1308 | <f_translation> |
109 | </string><string><a_file>floater_directory.xml</a_file> | 1309 | 24:00 |
110 | <b_path>/directory/Directory Tabs/land_sales_panel/not_found_text</b_path> | 1310 | </f_translation> |
1311 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1312 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WL12amHash</b_path> | ||
111 | <c_attribute></c_attribute> | 1313 | <c_attribute></c_attribute> |
112 | <d_old></d_old> | 1314 | <d_old></d_old> |
113 | <e_new>None Found.</e_new> | 1315 | <e_new> |
1316 | | | ||
1317 | </e_new> | ||
114 | <f_old_trans></f_old_trans> | 1318 | <f_old_trans></f_old_trans> |
115 | <f_translation>Nicht gefunden.</f_translation> | 1319 | <f_translation> |
116 | </string><string><a_file>floater_directory.xml</a_file> | 1320 | | |
117 | <b_path>/directory/Directory Tabs/places_panel/searching_text</b_path> | 1321 | </f_translation> |
1322 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1323 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WL3amHash</b_path> | ||
118 | <c_attribute></c_attribute> | 1324 | <c_attribute></c_attribute> |
119 | <d_old></d_old> | 1325 | <d_old></d_old> |
120 | <e_new>Searching...</e_new> | 1326 | <e_new> |
1327 | I | ||
1328 | </e_new> | ||
121 | <f_old_trans></f_old_trans> | 1329 | <f_old_trans></f_old_trans> |
122 | <f_translation>Suchen...</f_translation> | 1330 | <f_translation> |
123 | </string><string><a_file>floater_directory.xml</a_file> | 1331 | I |
124 | <b_path>/directory/Directory Tabs/places_panel/not_found_text</b_path> | 1332 | </f_translation> |
1333 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1334 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WL6amHash</b_path> | ||
125 | <c_attribute></c_attribute> | 1335 | <c_attribute></c_attribute> |
126 | <d_old></d_old> | 1336 | <d_old></d_old> |
127 | <e_new>None Found.</e_new> | 1337 | <e_new> |
1338 | | | ||
1339 | </e_new> | ||
128 | <f_old_trans></f_old_trans> | 1340 | <f_old_trans></f_old_trans> |
129 | <f_translation>Nicht gefunden.</f_translation> | 1341 | <f_translation> |
130 | </string><string><a_file>floater_directory.xml</a_file> | 1342 | | |
131 | <b_path>/directory/Directory Tabs/people_panel/searching_text</b_path> | 1343 | </f_translation> |
1344 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1345 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WL9amHash2</b_path> | ||
132 | <c_attribute></c_attribute> | 1346 | <c_attribute></c_attribute> |
133 | <d_old></d_old> | 1347 | <d_old></d_old> |
134 | <e_new>Searching...</e_new> | 1348 | <e_new> |
1349 | I | ||
1350 | </e_new> | ||
135 | <f_old_trans></f_old_trans> | 1351 | <f_old_trans></f_old_trans> |
136 | <f_translation>Suchen...</f_translation> | 1352 | <f_translation> |
137 | </string><string><a_file>floater_directory.xml</a_file> | 1353 | I |
138 | <b_path>/directory/Directory Tabs/people_panel/not_found_text</b_path> | 1354 | </f_translation> |
1355 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1356 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WL12pmHash2</b_path> | ||
139 | <c_attribute></c_attribute> | 1357 | <c_attribute></c_attribute> |
140 | <d_old></d_old> | 1358 | <d_old></d_old> |
141 | <e_new>None Found.</e_new> | 1359 | <e_new> |
1360 | | | ||
1361 | </e_new> | ||
142 | <f_old_trans></f_old_trans> | 1362 | <f_old_trans></f_old_trans> |
143 | <f_translation>Nicht gefunden.</f_translation> | 1363 | <f_translation> |
144 | </string><string><a_file>floater_directory.xml</a_file> | 1364 | | |
145 | <b_path>/directory/Directory Tabs/groups_panel/searching_text</b_path> | 1365 | </f_translation> |
1366 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1367 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WL3pmHash</b_path> | ||
146 | <c_attribute></c_attribute> | 1368 | <c_attribute></c_attribute> |
147 | <d_old></d_old> | 1369 | <d_old></d_old> |
148 | <e_new>Searching...</e_new> | 1370 | <e_new> |
1371 | I | ||
1372 | </e_new> | ||
149 | <f_old_trans></f_old_trans> | 1373 | <f_old_trans></f_old_trans> |
150 | <f_translation>Suchen...</f_translation> | 1374 | <f_translation> |
151 | </string><string><a_file>floater_directory.xml</a_file> | 1375 | I |
152 | <b_path>/directory/Directory Tabs/groups_panel/not_found_text</b_path> | 1376 | </f_translation> |
1377 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1378 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WL6pmHash</b_path> | ||
153 | <c_attribute></c_attribute> | 1379 | <c_attribute></c_attribute> |
154 | <d_old></d_old> | 1380 | <d_old></d_old> |
155 | <e_new>None Found.</e_new> | 1381 | <e_new> |
1382 | | | ||
1383 | </e_new> | ||
156 | <f_old_trans></f_old_trans> | 1384 | <f_old_trans></f_old_trans> |
157 | <f_translation>Nicht gefunden.</f_translation> | 1385 | <f_translation> |
158 | </string><string><a_file>floater_directory.xml</a_file> | 1386 | | |
159 | <b_path>/directory/Directory Tabs/find_all_old_panel/searching_text</b_path> | 1387 | </f_translation> |
1388 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1389 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WL9pmHash</b_path> | ||
160 | <c_attribute></c_attribute> | 1390 | <c_attribute></c_attribute> |
161 | <d_old></d_old> | 1391 | <d_old></d_old> |
162 | <e_new>Searching...</e_new> | 1392 | <e_new> |
1393 | I | ||
1394 | </e_new> | ||
163 | <f_old_trans></f_old_trans> | 1395 | <f_old_trans></f_old_trans> |
164 | <f_translation>Suchen...</f_translation> | 1396 | <f_translation> |
165 | </string><string><a_file>floater_directory.xml</a_file> | 1397 | I |
166 | <b_path>/directory/Directory Tabs/find_all_old_panel/not_found_text</b_path> | 1398 | </f_translation> |
1399 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1400 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WL12amHash2</b_path> | ||
1401 | <c_attribute></c_attribute> | ||
1402 | <d_old></d_old> | ||
1403 | <e_new> | ||
1404 | | | ||
1405 | </e_new> | ||
1406 | <f_old_trans></f_old_trans> | ||
1407 | <f_translation> | ||
1408 | | | ||
1409 | </f_translation> | ||
1410 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1411 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WLAddKey</b_path> | ||
1412 | <c_attribute>label</c_attribute> | ||
1413 | <d_old></d_old> | ||
1414 | <e_new>Add Key</e_new> | ||
1415 | <f_old_trans></f_old_trans> | ||
1416 | <f_translation>Key hinzu</f_translation> | ||
1417 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1418 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WLAddKey</b_path> | ||
1419 | <c_attribute>label_selected</c_attribute> | ||
1420 | <d_old></d_old> | ||
1421 | <e_new>Add Key</e_new> | ||
1422 | <f_old_trans></f_old_trans> | ||
1423 | <f_translation>Key hinzu</f_translation> | ||
1424 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1425 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WLDeleteKey</b_path> | ||
1426 | <c_attribute>label</c_attribute> | ||
1427 | <d_old></d_old> | ||
1428 | <e_new>Delete Key</e_new> | ||
1429 | <f_old_trans></f_old_trans> | ||
1430 | <f_translation>Key löschen</f_translation> | ||
1431 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1432 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WLDeleteKey</b_path> | ||
1433 | <c_attribute>label_selected</c_attribute> | ||
1434 | <d_old></d_old> | ||
1435 | <e_new>Delete Key</e_new> | ||
1436 | <f_old_trans></f_old_trans> | ||
1437 | <f_translation>Key löschen</f_translation> | ||
1438 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1439 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WLCurKeyFrameText</b_path> | ||
167 | <c_attribute></c_attribute> | 1440 | <c_attribute></c_attribute> |
168 | <d_old></d_old> | 1441 | <d_old></d_old> |
169 | <e_new>None Found.</e_new> | 1442 | <e_new> |
1443 | Key Frame Settings: | ||
1444 | </e_new> | ||
1445 | <f_old_trans></f_old_trans> | ||
1446 | <f_translation> | ||
1447 | Keyframe-Einstellungen: | ||
1448 | </f_translation> | ||
1449 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1450 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WLCurKeyTimeText</b_path> | ||
1451 | <c_attribute></c_attribute> | ||
1452 | <d_old></d_old> | ||
1453 | <e_new> | ||
1454 | Key Time: | ||
1455 | </e_new> | ||
1456 | <f_old_trans></f_old_trans> | ||
1457 | <f_translation> | ||
1458 | Key-Zeit: | ||
1459 | </f_translation> | ||
1460 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1461 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WLCurKeyHour</b_path> | ||
1462 | <c_attribute>label</c_attribute> | ||
1463 | <d_old></d_old> | ||
1464 | <e_new>Hour</e_new> | ||
1465 | <f_old_trans></f_old_trans> | ||
1466 | <f_translation>Std.</f_translation> | ||
1467 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1468 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WLCurKeyMin</b_path> | ||
1469 | <c_attribute>label</c_attribute> | ||
1470 | <d_old></d_old> | ||
1471 | <e_new>Min</e_new> | ||
1472 | <f_old_trans></f_old_trans> | ||
1473 | <f_translation>Min.</f_translation> | ||
1474 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1475 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WLCurKeyTimeText2</b_path> | ||
1476 | <c_attribute></c_attribute> | ||
1477 | <d_old></d_old> | ||
1478 | <e_new> | ||
1479 | Key Preset: | ||
1480 | </e_new> | ||
1481 | <f_old_trans></f_old_trans> | ||
1482 | <f_translation> | ||
1483 | Key-Voreinstellung: | ||
1484 | </f_translation> | ||
1485 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1486 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WLKeyPresets</b_path> | ||
1487 | <c_attribute>label</c_attribute> | ||
1488 | <d_old></d_old> | ||
1489 | <e_new>Preset</e_new> | ||
1490 | <f_old_trans></f_old_trans> | ||
1491 | <f_translation>Voreinstellung</f_translation> | ||
1492 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1493 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/DayCycleText</b_path> | ||
1494 | <c_attribute></c_attribute> | ||
1495 | <d_old></d_old> | ||
1496 | <e_new> | ||
1497 | Snap: | ||
1498 | </e_new> | ||
1499 | <f_old_trans></f_old_trans> | ||
1500 | <f_translation> | ||
1501 | Einrasten: | ||
1502 | </f_translation> | ||
1503 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1504 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WLSnapOptions</b_path> | ||
1505 | <c_attribute>label</c_attribute> | ||
1506 | <d_old></d_old> | ||
1507 | <e_new>5 min</e_new> | ||
1508 | <f_old_trans></f_old_trans> | ||
1509 | <f_translation>5 min</f_translation> | ||
1510 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1511 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/DayCycleText2</b_path> | ||
1512 | <c_attribute></c_attribute> | ||
1513 | <d_old></d_old> | ||
1514 | <e_new> | ||
1515 | Length of Cycle: | ||
1516 | </e_new> | ||
1517 | <f_old_trans></f_old_trans> | ||
1518 | <f_translation> | ||
1519 | Zykluslänge: | ||
1520 | </f_translation> | ||
1521 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1522 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WLLengthOfDayHour</b_path> | ||
1523 | <c_attribute>label</c_attribute> | ||
1524 | <d_old></d_old> | ||
1525 | <e_new>Hour</e_new> | ||
1526 | <f_old_trans></f_old_trans> | ||
1527 | <f_translation>Std.</f_translation> | ||
1528 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1529 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WLLengthOfDayMin</b_path> | ||
1530 | <c_attribute>label</c_attribute> | ||
1531 | <d_old></d_old> | ||
1532 | <e_new>Min</e_new> | ||
1533 | <f_old_trans></f_old_trans> | ||
1534 | <f_translation>Min.</f_translation> | ||
1535 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1536 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WLLengthOfDaySec</b_path> | ||
1537 | <c_attribute>label</c_attribute> | ||
1538 | <d_old></d_old> | ||
1539 | <e_new>Sec</e_new> | ||
1540 | <f_old_trans></f_old_trans> | ||
1541 | <f_translation>Sek.</f_translation> | ||
1542 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1543 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/DayCycleText3</b_path> | ||
1544 | <c_attribute></c_attribute> | ||
1545 | <d_old></d_old> | ||
1546 | <e_new> | ||
1547 | Preview: | ||
1548 | </e_new> | ||
1549 | <f_old_trans></f_old_trans> | ||
1550 | <f_translation> | ||
1551 | Vorschau: | ||
1552 | </f_translation> | ||
1553 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1554 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WLAnimSky</b_path> | ||
1555 | <c_attribute>label</c_attribute> | ||
1556 | <d_old></d_old> | ||
1557 | <e_new>Play</e_new> | ||
1558 | <f_old_trans></f_old_trans> | ||
1559 | <f_translation>Start</f_translation> | ||
1560 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1561 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WLAnimSky</b_path> | ||
1562 | <c_attribute>label_selected</c_attribute> | ||
1563 | <d_old></d_old> | ||
1564 | <e_new>Play</e_new> | ||
1565 | <f_old_trans></f_old_trans> | ||
1566 | <f_translation>Start</f_translation> | ||
1567 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1568 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WLStopAnimSky</b_path> | ||
1569 | <c_attribute>label</c_attribute> | ||
1570 | <d_old></d_old> | ||
1571 | <e_new>Stop!</e_new> | ||
1572 | <f_old_trans></f_old_trans> | ||
1573 | <f_translation>Stopp</f_translation> | ||
1574 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1575 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WLStopAnimSky</b_path> | ||
1576 | <c_attribute>label_selected</c_attribute> | ||
1577 | <d_old></d_old> | ||
1578 | <e_new>Stop</e_new> | ||
1579 | <f_old_trans></f_old_trans> | ||
1580 | <f_translation>Stopp</f_translation> | ||
1581 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1582 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WLUseLindenTime</b_path> | ||
1583 | <c_attribute>label</c_attribute> | ||
1584 | <d_old></d_old> | ||
1585 | <e_new>Use Estate Time</e_new> | ||
1586 | <f_old_trans></f_old_trans> | ||
1587 | <f_translation>Grundstückszeit verw.</f_translation> | ||
1588 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1589 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WLUseLindenTime</b_path> | ||
1590 | <c_attribute>label_selected</c_attribute> | ||
1591 | <d_old></d_old> | ||
1592 | <e_new>Go to Estate Time</e_new> | ||
1593 | <f_old_trans></f_old_trans> | ||
1594 | <f_translation>Zur Grundstückszeit</f_translation> | ||
1595 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1596 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WLSaveDayCycle</b_path> | ||
1597 | <c_attribute>label</c_attribute> | ||
1598 | <d_old></d_old> | ||
1599 | <e_new>Save Test Day</e_new> | ||
1600 | <f_old_trans></f_old_trans> | ||
1601 | <f_translation>Testtag speichern</f_translation> | ||
1602 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1603 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WLSaveDayCycle</b_path> | ||
1604 | <c_attribute>label_selected</c_attribute> | ||
1605 | <d_old></d_old> | ||
1606 | <e_new>Save Test Day</e_new> | ||
1607 | <f_old_trans></f_old_trans> | ||
1608 | <f_translation>Testtag speichern</f_translation> | ||
1609 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1610 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WLLoadDayCycle</b_path> | ||
1611 | <c_attribute>label</c_attribute> | ||
1612 | <d_old></d_old> | ||
1613 | <e_new>Load Test Day</e_new> | ||
1614 | <f_old_trans></f_old_trans> | ||
1615 | <f_translation>Testtag laden</f_translation> | ||
1616 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1617 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WLLoadDayCycle</b_path> | ||
1618 | <c_attribute>label_selected</c_attribute> | ||
1619 | <d_old></d_old> | ||
1620 | <e_new>Load Test Day</e_new> | ||
170 | <f_old_trans></f_old_trans> | 1621 | <f_old_trans></f_old_trans> |
171 | <f_translation>Nicht gefunden.</f_translation> | 1622 | <f_translation>Testtag laden</f_translation> |
1623 | </string><string><a_file>floater_device_settings.xml</a_file> | ||
1624 | <b_path>/floater_device_settings</b_path> | ||
1625 | <c_attribute>title</c_attribute> | ||
1626 | <d_old></d_old> | ||
1627 | <e_new>Voice Chat Device Settings</e_new> | ||
1628 | <f_old_trans></f_old_trans> | ||
1629 | <f_translation>Geräte-Einstellungen für Voice-Chat</f_translation> | ||
172 | </string><string><a_file>floater_directory.xml</a_file> | 1630 | </string><string><a_file>floater_directory.xml</a_file> |
173 | <b_path>/directory/Directory Tabs/find_all_old_panel/results/icon</b_path> | 1631 | <b_path>/directory/Directory Tabs/find_all_old_panel/results/icon</b_path> |
174 | <c_attribute>label</c_attribute> | 1632 | <c_attribute>label</c_attribute> |
@@ -176,50 +1634,622 @@ | |||
176 | <e_new></e_new> | 1634 | <e_new></e_new> |
177 | <f_old_trans></f_old_trans> | 1635 | <f_old_trans></f_old_trans> |
178 | <f_translation></f_translation> | 1636 | <f_translation></f_translation> |
179 | </string><string><a_file>floater_im.xml</a_file> | 1637 | </string><string><a_file>floater_env_settings.xml</a_file> |
180 | <b_path>/im_floater/no_ability_error</b_path> | 1638 | <b_path>/Environment Editor Floater</b_path> |
1639 | <c_attribute>title</c_attribute> | ||
1640 | <d_old></d_old> | ||
1641 | <e_new>Environment Editor</e_new> | ||
1642 | <f_old_trans></f_old_trans> | ||
1643 | <f_translation>Umwelt-Editor</f_translation> | ||
1644 | </string><string><a_file>floater_env_settings.xml</a_file> | ||
1645 | <b_path>/Environment Editor Floater/EnvTimeText</b_path> | ||
181 | <c_attribute></c_attribute> | 1646 | <c_attribute></c_attribute> |
182 | <d_old></d_old> | 1647 | <d_old></d_old> |
183 | <e_new> | 1648 | <e_new> |
184 | You do not have that ability. | 1649 | Time of Day |
185 | </e_new> | 1650 | </e_new> |
186 | <f_old_trans></f_old_trans> | 1651 | <f_old_trans></f_old_trans> |
187 | <f_translation> | 1652 | <f_translation> |
188 | Sie besitzen diese Fähigkeit nicht. | 1653 | Tageszeit |
189 | </f_translation> | 1654 | </f_translation> |
190 | </string><string><a_file>floater_im.xml</a_file> | 1655 | </string><string><a_file>floater_env_settings.xml</a_file> |
191 | <b_path>/im_floater/not_a_mod_error</b_path> | 1656 | <b_path>/Environment Editor Floater/EnvTimeText2</b_path> |
192 | <c_attribute></c_attribute> | 1657 | <c_attribute></c_attribute> |
193 | <d_old></d_old> | 1658 | <d_old></d_old> |
194 | <e_new> | 1659 | <e_new> |
195 | You are not a session moderator. | 1660 | 12:00 PM |
196 | </e_new> | 1661 | </e_new> |
197 | <f_old_trans></f_old_trans> | 1662 | <f_old_trans></f_old_trans> |
198 | <f_translation> | 1663 | <f_translation> |
199 | Sie sind kein Sitzungsmoderator. | 1664 | 12:00 |
200 | </f_translation> | 1665 | </f_translation> |
201 | </string><string><a_file>floater_im.xml</a_file> | 1666 | </string><string><a_file>floater_env_settings.xml</a_file> |
202 | <b_path>/im_floater/muted_error</b_path> | 1667 | <b_path>/Environment Editor Floater/EnvTimeSlider</b_path> |
1668 | <c_attribute>label</c_attribute> | ||
1669 | <d_old></d_old> | ||
1670 | <e_new></e_new> | ||
1671 | <f_old_trans></f_old_trans> | ||
1672 | <f_translation></f_translation> | ||
1673 | </string><string><a_file>floater_env_settings.xml</a_file> | ||
1674 | <b_path>/Environment Editor Floater/EnvCloudText</b_path> | ||
203 | <c_attribute></c_attribute> | 1675 | <c_attribute></c_attribute> |
204 | <d_old></d_old> | 1676 | <d_old></d_old> |
205 | <e_new> | 1677 | <e_new> |
206 | You have been muted. | 1678 | Cloud Cover |
207 | </e_new> | 1679 | </e_new> |
208 | <f_old_trans></f_old_trans> | 1680 | <f_old_trans></f_old_trans> |
209 | <f_translation> | 1681 | <f_translation> |
210 | Sie wurden stummgeschaltet. | 1682 | Wolkendecke |
211 | </f_translation> | 1683 | </f_translation> |
212 | </string><string><a_file>floater_im.xml</a_file> | 1684 | </string><string><a_file>floater_env_settings.xml</a_file> |
213 | <b_path>/im_floater/mute_agent_event</b_path> | 1685 | <b_path>/Environment Editor Floater/EnvCloudSlider</b_path> |
1686 | <c_attribute>label</c_attribute> | ||
1687 | <d_old></d_old> | ||
1688 | <e_new></e_new> | ||
1689 | <f_old_trans></f_old_trans> | ||
1690 | <f_translation></f_translation> | ||
1691 | </string><string><a_file>floater_env_settings.xml</a_file> | ||
1692 | <b_path>/Environment Editor Floater/EnvWaterColorText</b_path> | ||
214 | <c_attribute></c_attribute> | 1693 | <c_attribute></c_attribute> |
215 | <d_old></d_old> | 1694 | <d_old></d_old> |
216 | <e_new> | 1695 | <e_new> |
217 | muting agent in | 1696 | Water Color |
218 | </e_new> | 1697 | </e_new> |
219 | <f_old_trans></f_old_trans> | 1698 | <f_old_trans></f_old_trans> |
220 | <f_translation> | 1699 | <f_translation> |
221 | Agent wird stummgeschaltet in | 1700 | Wasserfarbe |
222 | </f_translation> | 1701 | </f_translation> |
1702 | </string><string><a_file>floater_env_settings.xml</a_file> | ||
1703 | <b_path>/Environment Editor Floater/EnvWaterColor</b_path> | ||
1704 | <c_attribute>label</c_attribute> | ||
1705 | <d_old></d_old> | ||
1706 | <e_new></e_new> | ||
1707 | <f_old_trans></f_old_trans> | ||
1708 | <f_translation></f_translation> | ||
1709 | </string><string><a_file>floater_env_settings.xml</a_file> | ||
1710 | <b_path>/Environment Editor Floater/EnvWaterColor</b_path> | ||
1711 | <c_attribute>tool_tip</c_attribute> | ||
1712 | <d_old></d_old> | ||
1713 | <e_new>Click to open Color Picker</e_new> | ||
1714 | <f_old_trans></f_old_trans> | ||
1715 | <f_translation>Klicken Sie hier, um die Farbauswahl zu öffnen</f_translation> | ||
1716 | </string><string><a_file>floater_env_settings.xml</a_file> | ||
1717 | <b_path>/Environment Editor Floater/EnvWaterFogText</b_path> | ||
1718 | <c_attribute></c_attribute> | ||
1719 | <d_old></d_old> | ||
1720 | <e_new> | ||
1721 | Water Fog | ||
1722 | </e_new> | ||
1723 | <f_old_trans></f_old_trans> | ||
1724 | <f_translation> | ||
1725 | Wassertrübung | ||
1726 | </f_translation> | ||
1727 | </string><string><a_file>floater_env_settings.xml</a_file> | ||
1728 | <b_path>/Environment Editor Floater/EnvWaterFogSlider</b_path> | ||
1729 | <c_attribute>label</c_attribute> | ||
1730 | <d_old></d_old> | ||
1731 | <e_new></e_new> | ||
1732 | <f_old_trans></f_old_trans> | ||
1733 | <f_translation></f_translation> | ||
1734 | </string><string><a_file>floater_env_settings.xml</a_file> | ||
1735 | <b_path>/Environment Editor Floater/EnvUseEstateTimeButton</b_path> | ||
1736 | <c_attribute>label</c_attribute> | ||
1737 | <d_old></d_old> | ||
1738 | <e_new>Use Estate Time</e_new> | ||
1739 | <f_old_trans></f_old_trans> | ||
1740 | <f_translation>Grundstückszeit verw.</f_translation> | ||
1741 | </string><string><a_file>floater_env_settings.xml</a_file> | ||
1742 | <b_path>/Environment Editor Floater/EnvAdvancedSkyButton</b_path> | ||
1743 | <c_attribute>label</c_attribute> | ||
1744 | <d_old></d_old> | ||
1745 | <e_new>Advanced Sky</e_new> | ||
1746 | <f_old_trans></f_old_trans> | ||
1747 | <f_translation>Himmel (erweitert)</f_translation> | ||
1748 | </string><string><a_file>floater_env_settings.xml</a_file> | ||
1749 | <b_path>/Environment Editor Floater/EnvAdvancedWaterButton</b_path> | ||
1750 | <c_attribute>label</c_attribute> | ||
1751 | <d_old></d_old> | ||
1752 | <e_new>Advanced Water</e_new> | ||
1753 | <f_old_trans></f_old_trans> | ||
1754 | <f_translation>Wasser (erweitert)</f_translation> | ||
1755 | </string><string><a_file>floater_env_settings.xml</a_file> | ||
1756 | <b_path>/Environment Editor Floater/EnvSettingsHelpButton</b_path> | ||
1757 | <c_attribute>label</c_attribute> | ||
1758 | <d_old></d_old> | ||
1759 | <e_new>?</e_new> | ||
1760 | <f_old_trans></f_old_trans> | ||
1761 | <f_translation> ?</f_translation> | ||
1762 | </string><string><a_file>floater_hardware_settings.xml</a_file> | ||
1763 | <b_path>/Hardware Settings Floater</b_path> | ||
1764 | <c_attribute>title</c_attribute> | ||
1765 | <d_old></d_old> | ||
1766 | <e_new>Hardware Settings</e_new> | ||
1767 | <f_old_trans></f_old_trans> | ||
1768 | <f_translation>Hardware-Einstellungen</f_translation> | ||
1769 | </string><string><a_file>floater_hardware_settings.xml</a_file> | ||
1770 | <b_path>/Hardware Settings Floater/Filtering:</b_path> | ||
1771 | <c_attribute></c_attribute> | ||
1772 | <d_old></d_old> | ||
1773 | <e_new> | ||
1774 | Filtering: | ||
1775 | </e_new> | ||
1776 | <f_old_trans></f_old_trans> | ||
1777 | <f_translation> | ||
1778 | Filtern: | ||
1779 | </f_translation> | ||
1780 | </string><string><a_file>floater_hardware_settings.xml</a_file> | ||
1781 | <b_path>/Hardware Settings Floater/ani</b_path> | ||
1782 | <c_attribute>label</c_attribute> | ||
1783 | <d_old></d_old> | ||
1784 | <e_new>Anisotropic Filtering (slower when enabled)</e_new> | ||
1785 | <f_old_trans></f_old_trans> | ||
1786 | <f_translation>Anisotropische Filterung (langsamer, wenn aktiviert)</f_translation> | ||
1787 | </string><string><a_file>floater_hardware_settings.xml</a_file> | ||
1788 | <b_path>/Hardware Settings Floater/gamma</b_path> | ||
1789 | <c_attribute>label</c_attribute> | ||
1790 | <d_old></d_old> | ||
1791 | <e_new>Gamma:</e_new> | ||
1792 | <f_old_trans></f_old_trans> | ||
1793 | <f_translation>Gamma:</f_translation> | ||
1794 | </string><string><a_file>floater_hardware_settings.xml</a_file> | ||
1795 | <b_path>/Hardware Settings Floater/(brightness, lower is brighter)</b_path> | ||
1796 | <c_attribute></c_attribute> | ||
1797 | <d_old></d_old> | ||
1798 | <e_new> | ||
1799 | (brightness, lower is brighter, 0=use default) | ||
1800 | </e_new> | ||
1801 | <f_old_trans></f_old_trans> | ||
1802 | <f_translation> | ||
1803 | (Helligkeit, niedriger ist heller, 0=Standard) | ||
1804 | </f_translation> | ||
1805 | </string><string><a_file>floater_hardware_settings.xml</a_file> | ||
1806 | <b_path>/Hardware Settings Floater/Enable VBO:</b_path> | ||
1807 | <c_attribute></c_attribute> | ||
1808 | <d_old></d_old> | ||
1809 | <e_new> | ||
1810 | Enable VBO: | ||
1811 | </e_new> | ||
1812 | <f_old_trans></f_old_trans> | ||
1813 | <f_translation> | ||
1814 | VBO aktivieren: | ||
1815 | </f_translation> | ||
1816 | </string><string><a_file>floater_hardware_settings.xml</a_file> | ||
1817 | <b_path>/Hardware Settings Floater/vbo</b_path> | ||
1818 | <c_attribute>label</c_attribute> | ||
1819 | <d_old></d_old> | ||
1820 | <e_new>Enable OpenGL Vertex Buffer Objects</e_new> | ||
1821 | <f_old_trans></f_old_trans> | ||
1822 | <f_translation>OpenGL Vertex-Buffer-Objekte aktivieren</f_translation> | ||
1823 | </string><string><a_file>floater_hardware_settings.xml</a_file> | ||
1824 | <b_path>/Hardware Settings Floater/vbo</b_path> | ||
1825 | <c_attribute>tool_tip</c_attribute> | ||
1826 | <d_old></d_old> | ||
1827 | <e_new>Enabling this on modern hardware gives a performance gain. However, older hardware often has poor implementations of VBOs and you may get crashes when this is enabled.</e_new> | ||
1828 | <f_old_trans></f_old_trans> | ||
1829 | <f_translation>Wenn Sie über moderne Grafikhardware verfügen, können Sie durch Aktivieren dieser Option die Geschwindigkeit verbessern. Bei alter Hardware sind die VBO oft schlecht implementiert, was zu Abstürzen führen kann, wenn diese Option aktiviert ist.</f_translation> | ||
1830 | </string><string><a_file>floater_hardware_settings.xml</a_file> | ||
1831 | <b_path>/Hardware Settings Floater/GrapicsCardTextureMemory</b_path> | ||
1832 | <c_attribute>label</c_attribute> | ||
1833 | <d_old></d_old> | ||
1834 | <e_new>Texture Memory (MB):</e_new> | ||
1835 | <f_old_trans></f_old_trans> | ||
1836 | <f_translation>Texturspeicher (MB):</f_translation> | ||
1837 | </string><string><a_file>floater_hardware_settings.xml</a_file> | ||
1838 | <b_path>/Hardware Settings Floater/GrapicsCardTextureMemory</b_path> | ||
1839 | <c_attribute>tool_tip</c_attribute> | ||
1840 | <d_old></d_old> | ||
1841 | <e_new>Amount of memory to allocate for textures. Defaults to Video Card Memory. Reducing this may improve performance but may also make textures blurry.</e_new> | ||
1842 | <f_old_trans></f_old_trans> | ||
1843 | <f_translation>Speicherplatz, der für Texturen zur Verfügung steht. In der Regel handelt es sich um Grafikkartenspeicher. Ein kleinerer Wert kann die Geschwindigkeit erhöhen, aber auch zu Texturunschärfen führen.</f_translation> | ||
1844 | </string><string><a_file>floater_hardware_settings.xml</a_file> | ||
1845 | <b_path>/Hardware Settings Floater/fog</b_path> | ||
1846 | <c_attribute>label</c_attribute> | ||
1847 | <d_old></d_old> | ||
1848 | <e_new>Fog Distance Ratio:</e_new> | ||
1849 | <f_old_trans></f_old_trans> | ||
1850 | <f_translation>Nebeldistanzverhältnis:</f_translation> | ||
1851 | </string><string><a_file>floater_hardware_settings.xml</a_file> | ||
1852 | <b_path>/Hardware Settings Floater/OK</b_path> | ||
1853 | <c_attribute>label</c_attribute> | ||
1854 | <d_old></d_old> | ||
1855 | <e_new>OK</e_new> | ||
1856 | <f_old_trans></f_old_trans> | ||
1857 | <f_translation>OK</f_translation> | ||
1858 | </string><string><a_file>floater_hardware_settings.xml</a_file> | ||
1859 | <b_path>/Hardware Settings Floater/OK</b_path> | ||
1860 | <c_attribute>label_selected</c_attribute> | ||
1861 | <d_old></d_old> | ||
1862 | <e_new>OK</e_new> | ||
1863 | <f_old_trans></f_old_trans> | ||
1864 | <f_translation>OK</f_translation> | ||
1865 | </string><string><a_file>floater_instant_message.xml</a_file> | ||
1866 | <b_path>/im_floater/default_text_label</b_path> | ||
1867 | <c_attribute></c_attribute> | ||
1868 | <d_old></d_old> | ||
1869 | <e_new> | ||
1870 | Click here to instant message. | ||
1871 | </e_new> | ||
1872 | <f_old_trans></f_old_trans> | ||
1873 | <f_translation> | ||
1874 | Für Instant Message hier klicken. | ||
1875 | </f_translation> | ||
1876 | </string><string><a_file>floater_instant_message_ad_hoc.xml</a_file> | ||
1877 | <b_path>/im_floater/default_text_label</b_path> | ||
1878 | <c_attribute></c_attribute> | ||
1879 | <d_old></d_old> | ||
1880 | <e_new> | ||
1881 | Click here to instant message. | ||
1882 | </e_new> | ||
1883 | <f_old_trans></f_old_trans> | ||
1884 | <f_translation> | ||
1885 | Für Instant Message hier klicken. | ||
1886 | </f_translation> | ||
1887 | </string><string><a_file>floater_live_lsleditor.xml</a_file> | ||
1888 | <b_path>/script ed float/script_running</b_path> | ||
1889 | <c_attribute></c_attribute> | ||
1890 | <d_old></d_old> | ||
1891 | <e_new> | ||
1892 | Running | ||
1893 | </e_new> | ||
1894 | <f_old_trans></f_old_trans> | ||
1895 | <f_translation> | ||
1896 | Läuft | ||
1897 | </f_translation> | ||
1898 | </string><string><a_file>floater_media_browser.xml</a_file> | ||
1899 | <b_path>/floater_about</b_path> | ||
1900 | <c_attribute>title</c_attribute> | ||
1901 | <d_old></d_old> | ||
1902 | <e_new>Media Browser</e_new> | ||
1903 | <f_old_trans></f_old_trans> | ||
1904 | <f_translation>Medienbrowser</f_translation> | ||
1905 | </string><string><a_file>floater_media_browser.xml</a_file> | ||
1906 | <b_path>/floater_about///back</b_path> | ||
1907 | <c_attribute>label</c_attribute> | ||
1908 | <d_old></d_old> | ||
1909 | <e_new>Back</e_new> | ||
1910 | <f_old_trans></f_old_trans> | ||
1911 | <f_translation>Zurück</f_translation> | ||
1912 | </string><string><a_file>floater_media_browser.xml</a_file> | ||
1913 | <b_path>/floater_about///forward</b_path> | ||
1914 | <c_attribute>label</c_attribute> | ||
1915 | <d_old></d_old> | ||
1916 | <e_new>Forward</e_new> | ||
1917 | <f_old_trans></f_old_trans> | ||
1918 | <f_translation>Weiter</f_translation> | ||
1919 | </string><string><a_file>floater_media_browser.xml</a_file> | ||
1920 | <b_path>/floater_about///reload</b_path> | ||
1921 | <c_attribute>label</c_attribute> | ||
1922 | <d_old></d_old> | ||
1923 | <e_new>Reload</e_new> | ||
1924 | <f_old_trans></f_old_trans> | ||
1925 | <f_translation>Neu laden</f_translation> | ||
1926 | </string><string><a_file>floater_media_browser.xml</a_file> | ||
1927 | <b_path>/floater_about///go</b_path> | ||
1928 | <c_attribute>label</c_attribute> | ||
1929 | <d_old></d_old> | ||
1930 | <e_new>Go</e_new> | ||
1931 | <f_old_trans></f_old_trans> | ||
1932 | <f_translation>Los</f_translation> | ||
1933 | </string><string><a_file>floater_media_browser.xml</a_file> | ||
1934 | <b_path>/floater_about//parcel_owner_controls/assign</b_path> | ||
1935 | <c_attribute>label</c_attribute> | ||
1936 | <d_old></d_old> | ||
1937 | <e_new>Send Current URL to Parcel</e_new> | ||
1938 | <f_old_trans></f_old_trans> | ||
1939 | <f_translation>Aktuelle URL an Parzelle senden</f_translation> | ||
1940 | </string><string><a_file>floater_media_browser.xml</a_file> | ||
1941 | <b_path>/floater_about///open_browser</b_path> | ||
1942 | <c_attribute>label</c_attribute> | ||
1943 | <d_old></d_old> | ||
1944 | <e_new>Open in My Web Browser</e_new> | ||
1945 | <f_old_trans></f_old_trans> | ||
1946 | <f_translation>In meinem Browser öffnen</f_translation> | ||
1947 | </string><string><a_file>floater_media_browser.xml</a_file> | ||
1948 | <b_path>/floater_about///open_always</b_path> | ||
1949 | <c_attribute>label</c_attribute> | ||
1950 | <d_old></d_old> | ||
1951 | <e_new>Always open in my web browser</e_new> | ||
1952 | <f_old_trans></f_old_trans> | ||
1953 | <f_translation>Immer in meinem Browser öffnen</f_translation> | ||
1954 | </string><string><a_file>floater_media_browser.xml</a_file> | ||
1955 | <b_path>/floater_about///close</b_path> | ||
1956 | <c_attribute>label</c_attribute> | ||
1957 | <d_old></d_old> | ||
1958 | <e_new>Close</e_new> | ||
1959 | <f_old_trans></f_old_trans> | ||
1960 | <f_translation>Schließen</f_translation> | ||
1961 | </string><string><a_file>floater_post_process.xml</a_file> | ||
1962 | <b_path>/Post-Process Floater</b_path> | ||
1963 | <c_attribute>title</c_attribute> | ||
1964 | <d_old></d_old> | ||
1965 | <e_new>Post-Process Settings</e_new> | ||
1966 | <f_old_trans></f_old_trans> | ||
1967 | <f_translation>Post-Processing-Einstellungen</f_translation> | ||
1968 | </string><string><a_file>floater_post_process.xml</a_file> | ||
1969 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiColorFilterPanel</b_path> | ||
1970 | <c_attribute>label</c_attribute> | ||
1971 | <d_old></d_old> | ||
1972 | <e_new>Color Filter</e_new> | ||
1973 | <f_old_trans></f_old_trans> | ||
1974 | <f_translation>Farbfilter</f_translation> | ||
1975 | </string><string><a_file>floater_post_process.xml</a_file> | ||
1976 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiColorFilterPanel/wmiColorFilterToggle</b_path> | ||
1977 | <c_attribute>label</c_attribute> | ||
1978 | <d_old></d_old> | ||
1979 | <e_new>Enable</e_new> | ||
1980 | <f_old_trans></f_old_trans> | ||
1981 | <f_translation>Ein</f_translation> | ||
1982 | </string><string><a_file>floater_post_process.xml</a_file> | ||
1983 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiColorFilterPanel/wmiColorFilterBrightnessText</b_path> | ||
1984 | <c_attribute></c_attribute> | ||
1985 | <d_old></d_old> | ||
1986 | <e_new> | ||
1987 | Brightness | ||
1988 | </e_new> | ||
1989 | <f_old_trans></f_old_trans> | ||
1990 | <f_translation> | ||
1991 | Helligkeit | ||
1992 | </f_translation> | ||
1993 | </string><string><a_file>floater_post_process.xml</a_file> | ||
1994 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiColorFilterPanel/wmiColorFilterBrightness</b_path> | ||
1995 | <c_attribute>label</c_attribute> | ||
1996 | <d_old></d_old> | ||
1997 | <e_new></e_new> | ||
1998 | <f_old_trans></f_old_trans> | ||
1999 | <f_translation></f_translation> | ||
2000 | </string><string><a_file>floater_post_process.xml</a_file> | ||
2001 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiColorFilterPanel/wmiColorFilterSaturationText</b_path> | ||
2002 | <c_attribute></c_attribute> | ||
2003 | <d_old></d_old> | ||
2004 | <e_new> | ||
2005 | Saturation | ||
2006 | </e_new> | ||
2007 | <f_old_trans></f_old_trans> | ||
2008 | <f_translation> | ||
2009 | Sättigung | ||
2010 | </f_translation> | ||
2011 | </string><string><a_file>floater_post_process.xml</a_file> | ||
2012 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiColorFilterPanel/wmiColorFilterSaturation</b_path> | ||
2013 | <c_attribute>label</c_attribute> | ||
2014 | <d_old></d_old> | ||
2015 | <e_new></e_new> | ||
2016 | <f_old_trans></f_old_trans> | ||
2017 | <f_translation></f_translation> | ||
2018 | </string><string><a_file>floater_post_process.xml</a_file> | ||
2019 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiColorFilterPanel/wmiColorFilterContrastText</b_path> | ||
2020 | <c_attribute></c_attribute> | ||
2021 | <d_old></d_old> | ||
2022 | <e_new> | ||
2023 | Contrast | ||
2024 | </e_new> | ||
2025 | <f_old_trans></f_old_trans> | ||
2026 | <f_translation> | ||
2027 | Kontrast | ||
2028 | </f_translation> | ||
2029 | </string><string><a_file>floater_post_process.xml</a_file> | ||
2030 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiColorFilterPanel/wmiColorFilterContrast</b_path> | ||
2031 | <c_attribute>label</c_attribute> | ||
2032 | <d_old></d_old> | ||
2033 | <e_new></e_new> | ||
2034 | <f_old_trans></f_old_trans> | ||
2035 | <f_translation></f_translation> | ||
2036 | </string><string><a_file>floater_post_process.xml</a_file> | ||
2037 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiColorFilterPanel/wmiColorFilterBaseText</b_path> | ||
2038 | <c_attribute></c_attribute> | ||
2039 | <d_old></d_old> | ||
2040 | <e_new> | ||
2041 | Contrast Base Color | ||
2042 | </e_new> | ||
2043 | <f_old_trans></f_old_trans> | ||
2044 | <f_translation> | ||
2045 | Kontrast-Grundfarbe | ||
2046 | </f_translation> | ||
2047 | </string><string><a_file>floater_post_process.xml</a_file> | ||
2048 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiColorFilterPanel/wmiColorFilterBaseR</b_path> | ||
2049 | <c_attribute>label</c_attribute> | ||
2050 | <d_old></d_old> | ||
2051 | <e_new>R</e_new> | ||
2052 | <f_old_trans></f_old_trans> | ||
2053 | <f_translation>R</f_translation> | ||
2054 | </string><string><a_file>floater_post_process.xml</a_file> | ||
2055 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiColorFilterPanel/wmiColorFilterBaseG</b_path> | ||
2056 | <c_attribute>label</c_attribute> | ||
2057 | <d_old></d_old> | ||
2058 | <e_new>G</e_new> | ||
2059 | <f_old_trans></f_old_trans> | ||
2060 | <f_translation>G</f_translation> | ||
2061 | </string><string><a_file>floater_post_process.xml</a_file> | ||
2062 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiColorFilterPanel/wmiColorFilterBaseB</b_path> | ||
2063 | <c_attribute>label</c_attribute> | ||
2064 | <d_old></d_old> | ||
2065 | <e_new>B</e_new> | ||
2066 | <f_old_trans></f_old_trans> | ||
2067 | <f_translation>B</f_translation> | ||
2068 | </string><string><a_file>floater_post_process.xml</a_file> | ||
2069 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiColorFilterPanel/wmiColorFilterBaseI</b_path> | ||
2070 | <c_attribute>label</c_attribute> | ||
2071 | <d_old></d_old> | ||
2072 | <e_new>I</e_new> | ||
2073 | <f_old_trans></f_old_trans> | ||
2074 | <f_translation>I</f_translation> | ||
2075 | </string><string><a_file>floater_post_process.xml</a_file> | ||
2076 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiNightVisionPanel</b_path> | ||
2077 | <c_attribute>label</c_attribute> | ||
2078 | <d_old></d_old> | ||
2079 | <e_new>Night Vision</e_new> | ||
2080 | <f_old_trans></f_old_trans> | ||
2081 | <f_translation>Nachtsicht</f_translation> | ||
2082 | </string><string><a_file>floater_post_process.xml</a_file> | ||
2083 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiNightVisionPanel/wmiNightVisionToggle</b_path> | ||
2084 | <c_attribute>label</c_attribute> | ||
2085 | <d_old></d_old> | ||
2086 | <e_new>Enable</e_new> | ||
2087 | <f_old_trans></f_old_trans> | ||
2088 | <f_translation>Ein</f_translation> | ||
2089 | </string><string><a_file>floater_post_process.xml</a_file> | ||
2090 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiNightVisionPanel/wmiNightVisionBrightMultText</b_path> | ||
2091 | <c_attribute></c_attribute> | ||
2092 | <d_old></d_old> | ||
2093 | <e_new> | ||
2094 | Light Amplification Multiple | ||
2095 | </e_new> | ||
2096 | <f_old_trans></f_old_trans> | ||
2097 | <f_translation> | ||
2098 | Lichtverstärkungsmultiplikator | ||
2099 | </f_translation> | ||
2100 | </string><string><a_file>floater_post_process.xml</a_file> | ||
2101 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiNightVisionPanel/wmiNightVisionBrightMult</b_path> | ||
2102 | <c_attribute>label</c_attribute> | ||
2103 | <d_old></d_old> | ||
2104 | <e_new></e_new> | ||
2105 | <f_old_trans></f_old_trans> | ||
2106 | <f_translation></f_translation> | ||
2107 | </string><string><a_file>floater_post_process.xml</a_file> | ||
2108 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiNightVisionPanel/wmiNightVisionNoiseSizeText</b_path> | ||
2109 | <c_attribute></c_attribute> | ||
2110 | <d_old></d_old> | ||
2111 | <e_new> | ||
2112 | Noise Size | ||
2113 | </e_new> | ||
2114 | <f_old_trans></f_old_trans> | ||
2115 | <f_translation> | ||
2116 | Rauschen-Größe | ||
2117 | </f_translation> | ||
2118 | </string><string><a_file>floater_post_process.xml</a_file> | ||
2119 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiNightVisionPanel/wmiNightVisionNoiseSize</b_path> | ||
2120 | <c_attribute>label</c_attribute> | ||
2121 | <d_old></d_old> | ||
2122 | <e_new></e_new> | ||
2123 | <f_old_trans></f_old_trans> | ||
2124 | <f_translation></f_translation> | ||
2125 | </string><string><a_file>floater_post_process.xml</a_file> | ||
2126 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiNightVisionPanel/wmiNightVisionNoiseStrengthText</b_path> | ||
2127 | <c_attribute></c_attribute> | ||
2128 | <d_old></d_old> | ||
2129 | <e_new> | ||
2130 | Noise Strength | ||
2131 | </e_new> | ||
2132 | <f_old_trans></f_old_trans> | ||
2133 | <f_translation> | ||
2134 | Rauschen-Stärke | ||
2135 | </f_translation> | ||
2136 | </string><string><a_file>floater_post_process.xml</a_file> | ||
2137 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiNightVisionPanel/wmiNightVisionNoiseStrength</b_path> | ||
2138 | <c_attribute>label</c_attribute> | ||
2139 | <d_old></d_old> | ||
2140 | <e_new></e_new> | ||
2141 | <f_old_trans></f_old_trans> | ||
2142 | <f_translation></f_translation> | ||
2143 | </string><string><a_file>floater_post_process.xml</a_file> | ||
2144 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiBloomPanel</b_path> | ||
2145 | <c_attribute>label</c_attribute> | ||
2146 | <d_old></d_old> | ||
2147 | <e_new>Bloom</e_new> | ||
2148 | <f_old_trans></f_old_trans> | ||
2149 | <f_translation>Bloom</f_translation> | ||
2150 | </string><string><a_file>floater_post_process.xml</a_file> | ||
2151 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiBloomPanel/wmiBloomToggle</b_path> | ||
2152 | <c_attribute>label</c_attribute> | ||
2153 | <d_old></d_old> | ||
2154 | <e_new>Enable</e_new> | ||
2155 | <f_old_trans></f_old_trans> | ||
2156 | <f_translation>Ein</f_translation> | ||
2157 | </string><string><a_file>floater_post_process.xml</a_file> | ||
2158 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiBloomPanel/wmiBloomExtractText</b_path> | ||
2159 | <c_attribute></c_attribute> | ||
2160 | <d_old></d_old> | ||
2161 | <e_new> | ||
2162 | Luminosity Extraction | ||
2163 | </e_new> | ||
2164 | <f_old_trans></f_old_trans> | ||
2165 | <f_translation> | ||
2166 | Luminanz-Extraktion | ||
2167 | </f_translation> | ||
2168 | </string><string><a_file>floater_post_process.xml</a_file> | ||
2169 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiBloomPanel/wmiBloomExtract</b_path> | ||
2170 | <c_attribute>label</c_attribute> | ||
2171 | <d_old></d_old> | ||
2172 | <e_new></e_new> | ||
2173 | <f_old_trans></f_old_trans> | ||
2174 | <f_translation></f_translation> | ||
2175 | </string><string><a_file>floater_post_process.xml</a_file> | ||
2176 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiBloomPanel/wmiBloomSizeText</b_path> | ||
2177 | <c_attribute></c_attribute> | ||
2178 | <d_old></d_old> | ||
2179 | <e_new> | ||
2180 | Bloom Size | ||
2181 | </e_new> | ||
2182 | <f_old_trans></f_old_trans> | ||
2183 | <f_translation> | ||
2184 | Bloom-Größe | ||
2185 | </f_translation> | ||
2186 | </string><string><a_file>floater_post_process.xml</a_file> | ||
2187 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiBloomPanel/wmiBloomSize</b_path> | ||
2188 | <c_attribute>label</c_attribute> | ||
2189 | <d_old></d_old> | ||
2190 | <e_new></e_new> | ||
2191 | <f_old_trans></f_old_trans> | ||
2192 | <f_translation></f_translation> | ||
2193 | </string><string><a_file>floater_post_process.xml</a_file> | ||
2194 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiBloomPanel/wmiBloomStrengthText</b_path> | ||
2195 | <c_attribute></c_attribute> | ||
2196 | <d_old></d_old> | ||
2197 | <e_new> | ||
2198 | Bloom Strength | ||
2199 | </e_new> | ||
2200 | <f_old_trans></f_old_trans> | ||
2201 | <f_translation> | ||
2202 | Bloom-Stärke | ||
2203 | </f_translation> | ||
2204 | </string><string><a_file>floater_post_process.xml</a_file> | ||
2205 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiBloomPanel/wmiBloomStrength</b_path> | ||
2206 | <c_attribute>label</c_attribute> | ||
2207 | <d_old></d_old> | ||
2208 | <e_new></e_new> | ||
2209 | <f_old_trans></f_old_trans> | ||
2210 | <f_translation></f_translation> | ||
2211 | </string><string><a_file>floater_post_process.xml</a_file> | ||
2212 | <b_path>/Post-Process Floater/Post-Process Tabs/Extras</b_path> | ||
2213 | <c_attribute>label</c_attribute> | ||
2214 | <d_old></d_old> | ||
2215 | <e_new>Extras</e_new> | ||
2216 | <f_old_trans></f_old_trans> | ||
2217 | <f_translation>Extras</f_translation> | ||
2218 | </string><string><a_file>floater_post_process.xml</a_file> | ||
2219 | <b_path>/Post-Process Floater/Post-Process Tabs/Extras/PPLoadEffect</b_path> | ||
2220 | <c_attribute>label</c_attribute> | ||
2221 | <d_old></d_old> | ||
2222 | <e_new>LoadEffect</e_new> | ||
2223 | <f_old_trans></f_old_trans> | ||
2224 | <f_translation>Effekt laden</f_translation> | ||
2225 | </string><string><a_file>floater_post_process.xml</a_file> | ||
2226 | <b_path>/Post-Process Floater/Post-Process Tabs/Extras/PPLoadEffect</b_path> | ||
2227 | <c_attribute>label_selected</c_attribute> | ||
2228 | <d_old></d_old> | ||
2229 | <e_new>LoadEffect</e_new> | ||
2230 | <f_old_trans></f_old_trans> | ||
2231 | <f_translation>Effekt laden</f_translation> | ||
2232 | </string><string><a_file>floater_post_process.xml</a_file> | ||
2233 | <b_path>/Post-Process Floater/Post-Process Tabs/Extras/PPSaveEffect</b_path> | ||
2234 | <c_attribute>label</c_attribute> | ||
2235 | <d_old></d_old> | ||
2236 | <e_new>SaveEffect</e_new> | ||
2237 | <f_old_trans></f_old_trans> | ||
2238 | <f_translation>Effekt speichern</f_translation> | ||
2239 | </string><string><a_file>floater_post_process.xml</a_file> | ||
2240 | <b_path>/Post-Process Floater/Post-Process Tabs/Extras/PPSaveEffect</b_path> | ||
2241 | <c_attribute>label_selected</c_attribute> | ||
2242 | <d_old></d_old> | ||
2243 | <e_new>SaveEffect</e_new> | ||
2244 | <f_old_trans></f_old_trans> | ||
2245 | <f_translation>Effekt speichern</f_translation> | ||
2246 | </string><string><a_file>floater_post_process.xml</a_file> | ||
2247 | <b_path>/Post-Process Floater/Post-Process Tabs/Extras/PPEffectNameEditor</b_path> | ||
2248 | <c_attribute>label</c_attribute> | ||
2249 | <d_old></d_old> | ||
2250 | <e_new>Effect Name</e_new> | ||
2251 | <f_old_trans></f_old_trans> | ||
2252 | <f_translation>Effektname</f_translation> | ||
223 | </string><string><a_file>floater_preview_classified.xml</a_file> | 2253 | </string><string><a_file>floater_preview_classified.xml</a_file> |
224 | <b_path>/classified_preview</b_path> | 2254 | <b_path>/classified_preview</b_path> |
225 | <c_attribute>title</c_attribute> | 2255 | <c_attribute>title</c_attribute> |
@@ -247,16 +2277,1844 @@ | |||
247 | <d_old></d_old> | 2277 | <d_old></d_old> |
248 | <e_new>Region/Estate</e_new> | 2278 | <e_new>Region/Estate</e_new> |
249 | <f_old_trans></f_old_trans> | 2279 | <f_old_trans></f_old_trans> |
250 | <f_translation>Region/Länderei</f_translation> | 2280 | <f_translation>Region/Grundstück</f_translation> |
251 | </string><string><a_file>floater_select_key.xml</a_file> | 2281 | </string><string><a_file>floater_snapshot.xml</a_file> |
252 | <b_path>/modal container</b_path> | 2282 | <b_path>/Snapshot/more_btn</b_path> |
2283 | <c_attribute>label</c_attribute> | ||
2284 | <d_old></d_old> | ||
2285 | <e_new>More >></e_new> | ||
2286 | <f_old_trans></f_old_trans> | ||
2287 | <f_translation>Mehr >></f_translation> | ||
2288 | </string><string><a_file>floater_snapshot.xml</a_file> | ||
2289 | <b_path>/Snapshot/more_btn</b_path> | ||
2290 | <c_attribute>tool_tip</c_attribute> | ||
2291 | <d_old></d_old> | ||
2292 | <e_new>Advanced Options</e_new> | ||
2293 | <f_old_trans></f_old_trans> | ||
2294 | <f_translation>Erweiterte Optionen</f_translation> | ||
2295 | </string><string><a_file>floater_snapshot.xml</a_file> | ||
2296 | <b_path>/Snapshot/less_btn</b_path> | ||
2297 | <c_attribute>label</c_attribute> | ||
2298 | <d_old></d_old> | ||
2299 | <e_new><< Less</e_new> | ||
2300 | <f_old_trans></f_old_trans> | ||
2301 | <f_translation><< Weniger</f_translation> | ||
2302 | </string><string><a_file>floater_snapshot.xml</a_file> | ||
2303 | <b_path>/Snapshot/less_btn</b_path> | ||
2304 | <c_attribute>tool_tip</c_attribute> | ||
2305 | <d_old></d_old> | ||
2306 | <e_new>Advanced Options</e_new> | ||
2307 | <f_old_trans></f_old_trans> | ||
2308 | <f_translation>Erweiterte Optionen</f_translation> | ||
2309 | </string><string><a_file>floater_tools.xml</a_file> | ||
2310 | <b_path>/toolbox floater/Object Info Tabs/General/clickaction/Play</b_path> | ||
2311 | <c_attribute></c_attribute> | ||
2312 | <d_old></d_old> | ||
2313 | <e_new> | ||
2314 | Play parcel media | ||
2315 | </e_new> | ||
2316 | <f_old_trans></f_old_trans> | ||
2317 | <f_translation> | ||
2318 | Parzellenmedien wiedergeben | ||
2319 | </f_translation> | ||
2320 | </string><string><a_file>floater_tools.xml</a_file> | ||
2321 | <b_path>/toolbox floater/Object Info Tabs/General/clickaction/Opemmedia</b_path> | ||
2322 | <c_attribute></c_attribute> | ||
2323 | <d_old></d_old> | ||
2324 | <e_new> | ||
2325 | Open parcel media | ||
2326 | </e_new> | ||
2327 | <f_old_trans></f_old_trans> | ||
2328 | <f_translation> | ||
2329 | Parzellenmedien öffnen | ||
2330 | </f_translation> | ||
2331 | </string><string><a_file>floater_tools.xml</a_file> | ||
2332 | <b_path>/toolbox floater/Object Info Tabs/Texture/glow label</b_path> | ||
2333 | <c_attribute></c_attribute> | ||
2334 | <d_old></d_old> | ||
2335 | <e_new> | ||
2336 | Glow | ||
2337 | </e_new> | ||
2338 | <f_old_trans></f_old_trans> | ||
2339 | <f_translation> | ||
2340 | Leuchten | ||
2341 | </f_translation> | ||
2342 | </string><string><a_file>floater_url_entry.xml</a_file> | ||
2343 | <b_path>/url_entry</b_path> | ||
253 | <c_attribute>title</c_attribute> | 2344 | <c_attribute>title</c_attribute> |
254 | <d_old></d_old> | 2345 | <d_old></d_old> |
255 | <e_new> </e_new> | 2346 | <e_new></e_new> |
2347 | <f_old_trans></f_old_trans> | ||
2348 | <f_translation></f_translation> | ||
2349 | </string><string><a_file>floater_url_entry.xml</a_file> | ||
2350 | <b_path>/url_entry/media_label</b_path> | ||
2351 | <c_attribute></c_attribute> | ||
2352 | <d_old></d_old> | ||
2353 | <e_new> | ||
2354 | Media URL: | ||
2355 | </e_new> | ||
2356 | <f_old_trans></f_old_trans> | ||
2357 | <f_translation> | ||
2358 | Medien-URL: | ||
2359 | </f_translation> | ||
2360 | </string><string><a_file>floater_url_entry.xml</a_file> | ||
2361 | <b_path>/url_entry/ok_btn</b_path> | ||
2362 | <c_attribute>label</c_attribute> | ||
2363 | <d_old></d_old> | ||
2364 | <e_new>OK</e_new> | ||
2365 | <f_old_trans></f_old_trans> | ||
2366 | <f_translation>OK</f_translation> | ||
2367 | </string><string><a_file>floater_url_entry.xml</a_file> | ||
2368 | <b_path>/url_entry/cancel_btn</b_path> | ||
2369 | <c_attribute>label</c_attribute> | ||
2370 | <d_old></d_old> | ||
2371 | <e_new>Cancel</e_new> | ||
256 | <f_old_trans></f_old_trans> | 2372 | <f_old_trans></f_old_trans> |
257 | <f_translation> </f_translation> | 2373 | <f_translation>Abbrechen</f_translation> |
2374 | <f_old_trans></f_old_trans> | ||
2375 | </string><string><a_file>floater_url_entry.xml</a_file> | ||
2376 | <b_path>/url_entry/cancel_btn2</b_path> | ||
2377 | <c_attribute>label</c_attribute> | ||
2378 | <d_old></d_old> | ||
2379 | <e_new>Cancel</e_new> | ||
2380 | <f_old_trans></f_old_trans> | ||
2381 | <f_translation>Abbrechen</f_translation> | ||
2382 | </string><string><a_file>floater_url_entry.xml</a_file> | ||
2383 | <b_path>/url_entry/clear_btn</b_path> | ||
2384 | <c_attribute>label</c_attribute> | ||
2385 | <d_old></d_old> | ||
2386 | <e_new>Clear</e_new> | ||
2387 | <f_old_trans></f_old_trans> | ||
2388 | <f_translation>Löschen</f_translation> | ||
2389 | </string><string><a_file>floater_url_entry.xml</a_file> | ||
2390 | <b_path>/url_entry/loading_label</b_path> | ||
2391 | <c_attribute></c_attribute> | ||
2392 | <d_old></d_old> | ||
2393 | <e_new> | ||
2394 | Loading... | ||
2395 | </e_new> | ||
2396 | <f_old_trans></f_old_trans> | ||
2397 | <f_translation> | ||
2398 | Wird geladen... | ||
2399 | </f_translation> | ||
2400 | </string><string><a_file>floater_water.xml</a_file> | ||
2401 | <b_path>/Water Floater</b_path> | ||
2402 | <c_attribute>title</c_attribute> | ||
2403 | <d_old></d_old> | ||
2404 | <e_new>Advanced Water Editor</e_new> | ||
2405 | <f_old_trans></f_old_trans> | ||
2406 | <f_translation>Erweiterter Wasser-Editor</f_translation> | ||
2407 | </string><string><a_file>floater_water.xml</a_file> | ||
2408 | <b_path>/Water Floater/KeyFramePresetsText</b_path> | ||
2409 | <c_attribute></c_attribute> | ||
2410 | <d_old></d_old> | ||
2411 | <e_new> | ||
2412 | Water Presets: | ||
2413 | </e_new> | ||
2414 | <f_old_trans></f_old_trans> | ||
2415 | <f_translation> | ||
2416 | Voreinstellungen: | ||
2417 | </f_translation> | ||
2418 | </string><string><a_file>floater_water.xml</a_file> | ||
2419 | <b_path>/Water Floater/WaterNewPreset</b_path> | ||
2420 | <c_attribute>label</c_attribute> | ||
2421 | <d_old></d_old> | ||
2422 | <e_new>New</e_new> | ||
2423 | <f_old_trans></f_old_trans> | ||
2424 | <f_translation>Neu</f_translation> | ||
2425 | </string><string><a_file>floater_water.xml</a_file> | ||
2426 | <b_path>/Water Floater/WaterNewPreset</b_path> | ||
2427 | <c_attribute>label_selected</c_attribute> | ||
2428 | <d_old></d_old> | ||
2429 | <e_new>New</e_new> | ||
2430 | <f_old_trans></f_old_trans> | ||
2431 | <f_translation>Neu</f_translation> | ||
2432 | </string><string><a_file>floater_water.xml</a_file> | ||
2433 | <b_path>/Water Floater/WaterSavePreset</b_path> | ||
2434 | <c_attribute>label</c_attribute> | ||
2435 | <d_old></d_old> | ||
2436 | <e_new>Save</e_new> | ||
2437 | <f_old_trans></f_old_trans> | ||
2438 | <f_translation>Speichern</f_translation> | ||
2439 | </string><string><a_file>floater_water.xml</a_file> | ||
2440 | <b_path>/Water Floater/WaterSavePreset</b_path> | ||
2441 | <c_attribute>label_selected</c_attribute> | ||
2442 | <d_old></d_old> | ||
2443 | <e_new>Save</e_new> | ||
2444 | <f_old_trans></f_old_trans> | ||
2445 | <f_translation>Speichern</f_translation> | ||
2446 | </string><string><a_file>floater_water.xml</a_file> | ||
2447 | <b_path>/Water Floater/WaterDeletePreset</b_path> | ||
2448 | <c_attribute>label</c_attribute> | ||
2449 | <d_old></d_old> | ||
2450 | <e_new>Delete</e_new> | ||
2451 | <f_old_trans></f_old_trans> | ||
2452 | <f_translation>Löschen</f_translation> | ||
2453 | </string><string><a_file>floater_water.xml</a_file> | ||
2454 | <b_path>/Water Floater/WaterDeletePreset</b_path> | ||
2455 | <c_attribute>label_selected</c_attribute> | ||
2456 | <d_old></d_old> | ||
2457 | <e_new>Delete</e_new> | ||
2458 | <f_old_trans></f_old_trans> | ||
2459 | <f_translation>Löschen</f_translation> | ||
2460 | </string><string><a_file>floater_water.xml</a_file> | ||
2461 | <b_path>/Water Floater/Water Tabs/Settings</b_path> | ||
2462 | <c_attribute>label</c_attribute> | ||
2463 | <d_old></d_old> | ||
2464 | <e_new>Settings</e_new> | ||
2465 | <f_old_trans></f_old_trans> | ||
2466 | <f_translation>Einstellungen</f_translation> | ||
2467 | </string><string><a_file>floater_water.xml</a_file> | ||
2468 | <b_path>/Water Floater/Water Tabs/Settings/BHText</b_path> | ||
2469 | <c_attribute></c_attribute> | ||
2470 | <d_old></d_old> | ||
2471 | <e_new> | ||
2472 | Water Fog Color | ||
2473 | </e_new> | ||
2474 | <f_old_trans></f_old_trans> | ||
2475 | <f_translation> | ||
2476 | Wassertrübungsfarbe | ||
2477 | </f_translation> | ||
2478 | </string><string><a_file>floater_water.xml</a_file> | ||
2479 | <b_path>/Water Floater/Water Tabs/Settings/WaterFogColorHelp</b_path> | ||
2480 | <c_attribute>label</c_attribute> | ||
2481 | <d_old></d_old> | ||
2482 | <e_new>?</e_new> | ||
2483 | <f_old_trans></f_old_trans> | ||
2484 | <f_translation> ?</f_translation> | ||
2485 | </string><string><a_file>floater_water.xml</a_file> | ||
2486 | <b_path>/Water Floater/Water Tabs/Settings/WaterFogColor</b_path> | ||
2487 | <c_attribute>label</c_attribute> | ||
2488 | <d_old></d_old> | ||
2489 | <e_new></e_new> | ||
2490 | <f_old_trans></f_old_trans> | ||
2491 | <f_translation></f_translation> | ||
2492 | </string><string><a_file>floater_water.xml</a_file> | ||
2493 | <b_path>/Water Floater/Water Tabs/Settings/WaterFogColor</b_path> | ||
2494 | <c_attribute>tool_tip</c_attribute> | ||
2495 | <d_old></d_old> | ||
2496 | <e_new>Click to open Color Picker</e_new> | ||
2497 | <f_old_trans></f_old_trans> | ||
2498 | <f_translation>Klicken Sie hier, um die Farbauswahl zu öffnen</f_translation> | ||
2499 | </string><string><a_file>floater_water.xml</a_file> | ||
2500 | <b_path>/Water Floater/Water Tabs/Settings/WaterFogDensText</b_path> | ||
2501 | <c_attribute></c_attribute> | ||
2502 | <d_old></d_old> | ||
2503 | <e_new> | ||
2504 | Fog Density Exponent | ||
2505 | </e_new> | ||
2506 | <f_old_trans></f_old_trans> | ||
2507 | <f_translation> | ||
2508 | Wassertrübungsdichte-Exponent | ||
2509 | </f_translation> | ||
2510 | </string><string><a_file>floater_water.xml</a_file> | ||
2511 | <b_path>/Water Floater/Water Tabs/Settings/WaterFogDensityHelp</b_path> | ||
2512 | <c_attribute>label</c_attribute> | ||
2513 | <d_old></d_old> | ||
2514 | <e_new>?</e_new> | ||
2515 | <f_old_trans></f_old_trans> | ||
2516 | <f_translation> ?</f_translation> | ||
2517 | </string><string><a_file>floater_water.xml</a_file> | ||
2518 | <b_path>/Water Floater/Water Tabs/Settings/WaterFogDensity</b_path> | ||
2519 | <c_attribute>label</c_attribute> | ||
2520 | <d_old></d_old> | ||
2521 | <e_new></e_new> | ||
2522 | <f_old_trans></f_old_trans> | ||
2523 | <f_translation></f_translation> | ||
2524 | </string><string><a_file>floater_water.xml</a_file> | ||
2525 | <b_path>/Water Floater/Water Tabs/Settings/WaterUnderWaterFogModText</b_path> | ||
2526 | <c_attribute></c_attribute> | ||
2527 | <d_old></d_old> | ||
2528 | <e_new> | ||
2529 | Underwater Fog Modifier | ||
2530 | </e_new> | ||
2531 | <f_old_trans></f_old_trans> | ||
2532 | <f_translation> | ||
2533 | Wassertrübungs-Modifikator | ||
2534 | </f_translation> | ||
2535 | </string><string><a_file>floater_water.xml</a_file> | ||
2536 | <b_path>/Water Floater/Water Tabs/Settings/WaterUnderWaterFogModHelp</b_path> | ||
2537 | <c_attribute>label</c_attribute> | ||
2538 | <d_old></d_old> | ||
2539 | <e_new>?</e_new> | ||
2540 | <f_old_trans></f_old_trans> | ||
2541 | <f_translation> ?</f_translation> | ||
2542 | </string><string><a_file>floater_water.xml</a_file> | ||
2543 | <b_path>/Water Floater/Water Tabs/Settings/WaterUnderWaterFogMod</b_path> | ||
2544 | <c_attribute>label</c_attribute> | ||
2545 | <d_old></d_old> | ||
2546 | <e_new></e_new> | ||
2547 | <f_old_trans></f_old_trans> | ||
2548 | <f_translation></f_translation> | ||
2549 | </string><string><a_file>floater_water.xml</a_file> | ||
2550 | <b_path>/Water Floater/Water Tabs/Settings/BDensText</b_path> | ||
2551 | <c_attribute></c_attribute> | ||
2552 | <d_old></d_old> | ||
2553 | <e_new> | ||
2554 | Reflection Wavelet Scale | ||
2555 | </e_new> | ||
2556 | <f_old_trans></f_old_trans> | ||
2557 | <f_translation> | ||
2558 | Reflexionswellengröße | ||
2559 | </f_translation> | ||
2560 | </string><string><a_file>floater_water.xml</a_file> | ||
2561 | <b_path>/Water Floater/Water Tabs/Settings/WaterNormalScaleHelp</b_path> | ||
2562 | <c_attribute>label</c_attribute> | ||
2563 | <d_old></d_old> | ||
2564 | <e_new>?</e_new> | ||
2565 | <f_old_trans></f_old_trans> | ||
2566 | <f_translation> ?</f_translation> | ||
2567 | </string><string><a_file>floater_water.xml</a_file> | ||
2568 | <b_path>/Water Floater/Water Tabs/Settings/BHText2</b_path> | ||
2569 | <c_attribute></c_attribute> | ||
2570 | <d_old></d_old> | ||
2571 | <e_new> | ||
2572 | 1 | ||
2573 | </e_new> | ||
2574 | <f_old_trans></f_old_trans> | ||
2575 | <f_translation> | ||
2576 | 1 | ||
2577 | </f_translation> | ||
2578 | </string><string><a_file>floater_water.xml</a_file> | ||
2579 | <b_path>/Water Floater/Water Tabs/Settings/BHText3</b_path> | ||
2580 | <c_attribute></c_attribute> | ||
2581 | <d_old></d_old> | ||
2582 | <e_new> | ||
2583 | 2 | ||
2584 | </e_new> | ||
2585 | <f_old_trans></f_old_trans> | ||
2586 | <f_translation> | ||
2587 | 2 | ||
2588 | </f_translation> | ||
2589 | </string><string><a_file>floater_water.xml</a_file> | ||
2590 | <b_path>/Water Floater/Water Tabs/Settings/BHText4</b_path> | ||
2591 | <c_attribute></c_attribute> | ||
2592 | <d_old></d_old> | ||
2593 | <e_new> | ||
2594 | 3 | ||
2595 | </e_new> | ||
2596 | <f_old_trans></f_old_trans> | ||
2597 | <f_translation> | ||
2598 | 3 | ||
2599 | </f_translation> | ||
2600 | </string><string><a_file>floater_water.xml</a_file> | ||
2601 | <b_path>/Water Floater/Water Tabs/Settings/WaterNormalScaleX</b_path> | ||
2602 | <c_attribute>label</c_attribute> | ||
2603 | <d_old></d_old> | ||
2604 | <e_new></e_new> | ||
2605 | <f_old_trans></f_old_trans> | ||
2606 | <f_translation></f_translation> | ||
2607 | </string><string><a_file>floater_water.xml</a_file> | ||
2608 | <b_path>/Water Floater/Water Tabs/Settings/WaterNormalScaleY</b_path> | ||
2609 | <c_attribute>label</c_attribute> | ||
2610 | <d_old></d_old> | ||
2611 | <e_new></e_new> | ||
2612 | <f_old_trans></f_old_trans> | ||
2613 | <f_translation></f_translation> | ||
2614 | </string><string><a_file>floater_water.xml</a_file> | ||
2615 | <b_path>/Water Floater/Water Tabs/Settings/WaterNormalScaleZ</b_path> | ||
2616 | <c_attribute>label</c_attribute> | ||
2617 | <d_old></d_old> | ||
2618 | <e_new></e_new> | ||
2619 | <f_old_trans></f_old_trans> | ||
2620 | <f_translation></f_translation> | ||
2621 | </string><string><a_file>floater_water.xml</a_file> | ||
2622 | <b_path>/Water Floater/Water Tabs/Settings/HDText</b_path> | ||
2623 | <c_attribute></c_attribute> | ||
2624 | <d_old></d_old> | ||
2625 | <e_new> | ||
2626 | Fresnel Scale | ||
2627 | </e_new> | ||
2628 | <f_old_trans></f_old_trans> | ||
2629 | <f_translation> | ||
2630 | Fresnel-Skalierung | ||
2631 | </f_translation> | ||
2632 | </string><string><a_file>floater_water.xml</a_file> | ||
2633 | <b_path>/Water Floater/Water Tabs/Settings/WaterFresnelScaleHelp</b_path> | ||
2634 | <c_attribute>label</c_attribute> | ||
2635 | <d_old></d_old> | ||
2636 | <e_new>?</e_new> | ||
2637 | <f_old_trans></f_old_trans> | ||
2638 | <f_translation> ?</f_translation> | ||
2639 | </string><string><a_file>floater_water.xml</a_file> | ||
2640 | <b_path>/Water Floater/Water Tabs/Settings/WaterFresnelScale</b_path> | ||
2641 | <c_attribute>label</c_attribute> | ||
2642 | <d_old></d_old> | ||
2643 | <e_new></e_new> | ||
2644 | <f_old_trans></f_old_trans> | ||
2645 | <f_translation></f_translation> | ||
2646 | </string><string><a_file>floater_water.xml</a_file> | ||
2647 | <b_path>/Water Floater/Water Tabs/Settings/FresnelOffsetText</b_path> | ||
2648 | <c_attribute></c_attribute> | ||
2649 | <d_old></d_old> | ||
2650 | <e_new> | ||
2651 | Fresnel Offset | ||
2652 | </e_new> | ||
2653 | <f_old_trans></f_old_trans> | ||
2654 | <f_translation> | ||
2655 | Fresnel-Versatz | ||
2656 | </f_translation> | ||
2657 | </string><string><a_file>floater_water.xml</a_file> | ||
2658 | <b_path>/Water Floater/Water Tabs/Settings/WaterFresnelOffsetHelp</b_path> | ||
2659 | <c_attribute>label</c_attribute> | ||
2660 | <d_old></d_old> | ||
2661 | <e_new>?</e_new> | ||
2662 | <f_old_trans></f_old_trans> | ||
2663 | <f_translation> ?</f_translation> | ||
2664 | </string><string><a_file>floater_water.xml</a_file> | ||
2665 | <b_path>/Water Floater/Water Tabs/Settings/WaterFresnelOffset</b_path> | ||
2666 | <c_attribute>label</c_attribute> | ||
2667 | <d_old></d_old> | ||
2668 | <e_new></e_new> | ||
2669 | <f_old_trans></f_old_trans> | ||
2670 | <f_translation></f_translation> | ||
2671 | </string><string><a_file>floater_water.xml</a_file> | ||
2672 | <b_path>/Water Floater/Water Tabs/Settings/DensMultText</b_path> | ||
2673 | <c_attribute></c_attribute> | ||
2674 | <d_old></d_old> | ||
2675 | <e_new> | ||
2676 | Refract Scale Above | ||
2677 | </e_new> | ||
2678 | <f_old_trans></f_old_trans> | ||
2679 | <f_translation> | ||
2680 | Brechungsstärke oben | ||
2681 | </f_translation> | ||
2682 | </string><string><a_file>floater_water.xml</a_file> | ||
2683 | <b_path>/Water Floater/Water Tabs/Settings/WaterScaleAboveHelp</b_path> | ||
2684 | <c_attribute>label</c_attribute> | ||
2685 | <d_old></d_old> | ||
2686 | <e_new>?</e_new> | ||
2687 | <f_old_trans></f_old_trans> | ||
2688 | <f_translation> ?</f_translation> | ||
2689 | </string><string><a_file>floater_water.xml</a_file> | ||
2690 | <b_path>/Water Floater/Water Tabs/Settings/WaterScaleAbove</b_path> | ||
2691 | <c_attribute>label</c_attribute> | ||
2692 | <d_old></d_old> | ||
2693 | <e_new></e_new> | ||
2694 | <f_old_trans></f_old_trans> | ||
2695 | <f_translation></f_translation> | ||
2696 | </string><string><a_file>floater_water.xml</a_file> | ||
2697 | <b_path>/Water Floater/Water Tabs/Settings/WaterScaleBelowText</b_path> | ||
2698 | <c_attribute></c_attribute> | ||
2699 | <d_old></d_old> | ||
2700 | <e_new> | ||
2701 | Refract Scale Below | ||
2702 | </e_new> | ||
2703 | <f_old_trans></f_old_trans> | ||
2704 | <f_translation> | ||
2705 | Brechungsstärke unten | ||
2706 | </f_translation> | ||
2707 | </string><string><a_file>floater_water.xml</a_file> | ||
2708 | <b_path>/Water Floater/Water Tabs/Settings/WaterScaleBelowHelp</b_path> | ||
2709 | <c_attribute>label</c_attribute> | ||
2710 | <d_old></d_old> | ||
2711 | <e_new>?</e_new> | ||
2712 | <f_old_trans></f_old_trans> | ||
2713 | <f_translation> ?</f_translation> | ||
2714 | </string><string><a_file>floater_water.xml</a_file> | ||
2715 | <b_path>/Water Floater/Water Tabs/Settings/WaterScaleBelow</b_path> | ||
2716 | <c_attribute>label</c_attribute> | ||
2717 | <d_old></d_old> | ||
2718 | <e_new></e_new> | ||
2719 | <f_old_trans></f_old_trans> | ||
2720 | <f_translation></f_translation> | ||
2721 | </string><string><a_file>floater_water.xml</a_file> | ||
2722 | <b_path>/Water Floater/Water Tabs/Settings/MaxAltText</b_path> | ||
2723 | <c_attribute></c_attribute> | ||
2724 | <d_old></d_old> | ||
2725 | <e_new> | ||
2726 | Blur Multiplier | ||
2727 | </e_new> | ||
2728 | <f_old_trans></f_old_trans> | ||
2729 | <f_translation> | ||
2730 | Mischungsmultiplikator | ||
2731 | </f_translation> | ||
2732 | </string><string><a_file>floater_water.xml</a_file> | ||
2733 | <b_path>/Water Floater/Water Tabs/Settings/WaterBlurMultiplierHelp</b_path> | ||
2734 | <c_attribute>label</c_attribute> | ||
2735 | <d_old></d_old> | ||
2736 | <e_new>?</e_new> | ||
2737 | <f_old_trans></f_old_trans> | ||
2738 | <f_translation> ?</f_translation> | ||
2739 | </string><string><a_file>floater_water.xml</a_file> | ||
2740 | <b_path>/Water Floater/Water Tabs/Settings/WaterBlurMult</b_path> | ||
2741 | <c_attribute>label</c_attribute> | ||
2742 | <d_old></d_old> | ||
2743 | <e_new></e_new> | ||
2744 | <f_old_trans></f_old_trans> | ||
2745 | <f_translation></f_translation> | ||
2746 | </string><string><a_file>floater_water.xml</a_file> | ||
2747 | <b_path>/Water Floater/Water Tabs/Waves</b_path> | ||
2748 | <c_attribute>label</c_attribute> | ||
2749 | <d_old></d_old> | ||
2750 | <e_new>Image</e_new> | ||
2751 | <f_old_trans></f_old_trans> | ||
2752 | <f_translation>Bild</f_translation> | ||
2753 | </string><string><a_file>floater_water.xml</a_file> | ||
2754 | <b_path>/Water Floater/Water Tabs/Waves/BHText</b_path> | ||
2755 | <c_attribute></c_attribute> | ||
2756 | <d_old></d_old> | ||
2757 | <e_new> | ||
2758 | Big Wave Direction | ||
2759 | </e_new> | ||
2760 | <f_old_trans></f_old_trans> | ||
2761 | <f_translation> | ||
2762 | Richtung große Welle | ||
2763 | </f_translation> | ||
2764 | </string><string><a_file>floater_water.xml</a_file> | ||
2765 | <b_path>/Water Floater/Water Tabs/Waves/WaterWave1Help</b_path> | ||
2766 | <c_attribute>label</c_attribute> | ||
2767 | <d_old></d_old> | ||
2768 | <e_new>?</e_new> | ||
2769 | <f_old_trans></f_old_trans> | ||
2770 | <f_translation> ?</f_translation> | ||
2771 | </string><string><a_file>floater_water.xml</a_file> | ||
2772 | <b_path>/Water Floater/Water Tabs/Waves/WaterWave1DirXText</b_path> | ||
2773 | <c_attribute></c_attribute> | ||
2774 | <d_old></d_old> | ||
2775 | <e_new> | ||
2776 | X | ||
2777 | </e_new> | ||
2778 | <f_old_trans></f_old_trans> | ||
2779 | <f_translation> | ||
2780 | X | ||
2781 | </f_translation> | ||
2782 | </string><string><a_file>floater_water.xml</a_file> | ||
2783 | <b_path>/Water Floater/Water Tabs/Waves/WaterWave1DirYText</b_path> | ||
2784 | <c_attribute></c_attribute> | ||
2785 | <d_old></d_old> | ||
2786 | <e_new> | ||
2787 | Y | ||
2788 | </e_new> | ||
2789 | <f_old_trans></f_old_trans> | ||
2790 | <f_translation> | ||
2791 | Y | ||
2792 | </f_translation> | ||
2793 | </string><string><a_file>floater_water.xml</a_file> | ||
2794 | <b_path>/Water Floater/Water Tabs/Waves/WaterWave1DirX</b_path> | ||
2795 | <c_attribute>label</c_attribute> | ||
2796 | <d_old></d_old> | ||
2797 | <e_new></e_new> | ||
2798 | <f_old_trans></f_old_trans> | ||
2799 | <f_translation></f_translation> | ||
2800 | </string><string><a_file>floater_water.xml</a_file> | ||
2801 | <b_path>/Water Floater/Water Tabs/Waves/WaterWave1DirY</b_path> | ||
2802 | <c_attribute>label</c_attribute> | ||
2803 | <d_old></d_old> | ||
2804 | <e_new></e_new> | ||
2805 | <f_old_trans></f_old_trans> | ||
2806 | <f_translation></f_translation> | ||
2807 | </string><string><a_file>floater_water.xml</a_file> | ||
2808 | <b_path>/Water Floater/Water Tabs/Waves/BHText2</b_path> | ||
2809 | <c_attribute></c_attribute> | ||
2810 | <d_old></d_old> | ||
2811 | <e_new> | ||
2812 | Little Wave Direction | ||
2813 | </e_new> | ||
2814 | <f_old_trans></f_old_trans> | ||
2815 | <f_translation> | ||
2816 | Richtung kleine Welle | ||
2817 | </f_translation> | ||
2818 | </string><string><a_file>floater_water.xml</a_file> | ||
2819 | <b_path>/Water Floater/Water Tabs/Waves/WaterWave2Help</b_path> | ||
2820 | <c_attribute>label</c_attribute> | ||
2821 | <d_old></d_old> | ||
2822 | <e_new>?</e_new> | ||
2823 | <f_old_trans></f_old_trans> | ||
2824 | <f_translation> ?</f_translation> | ||
2825 | </string><string><a_file>floater_water.xml</a_file> | ||
2826 | <b_path>/Water Floater/Water Tabs/Waves/WaterWave2DirXText</b_path> | ||
2827 | <c_attribute></c_attribute> | ||
2828 | <d_old></d_old> | ||
2829 | <e_new> | ||
2830 | X | ||
2831 | </e_new> | ||
2832 | <f_old_trans></f_old_trans> | ||
2833 | <f_translation> | ||
2834 | X | ||
2835 | </f_translation> | ||
2836 | </string><string><a_file>floater_water.xml</a_file> | ||
2837 | <b_path>/Water Floater/Water Tabs/Waves/WaterWave2DirYText</b_path> | ||
2838 | <c_attribute></c_attribute> | ||
2839 | <d_old></d_old> | ||
2840 | <e_new> | ||
2841 | Y | ||
2842 | </e_new> | ||
2843 | <f_old_trans></f_old_trans> | ||
2844 | <f_translation> | ||
2845 | Y | ||
2846 | </f_translation> | ||
2847 | </string><string><a_file>floater_water.xml</a_file> | ||
2848 | <b_path>/Water Floater/Water Tabs/Waves/WaterWave2DirX</b_path> | ||
2849 | <c_attribute>label</c_attribute> | ||
2850 | <d_old></d_old> | ||
2851 | <e_new></e_new> | ||
2852 | <f_old_trans></f_old_trans> | ||
2853 | <f_translation></f_translation> | ||
2854 | </string><string><a_file>floater_water.xml</a_file> | ||
2855 | <b_path>/Water Floater/Water Tabs/Waves/WaterWave2DirY</b_path> | ||
2856 | <c_attribute>label</c_attribute> | ||
2857 | <d_old></d_old> | ||
2858 | <e_new></e_new> | ||
2859 | <f_old_trans></f_old_trans> | ||
2860 | <f_translation></f_translation> | ||
2861 | </string><string><a_file>floater_water.xml</a_file> | ||
2862 | <b_path>/Water Floater/Water Tabs/Waves/BHText3</b_path> | ||
2863 | <c_attribute></c_attribute> | ||
2864 | <d_old></d_old> | ||
2865 | <e_new> | ||
2866 | Normal Map | ||
2867 | </e_new> | ||
2868 | <f_old_trans></f_old_trans> | ||
2869 | <f_translation> | ||
2870 | Normal-Map | ||
2871 | </f_translation> | ||
2872 | </string><string><a_file>floater_water.xml</a_file> | ||
2873 | <b_path>/Water Floater/Water Tabs/Waves/WaterNormalMapHelp</b_path> | ||
2874 | <c_attribute>label</c_attribute> | ||
2875 | <d_old></d_old> | ||
2876 | <e_new>?</e_new> | ||
2877 | <f_old_trans></f_old_trans> | ||
2878 | <f_translation> ?</f_translation> | ||
2879 | </string><string><a_file>floater_water.xml</a_file> | ||
2880 | <b_path>/Water Floater/Water Tabs/Waves/WaterNormalMap</b_path> | ||
2881 | <c_attribute>label</c_attribute> | ||
2882 | <d_old></d_old> | ||
2883 | <e_new></e_new> | ||
2884 | <f_old_trans></f_old_trans> | ||
2885 | <f_translation></f_translation> | ||
2886 | </string><string><a_file>floater_water.xml</a_file> | ||
2887 | <b_path>/Water Floater/WLDefaultWaterNames</b_path> | ||
2888 | <c_attribute></c_attribute> | ||
2889 | <d_old></d_old> | ||
2890 | <e_new> | ||
2891 | Default:Glassy:Pond:Murky:Second Plague:SNAKE!!!:Valdez | ||
2892 | </e_new> | ||
2893 | <f_old_trans></f_old_trans> | ||
2894 | <f_translation> | ||
2895 | Default:Glassy:Pond:Murky:Second Plague:SNAKE!!!:Valdez | ||
2896 | </f_translation> | ||
2897 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
2898 | <b_path>/WindLight floater</b_path> | ||
2899 | <c_attribute>title</c_attribute> | ||
2900 | <d_old></d_old> | ||
2901 | <e_new>Advanced Sky Editor</e_new> | ||
2902 | <f_old_trans></f_old_trans> | ||
2903 | <f_translation>Erweiterter Himmel-Editor</f_translation> | ||
2904 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
2905 | <b_path>/WindLight floater/KeyFramePresetsText</b_path> | ||
2906 | <c_attribute></c_attribute> | ||
2907 | <d_old></d_old> | ||
2908 | <e_new> | ||
2909 | Sky Presets: | ||
2910 | </e_new> | ||
2911 | <f_old_trans></f_old_trans> | ||
2912 | <f_translation> | ||
2913 | Voreinstellungen: | ||
2914 | </f_translation> | ||
2915 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
2916 | <b_path>/WindLight floater/WLNewPreset</b_path> | ||
2917 | <c_attribute>label</c_attribute> | ||
2918 | <d_old></d_old> | ||
2919 | <e_new>New</e_new> | ||
2920 | <f_old_trans></f_old_trans> | ||
2921 | <f_translation>Neu</f_translation> | ||
2922 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
2923 | <b_path>/WindLight floater/WLNewPreset</b_path> | ||
2924 | <c_attribute>label_selected</c_attribute> | ||
2925 | <d_old></d_old> | ||
2926 | <e_new>New</e_new> | ||
2927 | <f_old_trans></f_old_trans> | ||
2928 | <f_translation>Neu</f_translation> | ||
2929 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
2930 | <b_path>/WindLight floater/WLSavePreset</b_path> | ||
2931 | <c_attribute>label</c_attribute> | ||
2932 | <d_old></d_old> | ||
2933 | <e_new>Save</e_new> | ||
2934 | <f_old_trans></f_old_trans> | ||
2935 | <f_translation>Speichern</f_translation> | ||
2936 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
2937 | <b_path>/WindLight floater/WLSavePreset</b_path> | ||
2938 | <c_attribute>label_selected</c_attribute> | ||
2939 | <d_old></d_old> | ||
2940 | <e_new>Save</e_new> | ||
2941 | <f_old_trans></f_old_trans> | ||
2942 | <f_translation>Speichern</f_translation> | ||
2943 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
2944 | <b_path>/WindLight floater/WLDeletePreset</b_path> | ||
2945 | <c_attribute>label</c_attribute> | ||
2946 | <d_old></d_old> | ||
2947 | <e_new>Delete</e_new> | ||
2948 | <f_old_trans></f_old_trans> | ||
2949 | <f_translation>Löschen</f_translation> | ||
2950 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
2951 | <b_path>/WindLight floater/WLDeletePreset</b_path> | ||
2952 | <c_attribute>label_selected</c_attribute> | ||
2953 | <d_old></d_old> | ||
2954 | <e_new>Delete</e_new> | ||
2955 | <f_old_trans></f_old_trans> | ||
2956 | <f_translation>Löschen</f_translation> | ||
2957 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
2958 | <b_path>/WindLight floater/WLDayCycleMenuButton</b_path> | ||
2959 | <c_attribute>label</c_attribute> | ||
2960 | <d_old></d_old> | ||
2961 | <e_new>Day Cycle Editor</e_new> | ||
2962 | <f_old_trans></f_old_trans> | ||
2963 | <f_translation>Tageszyklus-Editor</f_translation> | ||
2964 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
2965 | <b_path>/WindLight floater/WLDayCycleMenuButton</b_path> | ||
2966 | <c_attribute>label_selected</c_attribute> | ||
2967 | <d_old></d_old> | ||
2968 | <e_new>Day Cycle Editor</e_new> | ||
2969 | <f_old_trans></f_old_trans> | ||
2970 | <f_translation>Tageszyklus-Editor</f_translation> | ||
2971 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
2972 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere</b_path> | ||
2973 | <c_attribute>label</c_attribute> | ||
2974 | <d_old></d_old> | ||
2975 | <e_new>Atmosphere</e_new> | ||
2976 | <f_old_trans></f_old_trans> | ||
2977 | <f_translation>Atmosphäre</f_translation> | ||
2978 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
2979 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/BHText</b_path> | ||
2980 | <c_attribute></c_attribute> | ||
2981 | <d_old></d_old> | ||
2982 | <e_new> | ||
2983 | Blue Horizon | ||
2984 | </e_new> | ||
2985 | <f_old_trans></f_old_trans> | ||
2986 | <f_translation> | ||
2987 | Horizontfarbe | ||
2988 | </f_translation> | ||
2989 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
2990 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/WLBlueHorizonHelp</b_path> | ||
2991 | <c_attribute>label</c_attribute> | ||
2992 | <d_old></d_old> | ||
2993 | <e_new>?</e_new> | ||
2994 | <f_old_trans></f_old_trans> | ||
2995 | <f_translation> ?</f_translation> | ||
2996 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
2997 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/BHText2</b_path> | ||
2998 | <c_attribute></c_attribute> | ||
2999 | <d_old></d_old> | ||
3000 | <e_new> | ||
3001 | R | ||
3002 | </e_new> | ||
3003 | <f_old_trans></f_old_trans> | ||
3004 | <f_translation> | ||
3005 | R | ||
3006 | </f_translation> | ||
3007 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3008 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/BHText3</b_path> | ||
3009 | <c_attribute></c_attribute> | ||
3010 | <d_old></d_old> | ||
3011 | <e_new> | ||
3012 | G | ||
3013 | </e_new> | ||
3014 | <f_old_trans></f_old_trans> | ||
3015 | <f_translation> | ||
3016 | G | ||
3017 | </f_translation> | ||
3018 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3019 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/BHText4</b_path> | ||
3020 | <c_attribute></c_attribute> | ||
3021 | <d_old></d_old> | ||
3022 | <e_new> | ||
3023 | B | ||
3024 | </e_new> | ||
3025 | <f_old_trans></f_old_trans> | ||
3026 | <f_translation> | ||
3027 | B | ||
3028 | </f_translation> | ||
3029 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3030 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/BHText5</b_path> | ||
3031 | <c_attribute></c_attribute> | ||
3032 | <d_old></d_old> | ||
3033 | <e_new> | ||
3034 | I | ||
3035 | </e_new> | ||
3036 | <f_old_trans></f_old_trans> | ||
3037 | <f_translation> | ||
3038 | I | ||
3039 | </f_translation> | ||
3040 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3041 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/WLBlueHorizonR</b_path> | ||
3042 | <c_attribute>label</c_attribute> | ||
3043 | <d_old></d_old> | ||
3044 | <e_new></e_new> | ||
3045 | <f_old_trans></f_old_trans> | ||
3046 | <f_translation></f_translation> | ||
3047 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3048 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/WLBlueHorizonG</b_path> | ||
3049 | <c_attribute>label</c_attribute> | ||
3050 | <d_old></d_old> | ||
3051 | <e_new></e_new> | ||
3052 | <f_old_trans></f_old_trans> | ||
3053 | <f_translation></f_translation> | ||
3054 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3055 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/WLBlueHorizonB</b_path> | ||
3056 | <c_attribute>label</c_attribute> | ||
3057 | <d_old></d_old> | ||
3058 | <e_new></e_new> | ||
3059 | <f_old_trans></f_old_trans> | ||
3060 | <f_translation></f_translation> | ||
3061 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3062 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/WLBlueHorizonI</b_path> | ||
3063 | <c_attribute>label</c_attribute> | ||
3064 | <d_old></d_old> | ||
3065 | <e_new></e_new> | ||
3066 | <f_old_trans></f_old_trans> | ||
3067 | <f_translation></f_translation> | ||
3068 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3069 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/BDensText</b_path> | ||
3070 | <c_attribute></c_attribute> | ||
3071 | <d_old></d_old> | ||
3072 | <e_new> | ||
3073 | Haze Horizon | ||
3074 | </e_new> | ||
3075 | <f_old_trans></f_old_trans> | ||
3076 | <f_translation> | ||
3077 | Horizonttrübung | ||
3078 | </f_translation> | ||
3079 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3080 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/WLHazeHorizonHelp</b_path> | ||
3081 | <c_attribute>label</c_attribute> | ||
3082 | <d_old></d_old> | ||
3083 | <e_new>?</e_new> | ||
3084 | <f_old_trans></f_old_trans> | ||
3085 | <f_translation> ?</f_translation> | ||
3086 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3087 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/WLHazeHorizon</b_path> | ||
3088 | <c_attribute>label</c_attribute> | ||
3089 | <d_old></d_old> | ||
3090 | <e_new></e_new> | ||
3091 | <f_old_trans></f_old_trans> | ||
3092 | <f_translation></f_translation> | ||
3093 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3094 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/BDensText2</b_path> | ||
3095 | <c_attribute></c_attribute> | ||
3096 | <d_old></d_old> | ||
3097 | <e_new> | ||
3098 | Blue Density | ||
3099 | </e_new> | ||
3100 | <f_old_trans></f_old_trans> | ||
3101 | <f_translation> | ||
3102 | Farbintensität | ||
3103 | </f_translation> | ||
3104 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3105 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/WLBlueDensityHelp</b_path> | ||
3106 | <c_attribute>label</c_attribute> | ||
3107 | <d_old></d_old> | ||
3108 | <e_new>?</e_new> | ||
3109 | <f_old_trans></f_old_trans> | ||
3110 | <f_translation> ?</f_translation> | ||
3111 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3112 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/BHText6</b_path> | ||
3113 | <c_attribute></c_attribute> | ||
3114 | <d_old></d_old> | ||
3115 | <e_new> | ||
3116 | R | ||
3117 | </e_new> | ||
3118 | <f_old_trans></f_old_trans> | ||
3119 | <f_translation> | ||
3120 | R | ||
3121 | </f_translation> | ||
3122 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3123 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/BHText7</b_path> | ||
3124 | <c_attribute></c_attribute> | ||
3125 | <d_old></d_old> | ||
3126 | <e_new> | ||
3127 | G | ||
3128 | </e_new> | ||
3129 | <f_old_trans></f_old_trans> | ||
3130 | <f_translation> | ||
3131 | G | ||
3132 | </f_translation> | ||
3133 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3134 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/BHText8</b_path> | ||
3135 | <c_attribute></c_attribute> | ||
3136 | <d_old></d_old> | ||
3137 | <e_new> | ||
3138 | B | ||
3139 | </e_new> | ||
3140 | <f_old_trans></f_old_trans> | ||
3141 | <f_translation> | ||
3142 | B | ||
3143 | </f_translation> | ||
3144 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3145 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/BHText9</b_path> | ||
3146 | <c_attribute></c_attribute> | ||
3147 | <d_old></d_old> | ||
3148 | <e_new> | ||
3149 | I | ||
3150 | </e_new> | ||
3151 | <f_old_trans></f_old_trans> | ||
3152 | <f_translation> | ||
3153 | I | ||
3154 | </f_translation> | ||
3155 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3156 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/WLBlueDensityR</b_path> | ||
3157 | <c_attribute>label</c_attribute> | ||
3158 | <d_old></d_old> | ||
3159 | <e_new></e_new> | ||
3160 | <f_old_trans></f_old_trans> | ||
3161 | <f_translation></f_translation> | ||
3162 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3163 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/WLBlueDensityG</b_path> | ||
3164 | <c_attribute>label</c_attribute> | ||
3165 | <d_old></d_old> | ||
3166 | <e_new></e_new> | ||
3167 | <f_old_trans></f_old_trans> | ||
3168 | <f_translation></f_translation> | ||
3169 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3170 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/WLBlueDensityB</b_path> | ||
3171 | <c_attribute>label</c_attribute> | ||
3172 | <d_old></d_old> | ||
3173 | <e_new></e_new> | ||
3174 | <f_old_trans></f_old_trans> | ||
3175 | <f_translation></f_translation> | ||
3176 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3177 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/WLBlueDensityI</b_path> | ||
3178 | <c_attribute>label</c_attribute> | ||
3179 | <d_old></d_old> | ||
3180 | <e_new></e_new> | ||
3181 | <f_old_trans></f_old_trans> | ||
3182 | <f_translation></f_translation> | ||
3183 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3184 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/HDText</b_path> | ||
3185 | <c_attribute></c_attribute> | ||
3186 | <d_old></d_old> | ||
3187 | <e_new> | ||
3188 | Haze Density | ||
3189 | </e_new> | ||
3190 | <f_old_trans></f_old_trans> | ||
3191 | <f_translation> | ||
3192 | Trübungsintensität | ||
3193 | </f_translation> | ||
3194 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3195 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/WLHazeDensityHelp</b_path> | ||
3196 | <c_attribute>label</c_attribute> | ||
3197 | <d_old></d_old> | ||
3198 | <e_new>?</e_new> | ||
3199 | <f_old_trans></f_old_trans> | ||
3200 | <f_translation> ?</f_translation> | ||
3201 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3202 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/WLHazeDensity</b_path> | ||
3203 | <c_attribute>label</c_attribute> | ||
3204 | <d_old></d_old> | ||
3205 | <e_new></e_new> | ||
3206 | <f_old_trans></f_old_trans> | ||
3207 | <f_translation></f_translation> | ||
3208 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3209 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/DensMultText</b_path> | ||
3210 | <c_attribute></c_attribute> | ||
3211 | <d_old></d_old> | ||
3212 | <e_new> | ||
3213 | Density Multiplier | ||
3214 | </e_new> | ||
3215 | <f_old_trans></f_old_trans> | ||
3216 | <f_translation> | ||
3217 | Dichtemultiplikator | ||
3218 | </f_translation> | ||
3219 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3220 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/WLDensityMultHelp</b_path> | ||
3221 | <c_attribute>label</c_attribute> | ||
3222 | <d_old></d_old> | ||
3223 | <e_new>?</e_new> | ||
3224 | <f_old_trans></f_old_trans> | ||
3225 | <f_translation> ?</f_translation> | ||
3226 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3227 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/WLDensityMult</b_path> | ||
3228 | <c_attribute>label</c_attribute> | ||
3229 | <d_old></d_old> | ||
3230 | <e_new></e_new> | ||
3231 | <f_old_trans></f_old_trans> | ||
3232 | <f_translation></f_translation> | ||
3233 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3234 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/WLDistanceMultText</b_path> | ||
3235 | <c_attribute></c_attribute> | ||
3236 | <d_old></d_old> | ||
3237 | <e_new> | ||
3238 | Distance Multiplier | ||
3239 | </e_new> | ||
3240 | <f_old_trans></f_old_trans> | ||
3241 | <f_translation> | ||
3242 | Entfernungsmultiplikator | ||
3243 | </f_translation> | ||
3244 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3245 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/WLDistanceMultHelp</b_path> | ||
3246 | <c_attribute>label</c_attribute> | ||
3247 | <d_old></d_old> | ||
3248 | <e_new>?</e_new> | ||
3249 | <f_old_trans></f_old_trans> | ||
3250 | <f_translation> ?</f_translation> | ||
3251 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3252 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/WLDistanceMult</b_path> | ||
3253 | <c_attribute>label</c_attribute> | ||
3254 | <d_old></d_old> | ||
3255 | <e_new></e_new> | ||
3256 | <f_old_trans></f_old_trans> | ||
3257 | <f_translation></f_translation> | ||
3258 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3259 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/MaxAltText</b_path> | ||
3260 | <c_attribute></c_attribute> | ||
3261 | <d_old></d_old> | ||
3262 | <e_new> | ||
3263 | Max Altitude | ||
3264 | </e_new> | ||
3265 | <f_old_trans></f_old_trans> | ||
3266 | <f_translation> | ||
3267 | Max. Höhe | ||
3268 | </f_translation> | ||
3269 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3270 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/WLMaxAltitudeHelp</b_path> | ||
3271 | <c_attribute>label</c_attribute> | ||
3272 | <d_old></d_old> | ||
3273 | <e_new>?</e_new> | ||
3274 | <f_old_trans></f_old_trans> | ||
3275 | <f_translation> ?</f_translation> | ||
3276 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3277 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/WLMaxAltitude</b_path> | ||
3278 | <c_attribute>label</c_attribute> | ||
3279 | <d_old></d_old> | ||
3280 | <e_new></e_new> | ||
3281 | <f_old_trans></f_old_trans> | ||
3282 | <f_translation></f_translation> | ||
3283 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3284 | <b_path>/WindLight floater/WindLight Tabs/Lighting</b_path> | ||
3285 | <c_attribute>label</c_attribute> | ||
3286 | <d_old></d_old> | ||
3287 | <e_new>Lighting</e_new> | ||
3288 | <f_old_trans></f_old_trans> | ||
3289 | <f_translation>Licht</f_translation> | ||
3290 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3291 | <b_path>/WindLight floater/WindLight Tabs/Lighting/SLCText</b_path> | ||
3292 | <c_attribute></c_attribute> | ||
3293 | <d_old></d_old> | ||
3294 | <e_new> | ||
3295 | Sun/Moon Color | ||
3296 | </e_new> | ||
3297 | <f_old_trans></f_old_trans> | ||
3298 | <f_translation> | ||
3299 | Sonne/Mond-Farbe | ||
3300 | </f_translation> | ||
3301 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3302 | <b_path>/WindLight floater/WindLight Tabs/Lighting/WLSunlightColorHelp</b_path> | ||
3303 | <c_attribute>label</c_attribute> | ||
3304 | <d_old></d_old> | ||
3305 | <e_new>?</e_new> | ||
3306 | <f_old_trans></f_old_trans> | ||
3307 | <f_translation> ?</f_translation> | ||
3308 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3309 | <b_path>/WindLight floater/WindLight Tabs/Lighting/BHText</b_path> | ||
3310 | <c_attribute></c_attribute> | ||
3311 | <d_old></d_old> | ||
3312 | <e_new> | ||
3313 | R | ||
3314 | </e_new> | ||
3315 | <f_old_trans></f_old_trans> | ||
3316 | <f_translation> | ||
3317 | R | ||
3318 | </f_translation> | ||
3319 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3320 | <b_path>/WindLight floater/WindLight Tabs/Lighting/BHText2</b_path> | ||
3321 | <c_attribute></c_attribute> | ||
3322 | <d_old></d_old> | ||
3323 | <e_new> | ||
3324 | G | ||
3325 | </e_new> | ||
3326 | <f_old_trans></f_old_trans> | ||
3327 | <f_translation> | ||
3328 | G | ||
3329 | </f_translation> | ||
3330 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3331 | <b_path>/WindLight floater/WindLight Tabs/Lighting/BHText3</b_path> | ||
3332 | <c_attribute></c_attribute> | ||
3333 | <d_old></d_old> | ||
3334 | <e_new> | ||
3335 | B | ||
3336 | </e_new> | ||
3337 | <f_old_trans></f_old_trans> | ||
3338 | <f_translation> | ||
3339 | B | ||
3340 | </f_translation> | ||
3341 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3342 | <b_path>/WindLight floater/WindLight Tabs/Lighting/BHText4</b_path> | ||
3343 | <c_attribute></c_attribute> | ||
3344 | <d_old></d_old> | ||
3345 | <e_new> | ||
3346 | I | ||
3347 | </e_new> | ||
3348 | <f_old_trans></f_old_trans> | ||
3349 | <f_translation> | ||
3350 | I | ||
3351 | </f_translation> | ||
3352 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3353 | <b_path>/WindLight floater/WindLight Tabs/Lighting/WLSunlightR</b_path> | ||
3354 | <c_attribute>label</c_attribute> | ||
3355 | <d_old></d_old> | ||
3356 | <e_new></e_new> | ||
3357 | <f_old_trans></f_old_trans> | ||
3358 | <f_translation></f_translation> | ||
3359 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3360 | <b_path>/WindLight floater/WindLight Tabs/Lighting/WLSunlightG</b_path> | ||
3361 | <c_attribute>label</c_attribute> | ||
3362 | <d_old></d_old> | ||
3363 | <e_new></e_new> | ||
3364 | <f_old_trans></f_old_trans> | ||
3365 | <f_translation></f_translation> | ||
3366 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3367 | <b_path>/WindLight floater/WindLight Tabs/Lighting/WLSunlightB</b_path> | ||
3368 | <c_attribute>label</c_attribute> | ||
3369 | <d_old></d_old> | ||
3370 | <e_new></e_new> | ||
3371 | <f_old_trans></f_old_trans> | ||
3372 | <f_translation></f_translation> | ||
3373 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3374 | <b_path>/WindLight floater/WindLight Tabs/Lighting/WLSunlightI</b_path> | ||
3375 | <c_attribute>label</c_attribute> | ||
3376 | <d_old></d_old> | ||
3377 | <e_new></e_new> | ||
3378 | <f_old_trans></f_old_trans> | ||
3379 | <f_translation></f_translation> | ||
3380 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3381 | <b_path>/WindLight floater/WindLight Tabs/Lighting/TODText</b_path> | ||
3382 | <c_attribute></c_attribute> | ||
3383 | <d_old></d_old> | ||
3384 | <e_new> | ||
3385 | Sun/Moon Position | ||
3386 | </e_new> | ||
3387 | <f_old_trans></f_old_trans> | ||
3388 | <f_translation> | ||
3389 | Sonne/Mond-Stand | ||
3390 | </f_translation> | ||
3391 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3392 | <b_path>/WindLight floater/WindLight Tabs/Lighting/WLTimeOfDayHelp</b_path> | ||
3393 | <c_attribute>label</c_attribute> | ||
3394 | <d_old></d_old> | ||
3395 | <e_new>?</e_new> | ||
3396 | <f_old_trans></f_old_trans> | ||
3397 | <f_translation> ?</f_translation> | ||
3398 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3399 | <b_path>/WindLight floater/WindLight Tabs/Lighting/WLSunAngle</b_path> | ||
3400 | <c_attribute>label</c_attribute> | ||
3401 | <d_old></d_old> | ||
3402 | <e_new></e_new> | ||
3403 | <f_old_trans></f_old_trans> | ||
3404 | <f_translation></f_translation> | ||
3405 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3406 | <b_path>/WindLight floater/WindLight Tabs/Lighting/WLAmbientText</b_path> | ||
3407 | <c_attribute></c_attribute> | ||
3408 | <d_old></d_old> | ||
3409 | <e_new> | ||
3410 | Ambient | ||
3411 | </e_new> | ||
3412 | <f_old_trans></f_old_trans> | ||
3413 | <f_translation> | ||
3414 | Umgebung | ||
3415 | </f_translation> | ||
3416 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3417 | <b_path>/WindLight floater/WindLight Tabs/Lighting/WLAmbientHelp</b_path> | ||
3418 | <c_attribute>label</c_attribute> | ||
3419 | <d_old></d_old> | ||
3420 | <e_new>?</e_new> | ||
3421 | <f_old_trans></f_old_trans> | ||
3422 | <f_translation> ?</f_translation> | ||
3423 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3424 | <b_path>/WindLight floater/WindLight Tabs/Lighting/BHText5</b_path> | ||
3425 | <c_attribute></c_attribute> | ||
3426 | <d_old></d_old> | ||
3427 | <e_new> | ||
3428 | R | ||
3429 | </e_new> | ||
3430 | <f_old_trans></f_old_trans> | ||
3431 | <f_translation> | ||
3432 | R | ||
3433 | </f_translation> | ||
3434 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3435 | <b_path>/WindLight floater/WindLight Tabs/Lighting/BHText6</b_path> | ||
3436 | <c_attribute></c_attribute> | ||
3437 | <d_old></d_old> | ||
3438 | <e_new> | ||
3439 | G | ||
3440 | </e_new> | ||
3441 | <f_old_trans></f_old_trans> | ||
3442 | <f_translation> | ||
3443 | G | ||
3444 | </f_translation> | ||
3445 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3446 | <b_path>/WindLight floater/WindLight Tabs/Lighting/BHText7</b_path> | ||
3447 | <c_attribute></c_attribute> | ||
3448 | <d_old></d_old> | ||
3449 | <e_new> | ||
3450 | B | ||
3451 | </e_new> | ||
3452 | <f_old_trans></f_old_trans> | ||
3453 | <f_translation> | ||
3454 | B | ||
3455 | </f_translation> | ||
3456 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3457 | <b_path>/WindLight floater/WindLight Tabs/Lighting/BHText8</b_path> | ||
3458 | <c_attribute></c_attribute> | ||
3459 | <d_old></d_old> | ||
3460 | <e_new> | ||
3461 | I | ||
3462 | </e_new> | ||
3463 | <f_old_trans></f_old_trans> | ||
3464 | <f_translation> | ||
3465 | I | ||
3466 | </f_translation> | ||
3467 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3468 | <b_path>/WindLight floater/WindLight Tabs/Lighting/WLAmbientR</b_path> | ||
3469 | <c_attribute>label</c_attribute> | ||
3470 | <d_old></d_old> | ||
3471 | <e_new></e_new> | ||
3472 | <f_old_trans></f_old_trans> | ||
3473 | <f_translation></f_translation> | ||
3474 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3475 | <b_path>/WindLight floater/WindLight Tabs/Lighting/WLAmbientG</b_path> | ||
3476 | <c_attribute>label</c_attribute> | ||
3477 | <d_old></d_old> | ||
3478 | <e_new></e_new> | ||
3479 | <f_old_trans></f_old_trans> | ||
3480 | <f_translation></f_translation> | ||
3481 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3482 | <b_path>/WindLight floater/WindLight Tabs/Lighting/WLAmbientB</b_path> | ||
3483 | <c_attribute>label</c_attribute> | ||
3484 | <d_old></d_old> | ||
3485 | <e_new></e_new> | ||
3486 | <f_old_trans></f_old_trans> | ||
3487 | <f_translation></f_translation> | ||
3488 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3489 | <b_path>/WindLight floater/WindLight Tabs/Lighting/WLAmbientI</b_path> | ||
3490 | <c_attribute>label</c_attribute> | ||
3491 | <d_old></d_old> | ||
3492 | <e_new></e_new> | ||
3493 | <f_old_trans></f_old_trans> | ||
3494 | <f_translation></f_translation> | ||
3495 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3496 | <b_path>/WindLight floater/WindLight Tabs/Lighting/WLEastAngleText</b_path> | ||
3497 | <c_attribute></c_attribute> | ||
3498 | <d_old></d_old> | ||
3499 | <e_new> | ||
3500 | East Angle | ||
3501 | </e_new> | ||
3502 | <f_old_trans></f_old_trans> | ||
3503 | <f_translation> | ||
3504 | Ostausrichtung | ||
3505 | </f_translation> | ||
3506 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3507 | <b_path>/WindLight floater/WindLight Tabs/Lighting/WLEastAngleHelp</b_path> | ||
3508 | <c_attribute>label</c_attribute> | ||
3509 | <d_old></d_old> | ||
3510 | <e_new>?</e_new> | ||
3511 | <f_old_trans></f_old_trans> | ||
3512 | <f_translation> ?</f_translation> | ||
3513 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3514 | <b_path>/WindLight floater/WindLight Tabs/Lighting/WLEastAngle</b_path> | ||
3515 | <c_attribute>label</c_attribute> | ||
3516 | <d_old></d_old> | ||
3517 | <e_new></e_new> | ||
3518 | <f_old_trans></f_old_trans> | ||
3519 | <f_translation></f_translation> | ||
3520 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3521 | <b_path>/WindLight floater/WindLight Tabs/Lighting/SunGlowText</b_path> | ||
3522 | <c_attribute></c_attribute> | ||
3523 | <d_old></d_old> | ||
3524 | <e_new> | ||
3525 | Sun Glow | ||
3526 | </e_new> | ||
3527 | <f_old_trans></f_old_trans> | ||
3528 | <f_translation> | ||
3529 | Sonnenleuchtkraft | ||
3530 | </f_translation> | ||
3531 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3532 | <b_path>/WindLight floater/WindLight Tabs/Lighting/WLSunGlowHelp</b_path> | ||
3533 | <c_attribute>label</c_attribute> | ||
3534 | <d_old></d_old> | ||
3535 | <e_new>?</e_new> | ||
3536 | <f_old_trans></f_old_trans> | ||
3537 | <f_translation> ?</f_translation> | ||
3538 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3539 | <b_path>/WindLight floater/WindLight Tabs/Lighting/WLGlowB</b_path> | ||
3540 | <c_attribute>label</c_attribute> | ||
3541 | <d_old></d_old> | ||
3542 | <e_new>Focus </e_new> | ||
3543 | <f_old_trans></f_old_trans> | ||
3544 | <f_translation>Fokus </f_translation> | ||
3545 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3546 | <b_path>/WindLight floater/WindLight Tabs/Lighting/WLGlowR</b_path> | ||
3547 | <c_attribute>label</c_attribute> | ||
3548 | <d_old></d_old> | ||
3549 | <e_new>Size </e_new> | ||
3550 | <f_old_trans></f_old_trans> | ||
3551 | <f_translation>Größe </f_translation> | ||
3552 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3553 | <b_path>/WindLight floater/WindLight Tabs/Lighting/SceneGammaText</b_path> | ||
3554 | <c_attribute></c_attribute> | ||
3555 | <d_old></d_old> | ||
3556 | <e_new> | ||
3557 | Scene Gamma | ||
3558 | </e_new> | ||
3559 | <f_old_trans></f_old_trans> | ||
3560 | <f_translation> | ||
3561 | Gamma in Szene | ||
3562 | </f_translation> | ||
3563 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3564 | <b_path>/WindLight floater/WindLight Tabs/Lighting/WLSceneGammaHelp</b_path> | ||
3565 | <c_attribute>label</c_attribute> | ||
3566 | <d_old></d_old> | ||
3567 | <e_new>?</e_new> | ||
3568 | <f_old_trans></f_old_trans> | ||
3569 | <f_translation> ?</f_translation> | ||
3570 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3571 | <b_path>/WindLight floater/WindLight Tabs/Lighting/WLGamma</b_path> | ||
3572 | <c_attribute>label</c_attribute> | ||
3573 | <d_old></d_old> | ||
3574 | <e_new></e_new> | ||
3575 | <f_old_trans></f_old_trans> | ||
3576 | <f_translation></f_translation> | ||
3577 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3578 | <b_path>/WindLight floater/WindLight Tabs/Lighting/WLStarText</b_path> | ||
3579 | <c_attribute></c_attribute> | ||
3580 | <d_old></d_old> | ||
3581 | <e_new> | ||
3582 | Star Brightness | ||
3583 | </e_new> | ||
3584 | <f_old_trans></f_old_trans> | ||
3585 | <f_translation> | ||
3586 | Sternenleuchtkraft | ||
3587 | </f_translation> | ||
3588 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3589 | <b_path>/WindLight floater/WindLight Tabs/Lighting/WLStarBrightnessHelp</b_path> | ||
3590 | <c_attribute>label</c_attribute> | ||
3591 | <d_old></d_old> | ||
3592 | <e_new>?</e_new> | ||
3593 | <f_old_trans></f_old_trans> | ||
3594 | <f_translation> ?</f_translation> | ||
3595 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3596 | <b_path>/WindLight floater/WindLight Tabs/Lighting/WLStarAlpha</b_path> | ||
3597 | <c_attribute>label</c_attribute> | ||
3598 | <d_old></d_old> | ||
3599 | <e_new></e_new> | ||
3600 | <f_old_trans></f_old_trans> | ||
3601 | <f_translation></f_translation> | ||
3602 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3603 | <b_path>/WindLight floater/WindLight Tabs/Clouds</b_path> | ||
3604 | <c_attribute>label</c_attribute> | ||
3605 | <d_old></d_old> | ||
3606 | <e_new>Clouds</e_new> | ||
3607 | <f_old_trans></f_old_trans> | ||
3608 | <f_translation>Wolken</f_translation> | ||
3609 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3610 | <b_path>/WindLight floater/WindLight Tabs/Clouds/WLCloudColorText</b_path> | ||
3611 | <c_attribute></c_attribute> | ||
3612 | <d_old></d_old> | ||
3613 | <e_new> | ||
3614 | Cloud Color | ||
3615 | </e_new> | ||
3616 | <f_old_trans></f_old_trans> | ||
3617 | <f_translation> | ||
3618 | Wolkenfarbe | ||
3619 | </f_translation> | ||
3620 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3621 | <b_path>/WindLight floater/WindLight Tabs/Clouds/WLCloudColorHelp</b_path> | ||
3622 | <c_attribute>label</c_attribute> | ||
3623 | <d_old></d_old> | ||
3624 | <e_new>?</e_new> | ||
3625 | <f_old_trans></f_old_trans> | ||
3626 | <f_translation> ?</f_translation> | ||
3627 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3628 | <b_path>/WindLight floater/WindLight Tabs/Clouds/BHText</b_path> | ||
3629 | <c_attribute></c_attribute> | ||
3630 | <d_old></d_old> | ||
3631 | <e_new> | ||
3632 | R | ||
3633 | </e_new> | ||
3634 | <f_old_trans></f_old_trans> | ||
3635 | <f_translation> | ||
3636 | R | ||
3637 | </f_translation> | ||
3638 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3639 | <b_path>/WindLight floater/WindLight Tabs/Clouds/BHText2</b_path> | ||
3640 | <c_attribute></c_attribute> | ||
3641 | <d_old></d_old> | ||
3642 | <e_new> | ||
3643 | G | ||
3644 | </e_new> | ||
3645 | <f_old_trans></f_old_trans> | ||
3646 | <f_translation> | ||
3647 | G | ||
3648 | </f_translation> | ||
3649 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3650 | <b_path>/WindLight floater/WindLight Tabs/Clouds/BHText3</b_path> | ||
3651 | <c_attribute></c_attribute> | ||
3652 | <d_old></d_old> | ||
3653 | <e_new> | ||
3654 | B | ||
3655 | </e_new> | ||
3656 | <f_old_trans></f_old_trans> | ||
3657 | <f_translation> | ||
3658 | B | ||
3659 | </f_translation> | ||
3660 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3661 | <b_path>/WindLight floater/WindLight Tabs/Clouds/BHText4</b_path> | ||
3662 | <c_attribute></c_attribute> | ||
3663 | <d_old></d_old> | ||
3664 | <e_new> | ||
3665 | I | ||
3666 | </e_new> | ||
3667 | <f_old_trans></f_old_trans> | ||
3668 | <f_translation> | ||
3669 | I | ||
3670 | </f_translation> | ||
3671 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3672 | <b_path>/WindLight floater/WindLight Tabs/Clouds/WLCloudColorR</b_path> | ||
3673 | <c_attribute>label</c_attribute> | ||
3674 | <d_old></d_old> | ||
3675 | <e_new></e_new> | ||
3676 | <f_old_trans></f_old_trans> | ||
3677 | <f_translation></f_translation> | ||
3678 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3679 | <b_path>/WindLight floater/WindLight Tabs/Clouds/WLCloudColorG</b_path> | ||
3680 | <c_attribute>label</c_attribute> | ||
3681 | <d_old></d_old> | ||
3682 | <e_new></e_new> | ||
3683 | <f_old_trans></f_old_trans> | ||
3684 | <f_translation></f_translation> | ||
3685 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3686 | <b_path>/WindLight floater/WindLight Tabs/Clouds/WLCloudColorB</b_path> | ||
3687 | <c_attribute>label</c_attribute> | ||
3688 | <d_old></d_old> | ||
3689 | <e_new></e_new> | ||
3690 | <f_old_trans></f_old_trans> | ||
3691 | <f_translation></f_translation> | ||
3692 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3693 | <b_path>/WindLight floater/WindLight Tabs/Clouds/WLCloudColorI</b_path> | ||
3694 | <c_attribute>label</c_attribute> | ||
3695 | <d_old></d_old> | ||
3696 | <e_new></e_new> | ||
3697 | <f_old_trans></f_old_trans> | ||
3698 | <f_translation></f_translation> | ||
3699 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3700 | <b_path>/WindLight floater/WindLight Tabs/Clouds/WLCloudColorText2</b_path> | ||
3701 | <c_attribute></c_attribute> | ||
3702 | <d_old></d_old> | ||
3703 | <e_new> | ||
3704 | Cloud XY/Density | ||
3705 | </e_new> | ||
3706 | <f_old_trans></f_old_trans> | ||
3707 | <f_translation> | ||
3708 | Wolken-XY/Dichte | ||
3709 | </f_translation> | ||
3710 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3711 | <b_path>/WindLight floater/WindLight Tabs/Clouds/WLCloudDensityHelp</b_path> | ||
3712 | <c_attribute>label</c_attribute> | ||
3713 | <d_old></d_old> | ||
3714 | <e_new>?</e_new> | ||
3715 | <f_old_trans></f_old_trans> | ||
3716 | <f_translation> ?</f_translation> | ||
3717 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3718 | <b_path>/WindLight floater/WindLight Tabs/Clouds/BHText5</b_path> | ||
3719 | <c_attribute></c_attribute> | ||
3720 | <d_old></d_old> | ||
3721 | <e_new> | ||
3722 | X | ||
3723 | </e_new> | ||
3724 | <f_old_trans></f_old_trans> | ||
3725 | <f_translation> | ||
3726 | X | ||
3727 | </f_translation> | ||
3728 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3729 | <b_path>/WindLight floater/WindLight Tabs/Clouds/BHText6</b_path> | ||
3730 | <c_attribute></c_attribute> | ||
3731 | <d_old></d_old> | ||
3732 | <e_new> | ||
3733 | Y | ||
3734 | </e_new> | ||
3735 | <f_old_trans></f_old_trans> | ||
3736 | <f_translation> | ||
3737 | Y | ||
3738 | </f_translation> | ||
3739 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3740 | <b_path>/WindLight floater/WindLight Tabs/Clouds/BHText7</b_path> | ||
3741 | <c_attribute></c_attribute> | ||
3742 | <d_old></d_old> | ||
3743 | <e_new> | ||
3744 | D | ||
3745 | </e_new> | ||
3746 | <f_old_trans></f_old_trans> | ||
3747 | <f_translation> | ||
3748 | D | ||
3749 | </f_translation> | ||
3750 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3751 | <b_path>/WindLight floater/WindLight Tabs/Clouds/WLCloudX</b_path> | ||
3752 | <c_attribute>label</c_attribute> | ||
3753 | <d_old></d_old> | ||
3754 | <e_new></e_new> | ||
3755 | <f_old_trans></f_old_trans> | ||
3756 | <f_translation></f_translation> | ||
3757 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3758 | <b_path>/WindLight floater/WindLight Tabs/Clouds/WLCloudY</b_path> | ||
3759 | <c_attribute>label</c_attribute> | ||
3760 | <d_old></d_old> | ||
3761 | <e_new></e_new> | ||
3762 | <f_old_trans></f_old_trans> | ||
3763 | <f_translation></f_translation> | ||
3764 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3765 | <b_path>/WindLight floater/WindLight Tabs/Clouds/WLCloudDensity</b_path> | ||
3766 | <c_attribute>label</c_attribute> | ||
3767 | <d_old></d_old> | ||
3768 | <e_new></e_new> | ||
3769 | <f_old_trans></f_old_trans> | ||
3770 | <f_translation></f_translation> | ||
3771 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3772 | <b_path>/WindLight floater/WindLight Tabs/Clouds/WLCloudCoverageText</b_path> | ||
3773 | <c_attribute></c_attribute> | ||
3774 | <d_old></d_old> | ||
3775 | <e_new> | ||
3776 | Cloud Coverage | ||
3777 | </e_new> | ||
3778 | <f_old_trans></f_old_trans> | ||
3779 | <f_translation> | ||
3780 | Wolkendichte | ||
3781 | </f_translation> | ||
3782 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3783 | <b_path>/WindLight floater/WindLight Tabs/Clouds/WLCloudCoverageHelp</b_path> | ||
3784 | <c_attribute>label</c_attribute> | ||
3785 | <d_old></d_old> | ||
3786 | <e_new>?</e_new> | ||
3787 | <f_old_trans></f_old_trans> | ||
3788 | <f_translation> ?</f_translation> | ||
3789 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3790 | <b_path>/WindLight floater/WindLight Tabs/Clouds/WLCloudCoverage</b_path> | ||
3791 | <c_attribute>label</c_attribute> | ||
3792 | <d_old></d_old> | ||
3793 | <e_new></e_new> | ||
3794 | <f_old_trans></f_old_trans> | ||
3795 | <f_translation></f_translation> | ||
3796 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3797 | <b_path>/WindLight floater/WindLight Tabs/Clouds/WLCloudScaleText</b_path> | ||
3798 | <c_attribute></c_attribute> | ||
3799 | <d_old></d_old> | ||
3800 | <e_new> | ||
3801 | Cloud Scale | ||
3802 | </e_new> | ||
3803 | <f_old_trans></f_old_trans> | ||
3804 | <f_translation> | ||
3805 | Wolkenskalierung | ||
3806 | </f_translation> | ||
3807 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3808 | <b_path>/WindLight floater/WindLight Tabs/Clouds/WLCloudScaleHelp</b_path> | ||
3809 | <c_attribute>label</c_attribute> | ||
3810 | <d_old></d_old> | ||
3811 | <e_new>?</e_new> | ||
3812 | <f_old_trans></f_old_trans> | ||
3813 | <f_translation> ?</f_translation> | ||
3814 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3815 | <b_path>/WindLight floater/WindLight Tabs/Clouds/WLCloudScale</b_path> | ||
3816 | <c_attribute>label</c_attribute> | ||
3817 | <d_old></d_old> | ||
3818 | <e_new></e_new> | ||
3819 | <f_old_trans></f_old_trans> | ||
3820 | <f_translation></f_translation> | ||
3821 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3822 | <b_path>/WindLight floater/WindLight Tabs/Clouds/WLCloudDetailText</b_path> | ||
3823 | <c_attribute></c_attribute> | ||
3824 | <d_old></d_old> | ||
3825 | <e_new> | ||
3826 | Cloud Detail (XY/Density) | ||
3827 | </e_new> | ||
3828 | <f_old_trans></f_old_trans> | ||
3829 | <f_translation> | ||
3830 | Wolkendetails (XY/Dichte) | ||
3831 | </f_translation> | ||
3832 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3833 | <b_path>/WindLight floater/WindLight Tabs/Clouds/WLCloudDetailHelp</b_path> | ||
3834 | <c_attribute>label</c_attribute> | ||
3835 | <d_old></d_old> | ||
3836 | <e_new>?</e_new> | ||
3837 | <f_old_trans></f_old_trans> | ||
3838 | <f_translation> ?</f_translation> | ||
3839 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3840 | <b_path>/WindLight floater/WindLight Tabs/Clouds/BHText8</b_path> | ||
3841 | <c_attribute></c_attribute> | ||
3842 | <d_old></d_old> | ||
3843 | <e_new> | ||
3844 | X | ||
3845 | </e_new> | ||
3846 | <f_old_trans></f_old_trans> | ||
3847 | <f_translation> | ||
3848 | X | ||
3849 | </f_translation> | ||
3850 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3851 | <b_path>/WindLight floater/WindLight Tabs/Clouds/BHText9</b_path> | ||
3852 | <c_attribute></c_attribute> | ||
3853 | <d_old></d_old> | ||
3854 | <e_new> | ||
3855 | Y | ||
3856 | </e_new> | ||
3857 | <f_old_trans></f_old_trans> | ||
3858 | <f_translation> | ||
3859 | Y | ||
3860 | </f_translation> | ||
3861 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3862 | <b_path>/WindLight floater/WindLight Tabs/Clouds/BHText10</b_path> | ||
3863 | <c_attribute></c_attribute> | ||
3864 | <d_old></d_old> | ||
3865 | <e_new> | ||
3866 | D | ||
3867 | </e_new> | ||
3868 | <f_old_trans></f_old_trans> | ||
3869 | <f_translation> | ||
3870 | D | ||
3871 | </f_translation> | ||
3872 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3873 | <b_path>/WindLight floater/WindLight Tabs/Clouds/WLCloudDetailX</b_path> | ||
3874 | <c_attribute>label</c_attribute> | ||
3875 | <d_old></d_old> | ||
3876 | <e_new></e_new> | ||
3877 | <f_old_trans></f_old_trans> | ||
3878 | <f_translation></f_translation> | ||
3879 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3880 | <b_path>/WindLight floater/WindLight Tabs/Clouds/WLCloudDetailY</b_path> | ||
3881 | <c_attribute>label</c_attribute> | ||
3882 | <d_old></d_old> | ||
3883 | <e_new></e_new> | ||
3884 | <f_old_trans></f_old_trans> | ||
3885 | <f_translation></f_translation> | ||
3886 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3887 | <b_path>/WindLight floater/WindLight Tabs/Clouds/WLCloudDetailDensity</b_path> | ||
3888 | <c_attribute>label</c_attribute> | ||
3889 | <d_old></d_old> | ||
3890 | <e_new></e_new> | ||
3891 | <f_old_trans></f_old_trans> | ||
3892 | <f_translation></f_translation> | ||
3893 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3894 | <b_path>/WindLight floater/WindLight Tabs/Clouds/WLCloudScrollXText</b_path> | ||
3895 | <c_attribute></c_attribute> | ||
3896 | <d_old></d_old> | ||
3897 | <e_new> | ||
3898 | Cloud Scroll X | ||
3899 | </e_new> | ||
3900 | <f_old_trans></f_old_trans> | ||
3901 | <f_translation> | ||
3902 | Wolkenbewegung X | ||
3903 | </f_translation> | ||
3904 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3905 | <b_path>/WindLight floater/WindLight Tabs/Clouds/WLCloudScrollXHelp</b_path> | ||
3906 | <c_attribute>label</c_attribute> | ||
3907 | <d_old></d_old> | ||
3908 | <e_new>?</e_new> | ||
3909 | <f_old_trans></f_old_trans> | ||
3910 | <f_translation> ?</f_translation> | ||
3911 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3912 | <b_path>/WindLight floater/WindLight Tabs/Clouds/WLCloudLockX</b_path> | ||
3913 | <c_attribute>label</c_attribute> | ||
3914 | <d_old></d_old> | ||
3915 | <e_new>Lock</e_new> | ||
3916 | <f_old_trans></f_old_trans> | ||
3917 | <f_translation>Fest</f_translation> | ||
3918 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3919 | <b_path>/WindLight floater/WindLight Tabs/Clouds/WLCloudScrollX</b_path> | ||
3920 | <c_attribute>label</c_attribute> | ||
3921 | <d_old></d_old> | ||
3922 | <e_new></e_new> | ||
3923 | <f_old_trans></f_old_trans> | ||
3924 | <f_translation></f_translation> | ||
3925 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3926 | <b_path>/WindLight floater/WindLight Tabs/Clouds/WLCloudScrollYText</b_path> | ||
3927 | <c_attribute></c_attribute> | ||
3928 | <d_old></d_old> | ||
3929 | <e_new> | ||
3930 | Cloud Scroll Y | ||
3931 | </e_new> | ||
3932 | <f_old_trans></f_old_trans> | ||
3933 | <f_translation> | ||
3934 | Wolkenbewegung Y | ||
3935 | </f_translation> | ||
3936 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3937 | <b_path>/WindLight floater/WindLight Tabs/Clouds/WLCloudScrollYHelp</b_path> | ||
3938 | <c_attribute>label</c_attribute> | ||
3939 | <d_old></d_old> | ||
3940 | <e_new>?</e_new> | ||
3941 | <f_old_trans></f_old_trans> | ||
3942 | <f_translation> ?</f_translation> | ||
3943 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3944 | <b_path>/WindLight floater/WindLight Tabs/Clouds/WLCloudLockY</b_path> | ||
3945 | <c_attribute>label</c_attribute> | ||
3946 | <d_old></d_old> | ||
3947 | <e_new>Lock</e_new> | ||
3948 | <f_old_trans></f_old_trans> | ||
3949 | <f_translation>Fest</f_translation> | ||
3950 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3951 | <b_path>/WindLight floater/WindLight Tabs/Clouds/WLCloudScrollY</b_path> | ||
3952 | <c_attribute>label</c_attribute> | ||
3953 | <d_old></d_old> | ||
3954 | <e_new></e_new> | ||
3955 | <f_old_trans></f_old_trans> | ||
3956 | <f_translation></f_translation> | ||
3957 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3958 | <b_path>/WindLight floater/WindLight Tabs/Clouds/DrawClassicClouds</b_path> | ||
3959 | <c_attribute>label</c_attribute> | ||
3960 | <d_old></d_old> | ||
3961 | <e_new>Draw Classic Clouds</e_new> | ||
3962 | <f_old_trans></f_old_trans> | ||
3963 | <f_translation>Klassische Wolken</f_translation> | ||
3964 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3965 | <b_path>/WindLight floater/WindLight Tabs/Clouds/WLClassicCloudsHelp</b_path> | ||
3966 | <c_attribute>label</c_attribute> | ||
3967 | <d_old></d_old> | ||
3968 | <e_new>?</e_new> | ||
3969 | <f_old_trans></f_old_trans> | ||
3970 | <f_translation> ?</f_translation> | ||
3971 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3972 | <b_path>/WindLight floater/WLDefaultSkyNames</b_path> | ||
3973 | <c_attribute></c_attribute> | ||
3974 | <d_old></d_old> | ||
3975 | <e_new> | ||
3976 | A-12AM:A-12PM:A-3AM:A-3PM:A-4.30PM:A-6AM:A-6PM:A-9AM:A-9PM:Barcelona:Blizzard:Blue Midday:Coastal Afternoon:Coastal Sunset:Default:Desert Sunset:Fine Day:Fluffy Big Clouds:Foggy:Funky Funky:Funky Funky Funky:Gelatto:Ghost:Incongruent Truths:Midday 1:Midday 2:Midday 3:Midday 4:Night:Pirate:Purple:Sailor's Delight:Sheer Sensuality | ||
3977 | </e_new> | ||
3978 | <f_old_trans></f_old_trans> | ||
3979 | <f_translation> | ||
3980 | A-12AM:A-12PM:A-3AM:A-3PM:A-4.30PM:A-6AM:A-6PM:A-9AM:A-9PM:Barcelona:Blizzard:Blue Midday:Coastal Afternoon:Coastal Sunset:Default:Desert Sunset:Fine Day:Fluffy Big Clouds:Foggy:Funky Funky:Funky Funky Funky:Gelatto:Ghost:Incongruent Truths:Midday 1:Midday 2:Midday 3:Midday 4:Night:Pirate:Purple:Sailor's Delight:Sheer Sensuality | ||
3981 | </f_translation> | ||
3982 | </string><string><a_file>menu_viewer.xml</a_file> | ||
3983 | <b_path>/Main Menu/View/Beacons/separator2</b_path> | ||
3984 | <c_attribute>label</c_attribute> | ||
3985 | <d_old></d_old> | ||
3986 | <e_new>-----------</e_new> | ||
3987 | <f_old_trans></f_old_trans> | ||
3988 | <f_translation> -----------</f_translation> | ||
3989 | </string><string><a_file>menu_viewer.xml</a_file> | ||
3990 | <b_path>/Main Menu/View/Beacons/separator3</b_path> | ||
3991 | <c_attribute>label</c_attribute> | ||
3992 | <d_old></d_old> | ||
3993 | <e_new>-----------</e_new> | ||
3994 | <f_old_trans></f_old_trans> | ||
3995 | <f_translation> -----------</f_translation> | ||
3996 | </string><string><a_file>menu_viewer.xml</a_file> | ||
3997 | <b_path>/Main Menu/View/Beacons/Beacon Width</b_path> | ||
3998 | <c_attribute>label</c_attribute> | ||
3999 | <d_old></d_old> | ||
4000 | <e_new>Beacon Width</e_new> | ||
4001 | <f_old_trans></f_old_trans> | ||
4002 | <f_translation>Beacon-Breite</f_translation> | ||
4003 | </string><string><a_file>menu_viewer.xml</a_file> | ||
4004 | <b_path>/Main Menu/View/Beacons/Beacon Width/Beacon Width 1</b_path> | ||
4005 | <c_attribute>label</c_attribute> | ||
4006 | <d_old></d_old> | ||
4007 | <e_new>1</e_new> | ||
4008 | <f_old_trans></f_old_trans> | ||
4009 | <f_translation> 1</f_translation> | ||
4010 | </string><string><a_file>menu_viewer.xml</a_file> | ||
4011 | <b_path>/Main Menu/View/Beacons/Beacon Width/Beacon Width 4</b_path> | ||
4012 | <c_attribute>label</c_attribute> | ||
4013 | <d_old></d_old> | ||
4014 | <e_new>4</e_new> | ||
4015 | <f_old_trans></f_old_trans> | ||
4016 | <f_translation> 4</f_translation> | ||
4017 | </string><string><a_file>menu_viewer.xml</a_file> | ||
4018 | <b_path>/Main Menu/View/Beacons/Beacon Width/Beacon Width 16</b_path> | ||
4019 | <c_attribute>label</c_attribute> | ||
4020 | <d_old></d_old> | ||
4021 | <e_new>16</e_new> | ||
4022 | <f_old_trans></f_old_trans> | ||
4023 | <f_translation> 16</f_translation> | ||
4024 | </string><string><a_file>menu_viewer.xml</a_file> | ||
4025 | <b_path>/Main Menu/View/Beacons/Beacon Width/Beacon Width 32</b_path> | ||
4026 | <c_attribute>label</c_attribute> | ||
4027 | <d_old></d_old> | ||
4028 | <e_new>32</e_new> | ||
4029 | <f_old_trans></f_old_trans> | ||
4030 | <f_translation> 32</f_translation> | ||
4031 | </string><string><a_file>menu_viewer.xml</a_file> | ||
4032 | <b_path>/Main Menu/World/Environment Settings</b_path> | ||
4033 | <c_attribute>label</c_attribute> | ||
4034 | <d_old></d_old> | ||
4035 | <e_new>Environment Settings</e_new> | ||
4036 | <f_old_trans></f_old_trans> | ||
4037 | <f_translation>Umwelt-Einstellungen</f_translation> | ||
4038 | </string><string><a_file>menu_viewer.xml</a_file> | ||
4039 | <b_path>/Main Menu/World/Environment Settings/Sunrise</b_path> | ||
4040 | <c_attribute>label</c_attribute> | ||
4041 | <d_old></d_old> | ||
4042 | <e_new>Sunrise</e_new> | ||
4043 | <f_old_trans></f_old_trans> | ||
4044 | <f_translation>Sonnenaufgang</f_translation> | ||
4045 | </string><string><a_file>menu_viewer.xml</a_file> | ||
4046 | <b_path>/Main Menu/World/Environment Settings/Noon</b_path> | ||
4047 | <c_attribute>label</c_attribute> | ||
4048 | <d_old></d_old> | ||
4049 | <e_new>Midday</e_new> | ||
4050 | <f_old_trans></f_old_trans> | ||
4051 | <f_translation>Mittag</f_translation> | ||
4052 | </string><string><a_file>menu_viewer.xml</a_file> | ||
4053 | <b_path>/Main Menu/World/Environment Settings/Sunset</b_path> | ||
4054 | <c_attribute>label</c_attribute> | ||
4055 | <d_old></d_old> | ||
4056 | <e_new>Sunset</e_new> | ||
4057 | <f_old_trans></f_old_trans> | ||
4058 | <f_translation>Sonnenuntergang</f_translation> | ||
4059 | </string><string><a_file>menu_viewer.xml</a_file> | ||
4060 | <b_path>/Main Menu/World/Environment Settings/Midnight</b_path> | ||
4061 | <c_attribute>label</c_attribute> | ||
4062 | <d_old></d_old> | ||
4063 | <e_new>Midnight</e_new> | ||
4064 | <f_old_trans></f_old_trans> | ||
4065 | <f_translation>Mitternacht</f_translation> | ||
4066 | </string><string><a_file>menu_viewer.xml</a_file> | ||
4067 | <b_path>/Main Menu/World/Environment Settings/Revert to Region Default</b_path> | ||
4068 | <c_attribute>label</c_attribute> | ||
4069 | <d_old></d_old> | ||
4070 | <e_new>Revert to Region Default</e_new> | ||
4071 | <f_old_trans></f_old_trans> | ||
4072 | <f_translation>Auf Regionsstandard zurücksetzen</f_translation> | ||
4073 | </string><string><a_file>menu_viewer.xml</a_file> | ||
4074 | <b_path>/Main Menu/World/Environment Settings/separator</b_path> | ||
4075 | <c_attribute>label</c_attribute> | ||
4076 | <d_old></d_old> | ||
4077 | <e_new>-----------</e_new> | ||
4078 | <f_old_trans></f_old_trans> | ||
4079 | <f_translation> -----------</f_translation> | ||
4080 | </string><string><a_file>menu_viewer.xml</a_file> | ||
4081 | <b_path>/Main Menu/World/Environment Settings/Environment Editor</b_path> | ||
4082 | <c_attribute>label</c_attribute> | ||
4083 | <d_old></d_old> | ||
4084 | <e_new>Environment Editor</e_new> | ||
4085 | <f_old_trans></f_old_trans> | ||
4086 | <f_translation>Umwelt-Editor</f_translation> | ||
4087 | </string><string><a_file>menu_viewer.xml</a_file> | ||
4088 | <b_path>/Main Menu/Tools/Bug Reporting/separator72</b_path> | ||
4089 | <c_attribute>label</c_attribute> | ||
4090 | <d_old></d_old> | ||
4091 | <e_new>-----------</e_new> | ||
4092 | <f_old_trans></f_old_trans> | ||
4093 | <f_translation> -----------</f_translation> | ||
4094 | </string><string><a_file>notify.xml</a_file> | ||
4095 | <b_path>//FirstMedia/message</b_path> | ||
4096 | <c_attribute></c_attribute> | ||
4097 | <d_old></d_old> | ||
4098 | <e_new> | ||
4099 | You have begun playing media. Media can set to play automatically in the preferences window under Audio / Video. Note that this can be a security risk for media sites you do not trust. | ||
4100 | </e_new> | ||
4101 | <f_old_trans></f_old_trans> | ||
4102 | <f_translation> | ||
4103 | Sie haben die Medienwiedergabe gestartet. Unter 'Audio und Video' im Fenster 'Einstellungen' können Sie festlegen, dass Medien automatisch wiedergegeben werden. Beachten Sie, dass dies bei nicht vertrauenswürdigen Medienseiten ein Sicherheitsrisiko darstellen kann. | ||
4104 | </f_translation> | ||
4105 | </string><string><a_file>notify.xml</a_file> | ||
4106 | <b_path>//ServerVersionChanged/message</b_path> | ||
4107 | <c_attribute></c_attribute> | ||
4108 | <d_old></d_old> | ||
4109 | <e_new> | ||
4110 | The region you have entered is running a different simulator version. Click this message for details. | ||
4111 | </e_new> | ||
4112 | <f_old_trans></f_old_trans> | ||
4113 | <f_translation> | ||
4114 | Die Region, die Sie betreten haben, verwendet eine andere Simulatorversion. Klicken Sie auf diese Nachricht, um weitere Informationen zu erhalten. | ||
4115 | </f_translation> | ||
258 | </string><string><a_file>panel_audio.xml</a_file> | 4116 | </string><string><a_file>panel_audio.xml</a_file> |
259 | <b_path>/Media panel/mute_music</b_path> | 4117 | <b_path>/Media panel/mute_audio</b_path> |
260 | <c_attribute>label</c_attribute> | 4118 | <c_attribute>label</c_attribute> |
261 | <d_old></d_old> | 4119 | <d_old></d_old> |
262 | <e_new></e_new> | 4120 | <e_new></e_new> |
@@ -304,6 +4162,61 @@ | |||
304 | <e_new></e_new> | 4162 | <e_new></e_new> |
305 | <f_old_trans></f_old_trans> | 4163 | <f_old_trans></f_old_trans> |
306 | <f_translation></f_translation> | 4164 | <f_translation></f_translation> |
4165 | </string><string><a_file>panel_audio_device.xml</a_file> | ||
4166 | <b_path>/device_settings/Audio Devices</b_path> | ||
4167 | <c_attribute></c_attribute> | ||
4168 | <d_old></d_old> | ||
4169 | <e_new> | ||
4170 | Audio Devices | ||
4171 | </e_new> | ||
4172 | <f_old_trans></f_old_trans> | ||
4173 | <f_translation> | ||
4174 | Audiogeräte | ||
4175 | </f_translation> | ||
4176 | </string><string><a_file>panel_audio_device.xml</a_file> | ||
4177 | <b_path>/device_settings/Input level:</b_path> | ||
4178 | <c_attribute></c_attribute> | ||
4179 | <d_old></d_old> | ||
4180 | <e_new> | ||
4181 | Input Level | ||
4182 | </e_new> | ||
4183 | <f_old_trans></f_old_trans> | ||
4184 | <f_translation> | ||
4185 | Eingangslautstärke | ||
4186 | </f_translation> | ||
4187 | </string><string><a_file>panel_avatar.xml</a_file> | ||
4188 | <b_path>/Panel Avatar/tab/My Notes/Loading</b_path> | ||
4189 | <c_attribute></c_attribute> | ||
4190 | <d_old></d_old> | ||
4191 | <e_new> | ||
4192 | Loading... | ||
4193 | </e_new> | ||
4194 | <f_old_trans></f_old_trans> | ||
4195 | <f_translation> | ||
4196 | Wird geladen... | ||
4197 | </f_translation> | ||
4198 | </string><string><a_file>panel_classified.xml</a_file> | ||
4199 | <b_path>/Classified/ad_placed_paid</b_path> | ||
4200 | <c_attribute></c_attribute> | ||
4201 | <d_old></d_old> | ||
4202 | <e_new> | ||
4203 | Ad placed: [DATE], Paid L$[AMT] for listing. | ||
4204 | </e_new> | ||
4205 | <f_old_trans></f_old_trans> | ||
4206 | <f_translation> | ||
4207 | Anzeige: [DATE], [AMT] L$ für Eintrag bezahlt. | ||
4208 | </f_translation> | ||
4209 | </string><string><a_file>panel_friends.xml</a_file> | ||
4210 | <b_path>/friends/Multiple</b_path> | ||
4211 | <c_attribute></c_attribute> | ||
4212 | <d_old></d_old> | ||
4213 | <e_new> | ||
4214 | Multiple friends... | ||
4215 | </e_new> | ||
4216 | <f_old_trans></f_old_trans> | ||
4217 | <f_translation> | ||
4218 | Mehrere Freunde... | ||
4219 | </f_translation> | ||
307 | </string><string><a_file>panel_groups.xml</a_file> | 4220 | </string><string><a_file>panel_groups.xml</a_file> |
308 | <b_path>/groups/group list/name</b_path> | 4221 | <b_path>/groups/group list/name</b_path> |
309 | <c_attribute>label</c_attribute> | 4222 | <c_attribute>label</c_attribute> |
@@ -311,28 +4224,28 @@ | |||
311 | <e_new></e_new> | 4224 | <e_new></e_new> |
312 | <f_old_trans></f_old_trans> | 4225 | <f_old_trans></f_old_trans> |
313 | <f_translation></f_translation> | 4226 | <f_translation></f_translation> |
314 | </string><string><a_file>panel_login.xml</a_file> | 4227 | </string><string><a_file>panel_group_land_money.xml</a_file> |
315 | <b_path>/panel_login/forgot_password_text</b_path> | 4228 | <b_path>/land_money_tab/loading_txt</b_path> |
316 | <c_attribute></c_attribute> | 4229 | <c_attribute></c_attribute> |
317 | <d_old></d_old> | 4230 | <d_old></d_old> |
318 | <e_new> | 4231 | <e_new> |
319 | Forgot your password? | 4232 | Loading... |
320 | </e_new> | 4233 | </e_new> |
321 | <f_old_trans></f_old_trans> | 4234 | <f_old_trans></f_old_trans> |
322 | <f_translation> | 4235 | <f_translation> |
323 | Kennwort vergessen? | 4236 | Wird geladen... |
324 | </f_translation> | 4237 | </f_translation> |
325 | </string><string><a_file>panel_login.xml</a_file> | 4238 | </string><string><a_file>panel_group_roles.xml</a_file> |
326 | <b_path>/panel_login/forgot_password_url</b_path> | 4239 | <b_path>/roles_tab/roles_tab_container/roles_sub_tab/cant_delete_role</b_path> |
327 | <c_attribute></c_attribute> | 4240 | <c_attribute></c_attribute> |
328 | <d_old></d_old> | 4241 | <d_old></d_old> |
329 | <e_new> | 4242 | <e_new> |
330 | http://secondlife.com/account/request.php | 4243 | The 'Everyone' and 'Owners' Roles are special and cannot be deleted. |
331 | </e_new> | 4244 | </e_new> |
332 | <f_old_trans></f_old_trans> | 4245 | <f_old_trans></f_old_trans> |
333 | <f_translation> | 4246 | <f_translation> |
334 | http://secondlife.com/account/request.php | 4247 | Die Rollen 'Jeder' und 'Eigentümer' können nicht gelöscht werden. |
335 | </f_translation> | 4248 | </f_translation> |
336 | </string><string><a_file>panel_master_volume.xml</a_file> | 4249 | </string><string><a_file>panel_master_volume.xml</a_file> |
337 | <b_path>/master_volume/mute_master</b_path> | 4250 | <b_path>/master_volume/mute_master</b_path> |
338 | <c_attribute>label</c_attribute> | 4251 | <c_attribute>label</c_attribute> |
@@ -340,6 +4253,893 @@ | |||
340 | <e_new></e_new> | 4253 | <e_new></e_new> |
341 | <f_old_trans></f_old_trans> | 4254 | <f_old_trans></f_old_trans> |
342 | <f_translation></f_translation> | 4255 | <f_translation></f_translation> |
4256 | </string><string><a_file>panel_media_controls.xml</a_file> | ||
4257 | <b_path>/media_controls/music_icon</b_path> | ||
4258 | <c_attribute>label</c_attribute> | ||
4259 | <d_old></d_old> | ||
4260 | <e_new></e_new> | ||
4261 | <f_old_trans></f_old_trans> | ||
4262 | <f_translation></f_translation> | ||
4263 | </string><string><a_file>panel_media_controls.xml</a_file> | ||
4264 | <b_path>/media_controls/music_icon</b_path> | ||
4265 | <c_attribute>tool_tip</c_attribute> | ||
4266 | <d_old></d_old> | ||
4267 | <e_new>Play/pause streaming music</e_new> | ||
4268 | <f_old_trans></f_old_trans> | ||
4269 | <f_translation>Streaming-Musik abspielen/unterbrechen</f_translation> | ||
4270 | </string><string><a_file>panel_media_controls.xml</a_file> | ||
4271 | <b_path>/media_controls/music_pause</b_path> | ||
4272 | <c_attribute>label</c_attribute> | ||
4273 | <d_old></d_old> | ||
4274 | <e_new></e_new> | ||
4275 | <f_old_trans></f_old_trans> | ||
4276 | <f_translation></f_translation> | ||
4277 | </string><string><a_file>panel_media_controls.xml</a_file> | ||
4278 | <b_path>/media_controls/music_pause</b_path> | ||
4279 | <c_attribute>tool_tip</c_attribute> | ||
4280 | <d_old></d_old> | ||
4281 | <e_new>Pause streaming music</e_new> | ||
4282 | <f_old_trans></f_old_trans> | ||
4283 | <f_translation>Streaming-Musik unterbrechen</f_translation> | ||
4284 | </string><string><a_file>panel_media_controls.xml</a_file> | ||
4285 | <b_path>/media_controls/music_stop</b_path> | ||
4286 | <c_attribute>label</c_attribute> | ||
4287 | <d_old></d_old> | ||
4288 | <e_new></e_new> | ||
4289 | <f_old_trans></f_old_trans> | ||
4290 | <f_translation></f_translation> | ||
4291 | </string><string><a_file>panel_media_controls.xml</a_file> | ||
4292 | <b_path>/media_controls/music_stop</b_path> | ||
4293 | <c_attribute>tool_tip</c_attribute> | ||
4294 | <d_old></d_old> | ||
4295 | <e_new>Stop streaming music</e_new> | ||
4296 | <f_old_trans></f_old_trans> | ||
4297 | <f_translation>Streaming-Musik beenden</f_translation> | ||
4298 | </string><string><a_file>panel_media_controls.xml</a_file> | ||
4299 | <b_path>/media_controls/media_icon</b_path> | ||
4300 | <c_attribute>label</c_attribute> | ||
4301 | <d_old></d_old> | ||
4302 | <e_new></e_new> | ||
4303 | <f_old_trans></f_old_trans> | ||
4304 | <f_translation></f_translation> | ||
4305 | </string><string><a_file>panel_media_controls.xml</a_file> | ||
4306 | <b_path>/media_controls/media_icon</b_path> | ||
4307 | <c_attribute>tool_tip</c_attribute> | ||
4308 | <d_old></d_old> | ||
4309 | <e_new>Play/pause streaming music</e_new> | ||
4310 | <f_old_trans></f_old_trans> | ||
4311 | <f_translation>Streaming-Musik abspielen/unterbrechen</f_translation> | ||
4312 | </string><string><a_file>panel_media_controls.xml</a_file> | ||
4313 | <b_path>/media_controls/media_pause</b_path> | ||
4314 | <c_attribute>label</c_attribute> | ||
4315 | <d_old></d_old> | ||
4316 | <e_new></e_new> | ||
4317 | <f_old_trans></f_old_trans> | ||
4318 | <f_translation></f_translation> | ||
4319 | </string><string><a_file>panel_media_controls.xml</a_file> | ||
4320 | <b_path>/media_controls/media_pause</b_path> | ||
4321 | <c_attribute>tool_tip</c_attribute> | ||
4322 | <d_old></d_old> | ||
4323 | <e_new>Pause streaming media</e_new> | ||
4324 | <f_old_trans></f_old_trans> | ||
4325 | <f_translation>Streaming-Medien unterbrechen</f_translation> | ||
4326 | </string><string><a_file>panel_media_controls.xml</a_file> | ||
4327 | <b_path>/media_controls/media_stop</b_path> | ||
4328 | <c_attribute>label</c_attribute> | ||
4329 | <d_old></d_old> | ||
4330 | <e_new></e_new> | ||
4331 | <f_old_trans></f_old_trans> | ||
4332 | <f_translation></f_translation> | ||
4333 | </string><string><a_file>panel_media_controls.xml</a_file> | ||
4334 | <b_path>/media_controls/media_stop</b_path> | ||
4335 | <c_attribute>tool_tip</c_attribute> | ||
4336 | <d_old></d_old> | ||
4337 | <e_new>Stop streaming media</e_new> | ||
4338 | <f_old_trans></f_old_trans> | ||
4339 | <f_translation>Streaming-Medien beenden</f_translation> | ||
4340 | </string><string><a_file>panel_media_remote.xml</a_file> | ||
4341 | <b_path>/media_remote/play_label</b_path> | ||
4342 | <c_attribute></c_attribute> | ||
4343 | <d_old></d_old> | ||
4344 | <e_new> | ||
4345 | Play | ||
4346 | </e_new> | ||
4347 | <f_old_trans></f_old_trans> | ||
4348 | <f_translation> | ||
4349 | Wiedergeben | ||
4350 | </f_translation> | ||
4351 | </string><string><a_file>panel_media_remote.xml</a_file> | ||
4352 | <b_path>/media_remote/stop_label</b_path> | ||
4353 | <c_attribute></c_attribute> | ||
4354 | <d_old></d_old> | ||
4355 | <e_new> | ||
4356 | Stop | ||
4357 | </e_new> | ||
4358 | <f_old_trans></f_old_trans> | ||
4359 | <f_translation> | ||
4360 | Stopp | ||
4361 | </f_translation> | ||
4362 | </string><string><a_file>panel_media_remote.xml</a_file> | ||
4363 | <b_path>/media_remote/pause_label</b_path> | ||
4364 | <c_attribute></c_attribute> | ||
4365 | <d_old></d_old> | ||
4366 | <e_new> | ||
4367 | Pause | ||
4368 | </e_new> | ||
4369 | <f_old_trans></f_old_trans> | ||
4370 | <f_translation> | ||
4371 | Pause | ||
4372 | </f_translation> | ||
4373 | </string><string><a_file>panel_media_remote.xml</a_file> | ||
4374 | <b_path>/media_remote/default_tooltip_label</b_path> | ||
4375 | <c_attribute></c_attribute> | ||
4376 | <d_old></d_old> | ||
4377 | <e_new> | ||
4378 | No Media Specified | ||
4379 | </e_new> | ||
4380 | <f_old_trans></f_old_trans> | ||
4381 | <f_translation> | ||
4382 | Keine Medien angegeben | ||
4383 | </f_translation> | ||
4384 | </string><string><a_file>panel_media_remote.xml</a_file> | ||
4385 | <b_path>/media_remote/media_hidden_label</b_path> | ||
4386 | <c_attribute></c_attribute> | ||
4387 | <d_old></d_old> | ||
4388 | <e_new> | ||
4389 | (URL hidden by parcel owner) | ||
4390 | </e_new> | ||
4391 | <f_old_trans></f_old_trans> | ||
4392 | <f_translation> | ||
4393 | (URL von Parzelleneigentümer versteckt) | ||
4394 | </f_translation> | ||
4395 | </string><string><a_file>panel_media_remote.xml</a_file> | ||
4396 | <b_path>/media_remote/media_icon_tooltip_web</b_path> | ||
4397 | <c_attribute></c_attribute> | ||
4398 | <d_old></d_old> | ||
4399 | <e_new> | ||
4400 | This location displays content from the World Wide Web. Click the Play button to display Web content. | ||
4401 | </e_new> | ||
4402 | <f_old_trans></f_old_trans> | ||
4403 | <f_translation> | ||
4404 | An diesem Ort werden Inhalte aus dem World Wide Web wiedergegeben. Klicken Sie auf 'Wiedergeben', um Webinhalte wiederzugeben. | ||
4405 | </f_translation> | ||
4406 | </string><string><a_file>panel_media_remote.xml</a_file> | ||
4407 | <b_path>/media_remote/media_icon_tooltip_movie</b_path> | ||
4408 | <c_attribute></c_attribute> | ||
4409 | <d_old></d_old> | ||
4410 | <e_new> | ||
4411 | This location displays Video content. Click the Play button to play the video. | ||
4412 | </e_new> | ||
4413 | <f_old_trans></f_old_trans> | ||
4414 | <f_translation> | ||
4415 | An diesem Ort werden Videoinhalte wiedergegeben. Klicken Sie auf 'Wiedergeben', um das Video abzuspielen. | ||
4416 | </f_translation> | ||
4417 | </string><string><a_file>panel_media_remote.xml</a_file> | ||
4418 | <b_path>/media_remote/media_play_tooltip</b_path> | ||
4419 | <c_attribute></c_attribute> | ||
4420 | <d_old></d_old> | ||
4421 | <e_new> | ||
4422 | Display Web content at this location. | ||
4423 | </e_new> | ||
4424 | <f_old_trans></f_old_trans> | ||
4425 | <f_translation> | ||
4426 | Webinhalt an diesem Ort anzeigen. | ||
4427 | </f_translation> | ||
4428 | </string><string><a_file>panel_preferences_audio.xml</a_file> | ||
4429 | <b_path>/Media panel/streaming_prefs_text</b_path> | ||
4430 | <c_attribute></c_attribute> | ||
4431 | <d_old></d_old> | ||
4432 | <e_new> | ||
4433 | Streaming Preferences: | ||
4434 | </e_new> | ||
4435 | <f_old_trans></f_old_trans> | ||
4436 | <f_translation> | ||
4437 | Streaming-Einstellungen: | ||
4438 | </f_translation> | ||
4439 | </string><string><a_file>panel_preferences_audio.xml</a_file> | ||
4440 | <b_path>/Media panel/audio_prefs_text</b_path> | ||
4441 | <c_attribute></c_attribute> | ||
4442 | <d_old></d_old> | ||
4443 | <e_new> | ||
4444 | Audio Preferences: | ||
4445 | </e_new> | ||
4446 | <f_old_trans></f_old_trans> | ||
4447 | <f_translation> | ||
4448 | Audio-Einstellungen: | ||
4449 | </f_translation> | ||
4450 | </string><string><a_file>panel_preferences_audio.xml</a_file> | ||
4451 | <b_path>/Media panel/auto_streaming_video</b_path> | ||
4452 | <c_attribute>label</c_attribute> | ||
4453 | <d_old></d_old> | ||
4454 | <e_new>Automatically play media</e_new> | ||
4455 | <f_old_trans></f_old_trans> | ||
4456 | <f_translation>Medien automatisch wiedergeben</f_translation> | ||
4457 | </string><string><a_file>panel_preferences_general.xml</a_file> | ||
4458 | <b_path>/general_panel/UI Size:</b_path> | ||
4459 | <c_attribute></c_attribute> | ||
4460 | <d_old></d_old> | ||
4461 | <e_new> | ||
4462 | UI Size: | ||
4463 | </e_new> | ||
4464 | <f_old_trans></f_old_trans> | ||
4465 | <f_translation> | ||
4466 | UI-Größe: | ||
4467 | </f_translation> | ||
4468 | </string><string><a_file>panel_preferences_general.xml</a_file> | ||
4469 | <b_path>/general_panel/ui_auto_scale</b_path> | ||
4470 | <c_attribute>label</c_attribute> | ||
4471 | <d_old></d_old> | ||
4472 | <e_new>Use resolution independent scale</e_new> | ||
4473 | <f_old_trans></f_old_trans> | ||
4474 | <f_translation>Auflösungsunabhängigen Maßstab verwenden</f_translation> | ||
4475 | </string><string><a_file>panel_preferences_general.xml</a_file> | ||
4476 | <b_path>/general_panel/show_search_panel</b_path> | ||
4477 | <c_attribute>label</c_attribute> | ||
4478 | <d_old></d_old> | ||
4479 | <e_new>Show search panel in overlay bar</e_new> | ||
4480 | <f_old_trans></f_old_trans> | ||
4481 | <f_translation>Suchleiste in Menüleiste anzeigen</f_translation> | ||
4482 | </string><string><a_file>panel_preferences_general.xml</a_file> | ||
4483 | <b_path>/general_panel/show_search_panel</b_path> | ||
4484 | <c_attribute>tool_tip</c_attribute> | ||
4485 | <d_old></d_old> | ||
4486 | <e_new>Display the embedded search panel.</e_new> | ||
4487 | <f_old_trans></f_old_trans> | ||
4488 | <f_translation>Die eingebettete Suchleiste anzeigen.</f_translation> | ||
4489 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4490 | <b_path>/Display panel/GraphicsPreferencesHelpButton</b_path> | ||
4491 | <c_attribute>label</c_attribute> | ||
4492 | <d_old></d_old> | ||
4493 | <e_new>?</e_new> | ||
4494 | <f_old_trans></f_old_trans> | ||
4495 | <f_translation> ?</f_translation> | ||
4496 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4497 | <b_path>/Display panel/FullScreenInfo</b_path> | ||
4498 | <c_attribute></c_attribute> | ||
4499 | <d_old></d_old> | ||
4500 | <e_new> | ||
4501 | If unchecked, viewer will display full-screen when logged in. | ||
4502 | </e_new> | ||
4503 | <f_old_trans></f_old_trans> | ||
4504 | <f_translation> | ||
4505 | Wenn deaktiviert, schaltet die Anzeige bei Anmeldung auf Vollbild um. | ||
4506 | </f_translation> | ||
4507 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4508 | <b_path>/Display panel/DisplayResLabel</b_path> | ||
4509 | <c_attribute></c_attribute> | ||
4510 | <d_old></d_old> | ||
4511 | <e_new> | ||
4512 | Display Resolution: | ||
4513 | </e_new> | ||
4514 | <f_old_trans></f_old_trans> | ||
4515 | <f_translation> | ||
4516 | Anzeigeauflösung: | ||
4517 | </f_translation> | ||
4518 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4519 | <b_path>/Display panel/AspectRatioLabel1</b_path> | ||
4520 | <c_attribute>tool_tip</c_attribute> | ||
4521 | <d_old></d_old> | ||
4522 | <e_new>width / height</e_new> | ||
4523 | <f_old_trans></f_old_trans> | ||
4524 | <f_translation>Breite/Höhe</f_translation> | ||
4525 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4526 | <b_path>/Display panel/AspectRatioLabel1</b_path> | ||
4527 | <c_attribute></c_attribute> | ||
4528 | <d_old></d_old> | ||
4529 | <e_new> | ||
4530 | Aspect Ratio: | ||
4531 | </e_new> | ||
4532 | <f_old_trans></f_old_trans> | ||
4533 | <f_translation> | ||
4534 | Aspektverhältnis: | ||
4535 | </f_translation> | ||
4536 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4537 | <b_path>/Display panel/aspect_ratio</b_path> | ||
4538 | <c_attribute>tool_tip</c_attribute> | ||
4539 | <d_old></d_old> | ||
4540 | <e_new>width / height</e_new> | ||
4541 | <f_old_trans></f_old_trans> | ||
4542 | <f_translation>Breite/Höhe</f_translation> | ||
4543 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4544 | <b_path>/Display panel/aspect_ratio/8:5(Widescreen)</b_path> | ||
4545 | <c_attribute></c_attribute> | ||
4546 | <d_old></d_old> | ||
4547 | <e_new> | ||
4548 | 8:5 (Widescreen) | ||
4549 | </e_new> | ||
4550 | <f_old_trans></f_old_trans> | ||
4551 | <f_translation> | ||
4552 | 8:5 (Widescreen) | ||
4553 | </f_translation> | ||
4554 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4555 | <b_path>/Display panel/HigherText</b_path> | ||
4556 | <c_attribute></c_attribute> | ||
4557 | <d_old></d_old> | ||
4558 | <e_new> | ||
4559 | Quality and | ||
4560 | </e_new> | ||
4561 | <f_old_trans></f_old_trans> | ||
4562 | <f_translation> | ||
4563 | Qualität und | ||
4564 | </f_translation> | ||
4565 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4566 | <b_path>/Display panel/QualityText</b_path> | ||
4567 | <c_attribute></c_attribute> | ||
4568 | <d_old></d_old> | ||
4569 | <e_new> | ||
4570 | Performance: | ||
4571 | </e_new> | ||
4572 | <f_old_trans></f_old_trans> | ||
4573 | <f_translation> | ||
4574 | Performance: | ||
4575 | </f_translation> | ||
4576 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4577 | <b_path>/Display panel/FasterText</b_path> | ||
4578 | <c_attribute></c_attribute> | ||
4579 | <d_old></d_old> | ||
4580 | <e_new> | ||
4581 | Faster | ||
4582 | </e_new> | ||
4583 | <f_old_trans></f_old_trans> | ||
4584 | <f_translation> | ||
4585 | Schneller | ||
4586 | </f_translation> | ||
4587 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4588 | <b_path>/Display panel/ShadersPrefText</b_path> | ||
4589 | <c_attribute></c_attribute> | ||
4590 | <d_old></d_old> | ||
4591 | <e_new> | ||
4592 | Low | ||
4593 | </e_new> | ||
4594 | <f_old_trans></f_old_trans> | ||
4595 | <f_translation> | ||
4596 | Niedrig | ||
4597 | </f_translation> | ||
4598 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4599 | <b_path>/Display panel/ShadersPrefText2</b_path> | ||
4600 | <c_attribute></c_attribute> | ||
4601 | <d_old></d_old> | ||
4602 | <e_new> | ||
4603 | Mid | ||
4604 | </e_new> | ||
4605 | <f_old_trans></f_old_trans> | ||
4606 | <f_translation> | ||
4607 | Mittel | ||
4608 | </f_translation> | ||
4609 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4610 | <b_path>/Display panel/ShadersPrefText3</b_path> | ||
4611 | <c_attribute></c_attribute> | ||
4612 | <d_old></d_old> | ||
4613 | <e_new> | ||
4614 | High | ||
4615 | </e_new> | ||
4616 | <f_old_trans></f_old_trans> | ||
4617 | <f_translation> | ||
4618 | Hoch | ||
4619 | </f_translation> | ||
4620 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4621 | <b_path>/Display panel/ShadersPrefText4</b_path> | ||
4622 | <c_attribute></c_attribute> | ||
4623 | <d_old></d_old> | ||
4624 | <e_new> | ||
4625 | Ultra | ||
4626 | </e_new> | ||
4627 | <f_old_trans></f_old_trans> | ||
4628 | <f_translation> | ||
4629 | Ultra | ||
4630 | </f_translation> | ||
4631 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4632 | <b_path>/Display panel/HigherText2</b_path> | ||
4633 | <c_attribute></c_attribute> | ||
4634 | <d_old></d_old> | ||
4635 | <e_new> | ||
4636 | Higher | ||
4637 | </e_new> | ||
4638 | <f_old_trans></f_old_trans> | ||
4639 | <f_translation> | ||
4640 | Höhere | ||
4641 | </f_translation> | ||
4642 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4643 | <b_path>/Display panel/QualityText2</b_path> | ||
4644 | <c_attribute></c_attribute> | ||
4645 | <d_old></d_old> | ||
4646 | <e_new> | ||
4647 | Quality | ||
4648 | </e_new> | ||
4649 | <f_old_trans></f_old_trans> | ||
4650 | <f_translation> | ||
4651 | Qualität | ||
4652 | </f_translation> | ||
4653 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4654 | <b_path>/Display panel/QualityPerformanceSelection</b_path> | ||
4655 | <c_attribute>label</c_attribute> | ||
4656 | <d_old></d_old> | ||
4657 | <e_new></e_new> | ||
4658 | <f_old_trans></f_old_trans> | ||
4659 | <f_translation></f_translation> | ||
4660 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4661 | <b_path>/Display panel/CustomSettings</b_path> | ||
4662 | <c_attribute>label</c_attribute> | ||
4663 | <d_old></d_old> | ||
4664 | <e_new>Custom</e_new> | ||
4665 | <f_old_trans></f_old_trans> | ||
4666 | <f_translation>Benutzerdefiniert</f_translation> | ||
4667 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4668 | <b_path>/Display panel/ShadersText</b_path> | ||
4669 | <c_attribute></c_attribute> | ||
4670 | <d_old></d_old> | ||
4671 | <e_new> | ||
4672 | Shaders: | ||
4673 | </e_new> | ||
4674 | <f_old_trans></f_old_trans> | ||
4675 | <f_translation> | ||
4676 | Shader: | ||
4677 | </f_translation> | ||
4678 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4679 | <b_path>/Display panel/BumpShiny</b_path> | ||
4680 | <c_attribute>label</c_attribute> | ||
4681 | <d_old></d_old> | ||
4682 | <e_new>Bump Mapping and Shiny</e_new> | ||
4683 | <f_old_trans></f_old_trans> | ||
4684 | <f_translation>Bumpmapping und Glanz</f_translation> | ||
4685 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4686 | <b_path>/Display panel/BasicShaders</b_path> | ||
4687 | <c_attribute>label</c_attribute> | ||
4688 | <d_old></d_old> | ||
4689 | <e_new>Basic Shaders</e_new> | ||
4690 | <f_old_trans></f_old_trans> | ||
4691 | <f_translation>Einfache Shader</f_translation> | ||
4692 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4693 | <b_path>/Display panel/BasicShaders</b_path> | ||
4694 | <c_attribute>tool_tip</c_attribute> | ||
4695 | <d_old></d_old> | ||
4696 | <e_new>Disabling this option may prevent some graphics card drivers from crashing.</e_new> | ||
4697 | <f_old_trans></f_old_trans> | ||
4698 | <f_translation>Deaktivieren Sie diese Option, wenn der Grafikkartentreiber Abstürze verursacht.</f_translation> | ||
4699 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4700 | <b_path>/Display panel/WindLightUseAtmosShaders</b_path> | ||
4701 | <c_attribute>label</c_attribute> | ||
4702 | <d_old></d_old> | ||
4703 | <e_new>Atmospheric Shaders</e_new> | ||
4704 | <f_old_trans></f_old_trans> | ||
4705 | <f_translation>Atmosphären-Shader</f_translation> | ||
4706 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4707 | <b_path>/Display panel/Reflections</b_path> | ||
4708 | <c_attribute>label</c_attribute> | ||
4709 | <d_old></d_old> | ||
4710 | <e_new>Water Reflections</e_new> | ||
4711 | <f_old_trans></f_old_trans> | ||
4712 | <f_translation>Wasserreflexionen</f_translation> | ||
4713 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4714 | <b_path>/Display panel/ReflectionDetailText</b_path> | ||
4715 | <c_attribute></c_attribute> | ||
4716 | <d_old></d_old> | ||
4717 | <e_new> | ||
4718 | Reflection Detail: | ||
4719 | </e_new> | ||
4720 | <f_old_trans></f_old_trans> | ||
4721 | <f_translation> | ||
4722 | Spiegelung: | ||
4723 | </f_translation> | ||
4724 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4725 | <b_path>/Display panel/ReflectionDetailRadio/0</b_path> | ||
4726 | <c_attribute></c_attribute> | ||
4727 | <d_old></d_old> | ||
4728 | <e_new> | ||
4729 | Terrain and Trees | ||
4730 | </e_new> | ||
4731 | <f_old_trans></f_old_trans> | ||
4732 | <f_translation> | ||
4733 | Terrain und Bäume | ||
4734 | </f_translation> | ||
4735 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4736 | <b_path>/Display panel/ReflectionDetailRadio/1</b_path> | ||
4737 | <c_attribute></c_attribute> | ||
4738 | <d_old></d_old> | ||
4739 | <e_new> | ||
4740 | All Static Objects | ||
4741 | </e_new> | ||
4742 | <f_old_trans></f_old_trans> | ||
4743 | <f_translation> | ||
4744 | Alle statischen Objekte | ||
4745 | </f_translation> | ||
4746 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4747 | <b_path>/Display panel/ReflectionDetailRadio/2</b_path> | ||
4748 | <c_attribute></c_attribute> | ||
4749 | <d_old></d_old> | ||
4750 | <e_new> | ||
4751 | All Avatars and Objects | ||
4752 | </e_new> | ||
4753 | <f_old_trans></f_old_trans> | ||
4754 | <f_translation> | ||
4755 | Alle Avatare und Objekte | ||
4756 | </f_translation> | ||
4757 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4758 | <b_path>/Display panel/ReflectionDetailRadio/3</b_path> | ||
4759 | <c_attribute></c_attribute> | ||
4760 | <d_old></d_old> | ||
4761 | <e_new> | ||
4762 | Everything | ||
4763 | </e_new> | ||
4764 | <f_old_trans></f_old_trans> | ||
4765 | <f_translation> | ||
4766 | Alles | ||
4767 | </f_translation> | ||
4768 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4769 | <b_path>/Display panel/AvatarRenderingText</b_path> | ||
4770 | <c_attribute></c_attribute> | ||
4771 | <d_old></d_old> | ||
4772 | <e_new> | ||
4773 | Avatar Rendering: | ||
4774 | </e_new> | ||
4775 | <f_old_trans></f_old_trans> | ||
4776 | <f_translation> | ||
4777 | Avatar-Darstellung: | ||
4778 | </f_translation> | ||
4779 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4780 | <b_path>/Display panel/AvatarImpostors</b_path> | ||
4781 | <c_attribute>label</c_attribute> | ||
4782 | <d_old></d_old> | ||
4783 | <e_new>Avatar Impostors</e_new> | ||
4784 | <f_old_trans></f_old_trans> | ||
4785 | <f_translation>Ersatzavatare</f_translation> | ||
4786 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4787 | <b_path>/Display panel/AvatarVertexProgram</b_path> | ||
4788 | <c_attribute>label</c_attribute> | ||
4789 | <d_old></d_old> | ||
4790 | <e_new>Hardware Skinning</e_new> | ||
4791 | <f_old_trans></f_old_trans> | ||
4792 | <f_translation>Hardware-Hautberechnung</f_translation> | ||
4793 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4794 | <b_path>/Display panel/AvatarCloth</b_path> | ||
4795 | <c_attribute>label</c_attribute> | ||
4796 | <d_old></d_old> | ||
4797 | <e_new>Avatar Cloth</e_new> | ||
4798 | <f_old_trans></f_old_trans> | ||
4799 | <f_translation>Avatar-Kleidung</f_translation> | ||
4800 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4801 | <b_path>/Display panel/DrawDistanceMeterText1</b_path> | ||
4802 | <c_attribute></c_attribute> | ||
4803 | <d_old></d_old> | ||
4804 | <e_new> | ||
4805 | m | ||
4806 | </e_new> | ||
4807 | <f_old_trans></f_old_trans> | ||
4808 | <f_translation> | ||
4809 | m | ||
4810 | </f_translation> | ||
4811 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4812 | <b_path>/Display panel/DrawDistanceMeterText2</b_path> | ||
4813 | <c_attribute></c_attribute> | ||
4814 | <d_old></d_old> | ||
4815 | <e_new> | ||
4816 | m | ||
4817 | </e_new> | ||
4818 | <f_old_trans></f_old_trans> | ||
4819 | <f_translation> | ||
4820 | m | ||
4821 | </f_translation> | ||
4822 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4823 | <b_path>/Display panel/DrawDistance</b_path> | ||
4824 | <c_attribute>label</c_attribute> | ||
4825 | <d_old></d_old> | ||
4826 | <e_new>Draw Distance:</e_new> | ||
4827 | <f_old_trans></f_old_trans> | ||
4828 | <f_translation>Sichtweite:</f_translation> | ||
4829 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4830 | <b_path>/Display panel/MaxParticleCount</b_path> | ||
4831 | <c_attribute>label</c_attribute> | ||
4832 | <d_old></d_old> | ||
4833 | <e_new>Max. Particle Count:</e_new> | ||
4834 | <f_old_trans></f_old_trans> | ||
4835 | <f_translation>Max. Partikelzahl:</f_translation> | ||
4836 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4837 | <b_path>/Display panel/RenderPostProcess</b_path> | ||
4838 | <c_attribute>label</c_attribute> | ||
4839 | <d_old></d_old> | ||
4840 | <e_new>Post Process Quality:</e_new> | ||
4841 | <f_old_trans></f_old_trans> | ||
4842 | <f_translation>Post-Processing-Qualität:</f_translation> | ||
4843 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4844 | <b_path>/Display panel/MeshDetailText</b_path> | ||
4845 | <c_attribute></c_attribute> | ||
4846 | <d_old></d_old> | ||
4847 | <e_new> | ||
4848 | Mesh Detail: | ||
4849 | </e_new> | ||
4850 | <f_old_trans></f_old_trans> | ||
4851 | <f_translation> | ||
4852 | Gitterdetails: | ||
4853 | </f_translation> | ||
4854 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4855 | <b_path>/Display panel/ObjectMeshDetail</b_path> | ||
4856 | <c_attribute>label</c_attribute> | ||
4857 | <d_old></d_old> | ||
4858 | <e_new> Objects:</e_new> | ||
4859 | <f_old_trans></f_old_trans> | ||
4860 | <f_translation> Objekte:</f_translation> | ||
4861 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4862 | <b_path>/Display panel/FlexibleMeshDetail</b_path> | ||
4863 | <c_attribute>label</c_attribute> | ||
4864 | <d_old></d_old> | ||
4865 | <e_new> Flexiprims:</e_new> | ||
4866 | <f_old_trans></f_old_trans> | ||
4867 | <f_translation> Flexiprimitiva:</f_translation> | ||
4868 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4869 | <b_path>/Display panel/TreeMeshDetail</b_path> | ||
4870 | <c_attribute>label</c_attribute> | ||
4871 | <d_old></d_old> | ||
4872 | <e_new> Trees:</e_new> | ||
4873 | <f_old_trans></f_old_trans> | ||
4874 | <f_translation> Bäume:</f_translation> | ||
4875 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4876 | <b_path>/Display panel/AvatarMeshDetail</b_path> | ||
4877 | <c_attribute>label</c_attribute> | ||
4878 | <d_old></d_old> | ||
4879 | <e_new> Avatars:</e_new> | ||
4880 | <f_old_trans></f_old_trans> | ||
4881 | <f_translation> Avatare:</f_translation> | ||
4882 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4883 | <b_path>/Display panel/TerrainMeshDetail</b_path> | ||
4884 | <c_attribute>label</c_attribute> | ||
4885 | <d_old></d_old> | ||
4886 | <e_new> Terrain:</e_new> | ||
4887 | <f_old_trans></f_old_trans> | ||
4888 | <f_translation> Terrain:</f_translation> | ||
4889 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4890 | <b_path>/Display panel/SkyMeshDetail</b_path> | ||
4891 | <c_attribute>label</c_attribute> | ||
4892 | <d_old></d_old> | ||
4893 | <e_new> Sky:</e_new> | ||
4894 | <f_old_trans></f_old_trans> | ||
4895 | <f_translation> Himmel:</f_translation> | ||
4896 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4897 | <b_path>/Display panel/PostProcessText</b_path> | ||
4898 | <c_attribute></c_attribute> | ||
4899 | <d_old></d_old> | ||
4900 | <e_new> | ||
4901 | Low | ||
4902 | </e_new> | ||
4903 | <f_old_trans></f_old_trans> | ||
4904 | <f_translation> | ||
4905 | Niedrig | ||
4906 | </f_translation> | ||
4907 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4908 | <b_path>/Display panel/ObjectMeshDetailText</b_path> | ||
4909 | <c_attribute></c_attribute> | ||
4910 | <d_old></d_old> | ||
4911 | <e_new> | ||
4912 | Low | ||
4913 | </e_new> | ||
4914 | <f_old_trans></f_old_trans> | ||
4915 | <f_translation> | ||
4916 | Niedrig | ||
4917 | </f_translation> | ||
4918 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4919 | <b_path>/Display panel/FlexibleMeshDetailText</b_path> | ||
4920 | <c_attribute></c_attribute> | ||
4921 | <d_old></d_old> | ||
4922 | <e_new> | ||
4923 | Low | ||
4924 | </e_new> | ||
4925 | <f_old_trans></f_old_trans> | ||
4926 | <f_translation> | ||
4927 | Niedrig | ||
4928 | </f_translation> | ||
4929 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4930 | <b_path>/Display panel/TreeMeshDetailText</b_path> | ||
4931 | <c_attribute></c_attribute> | ||
4932 | <d_old></d_old> | ||
4933 | <e_new> | ||
4934 | Low | ||
4935 | </e_new> | ||
4936 | <f_old_trans></f_old_trans> | ||
4937 | <f_translation> | ||
4938 | Niedrig | ||
4939 | </f_translation> | ||
4940 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4941 | <b_path>/Display panel/AvatarMeshDetailText</b_path> | ||
4942 | <c_attribute></c_attribute> | ||
4943 | <d_old></d_old> | ||
4944 | <e_new> | ||
4945 | Low | ||
4946 | </e_new> | ||
4947 | <f_old_trans></f_old_trans> | ||
4948 | <f_translation> | ||
4949 | Niedrig | ||
4950 | </f_translation> | ||
4951 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4952 | <b_path>/Display panel/TerrainMeshDetailText</b_path> | ||
4953 | <c_attribute></c_attribute> | ||
4954 | <d_old></d_old> | ||
4955 | <e_new> | ||
4956 | Low | ||
4957 | </e_new> | ||
4958 | <f_old_trans></f_old_trans> | ||
4959 | <f_translation> | ||
4960 | Niedrig | ||
4961 | </f_translation> | ||
4962 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4963 | <b_path>/Display panel/SkyMeshDetailText</b_path> | ||
4964 | <c_attribute></c_attribute> | ||
4965 | <d_old></d_old> | ||
4966 | <e_new> | ||
4967 | Low | ||
4968 | </e_new> | ||
4969 | <f_old_trans></f_old_trans> | ||
4970 | <f_translation> | ||
4971 | Niedrig | ||
4972 | </f_translation> | ||
4973 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4974 | <b_path>/Display panel/LightingDetailText</b_path> | ||
4975 | <c_attribute></c_attribute> | ||
4976 | <d_old></d_old> | ||
4977 | <e_new> | ||
4978 | Lighting Detail: | ||
4979 | </e_new> | ||
4980 | <f_old_trans></f_old_trans> | ||
4981 | <f_translation> | ||
4982 | Beleuchtungsdetails: | ||
4983 | </f_translation> | ||
4984 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4985 | <b_path>/Display panel/LightingDetailRadio/SunMoon</b_path> | ||
4986 | <c_attribute></c_attribute> | ||
4987 | <d_old></d_old> | ||
4988 | <e_new> | ||
4989 | Sun and moon only | ||
4990 | </e_new> | ||
4991 | <f_old_trans></f_old_trans> | ||
4992 | <f_translation> | ||
4993 | Nur Sonne und Mond | ||
4994 | </f_translation> | ||
4995 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4996 | <b_path>/Display panel/LightingDetailRadio/LocalLights</b_path> | ||
4997 | <c_attribute></c_attribute> | ||
4998 | <d_old></d_old> | ||
4999 | <e_new> | ||
5000 | Nearby local lights | ||
5001 | </e_new> | ||
5002 | <f_old_trans></f_old_trans> | ||
5003 | <f_translation> | ||
5004 | Lokale Lichtquellen | ||
5005 | </f_translation> | ||
5006 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
5007 | <b_path>/Display panel/TerrainDetailText</b_path> | ||
5008 | <c_attribute></c_attribute> | ||
5009 | <d_old></d_old> | ||
5010 | <e_new> | ||
5011 | Terrain Detail: | ||
5012 | </e_new> | ||
5013 | <f_old_trans></f_old_trans> | ||
5014 | <f_translation> | ||
5015 | Terraindetails: | ||
5016 | </f_translation> | ||
5017 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
5018 | <b_path>/Display panel/TerrainDetailRadio/0</b_path> | ||
5019 | <c_attribute></c_attribute> | ||
5020 | <d_old></d_old> | ||
5021 | <e_new> | ||
5022 | Low | ||
5023 | </e_new> | ||
5024 | <f_old_trans></f_old_trans> | ||
5025 | <f_translation> | ||
5026 | Niedrig | ||
5027 | </f_translation> | ||
5028 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
5029 | <b_path>/Display panel/TerrainDetailRadio/2</b_path> | ||
5030 | <c_attribute></c_attribute> | ||
5031 | <d_old></d_old> | ||
5032 | <e_new> | ||
5033 | High | ||
5034 | </e_new> | ||
5035 | <f_old_trans></f_old_trans> | ||
5036 | <f_translation> | ||
5037 | Hoch | ||
5038 | </f_translation> | ||
5039 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
5040 | <b_path>/Display panel/Defaults</b_path> | ||
5041 | <c_attribute>label</c_attribute> | ||
5042 | <d_old></d_old> | ||
5043 | <e_new>Recommended Settings</e_new> | ||
5044 | <f_old_trans></f_old_trans> | ||
5045 | <f_translation>Empfohlene Einstellungen</f_translation> | ||
5046 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
5047 | <b_path>/Display panel/GraphicsHardwareButton</b_path> | ||
5048 | <c_attribute>label</c_attribute> | ||
5049 | <d_old></d_old> | ||
5050 | <e_new>Hardware Options</e_new> | ||
5051 | <f_old_trans></f_old_trans> | ||
5052 | <f_translation>Hardware-Optionen</f_translation> | ||
5053 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
5054 | <b_path>/Display panel/GraphicsHardwareButton</b_path> | ||
5055 | <c_attribute>label_selected</c_attribute> | ||
5056 | <d_old></d_old> | ||
5057 | <e_new>Hardware Options</e_new> | ||
5058 | <f_old_trans></f_old_trans> | ||
5059 | <f_translation>Hardware-Optionen</f_translation> | ||
5060 | </string><string><a_file>panel_preferences_im.xml</a_file> | ||
5061 | <b_path>/im/text_box4</b_path> | ||
5062 | <c_attribute></c_attribute> | ||
5063 | <d_old></d_old> | ||
5064 | <e_new> | ||
5065 | Logging Options: | ||
5066 | </e_new> | ||
5067 | <f_old_trans></f_old_trans> | ||
5068 | <f_translation> | ||
5069 | Protokolloptionen: | ||
5070 | </f_translation> | ||
5071 | </string><string><a_file>panel_preferences_input.xml</a_file> | ||
5072 | <b_path>/Input panel/text2</b_path> | ||
5073 | <c_attribute></c_attribute> | ||
5074 | <d_old></d_old> | ||
5075 | <e_new> | ||
5076 | Avatar Display Options: | ||
5077 | </e_new> | ||
5078 | <f_old_trans></f_old_trans> | ||
5079 | <f_translation> | ||
5080 | Avatar-Anzeigeoptionen: | ||
5081 | </f_translation> | ||
5082 | </string><string><a_file>panel_preferences_input.xml</a_file> | ||
5083 | <b_path>/Input panel/avfp</b_path> | ||
5084 | <c_attribute>label</c_attribute> | ||
5085 | <d_old></d_old> | ||
5086 | <e_new>Show Avatar in Mouselook</e_new> | ||
5087 | <f_old_trans></f_old_trans> | ||
5088 | <f_translation>Avatar in Mouselook anzeigen</f_translation> | ||
5089 | </string><string><a_file>panel_preferences_voice.xml</a_file> | ||
5090 | <b_path>/chat/device_settings_text</b_path> | ||
5091 | <c_attribute></c_attribute> | ||
5092 | <d_old></d_old> | ||
5093 | <e_new> | ||
5094 | NOTE: Running the Device Settings or Voice Chat Setup will temporarily disconnect you from Voice Chat. | ||
5095 | </e_new> | ||
5096 | <f_old_trans></f_old_trans> | ||
5097 | <f_translation> | ||
5098 | HINWEIS: Beim Öffnen der Geräte-Einstellungen oder der Voice-Chat-Einrichtung werden Sie vorübergehend vom Voice-Chat getrennt. | ||
5099 | </f_translation> | ||
5100 | </string><string><a_file>panel_preferences_web.xml</a_file> | ||
5101 | <b_path>/web/use_external_browser</b_path> | ||
5102 | <c_attribute>tool_tip</c_attribute> | ||
5103 | <d_old></d_old> | ||
5104 | <e_new>Use outside web browser for help, web links, etc. Not recommended if running full screen.</e_new> | ||
5105 | <f_old_trans></f_old_trans> | ||
5106 | <f_translation>Externen Browser für Hilfe, Weblinks usw. verwenden. Im Vollbildmodus nicht empfohlen.</f_translation> | ||
5107 | </string><string><a_file>panel_preferences_web.xml</a_file> | ||
5108 | <b_path>/web/use_external_browser/external</b_path> | ||
5109 | <c_attribute></c_attribute> | ||
5110 | <d_old></d_old> | ||
5111 | <e_new> | ||
5112 | Use external web browser (Firefox, Safari, Internet Explorer) | ||
5113 | </e_new> | ||
5114 | <f_old_trans></f_old_trans> | ||
5115 | <f_translation> | ||
5116 | Externen Browser verwenden (Firefox, Safari, Internet Explorer) | ||
5117 | </f_translation> | ||
5118 | </string><string><a_file>panel_preferences_web.xml</a_file> | ||
5119 | <b_path>/web/use_external_browser/internal</b_path> | ||
5120 | <c_attribute></c_attribute> | ||
5121 | <d_old></d_old> | ||
5122 | <e_new> | ||
5123 | Use built-in web browser | ||
5124 | </e_new> | ||
5125 | <f_old_trans></f_old_trans> | ||
5126 | <f_translation> | ||
5127 | Integrierten Browser verwenden | ||
5128 | </f_translation> | ||
5129 | </string><string><a_file>panel_region_estate.xml</a_file> | ||
5130 | <b_path>/Estate/abuse_email_address_help</b_path> | ||
5131 | <c_attribute>label</c_attribute> | ||
5132 | <d_old></d_old> | ||
5133 | <e_new>?</e_new> | ||
5134 | <f_old_trans></f_old_trans> | ||
5135 | <f_translation> ?</f_translation> | ||
5136 | </string><string><a_file>panel_voice_options.xml</a_file> | ||
5137 | <b_path>/content_panel/friends_only_check</b_path> | ||
5138 | <c_attribute>label</c_attribute> | ||
5139 | <d_old></d_old> | ||
5140 | <e_new>Only allow Friends to initiate Voice Calls with me</e_new> | ||
5141 | <f_old_trans></f_old_trans> | ||
5142 | <f_translation>Voice-Anrufe nur meinen Freunden erlauben</f_translation> | ||
343 | </string><string><a_file>panel_voice_remote_expanded.xml</a_file> | 5143 | </string><string><a_file>panel_voice_remote_expanded.xml</a_file> |
344 | <b_path>/voice_remote/voice_channel_bg</b_path> | 5144 | <b_path>/voice_remote/voice_channel_bg</b_path> |
345 | <c_attribute>label</c_attribute> | 5145 | <c_attribute>label</c_attribute> |
diff --git a/linden/indra/newview/skins/xui/de/need_to_update.xml b/linden/indra/newview/skins/xui/de/need_to_update.xml index 162c36c..578dfd2 100644 --- a/linden/indra/newview/skins/xui/de/need_to_update.xml +++ b/linden/indra/newview/skins/xui/de/need_to_update.xml | |||
@@ -2,125 +2,90 @@ | |||
2 | 2 | ||
3 | <strings> | 3 | <strings> |
4 | <string><a_file>alerts.xml</a_file> | 4 | <string><a_file>alerts.xml</a_file> |
5 | <b_path>//ErrorEncodingSnapshot/message</b_path> | 5 | <b_path>//DisplaySettingsNoShaders/message</b_path> |
6 | <c_attribute></c_attribute> | 6 | <c_attribute></c_attribute> |
7 | <d_old> | 7 | <d_old> |
8 | Error encoding snapshot. | 8 | [SECOND_LIFE] crashed while initializing graphics drivers. |
9 | Shaders will be disabled in order to avoid some common driver errors. | ||
10 | This will disable some graphics features. | ||
11 | We recommend updating your graphics card drivers. | ||
12 | Shaders can be re-enabled in Preferences > Graphics Detail. | ||
9 | </d_old> | 13 | </d_old> |
10 | <e_new> | 14 | <e_new> |
11 | Error encoding snapshot! | 15 | [SECOND_LIFE] crashed while initializing graphics drivers. |
16 | Graphics Quality will be set to low to avoid some common driver errors. | ||
17 | This will disable some graphics features. | ||
18 | We recommend updating your graphics card drivers. | ||
19 | Graphics Quality can be raised in Preferences > Graphics. | ||
12 | </e_new> | 20 | </e_new> |
13 | <f_translation> | 21 | <f_translation> |
14 | Fehler beim Erstellen des Fotos! | 22 | [SECOND_LIFE] ist bei der Initialisierung der Grafiktreiber abgestürzt. |
23 | Die Grafikqualität wird auf eine niedrige Stufe zurückgesetzt, um einige typische Treiberfehler zu vermeiden. | ||
24 | Einige Grafikfunktionen werden ausgeschaltet. | ||
25 | Wir empfehlen die Aktualisierung Ihrer Grafikkartentreiber. | ||
26 | Sie können die Grafikqualität unter 'Einstellungen' > 'Grafik' wieder erhöhen. | ||
15 | </f_translation> | 27 | </f_translation> |
16 | <f_old_trans> | 28 | <f_old_trans> |
17 | Fehler beim Erstellen des Fotos! | 29 | [SECOND_LIFE] ist bei der Initialisierung der Grafiktreiber abgestürzt. |
30 | Um allgemeine Treiberprobleme zu umgehen, werden Shader deaktiviert. | ||
31 | Einige Grafikfunktionen werden ausgeschaltet. | ||
32 | Wir empfehlen die Aktualisierung Ihrer Grafikkartentreiber. | ||
33 | Die Shader können unter 'Einstellungen' > 'Grafikdetails' wieder aktiviert werden. | ||
18 | </f_old_trans> | 34 | </f_old_trans> |
19 | </string><string><a_file>alerts.xml</a_file> | 35 | </string><string><a_file>alerts.xml</a_file> |
20 | <b_path>//AddClassified/message</b_path> | 36 | <b_path>//HelpEstateAllowResident/message</b_path> |
21 | <c_attribute></c_attribute> | 37 | <c_attribute></c_attribute> |
22 | <d_old> | 38 | <d_old> |
23 | Classified ads appear in the 'Classified' section of the | 39 | Access to this estate will be limited to Residents |
24 | Search directory and on www.secondlife.com for one week. | 40 | listed here and any groups below. This setting is |
25 | Fill out your ad, then click 'Publish...' to add it to the | 41 | only available when Visible from Mainland is |
26 | directory. | 42 | unchecked. |
27 | You'll be asked for a price to pay when clicking Publish. | ||
28 | Paying more makes your ad appear higher in the list, and | ||
29 | also appear higher when people search for keywords. | ||
30 | </d_old> | 43 | </d_old> |
31 | <e_new> | 44 | <e_new> |
32 | Classified ads appear in the 'Classified' section of the | 45 | Access to this estate will be limited to Residents |
33 | Find directory for one week. | 46 | listed here and any groups below. This setting is |
34 | Fill out your ad, then click 'Publish...' to add it to the | 47 | only available when Public Access is |
35 | directory. | 48 | unchecked. |
36 | You'll be asked for a price to pay when clicking Publish. | ||
37 | Paying more makes your ad appear higher in the list, and | ||
38 | also appear higher when people search for keywords. | ||
39 | </e_new> | 49 | </e_new> |
40 | <f_translation> | 50 | <f_translation> |
41 | Anzeigen erscheinen für eine Woche unter 'Anzeigen' | 51 | Der Zugang zu diesem Grundstück wird auf die hier |
42 | im Suchverzeichnis. | 52 | aufgeführten Einwohner und Gruppen beschränkt. Diese Einstellung ist |
43 | Füllen Sie Ihre Anzeige aus und klicken Sie auf 'Veröffentlichen...', um sie zum | 53 | nur verfügbar, wenn 'Öffentlich' |
44 | Verzeichnis hinzuzufügen. | 54 | deaktiviert ist. |
45 | Sie werden gebeten, einen Preis zu bezahlen, wenn Sie auf 'Veröffentlichen' klicken. | ||
46 | Wenn Sie mehr bezahlen oder ein Benutzer nach Ihren Suchbegriffen sucht, | ||
47 | erscheint Ihre Anzeige weiter oben in der Liste. | ||
48 | </f_translation> | 55 | </f_translation> |
49 | <f_old_trans> | 56 | <f_old_trans> |
50 | Anzeigen erscheinen für eine Woche unter 'Anzeigen' | 57 | Der Zugang zu diesem Grundstück wird auf die hier |
51 | im Suchverzeichnis. | 58 | aufgeführten Einwohner und Gruppen beschränkt. Diese Einstellung ist |
52 | Füllen Sie Ihre Anzeige aus und klicken Sie auf 'Veröffentlichen...', um sie zum | 59 | nur verfügbar, wenn 'Vom Festland aus sichtbar' |
53 | Verzeichnis hinzuzufügen. | 60 | deaktiviert ist. |
54 | Sie werden gebeten, einen Preis zu bezahlen, wenn Sie auf 'Veröffentlichen' klicken. | ||
55 | Wenn Sie mehr bezahlen oder ein Benutzer nach Ihren Suchbegriffen sucht, | ||
56 | erscheint Ihre Anzeige weiter oben in der Liste. | ||
57 | </f_old_trans> | 61 | </f_old_trans> |
58 | </string><string><a_file>floater_about_land.xml</a_file> | 62 | </string><string><a_file>alerts.xml</a_file> |
59 | <b_path>/floaterland/landtab/land_objects_panel</b_path> | 63 | <b_path>//HelpEstateAllowGroup/message</b_path> |
60 | <c_attribute></c_attribute> | 64 | <c_attribute></c_attribute> |
61 | <d_old></d_old> | 65 | <d_old> |
66 | Access to this estate will be limited to groups | ||
67 | listed here and any Residents above. This setting is | ||
68 | only available when Visible from Mainland is | ||
69 | unchecked. | ||
70 | </d_old> | ||
62 | <e_new> | 71 | <e_new> |
63 | 72 | Access to this estate will be limited to groups | |
64 | 73 | listed here and any Residents above. This setting is | |
65 | 74 | only available when Public Access is | |
66 | 75 | unchecked. | |
67 | |||
68 | |||
69 | |||
70 | |||
71 | |||
72 | |||
73 | |||
74 | |||
75 | |||
76 | |||
77 | |||
78 | |||
79 | |||
80 | |||
81 | |||
82 | |||
83 | |||
84 | |||
85 | |||
86 | |||
87 | |||
88 | |||
89 | |||
90 | |||
91 | /> | ||
92 | </e_new> | 76 | </e_new> |
93 | <f_translation> | 77 | <f_translation> |
94 | 78 | Der Zugang zu diesem Grundstück wird auf die hier | |
95 | 79 | aufgeführten Einwohner und Gruppen beschränkt. Diese Einstellung ist | |
96 | 80 | nur verfügbar, wenn 'Öffentlich' | |
97 | 81 | deaktiviert ist. | |
98 | |||
99 | |||
100 | |||
101 | |||
102 | |||
103 | |||
104 | |||
105 | |||
106 | |||
107 | |||
108 | |||
109 | |||
110 | |||
111 | |||
112 | |||
113 | |||
114 | |||
115 | |||
116 | |||
117 | |||
118 | |||
119 | |||
120 | |||
121 | |||
122 | /> | ||
123 | </f_translation> | 82 | </f_translation> |
83 | <f_old_trans> | ||
84 | Der Zugang zu diesem Grundstück wird auf die hier | ||
85 | aufgeführten Einwohner und Gruppen beschränkt. Diese Einstellung ist | ||
86 | nur verfügbar, wenn 'Vom Festland aus sichtbar' | ||
87 | deaktiviert ist. | ||
88 | </f_old_trans> | ||
124 | </string><string><a_file>floater_about_land.xml</a_file> | 89 | </string><string><a_file>floater_about_land.xml</a_file> |
125 | <b_path>/floaterland/landtab/land_media_panel/Media texture:</b_path> | 90 | <b_path>/floaterland/landtab/land_media_panel/Media texture:</b_path> |
126 | <c_attribute></c_attribute> | 91 | <c_attribute></c_attribute> |
@@ -129,129 +94,408 @@ erscheint Ihre Anzeige weiter oben in der Liste. | |||
129 | texture: | 94 | texture: |
130 | </d_old> | 95 | </d_old> |
131 | <e_new> | 96 | <e_new> |
132 | Sound | 97 | Replace |
133 | Settings: | 98 | Texture: |
134 | </e_new> | 99 | </e_new> |
135 | <f_translation> | 100 | <f_translation> |
136 | Sound- | 101 | Textur |
137 | Einstellungen: | 102 | ersetzen: |
138 | </f_translation> | 103 | </f_translation> |
139 | <f_old_trans> | 104 | <f_old_trans> |
140 | Sound- | 105 | Sound- |
141 | Einstellungen: | 106 | Einstellungen: |
142 | </f_old_trans> | 107 | </f_old_trans> |
143 | </string><string><a_file>floater_about_land.xml</a_file> | 108 | </string><string><a_file>floater_about_land.xml</a_file> |
144 | <b_path>/floaterland/landtab/land_access_panel/AccessCheck</b_path> | 109 | <b_path>/floaterland/landtab/land_media_panel/media_auto_scale</b_path> |
145 | <c_attribute>label</c_attribute> | 110 | <c_attribute>label</c_attribute> |
146 | <d_old>Always Allow</d_old> | 111 | <d_old>Auto scale content (slower and reduced visual quality)</d_old> |
147 | <e_new>Ban</e_new> | 112 | <e_new>Auto scale</e_new> |
148 | <f_translation>Verbannen</f_translation> | 113 | <f_translation>Automatisch skalieren</f_translation> |
149 | <f_old_trans>Verbannen</f_old_trans> | 114 | <f_old_trans>Inhalt automatisch skalieren (langsamer und reduzierte Bildqualität)</f_old_trans> |
150 | </string><string><a_file>floater_about_land.xml</a_file> | 115 | </string><string><a_file>floater_about_land.xml</a_file> |
151 | <b_path>/floaterland/landtab/land_access_panel/AccessCheck</b_path> | 116 | <b_path>/floaterland/landtab/land_media_panel/Voice settings:</b_path> |
152 | <c_attribute></c_attribute> | 117 | <c_attribute></c_attribute> |
153 | <d_old> | 118 | <d_old> |
154 | Allowed Residents | 119 | Voice |
120 | Settings: | ||
155 | </d_old> | 121 | </d_old> |
156 | <e_new> | 122 | <e_new> |
157 | Banned Residents | 123 | Voice: |
158 | </e_new> | 124 | </e_new> |
159 | <f_translation> | 125 | <f_translation> |
160 | Verbannte Einwohner | 126 | Voice: |
161 | </f_translation> | 127 | </f_translation> |
162 | <f_old_trans> | 128 | <f_old_trans> |
163 | Verbannte Einwohner | 129 | Sprach- |
130 | Einstellungen: | ||
164 | </f_old_trans> | 131 | </f_old_trans> |
165 | </string><string><a_file>panel_audio_device.xml</a_file> | 132 | </string><string><a_file>floater_buy_object.xml</a_file> |
166 | <b_path>/device_settings/Input device (microphone):</b_path> | 133 | <b_path>/contents/title_buy_text</b_path> |
167 | <c_attribute></c_attribute> | 134 | <c_attribute></c_attribute> |
168 | <d_old> | 135 | <d_old> |
169 | Audio Devices | 136 | Buy [NAME] |
137 | </d_old> | ||
138 | <e_new> | ||
139 | Buy | ||
140 | </e_new> | ||
141 | <f_translation> | ||
142 | Kaufen | ||
143 | </f_translation> | ||
144 | <f_old_trans> | ||
145 | [NAME] kaufen | ||
146 | </f_old_trans> | ||
147 | </string><string><a_file>floater_chat_history.xml</a_file> | ||
148 | <b_path>/chat floater</b_path> | ||
149 | <c_attribute>title</c_attribute> | ||
150 | <d_old>Local Chat</d_old> | ||
151 | <e_new>Local Chat (history)</e_new> | ||
152 | <f_translation>Lokaler Chat (Verlauf)</f_translation> | ||
153 | <f_old_trans>Chat-Verlauf</f_old_trans> | ||
154 | </string><string><a_file>floater_critical.xml</a_file> | ||
155 | <b_path>/modal container</b_path> | ||
156 | <c_attribute>title</c_attribute> | ||
157 | <d_old> </d_old> | ||
158 | <e_new></e_new> | ||
159 | <f_translation></f_translation> | ||
160 | <f_old_trans> </f_old_trans> | ||
161 | </string><string><a_file>floater_new_outfit_dialog.xml</a_file> | ||
162 | <b_path>/modal container</b_path> | ||
163 | <c_attribute>title</c_attribute> | ||
164 | <d_old> </d_old> | ||
165 | <e_new></e_new> | ||
166 | <f_translation></f_translation> | ||
167 | <f_old_trans> </f_old_trans> | ||
168 | </string><string><a_file>floater_select_key.xml</a_file> | ||
169 | <b_path>/modal container</b_path> | ||
170 | <c_attribute>title</c_attribute> | ||
171 | <d_old> </d_old> | ||
172 | <e_new></e_new> | ||
173 | <f_translation></f_translation> | ||
174 | </string><string><a_file>floater_snapshot.xml</a_file> | ||
175 | <b_path>/Snapshot/file_size_label</b_path> | ||
176 | <c_attribute></c_attribute> | ||
177 | <d_old> | ||
178 | File size: [SIZE] bytes | ||
179 | </d_old> | ||
180 | <e_new> | ||
181 | File size: [SIZE] KB | ||
182 | </e_new> | ||
183 | <f_translation> | ||
184 | Dateigröße: [SIZE] KB | ||
185 | </f_translation> | ||
186 | <f_old_trans> | ||
187 | Dateigröße: [SIZE] Byte | ||
188 | </f_old_trans> | ||
189 | </string><string><a_file>floater_snapshot.xml</a_file> | ||
190 | <b_path>/Snapshot/new_snapshot_btn</b_path> | ||
191 | <c_attribute>label</c_attribute> | ||
192 | <d_old>New Snapshot</d_old> | ||
193 | <e_new>Refresh Snapshot</e_new> | ||
194 | <f_translation>Foto aktualisieren</f_translation> | ||
195 | <f_old_trans>Neues Foto</f_old_trans> | ||
196 | </string><string><a_file>floater_snapshot.xml</a_file> | ||
197 | <b_path>/Snapshot/discard_btn</b_path> | ||
198 | <c_attribute>label</c_attribute> | ||
199 | <d_old>Discard</d_old> | ||
200 | <e_new>Cancel</e_new> | ||
201 | <f_translation>Abbrechen</f_translation> | ||
202 | <f_old_trans>Verwerfen</f_old_trans> | ||
203 | </string><string><a_file>floater_snapshot.xml</a_file> | ||
204 | <b_path>/Snapshot/keep_aspect_check</b_path> | ||
205 | <c_attribute>label</c_attribute> | ||
206 | <d_old>Keep specified aspect ratio</d_old> | ||
207 | <e_new>Constrain Proportions</e_new> | ||
208 | <f_translation>Seitenverhältnis beibehalten</f_translation> | ||
209 | <f_old_trans>Aspektverhältnis beibehalten</f_old_trans> | ||
210 | </string><string><a_file>floater_test.xml</a_file> | ||
211 | <b_path>/Test</b_path> | ||
212 | <c_attribute>title</c_attribute> | ||
213 | <d_old>Choose Resident</d_old> | ||
214 | <e_new>Test</e_new> | ||
215 | <f_translation>Test</f_translation> | ||
216 | <f_old_trans>Einwohner auswählen</f_old_trans> | ||
217 | </string><string><a_file>floater_tos.xml</a_file> | ||
218 | <b_path>/modal container</b_path> | ||
219 | <c_attribute>title</c_attribute> | ||
220 | <d_old> </d_old> | ||
221 | <e_new></e_new> | ||
222 | <f_translation></f_translation> | ||
223 | <f_old_trans> </f_old_trans> | ||
224 | </string><string><a_file>floater_wearable_save_as.xml</a_file> | ||
225 | <b_path>/modal container</b_path> | ||
226 | <c_attribute>title</c_attribute> | ||
227 | <d_old> </d_old> | ||
228 | <e_new></e_new> | ||
229 | <f_translation></f_translation> | ||
230 | <f_old_trans> </f_old_trans> | ||
231 | </string><string><a_file>floater_world_map.xml</a_file> | ||
232 | <b_path>/worldmap/infohub_chk</b_path> | ||
233 | <c_attribute>label</c_attribute> | ||
234 | <d_old> </d_old> | ||
235 | <e_new></e_new> | ||
236 | <f_translation></f_translation> | ||
237 | <f_old_trans> </f_old_trans> | ||
238 | </string><string><a_file>floater_world_map.xml</a_file> | ||
239 | <b_path>/worldmap/telehubchk</b_path> | ||
240 | <c_attribute>label</c_attribute> | ||
241 | <d_old> </d_old> | ||
242 | <e_new></e_new> | ||
243 | <f_translation></f_translation> | ||
244 | <f_old_trans> </f_old_trans> | ||
245 | </string><string><a_file>floater_world_map.xml</a_file> | ||
246 | <b_path>/worldmap/popular_chk</b_path> | ||
247 | <c_attribute>label</c_attribute> | ||
248 | <d_old> </d_old> | ||
249 | <e_new></e_new> | ||
250 | <f_translation></f_translation> | ||
251 | <f_old_trans> </f_old_trans> | ||
252 | </string><string><a_file>floater_world_map.xml</a_file> | ||
253 | <b_path>/worldmap/land_for_sale_chk</b_path> | ||
254 | <c_attribute>label</c_attribute> | ||
255 | <d_old> </d_old> | ||
256 | <e_new></e_new> | ||
257 | <f_translation></f_translation> | ||
258 | <f_old_trans> </f_old_trans> | ||
259 | </string><string><a_file>floater_world_map.xml</a_file> | ||
260 | <b_path>/worldmap/event_chk</b_path> | ||
261 | <c_attribute>label</c_attribute> | ||
262 | <d_old> </d_old> | ||
263 | <e_new></e_new> | ||
264 | <f_translation></f_translation> | ||
265 | <f_old_trans> </f_old_trans> | ||
266 | </string><string><a_file>floater_world_map.xml</a_file> | ||
267 | <b_path>/worldmap/event_mature_chk</b_path> | ||
268 | <c_attribute>label</c_attribute> | ||
269 | <d_old> </d_old> | ||
270 | <e_new></e_new> | ||
271 | <f_translation></f_translation> | ||
272 | <f_old_trans> </f_old_trans> | ||
273 | </string><string><a_file>menu_viewer.xml</a_file> | ||
274 | <b_path>/Main Menu/View/Chat History</b_path> | ||
275 | <c_attribute>label</c_attribute> | ||
276 | <d_old>Chat History</d_old> | ||
277 | <e_new>Local Chat</e_new> | ||
278 | <f_translation>Lokaler Chat</f_translation> | ||
279 | <f_old_trans>Chat-Verlauf</f_old_trans> | ||
280 | </string><string><a_file>menu_viewer.xml</a_file> | ||
281 | <b_path>/Main Menu/View/Instant Message</b_path> | ||
282 | <c_attribute>label</c_attribute> | ||
283 | <d_old>Instant Message</d_old> | ||
284 | <e_new>Communicate</e_new> | ||
285 | <f_translation>Unterhalten</f_translation> | ||
286 | <f_old_trans>Instant Message</f_old_trans> | ||
287 | </string><string><a_file>notify.xml</a_file> | ||
288 | <b_path>//FirstDebugMenus/message</b_path> | ||
289 | <c_attribute></c_attribute> | ||
290 | <d_old> | ||
291 | You have enabled the Client and Server debugging menus. | ||
292 | These menus contain features useful for developers debugging Second Life. | ||
293 | To toggle these menus on and off press Ctrl-Alt-D. On a Mac press Cmd-Opt-Shift-D. | ||
170 | </d_old> | 294 | </d_old> |
171 | <e_new> | 295 | <e_new> |
172 | Input device (microphone): | 296 | You have enabled the Advanced menu. |
297 | This menu contains features useful for developers debugging Second Life. | ||
298 | To toggle this menu on Windows press Ctrl-Alt-D. On Mac press Cmd-Opt-Shift-D. | ||
173 | </e_new> | 299 | </e_new> |
174 | <f_translation> | 300 | <f_translation> |
175 | Eingabegerät (Mikro): | 301 | Sie haben das Erweitert-Menü aktiviert. |
302 | Dieses Menü enthält nützliche Funktionen zum Debuggen von Second Life. | ||
303 | Drücken Sie in Windows Strg-Alt-D (Mac: Befehl-Opt-Umschalt-D) zum Ein- und Ausschalten dieses Menüs. | ||
176 | </f_translation> | 304 | </f_translation> |
177 | <f_old_trans> | 305 | <f_old_trans> |
178 | Eingangslautstärke | 306 | Sie haben die Client/Server-Debug-Menüs aktiviert. |
179 | </f_old_trans> | 307 | Diese Menüs enthalten nützliche Funktionen zum Debuggen von Second Life. |
180 | </string><string><a_file>panel_audio_device.xml</a_file> | 308 | Drücken Sie Strg-Alt-D (Mac: Befehl-Opt-Umschalt-D) zum Ein- und Ausschalten dieser Menüs. |
181 | <b_path>/device_settings/Input device (microphone):</b_path> | 309 | </f_old_trans> |
310 | </string><string><a_file>notify.xml</a_file> | ||
311 | <b_path>//FirstSculptedPrim/message</b_path> | ||
182 | <c_attribute></c_attribute> | 312 | <c_attribute></c_attribute> |
183 | <d_old> | 313 | <d_old> |
184 | Audio Devices | 314 | You are editing a sculpted prim. |
315 | Sculpted prims require a special texture to specify their shape. | ||
316 | You can find example sculpted textures in the system library. | ||
185 | </d_old> | 317 | </d_old> |
186 | <e_new> | 318 | <e_new> |
187 | Input Level | 319 | You are editing a sculpted prim. |
320 | Sculpted prims require a special texture to specify their shape. | ||
321 | You can find example sculpted textures in the inventory library. | ||
188 | </e_new> | 322 | </e_new> |
189 | <f_translation> | 323 | <f_translation> |
190 | Eingangslautstärke | 324 | Sie bearbeiten ein geformtes Primitiv. |
325 | Geformte Primitive benötigen eine spezielle Textur, die ihre Form definiert. | ||
326 | Beispiele für Formtexturen finden Sie in der Inventarbibliothek. | ||
191 | </f_translation> | 327 | </f_translation> |
192 | <f_old_trans> | 328 | <f_old_trans> |
329 | Sie bearbeiten ein geformtes Primitiv. | ||
330 | Geformte Primitive benötigen eine spezielle Textur, die ihre Form definiert. | ||
331 | Beispiele für Formtexturen finden Sie in der Systembibliothek. | ||
332 | </f_old_trans> | ||
333 | </string><string><a_file>panel_audio_device.xml</a_file> | ||
334 | <b_path>/device_settings/Input device (microphone):</b_path> | ||
335 | <c_attribute></c_attribute> | ||
336 | <d_old> | ||
337 | Audio Devices | ||
338 | </d_old> | ||
339 | <e_new> | ||
340 | Input device (microphone): | ||
341 | </e_new> | ||
342 | <f_translation> | ||
343 | Eingabegerät (Mikro): | ||
344 | </f_translation> | ||
345 | <f_old_trans> | ||
193 | Eingangslautstärke | 346 | Eingangslautstärke |
194 | </f_old_trans> | 347 | </f_old_trans> |
195 | </string><string><a_file>panel_login.xml</a_file> | 348 | </string><string><a_file>panel_avatar.xml</a_file> |
196 | <b_path>/panel_login/real_url</b_path> | 349 | <b_path>/Panel Avatar/ShowOnMapFriendOffline</b_path> |
197 | <c_attribute></c_attribute> | 350 | <c_attribute></c_attribute> |
198 | <d_old> | 351 | <d_old> |
199 | https://secondlife.com/app/login/?show_login_form=True | 352 | Show location on the map. |
353 | Disabled because they are not online. | ||
200 | </d_old> | 354 | </d_old> |
201 | <e_new> | 355 | <e_new> |
202 | http://secondlife.com/app/login/ | 356 | Show location on the map. |
357 | Disabled because they are not online. | ||
203 | </e_new> | 358 | </e_new> |
204 | <f_translation> | 359 | <f_translation> |
205 | http://secondlife.com/app/login/ | 360 | Position auf Karte zeigen. |
361 | Deaktiviert, weil nicht online. | ||
206 | </f_translation> | 362 | </f_translation> |
207 | <f_old_trans> | 363 | <f_old_trans> |
208 | https://secondlife.com/app/login/?show_login_form=True | 364 | Position auf Karte zeigen. |
365 | Deaktiviert, weil nicht online. | ||
209 | </f_old_trans> | 366 | </f_old_trans> |
210 | </string><string><a_file>panel_preferences_audio.xml</a_file> | 367 | </string><string><a_file>panel_group_general.xml</a_file> |
211 | <b_path>/Media panel/doppler_effect_text</b_path> | 368 | <b_path>/general_tab/confirm_group_create_str</b_path> |
212 | <c_attribute></c_attribute> | 369 | <c_attribute></c_attribute> |
213 | <d_old> | 370 | <d_old> |
214 | Streaming Preferences: | 371 | Creating this group will cost L$100. |
372 | Are you really, really, REALLY sure you want to spend L$100 to create this group? | ||
215 | </d_old> | 373 | </d_old> |
216 | <e_new> | 374 | <e_new> |
217 | Audio Preferences: | 375 | Creating this group will cost L$100. |
376 | Are you really, really, REALLY sure you want to spend L$100 to create this group? | ||
377 | Be aware that if nobody else joins this group within 48 hours, it will be disbanded and the group's name will be unavailable for future use. | ||
218 | </e_new> | 378 | </e_new> |
219 | <f_translation> | 379 | <f_translation> |
220 | Audio-Einstellungen: | 380 | Die Gründung dieser Gruppe kostet 100 L$. |
381 | Sind Sie wirklich, WIRKLICH sicher, dass Sie 100 L$ für die Gründung dieser Gruppe ausgeben möchten? | ||
382 | Falls in den nächsten 48 Stunden niemand sonst dieser Gruppe beitritt, wird sie aufgelöst und der Name der Gruppe wird nicht mehr verfügbar sein. | ||
221 | </f_translation> | 383 | </f_translation> |
222 | <f_old_trans> | 384 | <f_old_trans> |
223 | Audio-Einstellungen: | 385 | Die Gründung dieser Gruppe kostet 100 L$. |
386 | Sind Sie wirklich, WIRKLICH sicher, dass Sie 100 L$ für die Gründung dieser Gruppe ausgeben möchten? | ||
224 | </f_old_trans> | 387 | </f_old_trans> |
225 | </string><string><a_file>panel_preferences_im.xml</a_file> | 388 | </string><string><a_file>panel_group_roles.xml</a_file> |
226 | <b_path>/im/text_box3</b_path> | 389 | <b_path>/roles_tab/roles_tab_container/members_sub_tab/help_text</b_path> |
390 | <c_attribute></c_attribute> | ||
391 | <d_old> | ||
392 | You can add or remove Roles assigned to Members. | ||
393 | Select multiple Members by holding the Ctrl key and | ||
394 | clicking on their names. | ||
395 | </d_old> | ||
396 | <e_new> | ||
397 | You can add or remove Roles assigned to Members. | ||
398 | Select multiple Members by holding the Ctrl key and | ||
399 | clicking on their names. | ||
400 | </e_new> | ||
401 | <f_translation> | ||
402 | Sie können Mitgliedern Rollen zuweisen und entziehen. | ||
403 | Drücken Sie die Strg-Taste und klicken Sie auf Namen, | ||
404 | um mehrere Mitglieder auszuwählen. | ||
405 | </f_translation> | ||
406 | <f_old_trans> | ||
407 | Sie können Mitgliedern Rollen zuweisen und entziehen. | ||
408 | Drücken Sie die Strg-Taste und klicken Sie auf Namen, | ||
409 | um mehrere Mitglieder auszuwählen. | ||
410 | </f_old_trans> | ||
411 | </string><string><a_file>panel_land_covenant.xml</a_file> | ||
412 | <b_path>/Covenant/can_resell</b_path> | ||
227 | <c_attribute></c_attribute> | 413 | <c_attribute></c_attribute> |
228 | <d_old> | 414 | <d_old> |
229 | Busy Mode Response: | 415 | Purchased land in this region may be resold. |
230 | </d_old> | 416 | </d_old> |
231 | <e_new> | 417 | <e_new> |
232 | Logging Options: | 418 | string land in this region may be resold. |
233 | </e_new> | 419 | </e_new> |
234 | <f_translation> | 420 | <f_translation> |
235 | Protokolloptionen: | 421 | Gekauftes Land in dieser Region kann wiederverkauft werden. |
236 | </f_translation> | 422 | </f_translation> |
237 | <f_old_trans> | 423 | <f_old_trans> |
238 | Protokolloptionen: | 424 | Gekauftes Land in dieser Region kann wiederverkauft werden. |
239 | </f_old_trans> | 425 | </f_old_trans> |
240 | </string><string><a_file>panel_preferences_voice.xml</a_file> | 426 | </string><string><a_file>panel_media_controls.xml</a_file> |
241 | <b_path>/chat/voice_chat_description</b_path> | 427 | <b_path>/media_controls/media_play</b_path> |
428 | <c_attribute>tool_tip</c_attribute> | ||
429 | <d_old>Play/pause streaming movies</d_old> | ||
430 | <e_new>Play/pause streaming music</e_new> | ||
431 | <f_translation>Streaming-Musik abspielen/unterbrechen</f_translation> | ||
432 | <f_old_trans>Streaming-Video pausieren/wiedergeben</f_old_trans> | ||
433 | </string><string><a_file>panel_preferences_audio.xml</a_file> | ||
434 | <b_path>/Media panel/streaming_video</b_path> | ||
435 | <c_attribute>label</c_attribute> | ||
436 | <d_old>Play Streaming Video When Available (uses more bandwidth)</d_old> | ||
437 | <e_new>Play Streaming Media When Available (uses more bandwidth)</e_new> | ||
438 | <f_translation>Streaming-Musik abspielen, falls verfügbar (belegt mehr Bandbreite)</f_translation> | ||
439 | <f_old_trans>Streaming-Video abspielen, falls verfügbar</f_old_trans> | ||
440 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
441 | <b_path>/Display panel/windowed mode</b_path> | ||
442 | <c_attribute>label</c_attribute> | ||
443 | <d_old>Run in a window</d_old> | ||
444 | <e_new>Run Second Life in a window</e_new> | ||
445 | <f_translation>Second Life in einem Fenster ausführen</f_translation> | ||
446 | <f_old_trans>In Fenster ausführen</f_old_trans> | ||
447 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
448 | <b_path>/Display panel/aspect_auto_detect</b_path> | ||
449 | <c_attribute>label</c_attribute> | ||
450 | <d_old>Auto detect</d_old> | ||
451 | <e_new>Auto-detect ratio</e_new> | ||
452 | <f_translation>Aspektverhältnis automatisch erkennen</f_translation> | ||
453 | <f_old_trans>Automatisch erkennen</f_old_trans> | ||
454 | </string><string><a_file>panel_voice_enable.xml</a_file> | ||
455 | <b_path>/content_panel/voice_intro_text2</b_path> | ||
242 | <c_attribute></c_attribute> | 456 | <c_attribute></c_attribute> |
243 | <d_old> | 457 | <d_old> |
244 | Push-to-Talk mode lets you control when your voice is transmitted. When in toggle mode, press and release the push-to-talk trigger to switch your microphone on and off. When not in toggle mode, the microphone is active only when the trigger is held down. | 458 | Do you want to enable Voice Chat now? |
245 | </d_old> | 459 | </d_old> |
246 | <e_new> | 460 | <e_new> |
247 | NOTE: Running the Device Settings or Voice Chat Setup will temporarily disconnect you from Voice Chat. | 461 | Voice Chat is enabled by default. Do you wish to continue using Voice Chat? |
248 | </e_new> | 462 | </e_new> |
249 | <f_translation> | 463 | <f_translation> |
250 | HINWEIS: Beim Öffnen der Geräte-Einstellungen oder der Voice-Chat-Einrichtung werden Sie vorübergehend vom Voice-Chat getrennt. | 464 | Voice-Chat ist standardmäßig aktiviert. Möchten Sie Voice-Chat weiterverwenden? |
251 | </f_translation> | 465 | </f_translation> |
252 | <f_old_trans> | 466 | <f_old_trans> |
253 | HINWEIS: Beim Öffnen der Geräte-Einstellungen oder der Voice-Chat-Einrichtung werden Sie vorübergehend vom Voice-Chat getrennt. | 467 | Möchten Sie Voice-Chat jetzt aktivieren? |
254 | </f_old_trans> | 468 | </f_old_trans> |
469 | </string><string><a_file>panel_voice_enable.xml</a_file> | ||
470 | <b_path>/content_panel/voice_enable/1</b_path> | ||
471 | <c_attribute></c_attribute> | ||
472 | <d_old> | ||
473 | Yes, enable Voice Chat. | ||
474 | </d_old> | ||
475 | <e_new> | ||
476 | Yes, continue using Voice Chat. | ||
477 | </e_new> | ||
478 | <f_translation> | ||
479 | Ja, Voice-Chat weiterhin verwenden. | ||
480 | </f_translation> | ||
481 | <f_old_trans> | ||
482 | Ja, Voice-Chat jetzt aktivieren. | ||
483 | </f_old_trans> | ||
484 | </string><string><a_file>panel_voice_enable.xml</a_file> | ||
485 | <b_path>/content_panel/voice_enable/0</b_path> | ||
486 | <c_attribute></c_attribute> | ||
487 | <d_old> | ||
488 | No, do not enable Voice Chat at this time. | ||
489 | </d_old> | ||
490 | <e_new> | ||
491 | No, disable Voice Chat. | ||
492 | </e_new> | ||
493 | <f_translation> | ||
494 | Nein, Voice-Chat deaktivieren. | ||
495 | </f_translation> | ||
496 | <f_old_trans> | ||
497 | Nein, Voice-Chat noch nicht aktivieren. | ||
498 | </f_old_trans> | ||
255 | </string><string><a_file>panel_voice_options.xml</a_file> | 499 | </string><string><a_file>panel_voice_options.xml</a_file> |
256 | <b_path>/content_panel/push_to_talk_check</b_path> | 500 | <b_path>/content_panel/push_to_talk_check</b_path> |
257 | <c_attribute>label</c_attribute> | 501 | <c_attribute>label</c_attribute> |
diff --git a/linden/indra/newview/skins/xui/de/notify.xml b/linden/indra/newview/skins/xui/de/notify.xml index 465de11..c66466e 100644 --- a/linden/indra/newview/skins/xui/de/notify.xml +++ b/linden/indra/newview/skins/xui/de/notify.xml | |||
@@ -875,16 +875,21 @@ bis die Option 'Flexibel' deaktiviert wurde. | |||
875 | </notify> | 875 | </notify> |
876 | <notify name="FirstDebugMenus"> | 876 | <notify name="FirstDebugMenus"> |
877 | <message name="message"> | 877 | <message name="message"> |
878 | Sie haben die Client/Server-Debug-Menüs aktiviert. | 878 | Sie haben das Erweitert-Menü aktiviert. |
879 | Diese Menüs enthalten nützliche Funktionen zum Debuggen von Second Life. | 879 | Dieses Menü enthält nützliche Funktionen zum Debuggen von Second Life. |
880 | Drücken Sie Strg-Alt-D (Mac: Befehl-Opt-Umschalt-D) zum Ein- und Ausschalten dieser Menüs. | 880 | Drücken Sie in Windows Strg-Alt-D (Mac: Befehl-Opt-Umschalt-D) zum Ein- und Ausschalten dieses Menüs. |
881 | </message> | 881 | </message> |
882 | </notify> | 882 | </notify> |
883 | <notify name="FirstSculptedPrim"> | 883 | <notify name="FirstSculptedPrim"> |
884 | <message name="message"> | 884 | <message name="message"> |
885 | Sie bearbeiten ein geformtes Primitiv. | 885 | Sie bearbeiten ein geformtes Primitiv. |
886 | Geformte Primitive benötigen eine spezielle Textur, die ihre Form definiert. | 886 | Geformte Primitive benötigen eine spezielle Textur, die ihre Form definiert. |
887 | Beispiele für Formtexturen finden Sie in der Systembibliothek. | 887 | Beispiele für Formtexturen finden Sie in der Inventarbibliothek. |
888 | </message> | ||
889 | </notify> | ||
890 | <notify name="FirstMedia"> | ||
891 | <message name="message"> | ||
892 | Sie haben die Medienwiedergabe gestartet. Unter 'Audio und Video' im Fenster 'Einstellungen' können Sie festlegen, dass Medien automatisch wiedergegeben werden. Beachten Sie, dass dies bei nicht vertrauenswürdigen Medienseiten ein Sicherheitsrisiko darstellen kann. | ||
888 | </message> | 893 | </message> |
889 | </notify> | 894 | </notify> |
890 | <notify name="MaxListSelectMessage"> | 895 | <notify name="MaxListSelectMessage"> |
@@ -1018,4 +1023,9 @@ Klicken Sie auf 'Akzeptieren', um dem Chat beizutreten, oder auf &apos | |||
1018 | Fehler beim Versuch, eine Voice-Chat-Verbindung zu [VOICE_CHANNEL_NAME] herzustellen. Bitte versuchen Sie es erneut. | 1023 | Fehler beim Versuch, eine Voice-Chat-Verbindung zu [VOICE_CHANNEL_NAME] herzustellen. Bitte versuchen Sie es erneut. |
1019 | </message> | 1024 | </message> |
1020 | </notify> | 1025 | </notify> |
1026 | <notify name="ServerVersionChanged"> | ||
1027 | <message name="message"> | ||
1028 | Die Region, die Sie betreten haben, verwendet eine andere Simulatorversion. Klicken Sie auf diese Nachricht, um weitere Informationen zu erhalten. | ||
1029 | </message> | ||
1030 | </notify> | ||
1021 | </notifications> | 1031 | </notifications> |
diff --git a/linden/indra/newview/skins/xui/de/panel_audio_device.xml b/linden/indra/newview/skins/xui/de/panel_audio_device.xml index 9045a83..006d768 100644 --- a/linden/indra/newview/skins/xui/de/panel_audio_device.xml +++ b/linden/indra/newview/skins/xui/de/panel_audio_device.xml | |||
@@ -1,9 +1,15 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <panel name="device_settings"> | 2 | <panel name="device_settings"> |
3 | <text name="Audio Devices"> | ||
4 | Audiogeräte | ||
5 | </text> | ||
3 | <text name="Output device (speakers):"> | 6 | <text name="Output device (speakers):"> |
4 | Ausgabegerät (Lautsprecher): | 7 | Ausgabegerät (Lautsprecher): |
5 | </text> | 8 | </text> |
6 | <text name="Input device (microphone):"> | 9 | <text name="Input device (microphone):"> |
10 | Eingabegerät (Mikro): | ||
11 | </text> | ||
12 | <text name="Input level:"> | ||
7 | Eingangslautstärke | 13 | Eingangslautstärke |
8 | </text> | 14 | </text> |
9 | <text_editor name="voice_intro_text1"> | 15 | <text_editor name="voice_intro_text1"> |
diff --git a/linden/indra/newview/skins/xui/de/panel_avatar.xml b/linden/indra/newview/skins/xui/de/panel_avatar.xml index 0c69249..a8498a5 100644 --- a/linden/indra/newview/skins/xui/de/panel_avatar.xml +++ b/linden/indra/newview/skins/xui/de/panel_avatar.xml | |||
@@ -162,6 +162,9 @@ | |||
162 | </text> | 162 | </text> |
163 | </panel> | 163 | </panel> |
164 | <panel label="Meine Notizen" name="My Notes"> | 164 | <panel label="Meine Notizen" name="My Notes"> |
165 | <string name="Loading"> | ||
166 | Wird geladen... | ||
167 | </string> | ||
165 | <text name="label"> | 168 | <text name="label"> |
166 | Hier können Sie Notizen über diese Person machen. Notieren Sie | 169 | Hier können Sie Notizen über diese Person machen. Notieren Sie |
167 | Geschäfte, gemeinsame Projekte usw. Nur Sie können diese Notizen sehen. | 170 | Geschäfte, gemeinsame Projekte usw. Nur Sie können diese Notizen sehen. |
@@ -185,7 +188,7 @@ keine Freundschaft besteht. | |||
185 | </text> | 188 | </text> |
186 | <text name="ShowOnMapFriendOffline"> | 189 | <text name="ShowOnMapFriendOffline"> |
187 | Position auf Karte zeigen. | 190 | Position auf Karte zeigen. |
188 | Deaktiviert, weil nicht online. | 191 | Deaktiviert, weil nicht online. |
189 | </text> | 192 | </text> |
190 | <text name="ShowOnMapFriendOnline"> | 193 | <text name="ShowOnMapFriendOnline"> |
191 | Position auf Karte zeigen. | 194 | Position auf Karte zeigen. |
diff --git a/linden/indra/newview/skins/xui/de/panel_classified.xml b/linden/indra/newview/skins/xui/de/panel_classified.xml index c3d6553..35dd93f 100644 --- a/linden/indra/newview/skins/xui/de/panel_classified.xml +++ b/linden/indra/newview/skins/xui/de/panel_classified.xml | |||
@@ -11,6 +11,9 @@ | |||
11 | <check_box label="Ab 18" name="classified_mature_check" /> | 11 | <check_box label="Ab 18" name="classified_mature_check" /> |
12 | <combo_box label="" name="classified_category_combo" /> | 12 | <combo_box label="" name="classified_category_combo" /> |
13 | <button label="Aktualisieren" name="classified_update_btn" /> | 13 | <button label="Aktualisieren" name="classified_update_btn" /> |
14 | <string name="ad_placed_paid"> | ||
15 | Anzeige: [DATE], [AMT] L$ für Eintrag bezahlt. | ||
16 | </string> | ||
14 | <text name="update_txt"> | 17 | <text name="update_txt"> |
15 | Aktualisieren | 18 | Aktualisieren |
16 | </text> | 19 | </text> |
diff --git a/linden/indra/newview/skins/xui/de/panel_friends.xml b/linden/indra/newview/skins/xui/de/panel_friends.xml index b5fde69..6e55ba3 100644 --- a/linden/indra/newview/skins/xui/de/panel_friends.xml +++ b/linden/indra/newview/skins/xui/de/panel_friends.xml | |||
@@ -1,5 +1,8 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <panel name="friends"> | 2 | <panel name="friends"> |
3 | <string name="Multiple"> | ||
4 | Mehrere Freunde... | ||
5 | </string> | ||
3 | <scroll_list name="friend_list" | 6 | <scroll_list name="friend_list" |
4 | tool_tip="Halten Sie die Tasten 'Umschalt' oder 'Strg' gedrückt, um durch Klicken mehrere Freunde auszuwählen."> | 7 | tool_tip="Halten Sie die Tasten 'Umschalt' oder 'Strg' gedrückt, um durch Klicken mehrere Freunde auszuwählen."> |
5 | <column name="icon_online_status" tool_tip="Online-Status" /> | 8 | <column name="icon_online_status" tool_tip="Online-Status" /> |
@@ -29,8 +32,7 @@ | |||
29 | tool_tip="Bilder, Gruppen und andere Informationen anzeigen" /> | 32 | tool_tip="Bilder, Gruppen und andere Informationen anzeigen" /> |
30 | <button label="Teleport" name="offer_teleport_btn" | 33 | <button label="Teleport" name="offer_teleport_btn" |
31 | tool_tip="Bieten Sie diesem Freund einen Teleport an Ihre Position an" /> | 34 | tool_tip="Bieten Sie diesem Freund einen Teleport an Ihre Position an" /> |
32 | <button label="Zahlen" name="pay_btn" | 35 | <button label="Zahlen" name="pay_btn" tool_tip="Diesem Freund Linden-Dollar (L$) geben" /> |
33 | tool_tip="Diesem Freund Linden-Dollar (L$) geben" /> | ||
34 | <button label="Entfernen" name="remove_btn" | 36 | <button label="Entfernen" name="remove_btn" |
35 | tool_tip="Diese Person von Ihrer Freundesliste entfernen" /> | 37 | tool_tip="Diese Person von Ihrer Freundesliste entfernen" /> |
36 | <button label="Hinzufügen" name="add_btn" | 38 | <button label="Hinzufügen" name="add_btn" |
diff --git a/linden/indra/newview/skins/xui/de/panel_group_general.xml b/linden/indra/newview/skins/xui/de/panel_group_general.xml index 8b35f5f..14cfae1 100644 --- a/linden/indra/newview/skins/xui/de/panel_group_general.xml +++ b/linden/indra/newview/skins/xui/de/panel_group_general.xml | |||
@@ -48,6 +48,7 @@ Bewegen Sie die Maus über die Optionen, um weitere Informationen anzuzeigen. | |||
48 | <text name="confirm_group_create_str"> | 48 | <text name="confirm_group_create_str"> |
49 | Die Gründung dieser Gruppe kostet 100 L$. | 49 | Die Gründung dieser Gruppe kostet 100 L$. |
50 | Sind Sie wirklich, WIRKLICH sicher, dass Sie 100 L$ für die Gründung dieser Gruppe ausgeben möchten? | 50 | Sind Sie wirklich, WIRKLICH sicher, dass Sie 100 L$ für die Gründung dieser Gruppe ausgeben möchten? |
51 | Falls in den nächsten 48 Stunden niemand sonst dieser Gruppe beitritt, wird sie aufgelöst und der Name der Gruppe wird nicht mehr verfügbar sein. | ||
51 | </text> | 52 | </text> |
52 | <text name="text_group_preferences"> | 53 | <text name="text_group_preferences"> |
53 | Gruppeneinstellungen | 54 | Gruppeneinstellungen |
diff --git a/linden/indra/newview/skins/xui/de/panel_group_land_money.xml b/linden/indra/newview/skins/xui/de/panel_group_land_money.xml index 6b624b3..cf11e3c 100644 --- a/linden/indra/newview/skins/xui/de/panel_group_land_money.xml +++ b/linden/indra/newview/skins/xui/de/panel_group_land_money.xml | |||
@@ -14,6 +14,9 @@ enthalten Informationen über die Gruppenfinanzen. | |||
14 | <text name="cant_view_group_accounting_text"> | 14 | <text name="cant_view_group_accounting_text"> |
15 | Sie sind nicht berechtigt, die Finanzinformationen der Gruppe anzuzeigen. | 15 | Sie sind nicht berechtigt, die Finanzinformationen der Gruppe anzuzeigen. |
16 | </text> | 16 | </text> |
17 | <string name="loading_txt"> | ||
18 | Wird geladen... | ||
19 | </string> | ||
17 | <text name="group_land_heading"> | 20 | <text name="group_land_heading"> |
18 | Land in Gruppenbesitz | 21 | Land in Gruppenbesitz |
19 | </text> | 22 | </text> |
diff --git a/linden/indra/newview/skins/xui/de/panel_group_roles.xml b/linden/indra/newview/skins/xui/de/panel_group_roles.xml index f70e65d..9a478f1 100644 --- a/linden/indra/newview/skins/xui/de/panel_group_roles.xml +++ b/linden/indra/newview/skins/xui/de/panel_group_roles.xml | |||
@@ -57,9 +57,9 @@ Mitglieder diese Fähigkeit haben. | |||
57 | <button label="Neue Person einladen..." name="member_invite" /> | 57 | <button label="Neue Person einladen..." name="member_invite" /> |
58 | <button label="Aus Gruppe werfen" name="member_eject" /> | 58 | <button label="Aus Gruppe werfen" name="member_eject" /> |
59 | <text name="help_text"> | 59 | <text name="help_text"> |
60 | Sie können Mitgliedern Rollen zuweisen und entziehen. | 60 | Sie können Mitgliedern Rollen zuweisen und entziehen. |
61 | Drücken Sie die Strg-Taste und klicken Sie auf Namen, | 61 | Drücken Sie die Strg-Taste und klicken Sie auf Namen, |
62 | um mehrere Mitglieder auszuwählen. | 62 | um mehrere Mitglieder auszuwählen. |
63 | </text> | 63 | </text> |
64 | </panel> | 64 | </panel> |
65 | <panel label="Rollen" name="roles_sub_tab"> | 65 | <panel label="Rollen" name="roles_sub_tab"> |
@@ -78,6 +78,9 @@ Fähigkeiten. Mitglieder können mehrere | |||
78 | Rollen innehaben. Eine Gruppe kann bis zu 10 Rollen | 78 | Rollen innehaben. Eine Gruppe kann bis zu 10 Rollen |
79 | definieren, darunter 'Jeder' und 'Eigentümer'. | 79 | definieren, darunter 'Jeder' und 'Eigentümer'. |
80 | </text> | 80 | </text> |
81 | <string name="cant_delete_role"> | ||
82 | Die Rollen 'Jeder' und 'Eigentümer' können nicht gelöscht werden. | ||
83 | </string> | ||
81 | </panel> | 84 | </panel> |
82 | <panel label="Fähigkeiten" name="actions_sub_tab"> | 85 | <panel label="Fähigkeiten" name="actions_sub_tab"> |
83 | <button label="Suchen" name="search_button" /> | 86 | <button label="Suchen" name="search_button" /> |
diff --git a/linden/indra/newview/skins/xui/de/panel_media_controls.xml b/linden/indra/newview/skins/xui/de/panel_media_controls.xml index 9650a6a..748e291 100644 --- a/linden/indra/newview/skins/xui/de/panel_media_controls.xml +++ b/linden/indra/newview/skins/xui/de/panel_media_controls.xml | |||
@@ -1,8 +1,38 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <panel name="media_controls"> | 2 | <panel name="media_controls"> |
3 | <icon name="music_icon" tool_tip="Streaming-Musik abspielen/unterbrechen" /> | ||
3 | <button name="music_play" tool_tip="Streaming-Musik spielen/unterbrechen" /> | 4 | <button name="music_play" tool_tip="Streaming-Musik spielen/unterbrechen" /> |
4 | <button name="media_play" tool_tip="Streaming-Video pausieren/wiedergeben" /> | 5 | <button name="music_pause" tool_tip="Streaming-Musik unterbrechen" /> |
6 | <button name="music_stop" tool_tip="Streaming-Musik beenden" /> | ||
7 | <icon name="media_icon" tool_tip="Streaming-Musik abspielen/unterbrechen" /> | ||
8 | <button name="media_play" tool_tip="Streaming-Musik abspielen/unterbrechen" /> | ||
9 | <button name="media_pause" tool_tip="Streaming-Medien unterbrechen" /> | ||
10 | <button name="media_stop" tool_tip="Streaming-Medien beenden" /> | ||
5 | <volume_slider name="volume_slider" tool_tip="Master-Lautstärke" /> | 11 | <volume_slider name="volume_slider" tool_tip="Master-Lautstärke" /> |
6 | <button name="mute_master" tool_tip="Master-Stummschaltung" /> | 12 | <button name="mute_master" tool_tip="Master-Stummschaltung" /> |
7 | <button name="expand" tool_tip="Lautstärke einzeln regeln" /> | 13 | <button name="expand" tool_tip="Lautstärke einzeln regeln" /> |
14 | <string name="play_label"> | ||
15 | Wiedergeben | ||
16 | </string> | ||
17 | <string name="stop_label"> | ||
18 | Stopp | ||
19 | </string> | ||
20 | <string name="pause_label"> | ||
21 | Pause | ||
22 | </string> | ||
23 | <string name="default_tooltip_label"> | ||
24 | Keine Medien angegeben | ||
25 | </string> | ||
26 | <string name="media_hidden_label"> | ||
27 | (URL von Parzelleneigentümer versteckt) | ||
28 | </string> | ||
29 | <string name="media_icon_tooltip_web"> | ||
30 | An diesem Ort werden Inhalte aus dem World Wide Web wiedergegeben. Klicken Sie auf 'Wiedergeben', um Webinhalte wiederzugeben. | ||
31 | </string> | ||
32 | <string name="media_icon_tooltip_movie"> | ||
33 | An diesem Ort werden Videoinhalte wiedergegeben. Klicken Sie auf 'Wiedergeben', um das Video abzuspielen. | ||
34 | </string> | ||
35 | <string name="media_play_tooltip"> | ||
36 | Webinhalt an diesem Ort anzeigen. | ||
37 | </string> | ||
8 | </panel> | 38 | </panel> |
diff --git a/linden/indra/newview/skins/xui/de/panel_media_remote.xml b/linden/indra/newview/skins/xui/de/panel_media_remote.xml index c3ad81a..e92e475 100644 --- a/linden/indra/newview/skins/xui/de/panel_media_remote.xml +++ b/linden/indra/newview/skins/xui/de/panel_media_remote.xml | |||
@@ -1,15 +1,3 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <panel name="music_remote"> | 2 | <panel name="media_remote"> |
3 | <text type="string" length="6" name="text"> | ||
4 | Filme | ||
5 | </text> | ||
6 | <volume_slider name="volume_slider" tool_tip="Ändern Sie die Lautstärke mit dem Regler" /> | ||
7 | <button label="" label_selected="" name="stop_btn" tool_tip="Medienwiedergabe anhalten" /> | ||
8 | <button label="" label_selected="" name="play_btn" | ||
9 | tool_tip="Gibt den Medienstream wieder" /> | ||
10 | <button label="" label_selected="" name="pause_btn" | ||
11 | tool_tip="Pausiert den Medienstream" /> | ||
12 | <button name="media_stop" tool_tip="Medienwiedergabe anhalten" /> | ||
13 | <button name="media_play" tool_tip="Gibt den Medienstream wieder" /> | ||
14 | <button name="media_pause" tool_tip="Pausiert den Medienstream" /> | ||
15 | </panel> | 3 | </panel> |
diff --git a/linden/indra/newview/skins/xui/de/panel_preferences_audio.xml b/linden/indra/newview/skins/xui/de/panel_preferences_audio.xml index cb50a46..381cb8f 100644 --- a/linden/indra/newview/skins/xui/de/panel_preferences_audio.xml +++ b/linden/indra/newview/skins/xui/de/panel_preferences_audio.xml | |||
@@ -4,14 +4,22 @@ | |||
4 | Lautstärke: | 4 | Lautstärke: |
5 | </text> | 5 | </text> |
6 | <check_box label="Audio stummschalten" name="disable audio" /> | 6 | <check_box label="Audio stummschalten" name="disable audio" /> |
7 | <text name="streaming_prefs_text"> | ||
8 | Streaming-Einstellungen: | ||
9 | </text> | ||
10 | <text name="audio_prefs_text"> | ||
11 | Audio-Einstellungen: | ||
12 | </text> | ||
7 | <panel label="Lautstärke" name="Volume Panel" /> | 13 | <panel label="Lautstärke" name="Volume Panel" /> |
14 | <check_box label="Medien automatisch wiedergeben" name="auto_streaming_video" /> | ||
8 | <check_box label="Audio stummschalten, wenn Fenster minimiert ist" | 15 | <check_box label="Audio stummschalten, wenn Fenster minimiert ist" |
9 | name="mute_when_minimized" /> | 16 | name="mute_when_minimized" /> |
10 | <text type="string" length="1" name="streaming_text"> | 17 | <text type="string" length="1" name="streaming_text"> |
11 | Streaming: | 18 | Streaming: |
12 | </text> | 19 | </text> |
13 | <check_box label="Streaming-Musik abspielen, falls verfügbar" name="streaming_music" /> | 20 | <check_box label="Streaming-Musik abspielen, falls verfügbar" name="streaming_music" /> |
14 | <check_box label="Streaming-Video abspielen, falls verfügbar" name="streaming_video" /> | 21 | <check_box label="Streaming-Musik abspielen, falls verfügbar (belegt mehr Bandbreite)" |
22 | name="streaming_video" /> | ||
15 | <text type="string" length="1" name="system_volume_text"> | 23 | <text type="string" length="1" name="system_volume_text"> |
16 | Soundeffekte: | 24 | Soundeffekte: |
17 | </text> | 25 | </text> |
diff --git a/linden/indra/newview/skins/xui/de/panel_preferences_general.xml b/linden/indra/newview/skins/xui/de/panel_preferences_general.xml index 8433c81..635f43e 100644 --- a/linden/indra/newview/skins/xui/de/panel_preferences_general.xml +++ b/linden/indra/newview/skins/xui/de/panel_preferences_general.xml | |||
@@ -27,6 +27,10 @@ | |||
27 | <check_box label="Kleine Avatarnamen" name="small_avatar_names_checkbox" /> | 27 | <check_box label="Kleine Avatarnamen" name="small_avatar_names_checkbox" /> |
28 | <color_swatch label="" name="effect_color_swatch" | 28 | <color_swatch label="" name="effect_color_swatch" |
29 | tool_tip="Klicken Sie hier, um die Farbauswahl zu öffnen" /> | 29 | tool_tip="Klicken Sie hier, um die Farbauswahl zu öffnen" /> |
30 | <text name="UI Size:"> | ||
31 | UI-Größe: | ||
32 | </text> | ||
33 | <check_box label="Auflösungsunabhängigen Maßstab verwenden" name="ui_auto_scale" /> | ||
30 | <spinner label="Timeout für Abwesenheit:" name="afk_timeout_spinner" /> | 34 | <spinner label="Timeout für Abwesenheit:" name="afk_timeout_spinner" /> |
31 | <check_box label="Online-Freundbenachrichtigungen anzeigen" | 35 | <check_box label="Online-Freundbenachrichtigungen anzeigen" |
32 | name="friends_online_notify_checkbox" /> | 36 | name="friends_online_notify_checkbox" /> |
@@ -34,6 +38,8 @@ | |||
34 | <check_box label="L$ Eingänge und Ausgaben melden" name="notify_money_change_checkbox" /> | 38 | <check_box label="L$ Eingänge und Ausgaben melden" name="notify_money_change_checkbox" /> |
35 | <check_box label="Standard-Farbauswahl verwenden" name="use_system_color_picker_checkbox" | 39 | <check_box label="Standard-Farbauswahl verwenden" name="use_system_color_picker_checkbox" |
36 | tool_tip="Standard-Farbauswahl des Systems anstelle des Second Life-eigenen verwenden." /> | 40 | tool_tip="Standard-Farbauswahl des Systems anstelle des Second Life-eigenen verwenden." /> |
41 | <check_box label="Suchleiste in Menüleiste anzeigen" name="show_search_panel" | ||
42 | tool_tip="Die eingebettete Suchleiste anzeigen." /> | ||
37 | <text type="string" length="1" name="start_location_textbox"> | 43 | <text type="string" length="1" name="start_location_textbox"> |
38 | Startposition: | 44 | Startposition: |
39 | </text> | 45 | </text> |
diff --git a/linden/indra/newview/skins/xui/de/panel_preferences_graphics1.xml b/linden/indra/newview/skins/xui/de/panel_preferences_graphics1.xml index 4d11706..ee401b0 100644 --- a/linden/indra/newview/skins/xui/de/panel_preferences_graphics1.xml +++ b/linden/indra/newview/skins/xui/de/panel_preferences_graphics1.xml | |||
@@ -3,7 +3,8 @@ | |||
3 | <text type="string" length="1" name="text"> | 3 | <text type="string" length="1" name="text"> |
4 | Anzeigeauflösung: | 4 | Anzeigeauflösung: |
5 | </text> | 5 | </text> |
6 | <check_box label="In Fenster ausführen" name="windowed mode" /> | 6 | <button label=" ?" name="GraphicsPreferencesHelpButton" /> |
7 | <check_box label="Second Life in einem Fenster ausführen" name="windowed mode" /> | ||
7 | <text_editor name="voice_chat_description"> | 8 | <text_editor name="voice_chat_description"> |
8 | Wenn deaktiviert Anzeige bei Anmeldung in Vollbild. | 9 | Wenn deaktiviert Anzeige bei Anmeldung in Vollbild. |
9 | </text_editor> | 10 | </text_editor> |
@@ -13,18 +14,30 @@ | |||
13 | <text type="string" length="1" name="(width / height)"> | 14 | <text type="string" length="1" name="(width / height)"> |
14 | (Breite/Höhe) | 15 | (Breite/Höhe) |
15 | </text> | 16 | </text> |
16 | <combo_box name="aspect_ratio"> | 17 | <text_editor name="FullScreenInfo"> |
18 | Wenn deaktiviert, schaltet die Anzeige bei Anmeldung auf Vollbild um. | ||
19 | </text_editor> | ||
20 | <text name="DisplayResLabel"> | ||
21 | Anzeigeauflösung: | ||
22 | </text> | ||
23 | <text name="AspectRatioLabel1" tool_tip="Breite/Höhe"> | ||
24 | Aspektverhältnis: | ||
25 | </text> | ||
26 | <combo_box name="aspect_ratio" tool_tip="Breite/Höhe"> | ||
17 | <combo_item type="string" length="1" name="4:3(StandardCRT)"> | 27 | <combo_item type="string" length="1" name="4:3(StandardCRT)"> |
18 | 4:3 (Standard-CRT) | 28 | 4:3 (Standard-CRT) |
19 | </combo_item> | 29 | </combo_item> |
20 | <combo_item type="string" length="1" name="5:4(1280x1024LCD)"> | 30 | <combo_item type="string" length="1" name="5:4(1280x1024LCD)"> |
21 | 5:4 (1280x1024 LCD) | 31 | 5:4 (1280x1024 LCD) |
22 | </combo_item> | 32 | </combo_item> |
33 | <combo_item name="8:5(Widescreen)"> | ||
34 | 8:5 (Widescreen) | ||
35 | </combo_item> | ||
23 | <combo_item type="string" length="1" name="16:9(Widescreen)"> | 36 | <combo_item type="string" length="1" name="16:9(Widescreen)"> |
24 | 16:9 (Widescreen) | 37 | 16:9 (Widescreen) |
25 | </combo_item> | 38 | </combo_item> |
26 | </combo_box> | 39 | </combo_box> |
27 | <check_box label="Automatisch erkennen" name="aspect_auto_detect" /> | 40 | <check_box label="Aspektverhältnis automatisch erkennen" name="aspect_auto_detect" /> |
28 | <text type="string" length="1" name="UI Size:"> | 41 | <text type="string" length="1" name="UI Size:"> |
29 | UI-Größe: | 42 | UI-Größe: |
30 | </text> | 43 | </text> |
@@ -37,6 +50,129 @@ | |||
37 | <check_box label="Auflösungsunabhängigen Maßstab verwenden" name="ui_auto_scale" /> | 50 | <check_box label="Auflösungsunabhängigen Maßstab verwenden" name="ui_auto_scale" /> |
38 | <spinner label="Sichtweite:" name="draw_distance" /> | 51 | <spinner label="Sichtweite:" name="draw_distance" /> |
39 | <check_box label="Avatar in Mouselook anzeigen" name="avfp" /> | 52 | <check_box label="Avatar in Mouselook anzeigen" name="avfp" /> |
53 | <text name="HigherText"> | ||
54 | Qualität und | ||
55 | </text> | ||
56 | <text name="QualityText"> | ||
57 | Performance: | ||
58 | </text> | ||
59 | <text name="FasterText"> | ||
60 | Schneller | ||
61 | </text> | ||
62 | <text name="ShadersPrefText"> | ||
63 | Niedrig | ||
64 | </text> | ||
65 | <text name="ShadersPrefText2"> | ||
66 | Mittel | ||
67 | </text> | ||
68 | <text name="ShadersPrefText3"> | ||
69 | Hoch | ||
70 | </text> | ||
71 | <text name="ShadersPrefText4"> | ||
72 | Ultra | ||
73 | </text> | ||
74 | <text name="HigherText2"> | ||
75 | Höhere | ||
76 | </text> | ||
77 | <text name="QualityText2"> | ||
78 | Qualität | ||
79 | </text> | ||
80 | <check_box label="Benutzerdefiniert" name="CustomSettings" /> | ||
81 | <text name="ShadersText"> | ||
82 | Shader: | ||
83 | </text> | ||
84 | <check_box label="Bumpmapping und Glanz" name="BumpShiny" /> | ||
85 | <check_box label="Einfache Shader" name="BasicShaders" | ||
86 | tool_tip="Deaktivieren Sie diese Option, wenn der Grafikkartentreiber Abstürze verursacht." /> | ||
87 | <check_box label="Atmosphären-Shader" name="WindLightUseAtmosShaders" /> | ||
88 | <check_box label="Wasserreflexionen" name="Reflections" /> | ||
89 | <text name="ReflectionDetailText"> | ||
90 | Spiegelung: | ||
91 | </text> | ||
92 | <radio_group name="ReflectionDetailRadio"> | ||
93 | <radio_item name="0"> | ||
94 | Terrain und Bäume | ||
95 | </radio_item> | ||
96 | <radio_item name="1"> | ||
97 | Alle statischen Objekte | ||
98 | </radio_item> | ||
99 | <radio_item name="2"> | ||
100 | Alle Avatare und Objekte | ||
101 | </radio_item> | ||
102 | <radio_item name="3"> | ||
103 | Alles | ||
104 | </radio_item> | ||
105 | </radio_group> | ||
106 | <text name="AvatarRenderingText"> | ||
107 | Avatar-Darstellung: | ||
108 | </text> | ||
109 | <check_box label="Ersatzavatare" name="AvatarImpostors" /> | ||
110 | <check_box label="Hardware-Hautberechnung" name="AvatarVertexProgram" /> | ||
111 | <check_box label="Avatar-Kleidung" name="AvatarCloth" /> | ||
112 | <text name="DrawDistanceMeterText1"> | ||
113 | m | ||
114 | </text> | ||
115 | <text name="DrawDistanceMeterText2"> | ||
116 | m | ||
117 | </text> | ||
118 | <slider label="Sichtweite:" name="DrawDistance" /> | ||
119 | <slider label="Max. Partikelzahl:" name="MaxParticleCount" /> | ||
120 | <slider label="Post-Processing-Qualität:" name="RenderPostProcess" /> | ||
121 | <text name="MeshDetailText"> | ||
122 | Gitterdetails: | ||
123 | </text> | ||
124 | <slider label=" Objekte:" name="ObjectMeshDetail" /> | ||
125 | <slider label=" Flexiprimitiva:" name="FlexibleMeshDetail" /> | ||
126 | <slider label=" Bäume:" name="TreeMeshDetail" /> | ||
127 | <slider label=" Avatare:" name="AvatarMeshDetail" /> | ||
128 | <slider label=" Terrain:" name="TerrainMeshDetail" /> | ||
129 | <slider label=" Himmel:" name="SkyMeshDetail" /> | ||
130 | <text name="PostProcessText"> | ||
131 | Niedrig | ||
132 | </text> | ||
133 | <text name="ObjectMeshDetailText"> | ||
134 | Niedrig | ||
135 | </text> | ||
136 | <text name="FlexibleMeshDetailText"> | ||
137 | Niedrig | ||
138 | </text> | ||
139 | <text name="TreeMeshDetailText"> | ||
140 | Niedrig | ||
141 | </text> | ||
142 | <text name="AvatarMeshDetailText"> | ||
143 | Niedrig | ||
144 | </text> | ||
145 | <text name="TerrainMeshDetailText"> | ||
146 | Niedrig | ||
147 | </text> | ||
148 | <text name="SkyMeshDetailText"> | ||
149 | Niedrig | ||
150 | </text> | ||
151 | <text name="LightingDetailText"> | ||
152 | Beleuchtungsdetails: | ||
153 | </text> | ||
154 | <radio_group name="LightingDetailRadio"> | ||
155 | <radio_item name="SunMoon"> | ||
156 | Nur Sonne und Mond | ||
157 | </radio_item> | ||
158 | <radio_item name="LocalLights"> | ||
159 | Lokale Lichtquellen | ||
160 | </radio_item> | ||
161 | </radio_group> | ||
162 | <text name="TerrainDetailText"> | ||
163 | Terraindetails: | ||
164 | </text> | ||
165 | <radio_group name="TerrainDetailRadio"> | ||
166 | <radio_item name="0"> | ||
167 | Niedrig | ||
168 | </radio_item> | ||
169 | <radio_item name="2"> | ||
170 | Hoch | ||
171 | </radio_item> | ||
172 | </radio_group> | ||
173 | <button label="Empfohlene Einstellungen" name="Defaults" /> | ||
174 | <button label="Hardware-Optionen" label_selected="Hardware-Optionen" | ||
175 | name="GraphicsHardwareButton" /> | ||
40 | <text name="resolution_format"> | 176 | <text name="resolution_format"> |
41 | [RES_X] x [RES_Y] | 177 | [RES_X] x [RES_Y] |
42 | </text> | 178 | </text> |
diff --git a/linden/indra/newview/skins/xui/de/panel_preferences_im.xml b/linden/indra/newview/skins/xui/de/panel_preferences_im.xml index 3b681b1..58f874e 100644 --- a/linden/indra/newview/skins/xui/de/panel_preferences_im.xml +++ b/linden/indra/newview/skins/xui/de/panel_preferences_im.xml | |||
@@ -20,6 +20,9 @@ | |||
20 | <text type="string" length="1" name="text_box3"> | 20 | <text type="string" length="1" name="text_box3"> |
21 | Protokolloptionen: | 21 | Protokolloptionen: |
22 | </text> | 22 | </text> |
23 | <text name="text_box4"> | ||
24 | Protokolloptionen: | ||
25 | </text> | ||
23 | <check_box label="Instant Messages protokollieren" name="log_instant_messages" /> | 26 | <check_box label="Instant Messages protokollieren" name="log_instant_messages" /> |
24 | <check_box label="Zeitstempel in IM-Verlauf anzeigen" | 27 | <check_box label="Zeitstempel in IM-Verlauf anzeigen" |
25 | name="log_instant_messages_timestamp" /> | 28 | name="log_instant_messages_timestamp" /> |
diff --git a/linden/indra/newview/skins/xui/de/panel_preferences_input.xml b/linden/indra/newview/skins/xui/de/panel_preferences_input.xml index 50d037a..3097a34 100644 --- a/linden/indra/newview/skins/xui/de/panel_preferences_input.xml +++ b/linden/indra/newview/skins/xui/de/panel_preferences_input.xml | |||
@@ -23,4 +23,8 @@ | |||
23 | <check_box label="Automatischer Kameraschwenk im Aussehen-Modus" | 23 | <check_box label="Automatischer Kameraschwenk im Aussehen-Modus" |
24 | name="appearance camera movement" | 24 | name="appearance camera movement" |
25 | tool_tip="Automatische Kamerapositionierung im Bearbeitenmodus verwenden" /> | 25 | tool_tip="Automatische Kamerapositionierung im Bearbeitenmodus verwenden" /> |
26 | <text name="text2"> | ||
27 | Avatar-Anzeigeoptionen: | ||
28 | </text> | ||
29 | <check_box label="Avatar in Mouselook anzeigen" name="avfp" /> | ||
26 | </panel> | 30 | </panel> |
diff --git a/linden/indra/newview/skins/xui/de/panel_preferences_voice.xml b/linden/indra/newview/skins/xui/de/panel_preferences_voice.xml index 8fa2097..5e26118 100644 --- a/linden/indra/newview/skins/xui/de/panel_preferences_voice.xml +++ b/linden/indra/newview/skins/xui/de/panel_preferences_voice.xml | |||
@@ -32,6 +32,9 @@ | |||
32 | </text> | 32 | </text> |
33 | <check_box label="Anrufe nur von Personen auf meiner Freundesliste annehmen" | 33 | <check_box label="Anrufe nur von Personen auf meiner Freundesliste annehmen" |
34 | name="voice_call_friends_only_check" /> | 34 | name="voice_call_friends_only_check" /> |
35 | <text_editor name="device_settings_text"> | ||
36 | HINWEIS: Beim Öffnen der Geräte-Einstellungen oder der Voice-Chat-Einrichtung werden Sie vorübergehend vom Voice-Chat getrennt. | ||
37 | </text_editor> | ||
35 | <button label="Geräte-Einstellungen" name="device_settings_btn" /> | 38 | <button label="Geräte-Einstellungen" name="device_settings_btn" /> |
36 | <button label="Voice-Chat-Einrichtung" name="launch_voice_wizard_button" /> | 39 | <button label="Voice-Chat-Einrichtung" name="launch_voice_wizard_button" /> |
37 | </panel> | 40 | </panel> |
diff --git a/linden/indra/newview/skins/xui/de/panel_preferences_web.xml b/linden/indra/newview/skins/xui/de/panel_preferences_web.xml index fbb7359..b746097 100644 --- a/linden/indra/newview/skins/xui/de/panel_preferences_web.xml +++ b/linden/indra/newview/skins/xui/de/panel_preferences_web.xml | |||
@@ -1,5 +1,14 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <panel label="Web" name="web"> | 2 | <panel label="Web" name="web"> |
3 | <radio_group name="use_external_browser" | ||
4 | tool_tip="Externen Browser für Hilfe, Weblinks usw. verwenden. Im Vollbildmodus nicht empfohlen."> | ||
5 | <radio_item name="external"> | ||
6 | Externen Browser verwenden (Firefox, Safari, Internet Explorer) | ||
7 | </radio_item> | ||
8 | <radio_item name="internal"> | ||
9 | Integrierten Browser verwenden | ||
10 | </radio_item> | ||
11 | </radio_group> | ||
3 | <text name="cache_size_label_l"> | 12 | <text name="cache_size_label_l"> |
4 | Browser-Cache: | 13 | Browser-Cache: |
5 | </text> | 14 | </text> |
diff --git a/linden/indra/newview/skins/xui/de/panel_region_estate.xml b/linden/indra/newview/skins/xui/de/panel_region_estate.xml index 5839cf5..dec1bb3 100644 --- a/linden/indra/newview/skins/xui/de/panel_region_estate.xml +++ b/linden/indra/newview/skins/xui/de/panel_region_estate.xml | |||
@@ -24,6 +24,7 @@ | |||
24 | tool_tip="Einwohner ohne Altersprüfung verbannen. Weitere Informationen finden Sie auf support.secondlife.com." /> | 24 | tool_tip="Einwohner ohne Altersprüfung verbannen. Weitere Informationen finden Sie auf support.secondlife.com." /> |
25 | <check_box label="Voice-Chat erlauben" name="voice_chat_check" /> | 25 | <check_box label="Voice-Chat erlauben" name="voice_chat_check" /> |
26 | <button label="?" name="voice_chat_help" /> | 26 | <button label="?" name="voice_chat_help" /> |
27 | <button label=" ?" name="abuse_email_address_help" /> | ||
27 | <button label="?" name="estate_manager_help" /> | 28 | <button label="?" name="estate_manager_help" /> |
28 | <button label="Hinzufügen..." name="add_estate_manager_btn" /> | 29 | <button label="Hinzufügen..." name="add_estate_manager_btn" /> |
29 | <button label="Entfernen..." name="remove_estate_manager_btn" /> | 30 | <button label="Entfernen..." name="remove_estate_manager_btn" /> |
diff --git a/linden/indra/newview/skins/xui/de/panel_voice_enable.xml b/linden/indra/newview/skins/xui/de/panel_voice_enable.xml index 38fbb5b..ab10218 100644 --- a/linden/indra/newview/skins/xui/de/panel_voice_enable.xml +++ b/linden/indra/newview/skins/xui/de/panel_voice_enable.xml | |||
@@ -4,14 +4,14 @@ | |||
4 | Willkommen beim Second Life Voice-Chat! Mit dem Voice-Chat können Sie sich mit anderen Einwohnern unterhalten. Dieser Assistent führt Sie durch die Einrichtung von Voice-Chat. Für den Voice-Chat benötigen Sie Lautsprecher und ein Mikrofon bzw. Kopfhörer mit einem eingebauten Mikrofon. | 4 | Willkommen beim Second Life Voice-Chat! Mit dem Voice-Chat können Sie sich mit anderen Einwohnern unterhalten. Dieser Assistent führt Sie durch die Einrichtung von Voice-Chat. Für den Voice-Chat benötigen Sie Lautsprecher und ein Mikrofon bzw. Kopfhörer mit einem eingebauten Mikrofon. |
5 | </text_editor> | 5 | </text_editor> |
6 | <text_editor name="voice_intro_text2"> | 6 | <text_editor name="voice_intro_text2"> |
7 | Möchten Sie Voice-Chat jetzt aktivieren? | 7 | Voice-Chat ist standardmäßig aktiviert. Möchten Sie Voice-Chat weiterverwenden? |
8 | </text_editor> | 8 | </text_editor> |
9 | <radio_group name="voice_enable"> | 9 | <radio_group name="voice_enable"> |
10 | <radio_item name="1"> | 10 | <radio_item name="1"> |
11 | Ja, Voice-Chat jetzt aktivieren. | 11 | Ja, Voice-Chat weiterhin verwenden. |
12 | </radio_item> | 12 | </radio_item> |
13 | <radio_item name="0"> | 13 | <radio_item name="0"> |
14 | Nein, Voice-Chat noch nicht aktivieren. | 14 | Nein, Voice-Chat deaktivieren. |
15 | </radio_item> | 15 | </radio_item> |
16 | </radio_group> | 16 | </radio_group> |
17 | <text_editor name="voice_intro_text3"> | 17 | <text_editor name="voice_intro_text3"> |
diff --git a/linden/indra/newview/skins/xui/de/panel_voice_options.xml b/linden/indra/newview/skins/xui/de/panel_voice_options.xml index ebbdcf6..f9cfba7 100644 --- a/linden/indra/newview/skins/xui/de/panel_voice_options.xml +++ b/linden/indra/newview/skins/xui/de/panel_voice_options.xml | |||
@@ -11,6 +11,7 @@ | |||
11 | Voice-Chat von Avatarposition aus hören. | 11 | Voice-Chat von Avatarposition aus hören. |
12 | </radio_item> | 12 | </radio_item> |
13 | </radio_group> | 13 | </radio_group> |
14 | <check_box label="Voice-Anrufe nur meinen Freunden erlauben" name="friends_only_check" /> | ||
14 | <check_box label="Viewer im 'Zum-Sprechen-drücken'-Modus starten" | 15 | <check_box label="Viewer im 'Zum-Sprechen-drücken'-Modus starten" |
15 | name="push_to_talk_check" /> | 16 | name="push_to_talk_check" /> |
16 | <check_box label="'Zum-Sprechen-drücken' im Umschaltmodus verwenden" | 17 | <check_box label="'Zum-Sprechen-drücken' im Umschaltmodus verwenden" |
diff --git a/linden/indra/newview/skins/xui/en-us/alerts.xml b/linden/indra/newview/skins/xui/en-us/alerts.xml index 69491ef..a39c213 100644 --- a/linden/indra/newview/skins/xui/en-us/alerts.xml +++ b/linden/indra/newview/skins/xui/en-us/alerts.xml | |||
@@ -1765,10 +1765,11 @@ Try selecting a single parcel. | |||
1765 | <alert modal="true" name="ParcelCanPlayMusic"> | 1765 | <alert modal="true" name="ParcelCanPlayMusic"> |
1766 | <message name="message"> | 1766 | <message name="message"> |
1767 | This location can play streaming music. | 1767 | This location can play streaming music. |
1768 | Music requires a 768 kbps or faster | 1768 | Music requires a fast Internet connection. |
1769 | Internet connection. | ||
1770 | 1769 | ||
1771 | Play music when available? | 1770 | Play music when available? |
1771 | (You can change this option later under | ||
1772 | Preferences > Audio & Video.) | ||
1772 | </message> | 1773 | </message> |
1773 | <option name="PlayMusic"> | 1774 | <option name="PlayMusic"> |
1774 | Play Music | 1775 | Play Music |
@@ -1779,11 +1780,10 @@ Play music when available? | |||
1779 | </alert> | 1780 | </alert> |
1780 | <alert modal="true" name="ParcelCanPlayMedia"> | 1781 | <alert modal="true" name="ParcelCanPlayMedia"> |
1781 | <message name="message"> | 1782 | <message name="message"> |
1782 | This location can play streaming video. | 1783 | This location can play streaming media. |
1783 | Streaming video requires a 768 kbps or | 1784 | Streaming media requires a fast Internet connection. |
1784 | faster Internet connection. | ||
1785 | 1785 | ||
1786 | Play streaming video when available? | 1786 | Play streaming media when available? |
1787 | (You can change this option later under | 1787 | (You can change this option later under |
1788 | Preferences > Audio & Video.) | 1788 | Preferences > Audio & Video.) |
1789 | </message> | 1789 | </message> |
diff --git a/linden/indra/newview/skins/xui/en-us/floater_about_land.xml b/linden/indra/newview/skins/xui/en-us/floater_about_land.xml index 13a70eb..a0cb0dd 100644 --- a/linden/indra/newview/skins/xui/en-us/floater_about_land.xml +++ b/linden/indra/newview/skins/xui/en-us/floater_about_land.xml | |||
@@ -859,14 +859,14 @@ Options: | |||
859 | </text> | 859 | </text> |
860 | <name_list allow_calling_card_drop="false" background_visible="true" bottom="-320" | 860 | <name_list allow_calling_card_drop="false" background_visible="true" bottom="-320" |
861 | column_padding="0" draw_border="true" draw_heading="false" enabled="true" | 861 | column_padding="0" draw_border="true" draw_heading="false" enabled="true" |
862 | follows="left|top" heading_font="SansSerifSmall" heading_height="14" | 862 | follows="left|top|bottom" heading_font="SansSerifSmall" heading_height="14" |
863 | height="100" left="20" mouse_opaque="true" multi_select="true" | 863 | height="100" left="20" mouse_opaque="true" multi_select="true" |
864 | name="AccessList" tool_tip="([LISTED] listed, [MAX] max)" width="195" /> | 864 | name="AccessList" tool_tip="([LISTED] listed, [MAX] max)" width="195" /> |
865 | <button bottom_delta="-20" enabled="true" follows="left|top" font="SansSerifSmall" | 865 | <button bottom_delta="-20" enabled="true" follows="left|bottom" font="SansSerifSmall" |
866 | halign="center" height="16" label="Add..." label_selected="Add..." | 866 | halign="center" height="16" label="Add..." label_selected="Add..." |
867 | left_delta="5" mouse_opaque="true" name="add_allowed" scale_image="true" | 867 | left_delta="5" mouse_opaque="true" name="add_allowed" scale_image="true" |
868 | width="80" /> | 868 | width="80" /> |
869 | <button bottom_delta="0" enabled="true" follows="left|top" font="SansSerifSmall" | 869 | <button bottom_delta="0" enabled="true" follows="left|bottom" font="SansSerifSmall" |
870 | halign="center" height="16" label="Remove" label_selected="Remove" | 870 | halign="center" height="16" label="Remove" label_selected="Remove" |
871 | left_delta="100" mouse_opaque="true" name="remove_allowed" | 871 | left_delta="100" mouse_opaque="true" name="remove_allowed" |
872 | scale_image="true" width="80" /> | 872 | scale_image="true" width="80" /> |
diff --git a/linden/indra/newview/skins/xui/en-us/floater_buy_currency.xml b/linden/indra/newview/skins/xui/en-us/floater_buy_currency.xml index d5c4c96..e2e7fc7 100644 --- a/linden/indra/newview/skins/xui/en-us/floater_buy_currency.xml +++ b/linden/indra/newview/skins/xui/en-us/floater_buy_currency.xml | |||
@@ -48,6 +48,10 @@ | |||
48 | name="currency_est" text_color="white" width="180"> | 48 | name="currency_est" text_color="white" width="180"> |
49 | for approx. US$ [USD] | 49 | for approx. US$ [USD] |
50 | </text> | 50 | </text> |
51 | <text bottom_delta="0" follows="top|right" height="16" left_delta="5" | ||
52 | name="getting_data" text_color="white" width="180"> | ||
53 | Getting data... | ||
54 | </text> | ||
51 | <text bottom_delta="-32" follows="top|left" height="16" left="80" | 55 | <text bottom_delta="-32" follows="top|left" height="16" left="80" |
52 | name="balance_label" width="240"> | 56 | name="balance_label" width="240"> |
53 | You currently have | 57 | You currently have |
diff --git a/linden/indra/newview/skins/xui/en-us/floater_media_browser.xml b/linden/indra/newview/skins/xui/en-us/floater_media_browser.xml index e6b0d0f..1a793e8 100644 --- a/linden/indra/newview/skins/xui/en-us/floater_media_browser.xml +++ b/linden/indra/newview/skins/xui/en-us/floater_media_browser.xml | |||
@@ -2,8 +2,8 @@ | |||
2 | <floater can_close="true" can_drag_on_left="false" can_minimize="true" can_resize="true" | 2 | <floater can_close="true" can_drag_on_left="false" can_minimize="true" can_resize="true" |
3 | height="440" min_height="140" min_width="432" name="floater_about" | 3 | height="440" min_height="140" min_width="432" name="floater_about" |
4 | rect_control="FloaterMediaRect" title="Media Browser" width="535"> | 4 | rect_control="FloaterMediaRect" title="Media Browser" width="535"> |
5 | <layout_stack bottom="0" follows="left|right|top|bottom" left="10" top="-20" width="515"> | 5 | <layout_stack name="stack1" bottom="0" follows="left|right|top|bottom" left="10" top="-20" width="515"> |
6 | <layout_panel auto_resize="false" bottom="0" height="20" left="0" user_resize="false" | 6 | <layout_panel auto_resize="false" bottom="0" height="20" left="0" name="nav_controls" user_resize="false" |
7 | width="515"> | 7 | width="515"> |
8 | <button bottom="0" follows="left|top" height="20" label="Back" left="0" name="back" | 8 | <button bottom="0" follows="left|top" height="20" label="Back" left="0" name="back" |
9 | width="50" /> | 9 | width="50" /> |
@@ -21,7 +21,7 @@ | |||
21 | <button bottom="0" enabled="false" follows="left|top" height="20" | 21 | <button bottom="0" enabled="false" follows="left|top" height="20" |
22 | label="Send Current URL to Parcel" left="0" name="assign" width="200" /> | 22 | label="Send Current URL to Parcel" left="0" name="assign" width="200" /> |
23 | </layout_panel> | 23 | </layout_panel> |
24 | <layout_panel auto_resize="true" bottom="0" height="20" left="0" user_resize="false" | 24 | <layout_panel auto_resize="true" bottom="0" height="20" left="0" name="external_controls" user_resize="false" |
25 | width="515"> | 25 | width="515"> |
26 | <web_browser bottom="30" follows="left|right|top|bottom" left="0" name="browser" top="20" | 26 | <web_browser bottom="30" follows="left|right|top|bottom" left="0" name="browser" top="20" |
27 | width="515" /> | 27 | width="515" /> |
diff --git a/linden/indra/newview/skins/xui/en-us/floater_preview_notecard_keep_discard.xml b/linden/indra/newview/skins/xui/en-us/floater_preview_notecard_keep_discard.xml index 796ef20..a26f1c2 100644 --- a/linden/indra/newview/skins/xui/en-us/floater_preview_notecard_keep_discard.xml +++ b/linden/indra/newview/skins/xui/en-us/floater_preview_notecard_keep_discard.xml | |||
@@ -30,7 +30,6 @@ | |||
30 | handle_edit_keys_directly="false" height="19" left="93" max_length="127" | 30 | handle_edit_keys_directly="false" height="19" left="93" max_length="127" |
31 | mouse_opaque="true" name="desc" select_all_on_focus_received="false" | 31 | mouse_opaque="true" name="desc" select_all_on_focus_received="false" |
32 | select_on_focus="false" width="294" /> | 32 | select_on_focus="false" width="294" /> |
33 | <string name="no_object"> | 33 | <string name="no_object">Unable to find object containing this note.:</string> |
34 | Unable to find object containing this note.: | 34 | <string name="not_allowed">You are not allowed to view this note.</string> |
35 | </string> | ||
36 | </floater> | 35 | </floater> |
diff --git a/linden/indra/newview/skins/xui/ja/alerts.xml b/linden/indra/newview/skins/xui/ja/alerts.xml index 195717b..1923f2a 100644 --- a/linden/indra/newview/skins/xui/ja/alerts.xml +++ b/linden/indra/newview/skins/xui/ja/alerts.xml | |||
@@ -729,13 +729,59 @@ Studio exhibitのウェブ・ページで確認してください。 | |||
729 | キャンセル | 729 | キャンセル |
730 | </option> | 730 | </option> |
731 | </alert> | 731 | </alert> |
732 | <alert name="UnsupportedGLRequirements"> | ||
733 | <message name="message"> | ||
734 | Second Life の使用に必要なハードウェアの環境が満たされていないようです。 Second Life ではマルチテクスチャーに対応したOpenGLグラフィック・カードが必要です。 この場合、グラフィック・カードの最新ドライバがインストールされていること、およびオペレーティング・システムにサービス・パックと修正プログラムが適用されていることをご確認ください。 | ||
735 | |||
736 | 問題が解決されない場合には、次のサイトにアクセスしてください。 http://www.secondlife.com/support | ||
737 | </message> | ||
738 | </alert> | ||
739 | <alert name="UnsupportedHardware"> | ||
740 | <message name="message"> | ||
741 | 警告: あなたのシステムは Second Life を使用するために必要な必須動作環境の条件をを満たしていません。 Second Life をこのままご使用になると、不十分なパフォーマンスしか得られないおそれがあります。 また、サポート外のシステム構成でご使用の場合、テクニカルサポートをご利用いただくことができません。 | ||
742 | |||
743 | 必須動作環境の条件 | ||
744 | [_URL] にアクセスして、さらに詳しい情報をご覧になりますか? | ||
745 | </message> | ||
746 | <option name="Yes"> | ||
747 | はい | ||
748 | </option> | ||
749 | <option name="No"> | ||
750 | いいえ | ||
751 | </option> | ||
752 | </alert> | ||
753 | <alert name="UnsupportedGPU"> | ||
754 | <message name="message"> | ||
755 | - あなたのグラフィック・カードは必須動作環境の条件を満たしていません。 | ||
756 | </message> | ||
757 | </alert> | ||
758 | <alert name="UnsupportedCPU"> | ||
759 | <message name="message"> | ||
760 | - あなたの CPU の速度は必須動作環境の条件を満たしていません。 | ||
761 | </message> | ||
762 | </alert> | ||
763 | <alert name="UnsupportedCPUAmount"> | ||
764 | <message name="message"> | ||
765 | 796 | ||
766 | </message> | ||
767 | </alert> | ||
768 | <alert name="UnsupportedRAM"> | ||
769 | <message name="message"> | ||
770 | - あなたのシステム・メモリは必須動作環境の条件を満たしていません。 | ||
771 | </message> | ||
772 | </alert> | ||
773 | <alert name="UnsupportedRAMAmount"> | ||
774 | <message name="message"> | ||
775 | 510 | ||
776 | </message> | ||
777 | </alert> | ||
732 | <alert name="DisplaySettingsNoShaders"> | 778 | <alert name="DisplaySettingsNoShaders"> |
733 | <message name="message"> | 779 | <message name="message"> |
734 | [SECOND_LIFE] は、グラフィックドライバの初期化中にクラッシュしました。 | 780 | [SECOND_LIFE] は、グラフィックライバの初期化中にクラッシュしました。 |
735 | 一般的なドライバエラーを避るため、 (色合) は無化されます。 | 781 | 一般的なドライバエラーを回避るため、[品質]は[低]に設されます。 |
736 | これにより、いくつかのグラフィックャー無効になります。 | 782 | これにより、いくつかのグラフィック機は無効になります。 |
737 | グラフィックカード・ドライバのアップデートをお勧めします。 | 783 | グラフィックカード・ドライバのアップデートをお勧めします。 |
738 | 設定>グラフィック詳細設定直とができます。 | 784 | [品]は[環境定]>[グラフィック]ことができます。 |
739 | </message> | 785 | </message> |
740 | </alert> | 786 | </alert> |
741 | <alert name="ErrorEncodingSnapshot"> | 787 | <alert name="ErrorEncodingSnapshot"> |
@@ -1362,6 +1408,14 @@ www.secondlife.comに戻って、新規アカウントの作成を行います | |||
1362 | - この区画のパブリック・オブジェクト | 1408 | - この区画のパブリック・オブジェクト |
1363 | </message> | 1409 | </message> |
1364 | </alert> | 1410 | </alert> |
1411 | <alert name="HelpEstateAbuseEmailAddress" title="嫌がらせに関するメール先"> | ||
1412 | <message name="message"> | ||
1413 | これを有効なメールアドレスに設定すると、そのアドレスにこの不動産において行われた | ||
1414 | 嫌がらせの報告が送信されるようになります。 | ||
1415 | 設定を行わない場合(空白)、嫌がらせ報告は Linden Lab にのみ | ||
1416 | 送信されます。 | ||
1417 | </message> | ||
1418 | </alert> | ||
1365 | <alert name="HelpEstateVoiceChat" title="ボイスチャットを許可"> | 1419 | <alert name="HelpEstateVoiceChat" title="ボイスチャットを許可"> |
1366 | <message name="message"> | 1420 | <message name="message"> |
1367 | この不動産の区画は、住人が近所の人と対話できる | 1421 | この不動産の区画は、住人が近所の人と対話できる |
@@ -1390,6 +1444,20 @@ www.secondlife.comに戻って、新規アカウントの作成を行います | |||
1390 | キャンセル | 1444 | キャンセル |
1391 | </option> | 1445 | </option> |
1392 | </alert> | 1446 | </alert> |
1447 | <alert name="RetryFetchInventoryDescendents"> | ||
1448 | <message name="message"> | ||
1449 | 「持ち物」データの取得はサーバーのタイムアウトにより完了しませんでした。 再実行しますか? | ||
1450 | </message> | ||
1451 | <ignore name="ignore"> | ||
1452 | 「持ち物」データの後続要素の取得を再実行 | ||
1453 | </ignore> | ||
1454 | <option name="Retry"> | ||
1455 | 再実行 | ||
1456 | </option> | ||
1457 | <option name="Cancel"> | ||
1458 | キャンセル | ||
1459 | </option> | ||
1460 | </alert> | ||
1393 | <alert name="ConfirmQuit"> | 1461 | <alert name="ConfirmQuit"> |
1394 | <message name="message"> | 1462 | <message name="message"> |
1395 | 終了しようとしています。操作を続行しますか? | 1463 | 終了しようとしています。操作を続行しますか? |
@@ -3980,18 +4048,18 @@ Linden社所有のメインランドの不動産での太陽の位置に | |||
3980 | </alert> | 4048 | </alert> |
3981 | <alert name="HelpEstateAllowResident" title="アクセスを許可"> | 4049 | <alert name="HelpEstateAllowResident" title="アクセスを許可"> |
3982 | <message name="message"> | 4050 | <message name="message"> |
3983 | この不動産へのアクセスは、ここに登録されている住人と | 4051 | この不動産へのアクセスは、ここに登録されている住人と |
3984 | 下記で特別に登録されたグループのみに許可されます。この設定は、 | 4052 | 下記で特別に登録されたグループのみに許可されます。 この設定は |
3985 | 見がて場合のみ、 | 4053 | [ッ]がてのみ、 |
3986 | 利用でま。 | 4054 | 使用可能です。 |
3987 | </message> | 4055 | </message> |
3988 | </alert> | 4056 | </alert> |
3989 | <alert name="HelpEstateAllowGroup" title="グループ・アクセスを許可"> | 4057 | <alert name="HelpEstateAllowGroup" title="グループ・アクセスを許可"> |
3990 | <message name="message"> | 4058 | <message name="message"> |
3991 | この不動産へのアクセスは、ここに登録されているグループと | 4059 | この不動産へのアクセスは、ここに登録されているグループと |
3992 | 下記で特別に登録された住人のみに許可されます。この設定は、 | 4060 | 下記で特別に登録された住人のみに許可されます。 この設定は |
3993 | 見がて場合のみ、 | 4061 | [ッ]がてのみ、 |
3994 | 利用でま。 | 4062 | 使用可能です。 |
3995 | </message> | 4063 | </message> |
3996 | </alert> | 4064 | </alert> |
3997 | <alert name="HelpEstateBanResident" title="アクセス拒否"> | 4065 | <alert name="HelpEstateBanResident" title="アクセス拒否"> |
@@ -4417,6 +4485,17 @@ Linden Lab | |||
4417 | キャンセル | 4485 | キャンセル |
4418 | </option> | 4486 | </option> |
4419 | </alert> | 4487 | </alert> |
4488 | <alert name="ConfirmClearMediaUrlList"> | ||
4489 | <message name="message"> | ||
4490 | 保存された URL のリストを消去します。よろしいですか? | ||
4491 | </message> | ||
4492 | <option name="Yes"> | ||
4493 | はい | ||
4494 | </option> | ||
4495 | <option name="No"> | ||
4496 | キャンセル | ||
4497 | </option> | ||
4498 | </alert> | ||
4420 | <alert name="ConfirmEmptyLostAndFound"> | 4499 | <alert name="ConfirmEmptyLostAndFound"> |
4421 | <message name="message"> | 4500 | <message name="message"> |
4422 | 遺失物フォルダの中身を完全に削除しようとしています。操作を続行しますか? | 4501 | 遺失物フォルダの中身を完全に削除しようとしています。操作を続行しますか? |
@@ -4479,6 +4558,344 @@ Linden Lab | |||
4479 | OK | 4558 | OK |
4480 | </option> | 4559 | </option> |
4481 | </alert> | 4560 | </alert> |
4561 | <alert name="GraphicsPreferencesHelp"> | ||
4562 | <message name="message"> | ||
4563 | このパネルはウィンドウのサイズと解像度、およびクライアントのグラフィックの品質を制御します。 グラフィックの環境設定のインタフェースでは、次の 4 つの中からグラフィック・レベルを選択できます。 低、中、高、超高。 [カスタム]チェックボックをクリックし、次の設定を操作することで、グラフィックスの設定をカスタマイズすることができます。 | ||
4564 | |||
4565 | シェーダー: ピクセル・シェーダーのさまざまな種類を有効または無効にします。 | ||
4566 | |||
4567 | 反射詳細: 水が反射するオブジェクトの種類を設定します。 | ||
4568 | |||
4569 | アバター・レンダリング: クライアントによるアバターのレンダリング方法に影響するオプションを設定します。 | ||
4570 | |||
4571 | 描画距離: あなたの視点から視界のどのくらいの距離まで、オブジェクトがレンダリングされるかに影響します。 | ||
4572 | |||
4573 | 最大パーティクル数: 画面に一度に見ることができるパーティクルの最大数を設定します。 | ||
4574 | |||
4575 | ポストプロセス品質: グロー効果(輝き)がレンダリングされる際の解像度を設定します。 | ||
4576 | |||
4577 | メッシュ詳細: 特定のオブジェクトのレンダリング時の細部表現を設定します。 | ||
4578 | |||
4579 | ライティング詳細: レンダリングする光源の種類を選択します。 | ||
4580 | |||
4581 | 地形詳細: 地形の細部表現を設定します。 | ||
4582 | |||
4583 | 空詳細: 天空のテセレーションの数値を指定します。 値を高くするほどレンダリングに時間がかかりますが、太陽の形がより円に近くなります。 | ||
4584 | </message> | ||
4585 | </alert> | ||
4586 | <alert name="WLSavePresetAlert"> | ||
4587 | <message name="message"> | ||
4588 | 保存された事前設定を上書きしますか? | ||
4589 | </message> | ||
4590 | <option name="Save"> | ||
4591 | はい | ||
4592 | </option> | ||
4593 | <option name="Cancel"> | ||
4594 | いいえ | ||
4595 | </option> | ||
4596 | </alert> | ||
4597 | <alert name="WLDeletePresetAlert"> | ||
4598 | <message name="message"> | ||
4599 | [SKY] を削除しますか? | ||
4600 | </message> | ||
4601 | <option name="Delete"> | ||
4602 | はい | ||
4603 | </option> | ||
4604 | <option name="Cancel"> | ||
4605 | いいえ | ||
4606 | </option> | ||
4607 | </alert> | ||
4608 | <alert name="WLNoEditDefault"> | ||
4609 | <message name="message"> | ||
4610 | デフォルトの設定を編集したり削除したりすることはできません。 | ||
4611 | </message> | ||
4612 | </alert> | ||
4613 | <alert name="WLMissingSky"> | ||
4614 | <message name="message"> | ||
4615 | このデイ・サイクルのファイルは次の存在しない「空」ファイルを参照しています: [SKY]. | ||
4616 | </message> | ||
4617 | </alert> | ||
4618 | <alert name="PPSaveEffectAlert"> | ||
4619 | <message name="message"> | ||
4620 | ポストプロセス効果が存在します。 上書きしますか? | ||
4621 | </message> | ||
4622 | <option name="Save"> | ||
4623 | はい | ||
4624 | </option> | ||
4625 | <option name="Cancel"> | ||
4626 | いいえ | ||
4627 | </option> | ||
4628 | </alert> | ||
4629 | <alert name="HelpEditSky"> | ||
4630 | <message name="message"> | ||
4631 | ウィンドライトの各種スライダーを編集して空を作成および保存します。 | ||
4632 | </message> | ||
4633 | </alert> | ||
4634 | <alert name="HelpEditDayCycle"> | ||
4635 | <message name="message"> | ||
4636 | 1 日を通して変化する空の様子を設定します。 | ||
4637 | </message> | ||
4638 | </alert> | ||
4639 | <alert name="EnvSettingsHelpButton"> | ||
4640 | <message name="message"> | ||
4641 | 次の各設定はコンピュータ上でインワールドの環境がどのように表示されるかを調整します。 設定のすべてにアクセスするにはお使いのグラフィック・カードが周囲(大気)シェーダー (atmospheric shaders) をサポートしている必要があります。 | ||
4642 | |||
4643 | [時間帯]スライダーを調整することによりビューワで実際に使用する時間帯を変更できます。 | ||
4644 | |||
4645 | [雲の量]スライダーを調整することにより空をおおう雲の量を制御できます。 | ||
4646 | |||
4647 | [水の色]カラー・ピッカーで色を選択することにより水の色を変更できます。 | ||
4648 | |||
4649 | [水中のフォグ効果]]スライダーを調整することにより水の透明度を制御できます。 | ||
4650 | |||
4651 | [不動産の時刻を使用]をクリックすることにより時刻はリセットされ地域の現在時刻に連動させることができます。 | ||
4652 | |||
4653 | [空の高度な設定]をクリックすることにより空のより高度な設定を行うための編集プログラムを起動できます。 | ||
4654 | |||
4655 | [水の高度な設定]をクリックすることにより水のより高度な設定を行うための編集プログラムを起動できます。 | ||
4656 | </message> | ||
4657 | </alert> | ||
4658 | <alert name="HelpDayCycle"> | ||
4659 | <message name="message"> | ||
4660 | [デイ・サイクル編集]では Second Life での昼と夜の空の変化を制御できます。 これは[基本環境編集]の[時間帯]スライダーで使用されるサイクルです。 | ||
4661 | |||
4662 | [デイ・サイクル編集]はキーフレームを設定することで機能します。 各キーフレームにはプリセットされた空の設定が関連付けられています(時間グラフに灰色の節として表示されます)。 ウィンドライト( WindLight )はキーフレーム間をデータ補間し、時間の経過とともに空の自然なアニメーションを作り出します。 | ||
4663 | |||
4664 | 時間グラフの上に表示される黄色の矢印は、時刻をもとにした現在の眺めを表しています。 黄色の矢印をクリック&ドラッグすることで、1 日の移り変わりを見ることができます。 [キーの追加]ボタンまたは[キーの削除]ボタンを押して時間グラフの右側にキーフレームを追加あるいは削除することができます。 | ||
4665 | |||
4666 | キーフレームの時刻を指定するには、時間グラフに沿ってドラッグするか[キーフレームの設定]のフレーム内で値を直接入力します。 [キーフレームの設定]のフレーム内ではキーフレームにウィンドライト( WindLight )の事前設定を関連付けることができます。 | ||
4667 | |||
4668 | [サイクルの長さ]では1 日全体の時間を指定できます。 この値を低く設定すると(例えば2分)、24 時間の時間グラフは実時間の 2 分間に相当することを意味します。 時間グラフとキーフレーム・サイクルの設定が完了したら、[再生]ボタンと[停止]ボタンを使用して結果をプレビューしてみましょう。 また、時間グラフ上の黄色い時刻表示矢印を移動することによってもサイクルの変化をインタラクティブに確認することができます。 [不動産の時刻を使用]ボタンを使用することで日の長さと時刻が不動産のデイ・サイクルに同期されます。 | ||
4669 | |||
4670 | デイ・サイクルの設定が完了したら、[デイ・テストを保存]ボタンおよび[デイ・テストをロード]ボタンを使用してデイ・サイクルを保存およびロードします。 尚、現在の仕様ではデイ・サイクルで指定できるのは 1 日分だけです。 | ||
4671 | </message> | ||
4672 | </alert> | ||
4673 | <alert name="HelpBlueHorizon"> | ||
4674 | <message name="message"> | ||
4675 | 空の色を調整するには [R] (赤)、[G] (緑)、[B] (青) の各スライダーを使用します。 [I] スライダーを使用すると、3 つの RGB スライダーを一斉に動かすことができます。 | ||
4676 | </message> | ||
4677 | </alert> | ||
4678 | <alert name="HelpHazeHorizon"> | ||
4679 | <message name="message"> | ||
4680 | [空と遠景の露光]は風景の露光量全体を調整する上で最も便利なパラメーターの 1 つです。 太陽光によるホワイトアウト現象や暗く絞り込んだ設定など、さまざまな露出設定をシミュレーションできます。 | ||
4681 | </message> | ||
4682 | </alert> | ||
4683 | <alert name="HelpBlueDensity"> | ||
4684 | <message name="message"> | ||
4685 | [空の配色と濃度]は空と霧の彩度全体に影響します。 [I] スライダーを右に移動すると色は明るくくっきりとなります。 このスライダーを左端に移動すると、色は彩りを失い、白黒に退色します。 空の色を微調整する場合は、[R] (赤)、 [緑] (G)、[青] (B) の各スライダーを使用して彩度を個別に制御できます。 | ||
4686 | </message> | ||
4687 | </alert> | ||
4688 | <alert name="HelpHazeDensity"> | ||
4689 | <message name="message"> | ||
4690 | [大気の不透明度]は大気中のどんよりとした空の雰囲気、グレーがかった霧のレベルを制御します。 濃い煙や大気汚染など | ||
4691 | を表現するのに適しています。 霧やもやなどの表現手段としても効果的です。 | ||
4692 | </message> | ||
4693 | </alert> | ||
4694 | <alert name="HelpDensityMult"> | ||
4695 | <message name="message"> | ||
4696 | [大気の不透明度の増幅]は空気の濃度全体を制御するために使用できます。 この値を低く設定すると「大気の薄い状態」を演出し、高い数値に設定するととてもどんよりとしたスモッグのかかった雰囲気を表現できます。 | ||
4697 | </message> | ||
4698 | </alert> | ||
4699 | <alert name="HelpDistanceMult"> | ||
4700 | <message name="message"> | ||
4701 | ウィンドライトの視覚的距離を調整します。 値としてゼロを設定すると、地形およびオブジェクトに対する | ||
4702 | ウィンドライトの影響を効果的に取り消すことができます。 1 より大きな値を設定する場合、値が大きくなるにつれて | ||
4703 | 大気が次第に濃くなるような効果が得られます。 | ||
4704 | </message> | ||
4705 | </alert> | ||
4706 | <alert name="HelpMaxAltitude"> | ||
4707 | <message name="message"> | ||
4708 | [最大高度]では大気中の光の量を算出するときに | ||
4709 | ウィンドライトが算出した高度を調整します。 1 日の終わりに夕焼けの度合いを調整するときに役立ちます。 | ||
4710 | </message> | ||
4711 | </alert> | ||
4712 | <alert name="HelpSunlightColor"> | ||
4713 | <message name="message"> | ||
4714 | 風景の中で直射日光の色や強さを調整します。 | ||
4715 | </message> | ||
4716 | </alert> | ||
4717 | <alert name="HelpSunAmbient"> | ||
4718 | <message name="message"> | ||
4719 | 風景の中で周囲をとりまく大気中のアンビエント光の色や強さを調整します。 | ||
4720 | </message> | ||
4721 | </alert> | ||
4722 | <alert name="HelpSunGlow"> | ||
4723 | <message name="message"> | ||
4724 | [サイズ]スライダーは太陽の大きさを制御します。 | ||
4725 | [フォーカス]スライダーは空を背にした太陽のかすみ具合を制御します。 | ||
4726 | </message> | ||
4727 | </alert> | ||
4728 | <alert name="HelpSceneGamma"> | ||
4729 | <message name="message"> | ||
4730 | 風景の中で明暗の配分を調整します。 | ||
4731 | </message> | ||
4732 | </alert> | ||
4733 | <alert name="HelpStarBrightness"> | ||
4734 | <message name="message"> | ||
4735 | 空の星の輝きを調整します。 | ||
4736 | </message> | ||
4737 | </alert> | ||
4738 | <alert name="HelpTimeOfDay"> | ||
4739 | <message name="message"> | ||
4740 | 空の太陽の場所を調整します。 | ||
4741 | 標高に似ています。 | ||
4742 | </message> | ||
4743 | </alert> | ||
4744 | <alert name="HelpEastAngle"> | ||
4745 | <message name="message"> | ||
4746 | 空の太陽の場所を調整します。 | ||
4747 | 方位角に似ています。 | ||
4748 | </message> | ||
4749 | </alert> | ||
4750 | <alert name="HelpCloudColor"> | ||
4751 | <message name="message"> | ||
4752 | 雲の色を編集します。 通常は白っぽい色をお勧めしますが、もちろん | ||
4753 | お好みの色を設定してください。 | ||
4754 | </message> | ||
4755 | </alert> | ||
4756 | <alert name="HelpCloudDetail"> | ||
4757 | <message name="message"> | ||
4758 | 主要な雲のイメージの上にレイヤーされた詳細なイメージを制御します。 X と Y でその位置を制御します。 [D] (濃度) は真綿のような様子や雲の割れ目の | ||
4759 | 様子など雲の外観を制御します。 | ||
4760 | </message> | ||
4761 | </alert> | ||
4762 | <alert name="HelpCloudDensity"> | ||
4763 | <message name="message"> | ||
4764 | [X] と [Y] のスライダーで雲の位置を、 | ||
4765 | [D] のスライダーでその密度を制御 | ||
4766 | できます。 | ||
4767 | </message> | ||
4768 | </alert> | ||
4769 | <alert name="HelpCloudCoverage"> | ||
4770 | <message name="message"> | ||
4771 | 空を覆う雲の量を制御します。 | ||
4772 | </message> | ||
4773 | </alert> | ||
4774 | <alert name="HelpCloudScale"> | ||
4775 | <message name="message"> | ||
4776 | 空に浮かぶ雲のイメージの縮尺を制御します。 | ||
4777 | </message> | ||
4778 | </alert> | ||
4779 | <alert name="HelpCloudScrollX"> | ||
4780 | <message name="message"> | ||
4781 | [X] の方向に雲が移動する際の速度を制御します。 | ||
4782 | </message> | ||
4783 | </alert> | ||
4784 | <alert name="HelpCloudScrollY"> | ||
4785 | <message name="message"> | ||
4786 | [Y] の方向に雲が移動する際の速度を制御します。 | ||
4787 | </message> | ||
4788 | </alert> | ||
4789 | <alert name="HelpClassicClouds"> | ||
4790 | <message name="message"> | ||
4791 | このボックスを有効にすると、WindLight の雲に加えて、Second Life の従来の雲もレンダリングできるようになります。 | ||
4792 | </message> | ||
4793 | </alert> | ||
4794 | <alert name="HelpWaterFogColor"> | ||
4795 | <message name="message"> | ||
4796 | 水中のフォグ効果に色をつけます。 | ||
4797 | </message> | ||
4798 | </alert> | ||
4799 | <alert name="HelpWaterFogDensity"> | ||
4800 | <message name="message"> | ||
4801 | 水中のフォグ効果の強弱、水中でどのくらいの距離まで見渡せるかを制御します。 | ||
4802 | </message> | ||
4803 | </alert> | ||
4804 | <alert name="HelpUnderWaterFogMod"> | ||
4805 | <message name="message"> | ||
4806 | [水中のフォグ濃度指数]の効果を加減して、あなたのアバターが水中にいるとき、どのくらい遠くまで見ることができるかを制御します。 | ||
4807 | </message> | ||
4808 | </alert> | ||
4809 | <alert name="HelpWaterGlow"> | ||
4810 | <message name="message"> | ||
4811 | 水面の輝きの度合いを制御します。 | ||
4812 | </message> | ||
4813 | </alert> | ||
4814 | <alert name="HelpWaterNormalScale"> | ||
4815 | <message name="message"> | ||
4816 | 水面を表現する 3 種類のさざ波の縮尺を制御します。 | ||
4817 | </message> | ||
4818 | </alert> | ||
4819 | <alert name="HelpWaterFresnelScale"> | ||
4820 | <message name="message"> | ||
4821 | さまざまな角度で、反射する光の量を制御します。 | ||
4822 | </message> | ||
4823 | </alert> | ||
4824 | <alert name="HelpWaterFresnelOffset"> | ||
4825 | <message name="message"> | ||
4826 | 反射する光度の量を制御します。 | ||
4827 | </message> | ||
4828 | </alert> | ||
4829 | <alert name="HelpWaterScaleAbove"> | ||
4830 | <message name="message"> | ||
4831 | 上から水中を見たときの光の屈折具合を制御します。 | ||
4832 | </message> | ||
4833 | </alert> | ||
4834 | <alert name="HelpWaterScaleBelow"> | ||
4835 | <message name="message"> | ||
4836 | 水中から見たときの光の屈折具合を制御します。 | ||
4837 | </message> | ||
4838 | </alert> | ||
4839 | <alert name="HelpWaterBlurMultiplier"> | ||
4840 | <message name="message"> | ||
4841 | 波と反射の混ざり具合を制御します。 | ||
4842 | </message> | ||
4843 | </alert> | ||
4844 | <alert name="HelpWaterNormalMap"> | ||
4845 | <message name="message"> | ||
4846 | 反射や屈折を決定するために水に重ねられるノーマル・マップを制御します。 | ||
4847 | </message> | ||
4848 | </alert> | ||
4849 | <alert name="HelpWaterWave1"> | ||
4850 | <message name="message"> | ||
4851 | 引き伸ばされたノーマル・マップがX と Y 軸でどの方向にそして | ||
4852 | どのくらいの速度で移動するかを制御します。 | ||
4853 | </message> | ||
4854 | </alert> | ||
4855 | <alert name="HelpWaterWave2"> | ||
4856 | <message name="message"> | ||
4857 | 縮められたノーマル・マップがX と Y 軸でどの方向にそしてどのくらいの速度で移動するかを制御します。 | ||
4858 | </message> | ||
4859 | </alert> | ||
4860 | <alert name="NewSkyPreset"> | ||
4861 | <message name="message"> | ||
4862 | 新しい空の名前を指定してください。 | ||
4863 | </message> | ||
4864 | <option name="OK"> | ||
4865 | OK | ||
4866 | </option> | ||
4867 | <option name="Cancel"> | ||
4868 | キャンセル | ||
4869 | </option> | ||
4870 | 新しい事前設定 | ||
4871 | </alert> | ||
4872 | <alert name="ExistsSkyPresetAlert"> | ||
4873 | <message name="message"> | ||
4874 | 事前設定がすでに存在します! | ||
4875 | </message> | ||
4876 | </alert> | ||
4877 | <alert name="NewWaterPreset"> | ||
4878 | <message name="message"> | ||
4879 | 新しい水の事前設定の名前を指定してください。 | ||
4880 | </message> | ||
4881 | <option name="OK"> | ||
4882 | OK | ||
4883 | </option> | ||
4884 | <option name="Cancel"> | ||
4885 | キャンセル | ||
4886 | </option> | ||
4887 | 新しい事前設定 | ||
4888 | </alert> | ||
4889 | <alert name="ExistsWaterPresetAlert"> | ||
4890 | <message name="message"> | ||
4891 | 事前設定がすでに存在します! | ||
4892 | </message> | ||
4893 | </alert> | ||
4894 | <alert name="WaterNoEditDefault"> | ||
4895 | <message name="message"> | ||
4896 | デフォルトの設定を編集したり削除したりすることはできません。 | ||
4897 | </message> | ||
4898 | </alert> | ||
4482 | <alert name="ChatterBoxSessionStartError"> | 4899 | <alert name="ChatterBoxSessionStartError"> |
4483 | <message name="message"> | 4900 | <message name="message"> |
4484 | [RECIPIENT]との新しいチャットの開始の際にエラーが発生しました。 | 4901 | [RECIPIENT]との新しいチャットの開始の際にエラーが発生しました。 |
@@ -4527,6 +4944,9 @@ Linden Lab | |||
4527 | </alert> | 4944 | </alert> |
4528 | <alert name="DebitPermissionDetails" | 4945 | <alert name="DebitPermissionDetails" |
4529 | title="デビット許可のリクエストについて"> | 4946 | title="デビット許可のリクエストについて"> |
4947 | <message name="message"> | ||
4948 | この要求を許可すると、スクリプトからあなたのアカウントにリンデン・ドルを課金できるようになります。 この許可を取り消すには、オブジェクトのオーナーはオブジェクトを削除するか、オブジェクトのスクリプトをリセットしなければなりません。 | ||
4949 | </message> | ||
4530 | <option name="OK"> | 4950 | <option name="OK"> |
4531 | OK | 4951 | OK |
4532 | </option> | 4952 | </option> |
diff --git a/linden/indra/newview/skins/xui/ja/floater_about.xml b/linden/indra/newview/skins/xui/ja/floater_about.xml index 4a93007..3f1990f 100644 --- a/linden/indra/newview/skins/xui/ja/floater_about.xml +++ b/linden/indra/newview/skins/xui/ja/floater_about.xml | |||
@@ -1,11 +1,9 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <floater name="floater_about" title="Second Lifeについて"> | 2 | <floater name="floater_about" title="Second Lifeについて"> |
3 | <text_editor name="credits_editor"> | 3 | <text_editor name="credits_editor"> |
4 | Second Life は、Philip、Andrew、Tessa、Cory、Frank、James、Doug、Hunter、Richard、John、Eric、Avi、AaronB、AaronY、Ian、Peter、Mark、Robin、Stephen、Tracy、Ryan、Alberto、Haney、Tanya、JimJ、Dan、Ben、Stephanie、Tim、Evan、Catherine、Colin、Chris、Reuben、Charity、Jeska、James、JonHenry、Kelly、Callum、Char、Daniel、DavidF、Don、Jeff、Lauren、Lee、Michael、Ramzi、Vektor、Steve、TomY、Tess、Kona、Brent、Clarissa、PeterP、Jesse、Annette、Cyn、Blue、Ginsu、Jonathan、Karen、Adam、Nova、Deana、Lizzie、Patsy、DavidK、Isaac、Pathfinder、Monroe、Jill、Benny、Altruima、Rheya、Jennifer、Jack、DaveP、Brad、Mick、Babbage、Elisabeth、Brian、Beth、Data、Ethan、Wendy、Nicole、Sky、Jeffrey、Zero、Coffee、Tesla、Kenny、Makiko、Nigel、Teeple、Lucy、Mia、Dee、Guy、Harry、Liana、Branka、Jimbo、Aura、Vasuda、SarahD、bethanye、Torley、Runitai、MikeS、PaulM、Milo、Hermia、JoeM、Melanie、Rejean、DSmith、SMiller、Susan、Jose、DongYun、Justin、Andrey、Syrah、Donovan、Henrik、Nora、Lexie、AC、Donna、ChrisC、Alex、Leyla、Kyle、Mathew、Devin、Joshua、DanC、Jessica、Harmony、Claudia、Tramel、Glenn、Betsy、Fritz、Jun、Adam、Cassandra、Ken、RyanW、Spike、Tofu、Varas、Andy、Luke、RobLa、Chiyo、JohnZ、Dustin、George、Del、PeterP、Migyeong、Matthew、RMullane、CChampion、JTurbin、JamesC、Viola、Lightfoot、Jacqui、Sturm、Adrian、Buttercup、Alfred、Sunil、Alfred、Noel、Irfan、Jill、Yool、Jane、Yuki、Yoz、Matthew、Arthur、Jennifer、Karl、Brian、Ben、Janine、Christopher、Madhavi、Everett、Anthony、Joon、Jake、sean、Adreanne、Stephany、KellyJo、Jeremy、Pramod、Joshua、Sean、Christopher、Amy、Ceren、Katherine、jon、Sudheendra、James、Stephan、Kari、Kartic、Todd、Thomas、Joki、Rebecca、Belinda、Bert、Roger、Bridie、Kristi、Brian、Maria、John、Aric、Nathanel、Melinda、Darrell、Jennifer、Sandy、Greg、Rob、Brad、Chris、Eric、Palmer、Asi、Katja、Lisa、Minda、Jen、Aaron、Bryan、Mark、Jonathan、Jamie、Laurel、William、Matthew、Steve、David、Remy、James、Tim、Lee、Brian、Ashlei、Sam、Mike、Ethan、Austin、Wanda、Paul、Brian、Rachel、Valentyn、Emma Williams、Autum、Steven、Laley、Charles、Jessica、Sue、Gillian、CG、Kip、Kristen、Shamiran、Blake、Brett、Erica、Kent、Joel、Plexus、Twilight、Joppa と、その他多数の人達によって作成されました。 | 4 | Second Life は、Philip、Andrew、Tessa、Cory、Frank、James、Doug、Hunter、Richard、John、Eric、Avi、AaronB、AaronY、Ian、Peter、Mark、Robin、Stephen、Tracy、Ryan、Alberto、Haney、Tanya、JimJ、Dan、Ben、Stephanie、Tim、Evan、Catherine、Colin、Chris、Reuben、Charity、Jeska、James、JonHenry、Kelly、Callum、Char、Daniel、DavidF、Don、Jeff、Lauren、Lee、Michael、Ramzi、Vektor、Steve、TomY、Tess、Kona、Brent、Clarissa、PeterP、Jesse、Annette、Cyn、Blue、Ginsu、Jonathan、Karen、Adam、Nova、Deana、Lizzie、Patsy、DavidK、Isaac、Pathfinder、Monroe、Jill、Benny、Altruima、Rheya、Jennifer、Jack、DaveP、Brad、Mick、Babbage、Elisabeth、Brian、Beth、Data、Ethan、Wendy、Nicole、Sky、Jeffrey、Zero、Coffee、Tesla、Kenny、Makiko、Nigel、Teeple、Lucy、Mia、Dee、Guy、Harry、Liana、Branka、Jimbo、Aura、Vasuda、SarahD、bethanye、Torley、Runitai、MikeS、PaulM、Milo、Hermia、JoeM、Melanie、Rejean、DSmith、SMiller、Susan、Jose、DongYun、Justin、Andrey、Syrah、Donovan、Henrik、Nora、Lexie、AC、Donna、ChrisC、Alex、Leyla、Kyle、Mathew、Devin、Joshua、DanC、Jessica、Harmony、Claudia、Tramel、Glenn、Betsy、Fritz、Jun、Adam、Cassandra、Ken、RyanW、Spike、Tofu、Varas、Andy、Luke、RobLa、Chiyo、JohnZ、Dustin、George、Del、PeterP、Migyeong、Matthew、RMullane、CChampion、JTurbin、JamesC、Viola、Lightfoot、Jacqui、Sturm、Adrian、Buttercup、Alfred、Sunil、Alfred、Noel、Irfan、Jill、Yool、Jane、Yuki、Yoz、Matthew、Arthur、Jennifer、Karl、Brian、Ben、Janine、Christopher、Madhavi、Everett、Anthony、Joon、Jake、sean、Adreanne、Stephany、KellyJo、Jeremy、Pramod、Joshua、Sean、Christopher、Amy、Ceren、Katherine、jon、Sudheendra、James、Stephan、Kari、Kartic、Todd、Thomas、Joki、Rebecca、Belinda、Bert、Roger、Bridie、Kristi、Brian、Maria、John、Aric、Nathanel、Melinda、Darrell、Jennifer、Sandy、Greg、Rob、Brad、Chris、Eric、Palmer、Asi、Katja、Lisa、Minda、Jen、Aaron、Bryan、Mark、Jonathan、Jamie、Laurel、William、Matthew、Steve、David、Remy、James、Tim、Lee、Brian、Ashlei、Sam、Mike、Ethan、Austin、Wanda、Paul、Brian、Rachel、Valentyn、Emma Williams、Autum、Steven、Laley、Charles、Jessica、Sue、Gillian、CG、Kip、Kristen、Shamiran、Blake、Brett、Erica、Kent、Joel、Plexus、Twilight、Joppa、Enus、Kraft、Naveen、Simon、Q、Ronp、Laurap、Ram、KyleJM、Marty、Kend、Daveh、Prospero、Melissa、Nat、Hamilton、Green、Seraph、Ekim、Miz、Jimmy、Kosmo、Rome、Doris、JT、Benoc、Whump、Mango、Trinity、Patch、TJ、Christy、Bao、Joohwan、Kate、Oreh、Angela、Johan、Cheah、Lan、Matias、Brandy、Cogsworth、Aleks、 Mitchell、Space、Einstein、Bambers、Colton、Malbers、Maggie、Umesh、Santosh、Rose、Stash、Rothman、Winnie、Stella、Niall と、その他多数の人達によって作成されました。 |
5 | 5 | ||
6 | 在りし日の Jesse Malthus を偲んで一言。あなたと出会った全ての人が、あなたの素晴らしさを忘れることはないでしょう。 | 6 | このバージョンをこれまでで最高のものになるようご協力をいただいた以下の住人の皆様に深く感謝いたします。 aaron23 decuir、Abelv Vollmar、Abyssin Otoro、ActingIll Igaly、Adamas Carter、Addy Broome、Adelia Menges、Alexandra Rucker、Alexandrea Fride、Alissa Sabre、Alyx Jonson、Ann Otoole、Anton Fargis、Aradia Dielli、Araina jewell、Arcane Clawtooth、arcangelo vantelli、Are Sperber、Argent Stonecutter、arkady yost、Ashcroft Burnham、Ashen Arida、Auron Forcella、Azadine Umarov、Azildin Furst、Balp Allen、Balpien Hammerer、Barney Boomslang、Barrett Slade、becky pippen、Beeflin Grut、Beer Dailey、Behemoth Greenwood、bigmanu greene、bitova loon、Bonca Chikuwa、Bonnie Bechir、Brandon Catteneo、buttonpusher jones、Carina Raymaker、Ceera Murakami、Celierra Darling、ChatNoir Moonsoo、Cheetah Hammerer、chet neurocam、Cinthya Loveless、Cold Spitteler、Coral Quinnell、Crash Pointe、CrazyTB Oh、Creem Pye、Crom Chaffe、ctrl althouse、dade carver、Dael Ra、dakota schwade、Dale Innis、Damian McLeod、Danger Lytton、danielluh ashton、DanOfWA Flanagan、Davec Horsforth、Davidius Morigi、davie zinner、Day Oh、DBDigital Epsilon、Deany Fall、deBruce Munro、Decaf Coffey、Dedric Mauriac、Deeso Saeed、Dekka Raymaker、dexter eberhart、Dildo Spitz、Dizzy Banjo、djcabello klaar、Dnali Anabuki、Domchi Underwood、Doran Zemlja、Drew Dwi、Duckless Vandyke、Duncan Stenvaag、Dylan Rickenbacker、dzogchen Moody、Dzonatas Sol、Eddy Stryker、Edward Griffith、Edward Pearse、ein duesenburg、Elle Pollack、Elle74 Zaftig、Emileigh Starbrook、Emma Nowhere、ener bing、Erdrick Balbozar、eric domela、Evangeline Biedermann、Excalibur Longstaff、Fake Fitzgerald、Feldspar Millgrove、Feynt Mistral、Fluf Fredriksson、Forbid Utorid、Fortyniner Beck、Francesco Despres、Francisco Koolhoven、Franta Burt、Fury Rosewood、garde Burrel、Garmin Kawaguichi、Gavin Ichigo、Gellan Glenelg、Genie Demina、Gennifer Meredith、Gigs Taggart、Goldie Katsu、Gwyneth Llewelyn、Haravikk Mistral、Harleen Gretzky、Haruki Watanabe、Heather Manatiso、Henri Beauchamp、Honey Fairweather、Hypatia Callisto、Ice Brodie、icktoofay Kamachi、IntLibber Brautigan、Janise Dreamscape、Jay Shinobu、Jenni Ryba、Jeremy Ondricek、JetZep Zabelin、Jims Smythe、Jini Hammerer、Jopy Weber、JustOneMore Loon、Kaluura Boa、Kara Markova、Kevin Susenko、Khyra Ares、Kii Lilliehook、Kitty Barnett、Kris Kuttelwascher、Lanita Wingtips、Laura18 Streeter、Lee Ludd、Lettrius Jewell、Liberty Tesla、LilyAnna Carter、Lindal Kidd、Lisa Lowe、Lisa McConnell、Lola Machin、luca peck、Lupus Clawtooth、M1sha Dallin、Macsima Dagostino、Mana Janus、Mani Canning、Manjusri Binder、marceledward edman、march Korda、marchino villota、Marcus Llewellyn、MartinRJ Fayray、Matthew Dowd、Max Kleiber、mazzy fastback、McCabe Maxsted、Mckailen Kohnke、Meghan Dench、Melvin Starbrook、Mercia Mcmahon、Miakoda Carnell、Michelle2 Zenovka、Michi Lumin、mick parnall、Milla Michinaga、Millie Thompson、miranda Ashby、Mircea Lobo、MIssSara Beck、mouse mimistrobell、Myria Boa、Nanci Barthelmess、Nargus Asturias、Natalya Debevec、Nedrae Messmer、Nexeus Fatale、Niky Zenovka、Nimrod Szondi、Ninane Yoshikawa、Noch Tripsa、nokithecat writer、Nyko Merlin、Onyx Halberd、oryx tempel、Osprey Therian、Pac Hyun、Panagea McMillan、Patrick Ferrentino、PattehPh0x Katsu、ponk bing、Poppy Linden、Prajna Vella、Precious Rhiano、Prokofy Neva、Randall Lovenkraft、Rascal Ratelle、Raydon Writer、Rhaorth Antonelli、Rock Hayek、Ron Crimson、Ron Khondji、Ronald Richez、Rui Clary、Ruud Lathrop、Sakkano Imako、Sam Reinard、Sascha Vandyke、Scrippy Scofield、Sean18 McCarey、Sedona Mills、Sekonda Huet、Seraph Nephilim、Sergei Milos、Shadowquine Maltz、shai khalifa、sheilah flatley、Sheri Underwood、Shuggy Husky、Sierra Janus、Sigma Avro、Simil Miles、simon kline、Simon Nolan、Sindy Tsure、Sparks Keynes、Squirrel Wood、Stahi Columbia、StarSong Bright、Summer Seale、Sunn Thunders、Susan Koltai、Syler Zhora、Synack Fitzgerald、Tayra Dagostino、Tee Cramer、Teravus Ousley、Thomas Shikami、Tia Araw、Tillie Ariantho、Topher Brooks、Torley Linden、Twosteppin Jewell、tx Oh、urantia jewell、vaguegirl Petty、VeC Merlin、venus petrov、vv33d Beck、vynka dean、zann canto、zeebster colasanti、Zi Ree、Zion Tristan、Zorin Frobozz、Zyzzy Zarf |
7 | |||
8 | 現在の最高のバージョンであることを保証するために、支援してくれた住人のみなさんに厚く感謝いたします。Aces Spade, Adrian Buckler, Adrienne LeShelle, Amanda Ascot, AnnaQuay Heart, Aquamina Khalifa, Arienne Anatine, Aston Hildyard, Ayami Kamachi, Badinage Odets, Biffy Berjis, Bigfox Pye, BigJohn Jade, BigRick Byrd, Brettus Tripsa, Brock Fitzgerald, Broker Allen, Browse by Name, Chiria Celt, Christopher Prudhomme, dale Cao, dale Lynch, Dante Tucker, DaQbet Kish, Dargon Pacer, Darius Antonelli, Deira Llanfair, DeviantBone Xi, Dore Dorado, Englishwob Etchegaray, Enya Masala, Eric Renneville, Fairfax Michinaga, FireFox Bancroft, FOXI Cortes, Frederick Earp, Geo Meek, Gotthilf Fischer, Hallo Loon, Hawk Carter, Hazel Kyrgyz, Hecter Barbosa, Hex Link, Ice Pak, Ideasu Mukerji, Itoku Kamachi, Jared Halleck, Jaykob Carter, Jennifer Drumheller, JensMartin Tomsen, JIAB Boa, Jim Gustafson, JimmyJet Fossett, Joseph Rustamova, Jt Volos, Karilyn Kidomen, Kaysha Sion, Keaton Nacon, Kevin Susenko, Khashai Steinbeck, Kira Cuddihy, Kit Massiel, Kojo Dixon, KUieTSToRm Lightcloud, Kwai Kyong, Kyrtis Daehlie, LazyGunGuy Bartlett, Lewcas Zapedzki, Lioc Cioc, LLIB Utu, Lou Liebknecht, Luca Draken, Maci Homewood, Major Sewell, Mari Todriya, MarieElize Noel, matt27 Churchill, Maverick Miasma, maydaysos Young, Mediaho Ball, Mikayla Gillespie, Mike Faulkland, Modfire Milland, MollyBrown Foxley, Mosley Jewell, Nuahs Zapedzki, Nyx Divine, Panther Farber, Paul Bumi, PrincessNina Prefect, Prio Serpentine, Rainbow Drake, Randall Rall, Randy Kazan, Reinhart Mokeev, Rhyph Somme, Rico Roizman, Ruge Dryke, Ryan Orbit, Safira Rosher, Samantha Bainbridge, Sammy Foxley, Sash Furst, Saturn Ariantho, Sienna Summers, Skye Enoch, Sofie Kanno, Solar Legion, Sonic Oki, Sunra Saenz, Taina Heart, Taryn Sprawl, tenerife Wei, TomDragon Nilsson, Trebla Reve, Trouble Carnell, user1cat Orbit, Vance Merlin, Veritas Variscan, Web Page, Wi3g3ht3s Ihnen, WinDrftr DeFarge, Yuu Nakamichi, Zac Delec, Zed Fairweather, Zimmo Hallard. | ||
9 | 7 | ||
10 | APR Copyright (C) 2000-2004 The Apache Software Foundation | 8 | APR Copyright (C) 2000-2004 The Apache Software Foundation |
11 | cURL Copyright (C) 1996-2002, Daniel Stenberg, (daniel@haxx.se) | 9 | cURL Copyright (C) 1996-2002, Daniel Stenberg, (daniel@haxx.se) |
@@ -22,12 +20,12 @@ SSLeay Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | |||
22 | xmlrpc-epi Copyright (C) 2000 Epinions, Inc. | 20 | xmlrpc-epi Copyright (C) 2000 Epinions, Inc. |
23 | zlib Copyright (C) 1995-2002 Jean-loup Gailly and Mark Adler. | 21 | zlib Copyright (C) 1995-2002 Jean-loup Gailly and Mark Adler. |
24 | 22 | ||
25 | All rights reserved.詳細は licenses.txt をください。 | 23 | 無断複写・転載を禁じます。 詳細はlicenses.txtを参照ください。 |
26 | 24 | ||
27 | Voice chat Audio coding:Polycom(R) Siren14(TM) (ITU-T Rec. G.722.1 Annex C) | 25 | Voice chat Audio coding: Polycom(R) Siren14(TM) (ITU-T Rec. G.722.1 Annex C) |
28 | 26 | ||
29 | 27 | ||
30 | っ来 | 28 | Happiness is a warm puppy. (…あっ子犬) -- ・M・シュルツ |
31 | </text_editor> | 29 | </text_editor> |
32 | <text name="you_are_at"> | 30 | <text name="you_are_at"> |
33 | [POSITION]中 | 31 | [POSITION]中 |
diff --git a/linden/indra/newview/skins/xui/ja/floater_about_land.xml b/linden/indra/newview/skins/xui/ja/floater_about_land.xml index ba7c6d5..12ed9f3 100644 --- a/linden/indra/newview/skins/xui/ja/floater_about_land.xml +++ b/linden/indra/newview/skins/xui/ja/floater_about_land.xml | |||
@@ -362,13 +362,58 @@ | |||
362 | </text> | 362 | </text> |
363 | </panel> | 363 | </panel> |
364 | <panel label="メディア" name="land_media_panel"> | 364 | <panel label="メディア" name="land_media_panel"> |
365 | <text name="at URL:"> | ||
366 | メディア URL: | ||
367 | </text> | ||
368 | <button label="設定..." label_selected="設定..." name="set_media_url" /> | ||
369 | <text name="with media:"> | ||
370 | メディア・タイプ: | ||
371 | </text> | ||
372 | <combo_box name="media type" | ||
373 | tool_tip="URL が動画、ウェブ・ページ、その他のメディアの場合に指定します" /> | ||
374 | <text name="Description:"> | ||
375 | 説明: | ||
376 | </text> | ||
377 | <line_editor name="url_description" | ||
378 | tool_tip="[再生]/[ロード]ボタンの隣に表示されるテキスト" /> | ||
379 | <text name="replace_texture_help"> | ||
380 | [再生]矢印をクリックすると、このテクスチャーを使用するオブジェクトに | ||
381 | 動画またはウェブ・ページが表示されます。 | ||
382 | </text> | ||
383 | <text name="Options:"> | ||
384 | メディア | ||
385 | オプション: | ||
386 | </text> | ||
387 | <check_box label="メディアのループ" name="media_loop" | ||
388 | tool_tip="メディアをループ再生します。 メディアの再生が終わったら、最初から再生し直します。" /> | ||
389 | <check_box label="メディア URL を隠す" name="hide_media_url" | ||
390 | tool_tip="このオプションをオンにすると、許可なしでこの区画情報にアクセスしているユーザーにはメディア URL が表示されません。 これは HTML タイプには使用できませんのでご注意ください。" /> | ||
391 | <check_box label="音楽のURLを隠す" name="hide_music_url" | ||
392 | tool_tip="このオプションをオンにすると、許可なしでこの区画情報にアクセスしているユーザーには音楽の URL が表示されません。" /> | ||
393 | <text name="media_size" | ||
394 | tool_tip="レンダリングするウェブ・メディアのサイズ。デフォルトの 0 のままにします。"> | ||
395 | メディア・サイズ: | ||
396 | </text> | ||
397 | <spinner name="media_size_width" | ||
398 | tool_tip="レンダリングするウェブ・メディアのサイズ。デフォルトの 0 のままにします。" /> | ||
399 | <spinner name="media_size_height" | ||
400 | tool_tip="レンダリングするウェブ・メディアのサイズ。デフォルトの 0 のままにします。" /> | ||
401 | <text name="pixels"> | ||
402 | ピクセル | ||
403 | </text> | ||
404 | <text name="MusicURL:"> | ||
405 | 音楽のURL: | ||
406 | </text> | ||
407 | <text name="Sound:"> | ||
408 | サウンド: | ||
409 | </text> | ||
365 | <check_box label="空間音響をこの区画だけに限定" name="check sound local" /> | 410 | <check_box label="空間音響をこの区画だけに限定" name="check sound local" /> |
366 | <text type="string" length="1" name="Music URL:"> | 411 | <text type="string" length="1" name="Music URL:"> |
367 | ミュージックURL: | 412 | ミュージックURL: |
368 | </text> | 413 | </text> |
369 | <text type="string" length="1" name="Media texture:"> | 414 | <text type="string" length="1" name="Media texture:"> |
370 | サウンド | 415 | 置換 |
371 | 設: | 416 | テクスチャー |
372 | </text> | 417 | </text> |
373 | <text type="string" length="1" name="Replace this texture:"> | 418 | <text type="string" length="1" name="Replace this texture:"> |
374 | このテクスチャーを置換: | 419 | このテクスチャーを置換: |
@@ -377,13 +422,10 @@ | |||
377 | <text type="string" length="1" name="with content from this URL:"> | 422 | <text type="string" length="1" name="with content from this URL:"> |
378 | この URLからのコンテンツ: | 423 | この URLからのコンテンツ: |
379 | </text> | 424 | </text> |
380 | <check_box | 425 | <check_box label="スケールを自動設定" name="media_auto_scale" |
381 | label="コンテンツのスケールを自動設定(描画速度と画質が低下します)" | ||
382 | name="media_auto_scale" | ||
383 | tool_tip="このオプションをチェックすると、この区画のコンテンツのスケールが自動的に設定されます。 動作速度と画質が少し低下することがありますが、他のテクスチャーのスケーリングや整列が必要になることはありません。" /> | 426 | tool_tip="このオプションをチェックすると、この区画のコンテンツのスケールが自動的に設定されます。 動作速度と画質が少し低下することがありますが、他のテクスチャーのスケーリングや整列が必要になることはありません。" /> |
384 | <text name="Voice settings:"> | 427 | <text name="Voice settings:"> |
385 | ボイス | 428 | ボイス: |
386 | 設定: | ||
387 | </text> | 429 | </text> |
388 | <radio_group name="parcel_voice_channel"> | 430 | <radio_group name="parcel_voice_channel"> |
389 | <radio_item name="Estate"> | 431 | <radio_item name="Estate"> |
@@ -423,6 +465,9 @@ | |||
423 | グループ | 465 | グループ |
424 | </combo_item> | 466 | </combo_item> |
425 | </combo_box> | 467 | </combo_box> |
468 | <text label="常に許可" name="AllowedText"> | ||
469 | 許可された住人 | ||
470 | </text> | ||
426 | <button label="追加..." label_selected="追加..." name="add_allowed" /> | 471 | <button label="追加..." label_selected="追加..." name="add_allowed" /> |
427 | <button label="削除" label_selected="削除" name="remove_allowed" /> | 472 | <button label="削除" label_selected="削除" name="remove_allowed" /> |
428 | <check_box label="禁止" name="AccessCheck"> | 473 | <check_box label="禁止" name="AccessCheck"> |
@@ -437,6 +482,9 @@ | |||
437 | tool_tip="この区画への一時的なアクセスを許可" /> | 482 | tool_tip="この区画への一時的なアクセスを許可" /> |
438 | <spinner label="L$建て価格:" name="PriceSpin" /> | 483 | <spinner label="L$建て価格:" name="PriceSpin" /> |
439 | <spinner label="アクセス時間:" name="HoursSpin" /> | 484 | <spinner label="アクセス時間:" name="HoursSpin" /> |
485 | <text label="禁止" name="BannedText"> | ||
486 | 禁止された住人 | ||
487 | </text> | ||
440 | <name_list name="BannedList" tool_tip="([LISTED]リスト入り、[MAX]最大)" /> | 488 | <name_list name="BannedList" tool_tip="([LISTED]リスト入り、[MAX]最大)" /> |
441 | <button label="追加..." label_selected="追加..." name="add_banned" /> | 489 | <button label="追加..." label_selected="追加..." name="add_banned" /> |
442 | <button label="削除" label_selected="削除" name="remove_banned" /> | 490 | <button label="削除" label_selected="削除" name="remove_banned" /> |
diff --git a/linden/indra/newview/skins/xui/ja/floater_buy_object.xml b/linden/indra/newview/skins/xui/ja/floater_buy_object.xml index d0e48ff..0ca20ea 100644 --- a/linden/indra/newview/skins/xui/ja/floater_buy_object.xml +++ b/linden/indra/newview/skins/xui/ja/floater_buy_object.xml | |||
@@ -9,8 +9,11 @@ | |||
9 | <button label="取り消し" label_selected="取り消し" name="cancel_btn" /> | 9 | <button label="取り消し" label_selected="取り消し" name="cancel_btn" /> |
10 | <button label="購入" label_selected="購入" name="buy_btn" /> | 10 | <button label="購入" label_selected="購入" name="buy_btn" /> |
11 | <text name="title_buy_text"> | 11 | <text name="title_buy_text"> |
12 | [NAME]をう | 12 | 入 |
13 | </text> | 13 | </text> |
14 | <string name="title_buy_copy_text"> | ||
15 | 次のものを買う | ||
16 | </string> | ||
14 | <text name="no_copy_text"> | 17 | <text name="no_copy_text"> |
15 | (コピーなし) | 18 | (コピーなし) |
16 | </text> | 19 | </text> |
diff --git a/linden/indra/newview/skins/xui/ja/floater_day_cycle_options.xml b/linden/indra/newview/skins/xui/ja/floater_day_cycle_options.xml new file mode 100644 index 0000000..4694e3b --- /dev/null +++ b/linden/indra/newview/skins/xui/ja/floater_day_cycle_options.xml | |||
@@ -0,0 +1,97 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | ||
2 | <floater name="Day Cycle Floater" title="デイ・サイクル編集"> | ||
3 | <tab_container name="Day Cycle Tabs"> | ||
4 | <panel label="デイ・サイクル" name="Day Cycle"> | ||
5 | <button label="?" name="WLDayCycleHelp" /> | ||
6 | <text name="WL12am"> | ||
7 | 深夜 12 時 | ||
8 | </text> | ||
9 | <text name="WL3am"> | ||
10 | 午前 3 時 | ||
11 | </text> | ||
12 | <text name="WL6am"> | ||
13 | 午前 6 時 | ||
14 | </text> | ||
15 | <text name="WL9amHash"> | ||
16 | 午前 9 時 | ||
17 | </text> | ||
18 | <text name="WL12pmHash"> | ||
19 | 正午 12 時 | ||
20 | </text> | ||
21 | <text name="WL3pm"> | ||
22 | 午後 3 時 | ||
23 | </text> | ||
24 | <text name="WL6pm"> | ||
25 | 午後 6 時 | ||
26 | </text> | ||
27 | <text name="WL9pm"> | ||
28 | 午後 9 時 | ||
29 | </text> | ||
30 | <text name="WL12am2"> | ||
31 | 深夜 12 時 | ||
32 | </text> | ||
33 | <text name="WL12amHash"> | ||
34 | | | ||
35 | </text> | ||
36 | <text name="WL3amHash"> | ||
37 | I | ||
38 | </text> | ||
39 | <text name="WL6amHash"> | ||
40 | | | ||
41 | </text> | ||
42 | <text name="WL9amHash2"> | ||
43 | I | ||
44 | </text> | ||
45 | <text name="WL12pmHash2"> | ||
46 | | | ||
47 | </text> | ||
48 | <text name="WL3pmHash"> | ||
49 | I | ||
50 | </text> | ||
51 | <text name="WL6pmHash"> | ||
52 | | | ||
53 | </text> | ||
54 | <text name="WL9pmHash"> | ||
55 | I | ||
56 | </text> | ||
57 | <text name="WL12amHash2"> | ||
58 | | | ||
59 | </text> | ||
60 | <button label="キーの追加" label_selected="キーの追加" name="WLAddKey" /> | ||
61 | <button label="キーの削除" label_selected="キーの削除" name="WLDeleteKey" /> | ||
62 | <text name="WLCurKeyFrameText"> | ||
63 | キーフレームの設定: | ||
64 | </text> | ||
65 | <text name="WLCurKeyTimeText"> | ||
66 | キー・タイム: | ||
67 | </text> | ||
68 | <spinner label="時間" name="WLCurKeyHour" /> | ||
69 | <spinner label="分" name="WLCurKeyMin" /> | ||
70 | <text name="WLCurKeyTimeText2"> | ||
71 | キーの事前設定: | ||
72 | </text> | ||
73 | <combo_box label="事前設定" name="WLKeyPresets" /> | ||
74 | <text name="DayCycleText"> | ||
75 | スナップ: | ||
76 | </text> | ||
77 | <combo_box label="5 分" name="WLSnapOptions" /> | ||
78 | <text name="DayCycleText2"> | ||
79 | サイクルの長さ: | ||
80 | </text> | ||
81 | <spinner label="時間" name="WLLengthOfDayHour" /> | ||
82 | <spinner label="分" name="WLLengthOfDayMin" /> | ||
83 | <spinner label="秒" name="WLLengthOfDaySec" /> | ||
84 | <text name="DayCycleText3"> | ||
85 | プレビュー: | ||
86 | </text> | ||
87 | <button label="再生" label_selected="再生" name="WLAnimSky" /> | ||
88 | <button label="停止!" label_selected="停止" name="WLStopAnimSky" /> | ||
89 | <button label="不動産の時刻を使用" | ||
90 | label_selected="不動産の時刻に変更" name="WLUseLindenTime" /> | ||
91 | <button label="デイ・テストを保存" | ||
92 | label_selected="デイ・テストを保存" name="WLSaveDayCycle" /> | ||
93 | <button label="デイ・テストをロード" | ||
94 | label_selected="デイ・テストをロード" name="WLLoadDayCycle" /> | ||
95 | </panel> | ||
96 | </tab_container> | ||
97 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/ja/floater_env_settings.xml b/linden/indra/newview/skins/xui/ja/floater_env_settings.xml new file mode 100644 index 0000000..7a5413d --- /dev/null +++ b/linden/indra/newview/skins/xui/ja/floater_env_settings.xml | |||
@@ -0,0 +1,24 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | ||
2 | <floater name="Environment Editor Floater" title="環境編集"> | ||
3 | <text name="EnvTimeText"> | ||
4 | 時刻 | ||
5 | </text> | ||
6 | <text name="EnvTimeText2"> | ||
7 | 正午 12:00 | ||
8 | </text> | ||
9 | <text name="EnvCloudText"> | ||
10 | 雲の量 | ||
11 | </text> | ||
12 | <text name="EnvWaterColorText"> | ||
13 | 水の色 | ||
14 | </text> | ||
15 | <color_swatch name="EnvWaterColor" | ||
16 | tool_tip="カラー・ピッカーをクリックして開く" /> | ||
17 | <text name="EnvWaterFogText"> | ||
18 | 水中のフォグ効果 | ||
19 | </text> | ||
20 | <button label="不動産の時刻を使用" name="EnvUseEstateTimeButton" /> | ||
21 | <button label="空の高度な設定" name="EnvAdvancedSkyButton" /> | ||
22 | <button label="水の高度な設定" name="EnvAdvancedWaterButton" /> | ||
23 | <button label="?" name="EnvSettingsHelpButton" /> | ||
24 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/ja/floater_hardware_settings.xml b/linden/indra/newview/skins/xui/ja/floater_hardware_settings.xml new file mode 100644 index 0000000..6a8dd33 --- /dev/null +++ b/linden/indra/newview/skins/xui/ja/floater_hardware_settings.xml | |||
@@ -0,0 +1,22 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | ||
2 | <floater name="Hardware Settings Floater" title="ハードウェア設定"> | ||
3 | <text name="Filtering:"> | ||
4 | フィルタリング: | ||
5 | </text> | ||
6 | <check_box | ||
7 | label="異方的フィルタリング(有効にすると速度が低下します)" | ||
8 | name="ani" /> | ||
9 | <spinner label="ガンマ:" name="gamma" /> | ||
10 | <text name="(brightness, lower is brighter)"> | ||
11 | (明るさ、低いほど明るい、0=デフォルト値を使用) | ||
12 | </text> | ||
13 | <text name="Enable VBO:"> | ||
14 | VBO を有効化: | ||
15 | </text> | ||
16 | <check_box label="OpenGL Vertex Buffer オブジェクトを有効化" name="vbo" | ||
17 | tool_tip="最新のハードウェアでこの設定を有効にすると、パフォーマンスが向上します。 しかし、旧型のハードウェアでは VBO の実装が貧弱な場合が多く、この設定を有効にすることでクラッシュにつながるおそれがあります。" /> | ||
18 | <slider label="テクスチャー・メモリ (MB):" name="GrapicsCardTextureMemory" | ||
19 | tool_tip="テクスチャーに割り当てるメモリの合計。 ビデオ・カード・メモリをデフォルトにします。 この数値を減らすと、パフォーマンスが改善されますが、テクスチャーがぼやけた感じになる場合があります。" /> | ||
20 | <spinner label="フォグの距離比率:" name="fog" /> | ||
21 | <button label="OK" label_selected="OK" name="OK" /> | ||
22 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/ja/floater_instant_message.xml b/linden/indra/newview/skins/xui/ja/floater_instant_message.xml index c28925f..0616be9 100644 --- a/linden/indra/newview/skins/xui/ja/floater_instant_message.xml +++ b/linden/indra/newview/skins/xui/ja/floater_instant_message.xml | |||
@@ -15,6 +15,9 @@ | |||
15 | <string name="voice_icon"> | 15 | <string name="voice_icon"> |
16 | icn_voice-pvtfocus.tga | 16 | icn_voice-pvtfocus.tga |
17 | </string> | 17 | </string> |
18 | <string name="default_text_label"> | ||
19 | ここをクリックしてIM | ||
20 | </string> | ||
18 | <button label="プロフィール..." name="profile_callee_btn" /> | 21 | <button label="プロフィール..." name="profile_callee_btn" /> |
19 | <button label="コール" name="start_call_btn" /> | 22 | <button label="コール" name="start_call_btn" /> |
20 | <button label="コールの終了" name="end_call_btn" /> | 23 | <button label="コールの終了" name="end_call_btn" /> |
diff --git a/linden/indra/newview/skins/xui/ja/floater_instant_message_ad_hoc.xml b/linden/indra/newview/skins/xui/ja/floater_instant_message_ad_hoc.xml index 3704fcc..e21c057 100644 --- a/linden/indra/newview/skins/xui/ja/floater_instant_message_ad_hoc.xml +++ b/linden/indra/newview/skins/xui/ja/floater_instant_message_ad_hoc.xml | |||
@@ -37,6 +37,9 @@ | |||
37 | <string name="voice_icon"> | 37 | <string name="voice_icon"> |
38 | icn_voice-groupfocus.tga | 38 | icn_voice-groupfocus.tga |
39 | </string> | 39 | </string> |
40 | <string name="default_text_label"> | ||
41 | ここをクリックしてIM | ||
42 | </string> | ||
40 | <text name="live_help_dialog"> | 43 | <text name="live_help_dialog"> |
41 | *** ヘルプリクエストへようこそ *** | 44 | *** ヘルプリクエストへようこそ *** |
42 | まずF1を押してSLヘルプページを開くか、ナレッジベースのページ http://secondlife.com/knowledgebase/ へアクセスしてください。 | 45 | まずF1を押してSLヘルプページを開くか、ナレッジベースのページ http://secondlife.com/knowledgebase/ へアクセスしてください。 |
diff --git a/linden/indra/newview/skins/xui/ja/floater_live_lsleditor.xml b/linden/indra/newview/skins/xui/ja/floater_live_lsleditor.xml index b8ec144..b7ce98c 100644 --- a/linden/indra/newview/skins/xui/ja/floater_live_lsleditor.xml +++ b/linden/indra/newview/skins/xui/ja/floater_live_lsleditor.xml | |||
@@ -5,4 +5,7 @@ | |||
5 | <text name="not_allowed"> | 5 | <text name="not_allowed"> |
6 | あなたはこのスクリプトを見ることができません。 | 6 | あなたはこのスクリプトを見ることができません。 |
7 | </text> | 7 | </text> |
8 | <string name="script_running"> | ||
9 | 実行中 | ||
10 | </string> | ||
8 | </floater> | 11 | </floater> |
diff --git a/linden/indra/newview/skins/xui/ja/floater_media_browser.xml b/linden/indra/newview/skins/xui/ja/floater_media_browser.xml new file mode 100644 index 0000000..20e7394 --- /dev/null +++ b/linden/indra/newview/skins/xui/ja/floater_media_browser.xml | |||
@@ -0,0 +1,19 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | ||
2 | <floater name="floater_about" title="メディア・ブラウザー"> | ||
3 | <layout_stack name="stack1"> | ||
4 | <layout_panel name="nav_controls"> | ||
5 | <button label="戻る" name="back" /> | ||
6 | <button label="転送" name="forward" /> | ||
7 | <button label="再ロード" name="reload" /> | ||
8 | <button label="行く" name="go" /> | ||
9 | </layout_panel> | ||
10 | <layout_panel name="parcel_owner_controls"> | ||
11 | <button label="現在の URL を区画に送信" name="assign" /> | ||
12 | </layout_panel> | ||
13 | <layout_panel name="external_controls"> | ||
14 | <button label="自分の Web ブラウザーで開く" name="open_browser" /> | ||
15 | <check_box label="常に自分のウェブ・ブラウザーで開く" name="open_always" /> | ||
16 | <button label="閉じる" name="close" /> | ||
17 | </layout_panel> | ||
18 | </layout_stack> | ||
19 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/ja/floater_post_process.xml b/linden/indra/newview/skins/xui/ja/floater_post_process.xml new file mode 100644 index 0000000..0ada3d1 --- /dev/null +++ b/linden/indra/newview/skins/xui/ja/floater_post_process.xml | |||
@@ -0,0 +1,54 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | ||
2 | <floater name="Post-Process Floater" title="ポストプロセス設定"> | ||
3 | <tab_container name="Post-Process Tabs"> | ||
4 | <panel label="カラー・フィルター" name="wmiColorFilterPanel"> | ||
5 | <check_box label="有効" name="wmiColorFilterToggle" /> | ||
6 | <text name="wmiColorFilterBrightnessText"> | ||
7 | 明るさ | ||
8 | </text> | ||
9 | <text name="wmiColorFilterSaturationText"> | ||
10 | 彩度 | ||
11 | </text> | ||
12 | <text name="wmiColorFilterContrastText"> | ||
13 | コントラスト | ||
14 | </text> | ||
15 | <text name="wmiColorFilterBaseText"> | ||
16 | コントラストの基本色 | ||
17 | </text> | ||
18 | <slider label="R" name="wmiColorFilterBaseR" /> | ||
19 | <slider label="G" name="wmiColorFilterBaseG" /> | ||
20 | <slider label="B" name="wmiColorFilterBaseB" /> | ||
21 | <slider label="I" name="wmiColorFilterBaseI" /> | ||
22 | </panel> | ||
23 | <panel label="ナイトビジョン" name="wmiNightVisionPanel"> | ||
24 | <check_box label="有効" name="wmiNightVisionToggle" /> | ||
25 | <text name="wmiNightVisionBrightMultText"> | ||
26 | 光の増幅(マルチ) | ||
27 | </text> | ||
28 | <text name="wmiNightVisionNoiseSizeText"> | ||
29 | ノイズ・サイズ | ||
30 | </text> | ||
31 | <text name="wmiNightVisionNoiseStrengthText"> | ||
32 | ノイズ強度 | ||
33 | </text> | ||
34 | </panel> | ||
35 | <panel label="ブルーム" name="wmiBloomPanel"> | ||
36 | <check_box label="有効" name="wmiBloomToggle" /> | ||
37 | <text name="wmiBloomExtractText"> | ||
38 | 明度の抽出 | ||
39 | </text> | ||
40 | <text name="wmiBloomSizeText"> | ||
41 | ブルーム・サイズ | ||
42 | </text> | ||
43 | <text name="wmiBloomStrengthText"> | ||
44 | ブルーム強度 | ||
45 | </text> | ||
46 | </panel> | ||
47 | <panel label="その他" name="Extras"> | ||
48 | <button label="効果読み込み" label_selected="効果読み込み" | ||
49 | name="PPLoadEffect" /> | ||
50 | <button label="効果保存" label_selected="効果保存" name="PPSaveEffect" /> | ||
51 | <line_editor label="効果名" name="PPEffectNameEditor" /> | ||
52 | </panel> | ||
53 | </tab_container> | ||
54 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/ja/floater_snapshot.xml b/linden/indra/newview/skins/xui/ja/floater_snapshot.xml index e3af149..694ea4e 100644 --- a/linden/indra/newview/skins/xui/ja/floater_snapshot.xml +++ b/linden/indra/newview/skins/xui/ja/floater_snapshot.xml | |||
@@ -14,6 +14,8 @@ | |||
14 | ハード・ドライブに保存 | 14 | ハード・ドライブに保存 |
15 | </radio_item> | 15 | </radio_item> |
16 | </radio_group> | 16 | </radio_group> |
17 | <button label="全表示 >>" name="more_btn" tool_tip="高度なオプション" /> | ||
18 | <button label="<< 簡易" name="less_btn" tool_tip="高度なオプション" /> | ||
17 | <text name="type_label2"> | 19 | <text name="type_label2"> |
18 | どんな大きさの画像が必要ですか? | 20 | どんな大きさの画像が必要ですか? |
19 | </text> | 21 | </text> |
@@ -95,19 +97,19 @@ | |||
95 | </combo_item> | 97 | </combo_item> |
96 | </combo_box> | 98 | </combo_box> |
97 | <text name="file_size_label"> | 99 | <text name="file_size_label"> |
98 | ファイル サイズ:[SIZE]バイト | 100 | ファイルイズ: [SIZE] KB |
99 | </text> | 101 | </text> |
100 | <check_box label="インタフェースを表示" name="ui_check" /> | 102 | <check_box label="インタフェースを表示" name="ui_check" /> |
101 | <check_box label="HUD オブジェクトを表示" name="hud_check" /> | 103 | <check_box label="HUD オブジェクトを表示" name="hud_check" /> |
102 | <check_box label="保存後も開いた状態を保持" name="keep_open_check" /> | 104 | <check_box label="保存後も開いた状態を保持" name="keep_open_check" /> |
103 | <check_box label="定の縦横保" name="keep_aspect_check" /> | 105 | <check_box label="比率制限" name="keep_aspect_check" /> |
104 | <check_box label="フレームをフリーズ(全画面)" name="freeze_frame_check" /> | 106 | <check_box label="フレームをフリーズ(全画面)" name="freeze_frame_check" /> |
105 | <button label="新いナップショット" name="new_snapshot_btn" /> | 107 | <button label="スナップショットを更新" name="new_snapshot_btn" /> |
106 | <check_box label="自動スナップショット" name="auto_snapshot_check" /> | 108 | <check_box label="自動スナップショット" name="auto_snapshot_check" /> |
107 | <button label="アップロードL$10" name="upload_btn" /> | 109 | <button label="アップロードL$10" name="upload_btn" /> |
108 | <button label="送信" name="send_btn" /> | 110 | <button label="送信" name="send_btn" /> |
109 | <button label="保存" name="save_btn" /> | 111 | <button label="保存" name="save_btn" /> |
110 | <button label="破" name="discard_btn" /> | 112 | <button label="キンセル" name="discard_btn" /> |
111 | <text name="unknown"> | 113 | <text name="unknown"> |
112 | 未知 | 114 | 未知 |
113 | </text> | 115 | </text> |
diff --git a/linden/indra/newview/skins/xui/ja/floater_test.xml b/linden/indra/newview/skins/xui/ja/floater_test.xml index c84407b..7808c5f 100644 --- a/linden/indra/newview/skins/xui/ja/floater_test.xml +++ b/linden/indra/newview/skins/xui/ja/floater_test.xml | |||
@@ -1,15 +1,2 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <floater name="avatarpicker" title="住人を選択"> | 2 | <floater name="Test" title="テスト" /> |
3 | <text name="Type part of the resident's name:"> | ||
4 | 住人の名前を一部入力してください: | ||
5 | </text> | ||
6 | <button label="見つける" label_selected="見つける" name="Find" /> | ||
7 | <text name="Or select their calling card:"> | ||
8 | または、コーリングカードを選択: | ||
9 | </text> | ||
10 | <button label="選択" label_selected="選択" name="Select" /> | ||
11 | <button label="閉じる" label_selected="閉じる" name="Close" /> | ||
12 | <text name="NotFound"> | ||
13 | '[TEXT]' が見つかりませんでした | ||
14 | </text> | ||
15 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/ja/floater_tools.xml b/linden/indra/newview/skins/xui/ja/floater_tools.xml index bfff2c3..05138d8 100644 --- a/linden/indra/newview/skins/xui/ja/floater_tools.xml +++ b/linden/indra/newview/skins/xui/ja/floater_tools.xml | |||
@@ -32,8 +32,7 @@ | |||
32 | <check_box label="テクスチャーを選択" name="radio select face" /> | 32 | <check_box label="テクスチャーを選択" name="radio select face" /> |
33 | <check_box label="リンク部位を編集" name="checkbox edit linked parts" /> | 33 | <check_box label="リンク部位を編集" name="checkbox edit linked parts" /> |
34 | <check_box label="グリッド使用" left_delta="27" name="checkbox snap to grid" /> | 34 | <check_box label="グリッド使用" left_delta="27" name="checkbox snap to grid" /> |
35 | <button label="オプション" label_selected="オプション" | 35 | <button label="オプション" label_selected="オプション" name="Options..." /> |
36 | name="Options..." /> | ||
37 | <check_box label="両側を引伸ばす" left="116" name="checkbox uniform" /> | 36 | <check_box label="両側を引伸ばす" left="116" name="checkbox uniform" /> |
38 | <check_box label="テクスチャーを引伸ばす" name="checkbox stretch textures" /> | 37 | <check_box label="テクスチャーを引伸ばす" name="checkbox stretch textures" /> |
39 | <text name="text ruler mode" width="120"> | 38 | <text name="text ruler mode" width="120"> |
@@ -190,6 +189,12 @@ | |||
190 | <combo_item name="Open"> | 189 | <combo_item name="Open"> |
191 | 開く | 190 | 開く |
192 | </combo_item> | 191 | </combo_item> |
192 | <combo_item name="Play"> | ||
193 | 区画メディアを再生 | ||
194 | </combo_item> | ||
195 | <combo_item name="Opemmedia"> | ||
196 | 区画メディアを開く | ||
197 | </combo_item> | ||
193 | </combo_box> | 198 | </combo_box> |
194 | <text name="B:"> | 199 | <text name="B:"> |
195 | B: | 200 | B: |
@@ -436,6 +441,9 @@ | |||
436 | <text name="color trans"> | 441 | <text name="color trans"> |
437 | 透過度 % | 442 | 透過度 % |
438 | </text> | 443 | </text> |
444 | <text name="glow label"> | ||
445 | 光 | ||
446 | </text> | ||
439 | <check_box label="明るさ全開" name="checkbox fullbright" /> | 447 | <check_box label="明るさ全開" name="checkbox fullbright" /> |
440 | <text name="tex gen"> | 448 | <text name="tex gen"> |
441 | マッピング | 449 | マッピング |
@@ -556,8 +564,8 @@ | |||
556 | <button label="揃える" label_selected="揃える" left="150" name="button align" /> | 564 | <button label="揃える" label_selected="揃える" left="150" name="button align" /> |
557 | </panel> | 565 | </panel> |
558 | <panel label="コンテンツ" name="Contents"> | 566 | <panel label="コンテンツ" name="Contents"> |
559 | <button label="新しいスクリプト" | 567 | <button label="新しいスクリプト" label_selected="新しいスクリプト..." |
560 | label_selected="新しいスクリプト..." name="button new script" /> | 568 | name="button new script" /> |
561 | </panel> | 569 | </panel> |
562 | </tab_container> | 570 | </tab_container> |
563 | <panel name="land info panel"> | 571 | <panel name="land info panel"> |
@@ -596,7 +604,7 @@ | |||
596 | ドラッグし移動、Ctrlで持上げ、Ctrl+Shiftでスピン | 604 | ドラッグし移動、Ctrlで持上げ、Ctrl+Shiftでスピン |
597 | </text> | 605 | </text> |
598 | <text name="status_place"> | 606 | <text name="status_place"> |
599 | 内側をクリックし作成、Shiftを押しながらクリックし選択 | 607 | 内側をクリックし作成、Shiftを押しながらクリックし選択 |
600 | </text> | 608 | </text> |
601 | <text name="status_selectland"> | 609 | <text name="status_selectland"> |
602 | 土地をクリックし、ドラッグして選択 | 610 | 土地をクリックし、ドラッグして選択 |
diff --git a/linden/indra/newview/skins/xui/ja/floater_url_entry.xml b/linden/indra/newview/skins/xui/ja/floater_url_entry.xml new file mode 100644 index 0000000..af038ea --- /dev/null +++ b/linden/indra/newview/skins/xui/ja/floater_url_entry.xml | |||
@@ -0,0 +1,13 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | ||
2 | <floater name="url_entry"> | ||
3 | <text name="media_label"> | ||
4 | メディア URL: | ||
5 | </text> | ||
6 | <button label="OK" name="ok_btn" /> | ||
7 | <button label="キャンセル" name="cancel_btn" /> | ||
8 | <button label="キャンセル" name="cancel_btn2" /> | ||
9 | <button label="クリア" name="clear_btn" /> | ||
10 | <text name="loading_label"> | ||
11 | ロード中... | ||
12 | </text> | ||
13 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/ja/floater_water.xml b/linden/indra/newview/skins/xui/ja/floater_water.xml new file mode 100644 index 0000000..91094e2 --- /dev/null +++ b/linden/indra/newview/skins/xui/ja/floater_water.xml | |||
@@ -0,0 +1,89 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | ||
2 | <floater name="Water Floater" title="水の高度な編集"> | ||
3 | <text name="KeyFramePresetsText"> | ||
4 | 水の事前設定: | ||
5 | </text> | ||
6 | <button label="新規" label_selected="新規" name="WaterNewPreset" /> | ||
7 | <button label="保存" label_selected="保存" name="WaterSavePreset" /> | ||
8 | <button label="削除" label_selected="削除" name="WaterDeletePreset" /> | ||
9 | <tab_container name="Water Tabs"> | ||
10 | <panel label="設定" name="Settings"> | ||
11 | <text name="BHText"> | ||
12 | 水中のフォグ効果の色 | ||
13 | </text> | ||
14 | <button label="?" name="WaterFogColorHelp" /> | ||
15 | <color_swatch name="WaterFogColor" | ||
16 | tool_tip="カラー・ピッカーをクリックして開く" /> | ||
17 | <text name="WaterFogDensText"> | ||
18 | 水中の透明度指数 | ||
19 | </text> | ||
20 | <button label="?" name="WaterFogDensityHelp" /> | ||
21 | <text name="WaterUnderWaterFogModText"> | ||
22 | 水中のフォグ効果加減 | ||
23 | </text> | ||
24 | <button label="?" name="WaterUnderWaterFogModHelp" /> | ||
25 | <text name="BDensText"> | ||
26 | さざ波の反射スケール | ||
27 | </text> | ||
28 | <button label="?" name="WaterNormalScaleHelp" /> | ||
29 | <text name="BHText2"> | ||
30 | 1 | ||
31 | </text> | ||
32 | <text name="BHText3"> | ||
33 | 2 | ||
34 | </text> | ||
35 | <text name="BHText4"> | ||
36 | 3 | ||
37 | </text> | ||
38 | <text name="HDText"> | ||
39 | フレネル・スケール | ||
40 | </text> | ||
41 | <button label="?" name="WaterFresnelScaleHelp" /> | ||
42 | <text name="FresnelOffsetText"> | ||
43 | フレネル・オフセット | ||
44 | </text> | ||
45 | <button label="?" name="WaterFresnelOffsetHelp" /> | ||
46 | <text name="DensMultText"> | ||
47 | 水面の屈折スケール | ||
48 | </text> | ||
49 | <button label="?" name="WaterScaleAboveHelp" /> | ||
50 | <text name="WaterScaleBelowText"> | ||
51 | 水中の屈折スケール | ||
52 | </text> | ||
53 | <button label="?" name="WaterScaleBelowHelp" /> | ||
54 | <text name="MaxAltText"> | ||
55 | 不透明度の増幅 | ||
56 | </text> | ||
57 | <button label="?" name="WaterBlurMultiplierHelp" /> | ||
58 | </panel> | ||
59 | <panel label="画像" name="Waves"> | ||
60 | <text name="BHText"> | ||
61 | 大波の方向 | ||
62 | </text> | ||
63 | <button label="?" name="WaterWave1Help" /> | ||
64 | <text name="WaterWave1DirXText"> | ||
65 | X | ||
66 | </text> | ||
67 | <text name="WaterWave1DirYText"> | ||
68 | Y | ||
69 | </text> | ||
70 | <text name="BHText2"> | ||
71 | 小波の方向 | ||
72 | </text> | ||
73 | <button label="?" name="WaterWave2Help" /> | ||
74 | <text name="WaterWave2DirXText"> | ||
75 | X | ||
76 | </text> | ||
77 | <text name="WaterWave2DirYText"> | ||
78 | Y | ||
79 | </text> | ||
80 | <text name="BHText3"> | ||
81 | ノーマル・マップ | ||
82 | </text> | ||
83 | <button label="?" name="WaterNormalMapHelp" /> | ||
84 | </panel> | ||
85 | </tab_container> | ||
86 | <string name="WLDefaultWaterNames"> | ||
87 | Default:Glassy:Pond:Murky:Second Plague:SNAKE!!!:Valdez | ||
88 | </string> | ||
89 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/ja/floater_windlight_options.xml b/linden/indra/newview/skins/xui/ja/floater_windlight_options.xml new file mode 100644 index 0000000..d4a3d41 --- /dev/null +++ b/linden/indra/newview/skins/xui/ja/floater_windlight_options.xml | |||
@@ -0,0 +1,190 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | ||
2 | <floater name="WindLight floater" title="空の高度な編集"> | ||
3 | <text name="KeyFramePresetsText"> | ||
4 | 空の事前設定: | ||
5 | </text> | ||
6 | <button label="新規" label_selected="新規" name="WLNewPreset" /> | ||
7 | <button label="保存" label_selected="保存" name="WLSavePreset" /> | ||
8 | <button label="削除" label_selected="削除" name="WLDeletePreset" /> | ||
9 | <button label="デイ・サイクル編集" | ||
10 | label_selected="デイ・サイクル編集" name="WLDayCycleMenuButton" /> | ||
11 | <tab_container name="WindLight Tabs"> | ||
12 | <panel label="大気" name="Atmosphere"> | ||
13 | <text name="BHText"> | ||
14 | 空の配色 | ||
15 | </text> | ||
16 | <button label="?" name="WLBlueHorizonHelp" /> | ||
17 | <text name="BHText2"> | ||
18 | R | ||
19 | </text> | ||
20 | <text name="BHText3"> | ||
21 | G | ||
22 | </text> | ||
23 | <text name="BHText4"> | ||
24 | B | ||
25 | </text> | ||
26 | <text name="BHText5"> | ||
27 | I | ||
28 | </text> | ||
29 | <text name="BDensText"> | ||
30 | 空と遠景の露光 | ||
31 | </text> | ||
32 | <button label="?" name="WLHazeHorizonHelp" /> | ||
33 | <text name="BDensText2"> | ||
34 | 空の配色と濃度 | ||
35 | </text> | ||
36 | <button label="?" name="WLBlueDensityHelp" /> | ||
37 | <text name="BHText6"> | ||
38 | R | ||
39 | </text> | ||
40 | <text name="BHText7"> | ||
41 | G | ||
42 | </text> | ||
43 | <text name="BHText8"> | ||
44 | B | ||
45 | </text> | ||
46 | <text name="BHText9"> | ||
47 | I | ||
48 | </text> | ||
49 | <text name="HDText"> | ||
50 | 大気の不透明度 | ||
51 | </text> | ||
52 | <button label="?" name="WLHazeDensityHelp" /> | ||
53 | <text name="DensMultText"> | ||
54 | 大気の不透明度の増幅 | ||
55 | </text> | ||
56 | <button label="?" name="WLDensityMultHelp" /> | ||
57 | <text name="WLDistanceMultText"> | ||
58 | 視界の増幅 | ||
59 | </text> | ||
60 | <button label="?" name="WLDistanceMultHelp" /> | ||
61 | <text name="MaxAltText"> | ||
62 | 最大高度 | ||
63 | </text> | ||
64 | <button label="?" name="WLMaxAltitudeHelp" /> | ||
65 | </panel> | ||
66 | <panel label="ライティング" name="Lighting"> | ||
67 | <text name="SLCText"> | ||
68 | 太陽/月の色 | ||
69 | </text> | ||
70 | <button label="?" name="WLSunlightColorHelp" /> | ||
71 | <text name="BHText"> | ||
72 | R | ||
73 | </text> | ||
74 | <text name="BHText2"> | ||
75 | G | ||
76 | </text> | ||
77 | <text name="BHText3"> | ||
78 | B | ||
79 | </text> | ||
80 | <text name="BHText4"> | ||
81 | I | ||
82 | </text> | ||
83 | <text name="TODText"> | ||
84 | 太陽/月の位置 | ||
85 | </text> | ||
86 | <button label="?" name="WLTimeOfDayHelp" /> | ||
87 | <text name="WLAmbientText"> | ||
88 | アンビエント | ||
89 | </text> | ||
90 | <button label="?" name="WLAmbientHelp" /> | ||
91 | <text name="BHText5"> | ||
92 | R | ||
93 | </text> | ||
94 | <text name="BHText6"> | ||
95 | G | ||
96 | </text> | ||
97 | <text name="BHText7"> | ||
98 | B | ||
99 | </text> | ||
100 | <text name="BHText8"> | ||
101 | I | ||
102 | </text> | ||
103 | <text name="WLEastAngleText"> | ||
104 | 東の角度 | ||
105 | </text> | ||
106 | <button label="?" name="WLEastAngleHelp" /> | ||
107 | <text name="SunGlowText"> | ||
108 | 太陽の輝き | ||
109 | </text> | ||
110 | <button label="?" name="WLSunGlowHelp" /> | ||
111 | <slider label="フォーカス " name="WLGlowB" /> | ||
112 | <slider label="サイズ " name="WLGlowR" /> | ||
113 | <text name="SceneGammaText"> | ||
114 | 風景ガンマ | ||
115 | </text> | ||
116 | <button label="?" name="WLSceneGammaHelp" /> | ||
117 | <text name="WLStarText"> | ||
118 | 星の輝き | ||
119 | </text> | ||
120 | <button label="?" name="WLStarBrightnessHelp" /> | ||
121 | </panel> | ||
122 | <panel label="雲" name="Clouds"> | ||
123 | <text name="WLCloudColorText"> | ||
124 | 雲の色 | ||
125 | </text> | ||
126 | <button label="?" name="WLCloudColorHelp" /> | ||
127 | <text name="BHText"> | ||
128 | R | ||
129 | </text> | ||
130 | <text name="BHText2"> | ||
131 | G | ||
132 | </text> | ||
133 | <text name="BHText3"> | ||
134 | B | ||
135 | </text> | ||
136 | <text name="BHText4"> | ||
137 | I | ||
138 | </text> | ||
139 | <text name="WLCloudColorText2"> | ||
140 | 雲の XY/密度 | ||
141 | </text> | ||
142 | <button label="?" name="WLCloudDensityHelp" /> | ||
143 | <text name="BHText5"> | ||
144 | X | ||
145 | </text> | ||
146 | <text name="BHText6"> | ||
147 | Y | ||
148 | </text> | ||
149 | <text name="BHText7"> | ||
150 | D | ||
151 | </text> | ||
152 | <text name="WLCloudCoverageText"> | ||
153 | 雲の量 | ||
154 | </text> | ||
155 | <button label="?" name="WLCloudCoverageHelp" /> | ||
156 | <text name="WLCloudScaleText"> | ||
157 | 雲のスケール | ||
158 | </text> | ||
159 | <button label="?" name="WLCloudScaleHelp" /> | ||
160 | <text name="WLCloudDetailText"> | ||
161 | 雲の詳細 (XY/密度) | ||
162 | </text> | ||
163 | <button label="?" name="WLCloudDetailHelp" /> | ||
164 | <text name="BHText8"> | ||
165 | X | ||
166 | </text> | ||
167 | <text name="BHText9"> | ||
168 | Y | ||
169 | </text> | ||
170 | <text name="BHText10"> | ||
171 | D | ||
172 | </text> | ||
173 | <text name="WLCloudScrollXText"> | ||
174 | 雲の移動速度 (X 方向) | ||
175 | </text> | ||
176 | <button label="?" name="WLCloudScrollXHelp" /> | ||
177 | <check_box label="ロック" name="WLCloudLockX" /> | ||
178 | <text name="WLCloudScrollYText"> | ||
179 | 雲の移動速度 (Y 方向) | ||
180 | </text> | ||
181 | <button label="?" name="WLCloudScrollYHelp" /> | ||
182 | <check_box label="ロック" name="WLCloudLockY" /> | ||
183 | <check_box label="従来の雲を描画" name="DrawClassicClouds" /> | ||
184 | <button label="?" name="WLClassicCloudsHelp" /> | ||
185 | </panel> | ||
186 | </tab_container> | ||
187 | <string name="WLDefaultSkyNames"> | ||
188 | A-12AM:A-12PM:A-3AM:A-3PM:A-4.30PM:A-6AM:A-6PM:A-9AM:A-9PM:Barcelona:Blizzard:Blue Midday:Coastal Afternoon:Coastal Sunset:Default:Desert Sunset:Fine Day:Fluffy Big Clouds:Foggy:Funky Funky:Funky Funky Funky:Gelatto:Ghost:Incongruent Truths:Midday 1:Midday 2:Midday 3:Midday 4:Night:Pirate:Purple:Sailor's Delight:Sheer Sensuality | ||
189 | </string> | ||
190 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/ja/menu_viewer.xml b/linden/indra/newview/skins/xui/ja/menu_viewer.xml index 09201e9..610c109 100644 --- a/linden/indra/newview/skins/xui/ja/menu_viewer.xml +++ b/linden/indra/newview/skins/xui/ja/menu_viewer.xml | |||
@@ -79,8 +79,8 @@ | |||
79 | <menu_item_call label="最後のチャットを閲覧" name="Look at Last Chatter" /> | 79 | <menu_item_call label="最後のチャットを閲覧" name="Look at Last Chatter" /> |
80 | <menu_item_separator label="-----------" name="separator" /> | 80 | <menu_item_separator label="-----------" name="separator" /> |
81 | <menu_item_check label="ツールバー" name="Toolbar" /> | 81 | <menu_item_check label="ツールバー" name="Toolbar" /> |
82 | <menu_item_check label="チャット履歴" name="Chat History" /> | 82 | <menu_item_check label="ーカル・ャット" name="Chat History" /> |
83 | <menu_item_check label="タ" name="Instant Message" /> | 83 | <menu_item_check label="コ" name="Instant Message" /> |
84 | <menu_item_call label="持ち物" name="Inventory" /> | 84 | <menu_item_call label="持ち物" name="Inventory" /> |
85 | <menu_item_check label="アクティブ・スピーカー" name="Active Speakers" /> | 85 | <menu_item_check label="アクティブ・スピーカー" name="Active Speakers" /> |
86 | <menu_item_check label="ミュートリスト" name="Mute List" /> | 86 | <menu_item_check label="ミュートリスト" name="Mute List" /> |
@@ -114,7 +114,15 @@ | |||
114 | <menu_item_check label="ハイライトのレンダリング" name="Render Highlights" /> | 114 | <menu_item_check label="ハイライトのレンダリング" name="Render Highlights" /> |
115 | <menu_item_check label="標識のレンダリング" name="Render Beacons" /> | 115 | <menu_item_check label="標識のレンダリング" name="Render Beacons" /> |
116 | <menu_item_separator label="-----------" name="separator" /> | 116 | <menu_item_separator label="-----------" name="separator" /> |
117 | <menu_item_separator label="-----------" name="separator2" /> | ||
117 | <menu_item_check label="パーティクルを隠す" name="Hide Particles" /> | 118 | <menu_item_check label="パーティクルを隠す" name="Hide Particles" /> |
119 | <menu_item_separator label="-----------" name="separator3" /> | ||
120 | <menu label="標識の幅" name="Beacon Width"> | ||
121 | <menu_item_call label="1" name="Beacon Width 1" /> | ||
122 | <menu_item_call label="4" name="Beacon Width 4" /> | ||
123 | <menu_item_call label="16" name="Beacon Width 16" /> | ||
124 | <menu_item_call label="32" name="Beacon Width 32" /> | ||
125 | </menu> | ||
118 | </menu> | 126 | </menu> |
119 | <menu_item_check label="HUD添付物を表示" name="Show HUD Attachments" /> | 127 | <menu_item_check label="HUD添付物を表示" name="Show HUD Attachments" /> |
120 | <menu_item_separator label="-----------" name="separator5" /> | 128 | <menu_item_separator label="-----------" name="separator5" /> |
@@ -156,6 +164,15 @@ | |||
156 | <menu_item_separator label="-----------" name="separator" /> | 164 | <menu_item_separator label="-----------" name="separator" /> |
157 | <menu_item_call label="地域デフォルトに戻す" name="Revert to Region Default" /> | 165 | <menu_item_call label="地域デフォルトに戻す" name="Revert to Region Default" /> |
158 | </menu> | 166 | </menu> |
167 | <menu label="環境設定" name="Environment Settings"> | ||
168 | <menu_item_call label="日の出" name="Sunrise" /> | ||
169 | <menu_item_call label="正午" name="Noon" /> | ||
170 | <menu_item_call label="日没" name="Sunset" /> | ||
171 | <menu_item_call label="深夜" name="Midnight" /> | ||
172 | <menu_item_call label="地域デフォルトに戻す" name="Revert to Region Default" /> | ||
173 | <menu_item_separator label="-----------" name="separator" /> | ||
174 | <menu_item_call label="環境編集" name="Environment Editor" /> | ||
175 | </menu> | ||
159 | </menu> | 176 | </menu> |
160 | <menu label="ツール" name="Tools"> | 177 | <menu label="ツール" name="Tools"> |
161 | <menu_item_check label="リンクされたパートを編集" name="Edit Linked Parts" /> | 178 | <menu_item_check label="リンクされたパートを編集" name="Edit Linked Parts" /> |
@@ -217,6 +234,7 @@ | |||
217 | <menu_item_call label="セキュリティ問題..." name="Security Issues..." /> | 234 | <menu_item_call label="セキュリティ問題..." name="Security Issues..." /> |
218 | <menu_item_call label="QA Wiki..." name="QA Wiki..." /> | 235 | <menu_item_call label="QA Wiki..." name="QA Wiki..." /> |
219 | <menu_item_separator label="-----------" name="separator7" /> | 236 | <menu_item_separator label="-----------" name="separator7" /> |
237 | <menu_item_separator label="-----------" name="separator72" /> | ||
220 | <menu_item_call label="バグの報告..." name="Report Bug..." /> | 238 | <menu_item_call label="バグの報告..." name="Report Bug..." /> |
221 | </menu> | 239 | </menu> |
222 | </menu> | 240 | </menu> |
diff --git a/linden/indra/newview/skins/xui/ja/need_to_long.xml b/linden/indra/newview/skins/xui/ja/need_to_long.xml index 3e584c6..a50fb81 100644 --- a/linden/indra/newview/skins/xui/ja/need_to_long.xml +++ b/linden/indra/newview/skins/xui/ja/need_to_long.xml | |||
@@ -1,5 +1,238 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | 2 | ||
3 | <strings> | 3 | <strings> |
4 | <string><a_file>alerts.xml</a_file> | ||
5 | <b_path>//GraphicsPreferencesHelp/message</b_path> | ||
6 | <c_attribute></c_attribute> | ||
7 | <d_old></d_old> | ||
8 | <e_new> | ||
9 | This panel controls window size and resolution and the quality of the client's graphics. The graphics preferences interface allows you to choose between four graphics levels: Low, Mid, High, and Ultra. One may customize their graphics settings by checking the Custom checkbox and manipulating the following settings: | ||
4 | 10 | ||
11 | Shaders: Enable or disable various types of pixel shaders. | ||
12 | |||
13 | Reflection Detail: Sets the types of objects that water can reflect. | ||
14 | |||
15 | Avatar Rendering: Sets options that affect how the client renders avatars. | ||
16 | |||
17 | Draw Distance: Affects how far out from your viewpoint objects will be rendered in the scene. | ||
18 | |||
19 | Max Particle Count: Sets the maximum number of particles you are able to see on your screen at once. | ||
20 | |||
21 | Post Process Quality: Sets the resolution with which Glow is rendered. | ||
22 | |||
23 | Mesh Detail: Sets the amout of detail used in rendering certain objects. | ||
24 | |||
25 | Lighting Detail: Selects what types of lights you would like to render. | ||
26 | |||
27 | Terrain Detail: Sets the amount of terrain detail you would like to see. | ||
28 | |||
29 | Sky Detail: Sets the amount of tesselation of the sky dome. A higher value takes longer to render, but makes the sun look more rounded. | ||
30 | </e_new> | ||
31 | <f_translation> | ||
32 | このパネルはウィンドウのサイズと解像度、およびクライアントのグラフィックの品質を制御します。 グラフィックの環境設定のインタフェースでは、次の 4 つの中からグラフィック・レベルを選択できます。 低、中、高、超高。 [カスタム]チェックボックをクリックし、次の設定を操作することで、グラフィックスの設定をカスタマイズすることができます。 | ||
33 | |||
34 | シェーダー: ピクセル・シェーダーのさまざまな種類を有効または無効にします。 | ||
35 | |||
36 | 反射詳細: 水が反射するオブジェクトの種類を設定します。 | ||
37 | |||
38 | アバター・レンダリング: クライアントによるアバターのレンダリング方法に影響するオプションを設定します。 | ||
39 | |||
40 | 描画距離: あなたの視点から視界のどのくらいの距離まで、オブジェクトがレンダリングされるかに影響します。 | ||
41 | |||
42 | 最大パーティクル数: 画面に一度に見ることができるパーティクルの最大数を設定します。 | ||
43 | |||
44 | ポストプロセス品質: グロー効果(輝き)がレンダリングされる際の解像度を設定します。 | ||
45 | |||
46 | メッシュ詳細: 特定のオブジェクトのレンダリング時の細部表現を設定します。 | ||
47 | |||
48 | ライティング詳細: レンダリングする光源の種類を選択します。 | ||
49 | |||
50 | 地形詳細: 地形の細部表現を設定します。 | ||
51 | |||
52 | 空詳細: 天空のテセレーションの数値を指定します。 値を高くするほどレンダリングに時間がかかりますが、太陽の形がより円に近くなります。 | ||
53 | </f_translation> | ||
54 | </string><string><a_file>alerts.xml</a_file> | ||
55 | <b_path>//EnvSettingsHelpButton/message</b_path> | ||
56 | <c_attribute></c_attribute> | ||
57 | <d_old></d_old> | ||
58 | <e_new> | ||
59 | These settings adjust the way the environment looks locally on your computer. Your graphics card needs to support atmospheric shaders in order to have access to all of the settings. | ||
60 | |||
61 | Adjust the "Time of Day" slider to change the day's phase locally on the viewer. | ||
62 | |||
63 | Adjust the "Cloud Cover" slider to control how much the clouds cover the sky. | ||
64 | |||
65 | Pick a color in the "Water Color" color picker to change the color of the water. | ||
66 | |||
67 | Adjust the "Water Fog" slider to control how dense the fog is underwater. | ||
68 | |||
69 | Click "Use Estate Time" to reset the time of day to the region's current time of day and remain linked to it. | ||
70 | |||
71 | Click "Advanced Sky" to bring up an editor with more advanced settings for the sky. | ||
72 | |||
73 | Click "Advanced Water" to bring up an editor with more advanced settings for the water. | ||
74 | </e_new> | ||
75 | <f_translation> | ||
76 | 次の各設定はコンピュータ上でインワールドの環境がどのように表示されるかを調整します。 設定のすべてにアクセスするにはお使いのグラフィック・カードが周囲(大気)シェーダー (atmospheric shaders) をサポートしている必要があります。 | ||
77 | |||
78 | [時間帯]スライダーを調整することによりビューワで実際に使用する時間帯を変更できます。 | ||
79 | |||
80 | [雲の量]スライダーを調整することにより空をおおう雲の量を制御できます。 | ||
81 | |||
82 | [水の色]カラー・ピッカーで色を選択することにより水の色を変更できます。 | ||
83 | |||
84 | [水中のフォグ効果]]スライダーを調整することにより水の透明度を制御できます。 | ||
85 | |||
86 | [不動産の時刻を使用]をクリックすることにより時刻はリセットされ地域の現在時刻に連動させることができます。 | ||
87 | |||
88 | [空の高度な設定]をクリックすることにより空のより高度な設定を行うための編集プログラムを起動できます。 | ||
89 | |||
90 | [水の高度な設定]をクリックすることにより水のより高度な設定を行うための編集プログラムを起動できます。 | ||
91 | </f_translation> | ||
92 | </string><string><a_file>alerts.xml</a_file> | ||
93 | <b_path>//HelpDayCycle/message</b_path> | ||
94 | <c_attribute></c_attribute> | ||
95 | <d_old></d_old> | ||
96 | <e_new> | ||
97 | The Day Cycle Editor gives you control over the sky during Second Life's day/night cycle. This is the cycle that is used by the Basic Environment Editor's Time of Day slider. | ||
98 | |||
99 | The Day Cycle Editor works by setting keyframes. These are nodes (represented by the gray blips on the time graph) that have Sky Presets associated with them. As the Time of Day progresses, the WindLight sky "animates" as it interpolates between these keyframes. | ||
100 | |||
101 | The yellow arrow above the timeline represents your current view, based on Time of Day. Click and drag it to see how your day will animate. You may add or delete keyframes by pressing the Add Key and Delete Key buttons to the right of the timeline. | ||
102 | |||
103 | You can set the time position of a keyframe by either dragging it along the timeline, or by setting its value manually in the Key Frame Settings frame. Within the Key Frame Settings frame, you'll be able to associate the keyframe with its respective WindLight preset. | ||
104 | |||
105 | Length of Cycle dictates the overall duration of a "day". Setting this to a low value (for instance, 2 min.) will mean your entire 24-hour timeline will animate in only two real minutes! Once you are satisfied with your timeline and keyframe cycle, use the Play and Stop buttons to preview the results. Remember- you can also move the yellow time-indicator arrow above the timeline to see the cycle animate interactively. Using the Use Estate Time button will synchronize your day length and time of day with the Estate's day cycle. | ||
106 | |||
107 | Once you are pleased with your Day Cycle, you can save and load it with the Save Test Day and Load Test Day buttons. Note that, for now, we only allow one Day Cycle. | ||
108 | </e_new> | ||
109 | <f_translation> | ||
110 | [デイ・サイクル編集]では Second Life での昼と夜の空の変化を制御できます。 これは[基本環境編集]の[時間帯]スライダーで使用されるサイクルです。 | ||
111 | |||
112 | [デイ・サイクル編集]はキーフレームを設定することで機能します。 各キーフレームにはプリセットされた空の設定が関連付けられています(時間グラフに灰色の節として表示されます)。 ウィンドライト( WindLight )はキーフレーム間をデータ補間し、時間の経過とともに空の自然なアニメーションを作り出します。 | ||
113 | |||
114 | 時間グラフの上に表示される黄色の矢印は、時刻をもとにした現在の眺めを表しています。 黄色の矢印をクリック&ドラッグすることで、1 日の移り変わりを見ることができます。 [キーの追加]ボタンまたは[キーの削除]ボタンを押して時間グラフの右側にキーフレームを追加あるいは削除することができます。 | ||
115 | |||
116 | キーフレームの時刻を指定するには、時間グラフに沿ってドラッグするか[キーフレームの設定]のフレーム内で値を直接入力します。 [キーフレームの設定]のフレーム内ではキーフレームにウィンドライト( WindLight )の事前設定を関連付けることができます。 | ||
117 | |||
118 | [サイクルの長さ]では1 日全体の時間を指定できます。 この値を低く設定すると(例えば2分)、24 時間の時間グラフは実時間の 2 分間に相当することを意味します。 時間グラフとキーフレーム・サイクルの設定が完了したら、[再生]ボタンと[停止]ボタンを使用して結果をプレビューしてみましょう。 また、時間グラフ上の黄色い時刻表示矢印を移動することによってもサイクルの変化をインタラクティブに確認することができます。 [不動産の時刻を使用]ボタンを使用することで日の長さと時刻が不動産のデイ・サイクルに同期されます。 | ||
119 | |||
120 | デイ・サイクルの設定が完了したら、[デイ・テストを保存]ボタンおよび[デイ・テストをロード]ボタンを使用してデイ・サイクルを保存およびロードします。 尚、現在の仕様ではデイ・サイクルで指定できるのは 1 日分だけです。 | ||
121 | </f_translation> | ||
122 | </string><string><a_file>floater_about.xml</a_file> | ||
123 | <b_path>/floater_about/credits_editor</b_path> | ||
124 | <c_attribute></c_attribute> | ||
125 | <d_old> | ||
126 | Second Life is brought to you by Philip, Andrew, Tessa, Cory, Frank, James, Doug, Hunter, Richard, John, Eric, Avi, AaronB, AaronY, Ian, Peter, Mark, Robin, Stephen, Tracy, Ryan, Alberto, Haney, Tanya, JimJ, Dan, Ben, Stephanie, Tim, Evan, Catherine, Colin, Chris, Reuben, Charity, Jeska, James, JonHenry, Kelly, Callum, Char, Daniel, DavidF, Don, Jeff, Lauren, Lee, Michael, Ramzi, Vektor, Steve, TomY, Tess, Kona, Brent, Clarissa, PeterP, Jesse, Annette, Cyn, Blue, Ginsu, Jonathan, Karen, Adam, Nova, Deana, Lizzie, Patsy, DavidK, Isaac, Pathfinder, Monroe, Jill, Benny, Altruima, Rheya, Jennifer, Jack, DaveP, Brad, Mick, Babbage, Elisabeth, Brian, Beth, Data, Ethan, Wendy, Nicole, Sky, Jeffrey, Zero, Coffee, Tesla, Kenny, Makiko, Nigel, Teeple, Lucy, Mia, Dee, Guy, Harry, Liana, Branka, Jimbo, Aura, Vasuda, SarahD, bethanye, Torley, Runitai, MikeS, PaulM, Milo, Hermia, JoeM, Melanie, Rejean, DSmith, SMiller, Susan, Jose, DongYun, Justin, Andrey, Syrah, Donovan, Henrik, Nora, Lexie, AC, Donna, ChrisC, Alex, Leyla, Kyle, Mathew, Devin, Joshua, DanC, Jessica, Harmony, Claudia, Tramel, Glenn, Betsy, Fritz, Jun, Adam, Cassandra, Ken, RyanW, Spike, Tofu, Varas, Andy, Luke, RobLa, Chiyo, JohnZ, Dustin, George, Del, PeterP, Migyeong, Matthew, RMullane, CChampion, JTurbin, JamesC, Viola, Lightfoot, Jacqui, Sturm, Adrian, Buttercup, Alfred, Sunil, Alfred, Noel, Irfan, Jill, Yool, Jane, Yuki, Yoz, Matthew, Arthur, Jennifer, Karl, Brian, Ben, Janine, Christopher, Madhavi, Everett, Anthony, Joon, Jake, sean, Adreanne, Stephany, KellyJo, Jeremy, Pramod, Joshua, Sean, Christopher, Amy, Ceren, Katherine, jon, Sudheendra, James, Stephan, Kari, Kartic, Todd, Thomas, Joki, Rebecca, Belinda, Bert, Roger, Bridie, Kristi, Brian, Maria, John, Aric, Nathanel, Melinda, Darrell, Jennifer, Sandy, Greg, Rob, Brad, Chris, Eric, Palmer, Asi, Katja, Lisa, Minda, Jen, Aaron, Bryan, Mark, Jonathan, Jamie, Laurel, William, Matthew, Steve, David, Remy, James, Tim, Lee, Brian, Ashlei, Sam, Mike, Ethan, Austin, Wanda, Paul, Brian, Rachel, Valentyn, Emma Williams, Autum, Steven, Laley, Charles, Jessica, Sue, Gillian, CG, Kip, Kristen, Shamiran, Blake, Brett, Erica, Kent, Joel, Plexus, Twilight, Joppa and many others. | ||
127 | |||
128 | In Memory of Jesse Malthus, you will be fondly remembered by all who heard your voice. | ||
129 | |||
130 | Thank you to the following residents for helping to ensure that this is the best version yet: Aces Spade, Adrian Buckler, Adrienne LeShelle, Amanda Ascot, AnnaQuay Heart, Aquamina Khalifa, Arienne Anatine, Aston Hildyard, Ayami Kamachi, Badinage Odets, Biffy Berjis, Bigfox Pye, BigJohn Jade, BigRick Byrd, Brettus Tripsa, Brock Fitzgerald, Broker Allen, Browse by Name, Chiria Celt, Christopher Prudhomme, dale Cao, dale Lynch, Dante Tucker, DaQbet Kish, Dargon Pacer, Darius Antonelli, Deira Llanfair, DeviantBone Xi, Dore Dorado, Englishwob Etchegaray, Enya Masala, Eric Renneville, Fairfax Michinaga, FireFox Bancroft, FOXI Cortes, Frederick Earp, Geo Meek, Gotthilf Fischer, Hallo Loon, Hawk Carter, Hazel Kyrgyz, Hecter Barbosa, Hex Link, Ice Pak, Ideasu Mukerji, Itoku Kamachi, Jared Halleck, Jaykob Carter, Jennifer Drumheller, JensMartin Tomsen, JIAB Boa, Jim Gustafson, JimmyJet Fossett, Joseph Rustamova, Jt Volos, Karilyn Kidomen, Kaysha Sion, Keaton Nacon, Kevin Susenko, Khashai Steinbeck, Kira Cuddihy, Kit Massiel, Kojo Dixon, KUieTSToRm Lightcloud, Kwai Kyong, Kyrtis Daehlie, LazyGunGuy Bartlett, Lewcas Zapedzki, Lioc Cioc, LLIB Utu, Lou Liebknecht, Luca Draken, Maci Homewood, Major Sewell, Mari Todriya, MarieElize Noel, matt27 Churchill, Maverick Miasma, maydaysos Young, Mediaho Ball, Mikayla Gillespie, Mike Faulkland, Modfire Milland, MollyBrown Foxley, Mosley Jewell, Nuahs Zapedzki, Nyx Divine, Panther Farber, Paul Bumi, Preciousse Moody, PrincessNina Prefect, Prio Serpentine, Rainbow Drake, Randall Rall, Randy Kazan, Reinhart Mokeev, Rhyph Somme, Rico Roizman, Ruge Dryke, Ryan Orbit, Safira Rosher, Samantha Bainbridge, Sammy Foxley, Sash Furst, Saturn Ariantho, Sienna Summers, Skye Enoch, Sofie Kanno, Solar Legion, Sonic Oki, Sunra Saenz, Taina Heart, Taryn Sprawl, tenerife Wei, TomDragon Nilsson, Trebla Reve, Trouble Carnell, user1cat Orbit, Vance Merlin, Veritas Variscan, Web Page, Wi3g3ht3s Ihnen, WinDrftr DeFarge, Yuu Nakamichi, Zac Delec, Zed Fairweather, Zimmo Hallard. | ||
131 | |||
132 | APR Copyright (C) 2000-2004 The Apache Software Foundation | ||
133 | cURL Copyright (C) 1996-2002, Daniel Stenberg, (daniel@haxx.se) | ||
134 | expat Copyright (C) 1998, 1999, 2000 Thai Open Source Software Center Ltd. | ||
135 | FreeType Copyright (C) 1996-2002, The FreeType Project (www.freetype.org). | ||
136 | GL Copyright (C) 1999-2004 Brian Paul. | ||
137 | Havok.com(TM) Copyright (C) 1999-2001, Telekinesys Research Limited. | ||
138 | jpeg2000 Copyright (C) 2001, David Taubman, The University of New South Wales (UNSW) | ||
139 | jpeglib Copyright (C) 1991-1998, Thomas G. Lane. | ||
140 | ogg/vorbis Copyright (C) 2001, Xiphophorus | ||
141 | OpenSSL Copyright (C) 1998-2002 The OpenSSL Project. | ||
142 | SDL Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002 Sam Lantinga | ||
143 | SSLeay Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | ||
144 | xmlrpc-epi Copyright (C) 2000 Epinions, Inc. | ||
145 | zlib Copyright (C) 1995-2002 Jean-loup Gailly and Mark Adler. | ||
146 | |||
147 | All rights reserved. See licenses.txt for details. | ||
148 | |||
149 | Voice chat Audio coding: Polycom(R) Siren14(TM) (ITU-T Rec. G.722.1 Annex C) | ||
150 | |||
151 | |||
152 | Mr. Watson -- come here -- I want to see you. | ||
153 | </d_old> | ||
154 | <e_new> | ||
155 | Second Life is brought to you by Philip, Andrew, Tessa, Cory, Frank, James, Doug, Hunter, Richard, John, Eric, Avi, AaronB, AaronY, Ian, Peter, Mark, Robin, Stephen, Tracy, Ryan, Alberto, Haney, Tanya, JimJ, Dan, Ben, Stephanie, Tim, Evan, Catherine, Colin, Chris, Reuben, Charity, Jeska, James, JonHenry, Kelly, Callum, Char, Daniel, DavidF, Don, Jeff, Lauren, Lee, Michael, Ramzi, Vektor, Steve, TomY, Tess, Kona, Brent, Clarissa, PeterP, Jesse, Annette, Cyn, Blue, Ginsu, Jonathan, Karen, Adam, Nova, Deana, Lizzie, Patsy, DavidK, Isaac, Pathfinder, Monroe, Jill, Benny, Altruima, Rheya, Jennifer, Jack, DaveP, Brad, Mick, Babbage, Elisabeth, Brian, Beth, Data, Ethan, Wendy, Nicole, Sky, Jeffrey, Zero, Coffee, Tesla, Kenny, Makiko, Nigel, Teeple, Lucy, Mia, Dee, Guy, Harry, Liana, Branka, Jimbo, Aura, Vasuda, SarahD, bethanye, Torley, Runitai, MikeS, PaulM, Milo, Hermia, JoeM, Melanie, Rejean, DSmith, SMiller, Susan, Jose, DongYun, Justin, Andrey, Syrah, Donovan, Henrik, Nora, Lexie, AC, Donna, ChrisC, Alex, Leyla, Kyle, Mathew, Devin, Joshua, DanC, Jessica, Harmony, Claudia, Tramel, Glenn, Betsy, Fritz, Jun, Adam, Cassandra, Ken, RyanW, Spike, Tofu, Varas, Andy, Luke, RobLa, Chiyo, JohnZ, Dustin, George, Del, PeterP, Migyeong, Matthew, RMullane, CChampion, JTurbin, JamesC, Viola, Lightfoot, Jacqui, Sturm, Adrian, Buttercup, Alfred, Sunil, Alfred, Noel, Irfan, Jill, Yool, Jane, Yuki, Yoz, Matthew, Arthur, Jennifer, Karl, Brian, Ben, Janine, Christopher, Madhavi, Everett, Anthony, Joon, Jake, sean, Adreanne, Stephany, KellyJo, Jeremy, Pramod, Joshua, Sean, Christopher, Amy, Ceren, Katherine, jon, Sudheendra, James, Stephan, Kari, Kartic, Todd, Thomas, Joki, Rebecca, Belinda, Bert, Roger, Bridie, Kristi, Brian, Maria, John, Aric, Nathanel, Melinda, Darrell, Jennifer, Sandy, Greg, Rob, Brad, Chris, Eric, Palmer, Asi, Katja, Lisa, Minda, Jen, Aaron, Bryan, Mark, Jonathan, Jamie, Laurel, William, Matthew, Steve, David, Remy, James, Tim, Lee, Brian, Ashlei, Sam, Mike, Ethan, Austin, Wanda, Paul, Brian, Rachel, Valentyn, Emma Williams, Autum, Steven, Laley, Charles, Jessica, Sue, Gillian, CG, Kip, Kristen, Shamiran, Blake, Brett, Erica, Kent, Joel, Plexus, Twilight, Joppa, Enus, Kraft, Naveen, Simon, Q, Ronp, Laurap, Ram, KyleJM, Marty, Kend, Daveh, Prospero, Melissa, Nat, Hamilton, Green, Seraph, Ekim, Miz, Jimmy, Kosmo, Rome, Doris, JT, Benoc, Whump, Mango, Trinity, Patch, TJ, Christy, Bao, Joohwan, Kate, Oreh, Angela, Johan, Cheah, Lan, Matias, Brandy, Cogsworth, Aleks, Mitchell, Space, Einstein, Bambers, Colton, Malbers, Maggie, Umesh, Santosh, Rose, Stash, Rothman, Winnie, Stella, Niall and many others. | ||
156 | |||
157 | Thank you to the following residents for helping to ensure that this is the best version yet: aaron23 decuir, Abelv Vollmar, Abyssin Otoro, ActingIll Igaly, Adamas Carter, Addy Broome, Adelia Menges, Alexandra Rucker, Alexandrea Fride, Alissa Sabre, Alyx Jonson, Ann Otoole, Anton Fargis, Aradia Dielli, Araina jewell, Arcane Clawtooth, arcangelo vantelli, Are Sperber, Argent Stonecutter, arkady yost, Ashcroft Burnham, Ashen Arida, Auron Forcella, Azadine Umarov, Azildin Furst, Balp Allen, Balpien Hammerer, Barney Boomslang, Barrett Slade, becky pippen, Beeflin Grut, Beer Dailey, Behemoth Greenwood, bigmanu greene, bitova loon, Bonca Chikuwa, Bonnie Bechir, Brandon Catteneo, buttonpusher jones, Carina Raymaker, Ceera Murakami, Celierra Darling, ChatNoir Moonsoo, Cheetah Hammerer, chet neurocam, Cinthya Loveless, Cold Spitteler, Coral Quinnell, Crash Pointe, CrazyTB Oh, Creem Pye, Crom Chaffe, ctrl althouse, dade carver, Dael Ra, dakota schwade, Dale Innis, Damian McLeod, Danger Lytton, danielluh ashton, DanOfWA Flanagan, Davec Horsforth, Davidius Morigi, davie zinner, Day Oh, DBDigital Epsilon, Deany Fall, deBruce Munro, Decaf Coffey, Dedric Mauriac, Deeso Saeed, Dekka Raymaker, dexter eberhart, Dildo Spitz, Dizzy Banjo, djcabello klaar, Dnali Anabuki, Domchi Underwood, Doran Zemlja, Drew Dwi, Duckless Vandyke, Duncan Stenvaag, Dylan Rickenbacker, dzogchen Moody, Dzonatas Sol, Eddy Stryker, Edward Griffith, Edward Pearse, ein duesenburg, Elle Pollack, Elle74 Zaftig, Emileigh Starbrook, Emma Nowhere, ener bing, Erdrick Balbozar, eric domela, Evangeline Biedermann, Excalibur Longstaff, Fake Fitzgerald, Feldspar Millgrove, Feynt Mistral, Fluf Fredriksson, Forbid Utorid, Fortyniner Beck, Francesco Despres, Francisco Koolhoven, Franta Burt, Fury Rosewood, garde Burrel, Garmin Kawaguichi, Gavin Ichigo, Gellan Glenelg, Genie Demina, Gennifer Meredith, Gigs Taggart, Goldie Katsu, Gwyneth Llewelyn, Haravikk Mistral, Harleen Gretzky, Haruki Watanabe, Heather Manatiso, Henri Beauchamp, Honey Fairweather, Hypatia Callisto, Ice Brodie, icktoofay Kamachi, IntLibber Brautigan, Janise Dreamscape, Jay Shinobu, Jenni Ryba, Jeremy Ondricek, JetZep Zabelin, Jims Smythe, Jini Hammerer, Jopy Weber, JustOneMore Loon, Kaluura Boa, Kara Markova, Kevin Susenko, Khyra Ares, Kii Lilliehook, Kitty Barnett, Kris Kuttelwascher, Lanita Wingtips, Laura18 Streeter, Lee Ludd, Lettrius Jewell, Liberty Tesla, LilyAnna Carter, Lindal Kidd, Lisa Lowe, Lisa McConnell, Lola Machin, luca peck, Lupus Clawtooth, M1sha Dallin, Macsima Dagostino, Mana Janus, Mani Canning, Manjusri Binder, marceledward edman, march Korda, marchino villota, Marcus Llewellyn, MartinRJ Fayray, Matthew Dowd, Max Kleiber, mazzy fastback, McCabe Maxsted, Mckailen Kohnke, Meghan Dench, Melvin Starbrook, Mercia Mcmahon, Miakoda Carnell, Michelle2 Zenovka, Michi Lumin, mick parnall, Milla Michinaga, Millie Thompson, miranda Ashby, Mircea Lobo, MIssSara Beck, mouse mimistrobell, Myria Boa, Nanci Barthelmess, Nargus Asturias, Natalya Debevec, Nedrae Messmer, Nexeus Fatale, Niky Zenovka, Nimrod Szondi, Ninane Yoshikawa, Noch Tripsa, nokithecat writer, Nyko Merlin, Onyx Halberd, oryx tempel, Osprey Therian, Pac Hyun, Panagea McMillan, Patrick Ferrentino, PattehPh0x Katsu, ponk bing, Poppy Linden, Prajna Vella, Precious Rhiano, Prokofy Neva, Randall Lovenkraft, Rascal Ratelle, Raydon Writer, Rhaorth Antonelli, Rock Hayek, Ron Crimson, Ron Khondji, Ronald Richez, Rui Clary, Ruud Lathrop, Sakkano Imako, Sam Reinard, Sascha Vandyke, Scrippy Scofield, Sean18 McCarey, Sedona Mills, Sekonda Huet, Seraph Nephilim, Sergei Milos, Shadowquine Maltz, shai khalifa, sheilah flatley, Sheri Underwood, Shuggy Husky, Sierra Janus, Sigma Avro, Simil Miles, simon kline, Simon Nolan, Sindy Tsure, Sparks Keynes, Squirrel Wood, Stahi Columbia, StarSong Bright, Summer Seale, Sunn Thunders, Susan Koltai, Syler Zhora, Synack Fitzgerald, Tayra Dagostino, Tee Cramer, Teravus Ousley, Thomas Shikami, Tia Araw, Tillie Ariantho, Topher Brooks, Torley Linden, Twosteppin Jewell, tx Oh, urantia jewell, vaguegirl Petty, VeC Merlin, venus petrov, vv33d Beck, vynka dean, zann canto, zeebster colasanti, Zi Ree, Zion Tristan, Zorin Frobozz, Zyzzy Zarf | ||
158 | |||
159 | APR Copyright (C) 2000-2004 The Apache Software Foundation | ||
160 | cURL Copyright (C) 1996-2002, Daniel Stenberg, (daniel@haxx.se) | ||
161 | expat Copyright (C) 1998, 1999, 2000 Thai Open Source Software Center Ltd. | ||
162 | FreeType Copyright (C) 1996-2002, The FreeType Project (www.freetype.org). | ||
163 | GL Copyright (C) 1999-2004 Brian Paul. | ||
164 | Havok.com(TM) Copyright (C) 1999-2001, Telekinesys Research Limited. | ||
165 | jpeg2000 Copyright (C) 2001, David Taubman, The University of New South Wales (UNSW) | ||
166 | jpeglib Copyright (C) 1991-1998, Thomas G. Lane. | ||
167 | ogg/vorbis Copyright (C) 2001, Xiphophorus | ||
168 | OpenSSL Copyright (C) 1998-2002 The OpenSSL Project. | ||
169 | SDL Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002 Sam Lantinga | ||
170 | SSLeay Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | ||
171 | xmlrpc-epi Copyright (C) 2000 Epinions, Inc. | ||
172 | zlib Copyright (C) 1995-2002 Jean-loup Gailly and Mark Adler. | ||
173 | |||
174 | All rights reserved. See licenses.txt for details. | ||
175 | |||
176 | Voice chat Audio coding: Polycom(R) Siren14(TM) (ITU-T Rec. G.722.1 Annex C) | ||
177 | |||
178 | |||
179 | Happiness is a warm puppy. -- Charles M. Schulz | ||
180 | </e_new> | ||
181 | <f_translation> | ||
182 | Second Life は、Philip、Andrew、Tessa、Cory、Frank、James、Doug、Hunter、Richard、John、Eric、Avi、AaronB、AaronY、Ian、Peter、Mark、Robin、Stephen、Tracy、Ryan、Alberto、Haney、Tanya、JimJ、Dan、Ben、Stephanie、Tim、Evan、Catherine、Colin、Chris、Reuben、Charity、Jeska、James、JonHenry、Kelly、Callum、Char、Daniel、DavidF、Don、Jeff、Lauren、Lee、Michael、Ramzi、Vektor、Steve、TomY、Tess、Kona、Brent、Clarissa、PeterP、Jesse、Annette、Cyn、Blue、Ginsu、Jonathan、Karen、Adam、Nova、Deana、Lizzie、Patsy、DavidK、Isaac、Pathfinder、Monroe、Jill、Benny、Altruima、Rheya、Jennifer、Jack、DaveP、Brad、Mick、Babbage、Elisabeth、Brian、Beth、Data、Ethan、Wendy、Nicole、Sky、Jeffrey、Zero、Coffee、Tesla、Kenny、Makiko、Nigel、Teeple、Lucy、Mia、Dee、Guy、Harry、Liana、Branka、Jimbo、Aura、Vasuda、SarahD、bethanye、Torley、Runitai、MikeS、PaulM、Milo、Hermia、JoeM、Melanie、Rejean、DSmith、SMiller、Susan、Jose、DongYun、Justin、Andrey、Syrah、Donovan、Henrik、Nora、Lexie、AC、Donna、ChrisC、Alex、Leyla、Kyle、Mathew、Devin、Joshua、DanC、Jessica、Harmony、Claudia、Tramel、Glenn、Betsy、Fritz、Jun、Adam、Cassandra、Ken、RyanW、Spike、Tofu、Varas、Andy、Luke、RobLa、Chiyo、JohnZ、Dustin、George、Del、PeterP、Migyeong、Matthew、RMullane、CChampion、JTurbin、JamesC、Viola、Lightfoot、Jacqui、Sturm、Adrian、Buttercup、Alfred、Sunil、Alfred、Noel、Irfan、Jill、Yool、Jane、Yuki、Yoz、Matthew、Arthur、Jennifer、Karl、Brian、Ben、Janine、Christopher、Madhavi、Everett、Anthony、Joon、Jake、sean、Adreanne、Stephany、KellyJo、Jeremy、Pramod、Joshua、Sean、Christopher、Amy、Ceren、Katherine、jon、Sudheendra、James、Stephan、Kari、Kartic、Todd、Thomas、Joki、Rebecca、Belinda、Bert、Roger、Bridie、Kristi、Brian、Maria、John、Aric、Nathanel、Melinda、Darrell、Jennifer、Sandy、Greg、Rob、Brad、Chris、Eric、Palmer、Asi、Katja、Lisa、Minda、Jen、Aaron、Bryan、Mark、Jonathan、Jamie、Laurel、William、Matthew、Steve、David、Remy、James、Tim、Lee、Brian、Ashlei、Sam、Mike、Ethan、Austin、Wanda、Paul、Brian、Rachel、Valentyn、Emma Williams、Autum、Steven、Laley、Charles、Jessica、Sue、Gillian、CG、Kip、Kristen、Shamiran、Blake、Brett、Erica、Kent、Joel、Plexus、Twilight、Joppa、Enus、Kraft、Naveen、Simon、Q、Ronp、Laurap、Ram、KyleJM、Marty、Kend、Daveh、Prospero、Melissa、Nat、Hamilton、Green、Seraph、Ekim、Miz、Jimmy、Kosmo、Rome、Doris、JT、Benoc、Whump、Mango、Trinity、Patch、TJ、Christy、Bao、Joohwan、Kate、Oreh、Angela、Johan、Cheah、Lan、Matias、Brandy、Cogsworth、Aleks、 Mitchell、Space、Einstein、Bambers、Colton、Malbers、Maggie、Umesh、Santosh、Rose、Stash、Rothman、Winnie、Stella、Niall と、その他多数の人達によって作成されました。 | ||
183 | |||
184 | このバージョンをこれまでで最高のものになるようご協力をいただいた以下の住人の皆様に深く感謝いたします。 aaron23 decuir、Abelv Vollmar、Abyssin Otoro、ActingIll Igaly、Adamas Carter、Addy Broome、Adelia Menges、Alexandra Rucker、Alexandrea Fride、Alissa Sabre、Alyx Jonson、Ann Otoole、Anton Fargis、Aradia Dielli、Araina jewell、Arcane Clawtooth、arcangelo vantelli、Are Sperber、Argent Stonecutter、arkady yost、Ashcroft Burnham、Ashen Arida、Auron Forcella、Azadine Umarov、Azildin Furst、Balp Allen、Balpien Hammerer、Barney Boomslang、Barrett Slade、becky pippen、Beeflin Grut、Beer Dailey、Behemoth Greenwood、bigmanu greene、bitova loon、Bonca Chikuwa、Bonnie Bechir、Brandon Catteneo、buttonpusher jones、Carina Raymaker、Ceera Murakami、Celierra Darling、ChatNoir Moonsoo、Cheetah Hammerer、chet neurocam、Cinthya Loveless、Cold Spitteler、Coral Quinnell、Crash Pointe、CrazyTB Oh、Creem Pye、Crom Chaffe、ctrl althouse、dade carver、Dael Ra、dakota schwade、Dale Innis、Damian McLeod、Danger Lytton、danielluh ashton、DanOfWA Flanagan、Davec Horsforth、Davidius Morigi、davie zinner、Day Oh、DBDigital Epsilon、Deany Fall、deBruce Munro、Decaf Coffey、Dedric Mauriac、Deeso Saeed、Dekka Raymaker、dexter eberhart、Dildo Spitz、Dizzy Banjo、djcabello klaar、Dnali Anabuki、Domchi Underwood、Doran Zemlja、Drew Dwi、Duckless Vandyke、Duncan Stenvaag、Dylan Rickenbacker、dzogchen Moody、Dzonatas Sol、Eddy Stryker、Edward Griffith、Edward Pearse、ein duesenburg、Elle Pollack、Elle74 Zaftig、Emileigh Starbrook、Emma Nowhere、ener bing、Erdrick Balbozar、eric domela、Evangeline Biedermann、Excalibur Longstaff、Fake Fitzgerald、Feldspar Millgrove、Feynt Mistral、Fluf Fredriksson、Forbid Utorid、Fortyniner Beck、Francesco Despres、Francisco Koolhoven、Franta Burt、Fury Rosewood、garde Burrel、Garmin Kawaguichi、Gavin Ichigo、Gellan Glenelg、Genie Demina、Gennifer Meredith、Gigs Taggart、Goldie Katsu、Gwyneth Llewelyn、Haravikk Mistral、Harleen Gretzky、Haruki Watanabe、Heather Manatiso、Henri Beauchamp、Honey Fairweather、Hypatia Callisto、Ice Brodie、icktoofay Kamachi、IntLibber Brautigan、Janise Dreamscape、Jay Shinobu、Jenni Ryba、Jeremy Ondricek、JetZep Zabelin、Jims Smythe、Jini Hammerer、Jopy Weber、JustOneMore Loon、Kaluura Boa、Kara Markova、Kevin Susenko、Khyra Ares、Kii Lilliehook、Kitty Barnett、Kris Kuttelwascher、Lanita Wingtips、Laura18 Streeter、Lee Ludd、Lettrius Jewell、Liberty Tesla、LilyAnna Carter、Lindal Kidd、Lisa Lowe、Lisa McConnell、Lola Machin、luca peck、Lupus Clawtooth、M1sha Dallin、Macsima Dagostino、Mana Janus、Mani Canning、Manjusri Binder、marceledward edman、march Korda、marchino villota、Marcus Llewellyn、MartinRJ Fayray、Matthew Dowd、Max Kleiber、mazzy fastback、McCabe Maxsted、Mckailen Kohnke、Meghan Dench、Melvin Starbrook、Mercia Mcmahon、Miakoda Carnell、Michelle2 Zenovka、Michi Lumin、mick parnall、Milla Michinaga、Millie Thompson、miranda Ashby、Mircea Lobo、MIssSara Beck、mouse mimistrobell、Myria Boa、Nanci Barthelmess、Nargus Asturias、Natalya Debevec、Nedrae Messmer、Nexeus Fatale、Niky Zenovka、Nimrod Szondi、Ninane Yoshikawa、Noch Tripsa、nokithecat writer、Nyko Merlin、Onyx Halberd、oryx tempel、Osprey Therian、Pac Hyun、Panagea McMillan、Patrick Ferrentino、PattehPh0x Katsu、ponk bing、Poppy Linden、Prajna Vella、Precious Rhiano、Prokofy Neva、Randall Lovenkraft、Rascal Ratelle、Raydon Writer、Rhaorth Antonelli、Rock Hayek、Ron Crimson、Ron Khondji、Ronald Richez、Rui Clary、Ruud Lathrop、Sakkano Imako、Sam Reinard、Sascha Vandyke、Scrippy Scofield、Sean18 McCarey、Sedona Mills、Sekonda Huet、Seraph Nephilim、Sergei Milos、Shadowquine Maltz、shai khalifa、sheilah flatley、Sheri Underwood、Shuggy Husky、Sierra Janus、Sigma Avro、Simil Miles、simon kline、Simon Nolan、Sindy Tsure、Sparks Keynes、Squirrel Wood、Stahi Columbia、StarSong Bright、Summer Seale、Sunn Thunders、Susan Koltai、Syler Zhora、Synack Fitzgerald、Tayra Dagostino、Tee Cramer、Teravus Ousley、Thomas Shikami、Tia Araw、Tillie Ariantho、Topher Brooks、Torley Linden、Twosteppin Jewell、tx Oh、urantia jewell、vaguegirl Petty、VeC Merlin、venus petrov、vv33d Beck、vynka dean、zann canto、zeebster colasanti、Zi Ree、Zion Tristan、Zorin Frobozz、Zyzzy Zarf | ||
185 | |||
186 | APR Copyright (C) 2000-2004 The Apache Software Foundation | ||
187 | cURL Copyright (C) 1996-2002, Daniel Stenberg, (daniel@haxx.se) | ||
188 | expat Copyright (C) 1998, 1999, 2000 Thai Open Source Software Center Ltd. | ||
189 | FreeType Copyright (C) 1996-2002, The FreeType Project (www.freetype.org). | ||
190 | GL Copyright (C) 1999-2004 Brian Paul. | ||
191 | Havok.com(TM) Copyright (C) 1999-2001, Telekinesys Research Limited. | ||
192 | jpeg2000 Copyright (C) 2001, David Taubman, The University of New South Wales (UNSW) | ||
193 | jpeglib Copyright (C) 1991-1998, Thomas G. Lane. | ||
194 | ogg/vorbis Copyright (C) 2001, Xiphophorus | ||
195 | OpenSSL Copyright (C) 1998-2002 The OpenSSL Project. | ||
196 | SDL Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002 Sam Lantinga | ||
197 | SSLeay Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | ||
198 | xmlrpc-epi Copyright (C) 2000 Epinions, Inc. | ||
199 | zlib Copyright (C) 1995-2002 Jean-loup Gailly and Mark Adler. | ||
200 | |||
201 | 無断複写・転載を禁じます。 詳細はlicenses.txtを参照してください。 | ||
202 | |||
203 | Voice chat Audio coding: Polycom(R) Siren14(TM) (ITU-T Rec. G.722.1 Annex C) | ||
204 | |||
205 | |||
206 | Happiness is a warm puppy. (しあわせは…あったかい子犬) -- チャールズ・M・シュルツ | ||
207 | </f_translation> | ||
208 | <f_old_trans> | ||
209 | Second Life は、Philip、Andrew、Tessa、Cory、Frank、James、Doug、Hunter、Richard、John、Eric、Avi、AaronB、AaronY、Ian、Peter、Mark、Robin、Stephen、Tracy、Ryan、Alberto、Haney、Tanya、JimJ、Dan、Ben、Stephanie、Tim、Evan、Catherine、Colin、Chris、Reuben、Charity、Jeska、James、JonHenry、Kelly、Callum、Char、Daniel、DavidF、Don、Jeff、Lauren、Lee、Michael、Ramzi、Vektor、Steve、TomY、Tess、Kona、Brent、Clarissa、PeterP、Jesse、Annette、Cyn、Blue、Ginsu、Jonathan、Karen、Adam、Nova、Deana、Lizzie、Patsy、DavidK、Isaac、Pathfinder、Monroe、Jill、Benny、Altruima、Rheya、Jennifer、Jack、DaveP、Brad、Mick、Babbage、Elisabeth、Brian、Beth、Data、Ethan、Wendy、Nicole、Sky、Jeffrey、Zero、Coffee、Tesla、Kenny、Makiko、Nigel、Teeple、Lucy、Mia、Dee、Guy、Harry、Liana、Branka、Jimbo、Aura、Vasuda、SarahD、bethanye、Torley、Runitai、MikeS、PaulM、Milo、Hermia、JoeM、Melanie、Rejean、DSmith、SMiller、Susan、Jose、DongYun、Justin、Andrey、Syrah、Donovan、Henrik、Nora、Lexie、AC、Donna、ChrisC、Alex、Leyla、Kyle、Mathew、Devin、Joshua、DanC、Jessica、Harmony、Claudia、Tramel、Glenn、Betsy、Fritz、Jun、Adam、Cassandra、Ken、RyanW、Spike、Tofu、Varas、Andy、Luke、RobLa、Chiyo、JohnZ、Dustin、George、Del、PeterP、Migyeong、Matthew、RMullane、CChampion、JTurbin、JamesC、Viola、Lightfoot、Jacqui、Sturm、Adrian、Buttercup、Alfred、Sunil、Alfred、Noel、Irfan、Jill、Yool、Jane、Yuki、Yoz、Matthew、Arthur、Jennifer、Karl、Brian、Ben、Janine、Christopher、Madhavi、Everett、Anthony、Joon、Jake、sean、Adreanne、Stephany、KellyJo、Jeremy、Pramod、Joshua、Sean、Christopher、Amy、Ceren、Katherine、jon、Sudheendra、James、Stephan、Kari、Kartic、Todd、Thomas、Joki、Rebecca、Belinda、Bert、Roger、Bridie、Kristi、Brian、Maria、John、Aric、Nathanel、Melinda、Darrell、Jennifer、Sandy、Greg、Rob、Brad、Chris、Eric、Palmer、Asi、Katja、Lisa、Minda、Jen、Aaron、Bryan、Mark、Jonathan、Jamie、Laurel、William、Matthew、Steve、David、Remy、James、Tim、Lee、Brian、Ashlei、Sam、Mike、Ethan、Austin、Wanda、Paul、Brian、Rachel、Valentyn、Emma Williams、Autum、Steven、Laley、Charles、Jessica、Sue、Gillian、CG、Kip、Kristen、Shamiran、Blake、Brett、Erica、Kent、Joel、Plexus、Twilight、Joppa と、その他多数の人達によって作成されました。 | ||
210 | |||
211 | 在りし日の Jesse Malthus を偲んで一言。あなたと出会った全ての人が、あなたの素晴らしさを忘れることはないでしょう。 | ||
212 | |||
213 | 現在の最高のバージョンであることを保証するために、支援してくれた住人のみなさんに厚く感謝いたします。Aces Spade, Adrian Buckler, Adrienne LeShelle, Amanda Ascot, AnnaQuay Heart, Aquamina Khalifa, Arienne Anatine, Aston Hildyard, Ayami Kamachi, Badinage Odets, Biffy Berjis, Bigfox Pye, BigJohn Jade, BigRick Byrd, Brettus Tripsa, Brock Fitzgerald, Broker Allen, Browse by Name, Chiria Celt, Christopher Prudhomme, dale Cao, dale Lynch, Dante Tucker, DaQbet Kish, Dargon Pacer, Darius Antonelli, Deira Llanfair, DeviantBone Xi, Dore Dorado, Englishwob Etchegaray, Enya Masala, Eric Renneville, Fairfax Michinaga, FireFox Bancroft, FOXI Cortes, Frederick Earp, Geo Meek, Gotthilf Fischer, Hallo Loon, Hawk Carter, Hazel Kyrgyz, Hecter Barbosa, Hex Link, Ice Pak, Ideasu Mukerji, Itoku Kamachi, Jared Halleck, Jaykob Carter, Jennifer Drumheller, JensMartin Tomsen, JIAB Boa, Jim Gustafson, JimmyJet Fossett, Joseph Rustamova, Jt Volos, Karilyn Kidomen, Kaysha Sion, Keaton Nacon, Kevin Susenko, Khashai Steinbeck, Kira Cuddihy, Kit Massiel, Kojo Dixon, KUieTSToRm Lightcloud, Kwai Kyong, Kyrtis Daehlie, LazyGunGuy Bartlett, Lewcas Zapedzki, Lioc Cioc, LLIB Utu, Lou Liebknecht, Luca Draken, Maci Homewood, Major Sewell, Mari Todriya, MarieElize Noel, matt27 Churchill, Maverick Miasma, maydaysos Young, Mediaho Ball, Mikayla Gillespie, Mike Faulkland, Modfire Milland, MollyBrown Foxley, Mosley Jewell, Nuahs Zapedzki, Nyx Divine, Panther Farber, Paul Bumi, PrincessNina Prefect, Prio Serpentine, Rainbow Drake, Randall Rall, Randy Kazan, Reinhart Mokeev, Rhyph Somme, Rico Roizman, Ruge Dryke, Ryan Orbit, Safira Rosher, Samantha Bainbridge, Sammy Foxley, Sash Furst, Saturn Ariantho, Sienna Summers, Skye Enoch, Sofie Kanno, Solar Legion, Sonic Oki, Sunra Saenz, Taina Heart, Taryn Sprawl, tenerife Wei, TomDragon Nilsson, Trebla Reve, Trouble Carnell, user1cat Orbit, Vance Merlin, Veritas Variscan, Web Page, Wi3g3ht3s Ihnen, WinDrftr DeFarge, Yuu Nakamichi, Zac Delec, Zed Fairweather, Zimmo Hallard. | ||
214 | |||
215 | APR Copyright (C) 2000-2004 The Apache Software Foundation | ||
216 | cURL Copyright (C) 1996-2002, Daniel Stenberg, (daniel@haxx.se) | ||
217 | expat Copyright (C) 1998, 1999, 2000 Thai Open Source Software Center Ltd. | ||
218 | FreeType Copyright (C) 1996-2002, The FreeType Project (www.freetype.org). | ||
219 | GL Copyright (C) 1999-2004 Brian Paul. | ||
220 | Havok.com(TM) Copyright (C) 1999-2001, Telekinesys Research Limited. | ||
221 | jpeg2000 Copyright (C) 2001, David Taubman, The University of New South Wales (UNSW) | ||
222 | jpeglib Copyright (C) 1991-1998, Thomas G. Lane. | ||
223 | ogg/vorbis Copyright (C) 2001, Xiphophorus | ||
224 | OpenSSL Copyright (C) 1998-2002 The OpenSSL Project. | ||
225 | SDL Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002 Sam Lantinga | ||
226 | SSLeay Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | ||
227 | xmlrpc-epi Copyright (C) 2000 Epinions, Inc. | ||
228 | zlib Copyright (C) 1995-2002 Jean-loup Gailly and Mark Adler. | ||
229 | |||
230 | All rights reserved.詳細は licenses.txt をご覧ください。 | ||
231 | |||
232 | Voice chat Audio coding:Polycom(R) Siren14(TM) (ITU-T Rec. G.722.1 Annex C) | ||
233 | |||
234 | |||
235 | ワトソン君、ちょっと来てくれたまえ。 | ||
236 | </f_old_trans> | ||
237 | </string> | ||
5 | </strings> | 238 | </strings> |
diff --git a/linden/indra/newview/skins/xui/ja/need_to_translate.xml b/linden/indra/newview/skins/xui/ja/need_to_translate.xml index 1128fc9..ddd926d 100644 --- a/linden/indra/newview/skins/xui/ja/need_to_translate.xml +++ b/linden/indra/newview/skins/xui/ja/need_to_translate.xml | |||
@@ -1,27 +1,1147 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | 2 | ||
3 | <strings> | 3 | <strings> |
4 | <string><a_file>floater_about_land.xml</a_file> | 4 | <string><a_file>alerts.xml</a_file> |
5 | <b_path>/floaterland/landtab/land_objects_panel/owner list/</b_path> | 5 | <b_path>//UnsupportedGLRequirements/message</b_path> |
6 | <c_attribute></c_attribute> | ||
7 | <d_old></d_old> | ||
8 | <e_new> | ||
9 | You do not appear to have the proper hardware requirements for Second Life. Second Life requires an OpenGL graphics card that has multitexture support. If this is the case, you may want to make sure that you have the latest drivers for your graphics card, and service packs and patches for your operating system. | ||
10 | |||
11 | If you continue to have problems, please visit: http://www.secondlife.com/support | ||
12 | </e_new> | ||
13 | <f_old_trans></f_old_trans> | ||
14 | <f_translation> | ||
15 | Second Life の使用に必要なハードウェアの環境が満たされていないようです。 Second Life ではマルチテクスチャーに対応したOpenGLグラフィック・カードが必要です。 この場合、グラフィック・カードの最新ドライバがインストールされていること、およびオペレーティング・システムにサービス・パックと修正プログラムが適用されていることをご確認ください。 | ||
16 | |||
17 | 問題が解決されない場合には、次のサイトにアクセスしてください。 http://www.secondlife.com/support | ||
18 | </f_translation> | ||
19 | </string><string><a_file>alerts.xml</a_file> | ||
20 | <b_path>//UnsupportedHardware/message</b_path> | ||
21 | <c_attribute></c_attribute> | ||
22 | <d_old></d_old> | ||
23 | <e_new> | ||
24 | Warning: Your system does not meet Second Life's minimum system requirements. If you continue using Second Life, you may experience poor performance. Unfortunately, we cannot provide technical support for unsupported system configurations. | ||
25 | |||
26 | MINSPECS | ||
27 | Do you wish to visit [_URL] for more information? | ||
28 | </e_new> | ||
29 | <f_old_trans></f_old_trans> | ||
30 | <f_translation> | ||
31 | 警告: あなたのシステムは Second Life を使用するために必要な必須動作環境の条件をを満たしていません。 Second Life をこのままご使用になると、不十分なパフォーマンスしか得られないおそれがあります。 また、サポート外のシステム構成でご使用の場合、テクニカルサポートをご利用いただくことができません。 | ||
32 | |||
33 | 必須動作環境の条件 | ||
34 | [_URL] にアクセスして、さらに詳しい情報をご覧になりますか? | ||
35 | </f_translation> | ||
36 | </string><string><a_file>alerts.xml</a_file> | ||
37 | <b_path>//UnsupportedHardware/Yes</b_path> | ||
38 | <c_attribute></c_attribute> | ||
39 | <d_old></d_old> | ||
40 | <e_new> | ||
41 | Yes | ||
42 | </e_new> | ||
43 | <f_old_trans></f_old_trans> | ||
44 | <f_translation> | ||
45 | はい | ||
46 | </f_translation> | ||
47 | </string><string><a_file>alerts.xml</a_file> | ||
48 | <b_path>//UnsupportedHardware/No</b_path> | ||
49 | <c_attribute></c_attribute> | ||
50 | <d_old></d_old> | ||
51 | <e_new> | ||
52 | No | ||
53 | </e_new> | ||
54 | <f_old_trans></f_old_trans> | ||
55 | <f_translation> | ||
56 | いいえ | ||
57 | </f_translation> | ||
58 | </string><string><a_file>alerts.xml</a_file> | ||
59 | <b_path>//UnsupportedGPU/message</b_path> | ||
60 | <c_attribute></c_attribute> | ||
61 | <d_old></d_old> | ||
62 | <e_new> | ||
63 | - Your graphics card does not meet the minimum requirements. | ||
64 | </e_new> | ||
65 | <f_old_trans></f_old_trans> | ||
66 | <f_translation> | ||
67 | - あなたのグラフィック・カードは必須動作環境の条件を満たしていません。 | ||
68 | </f_translation> | ||
69 | </string><string><a_file>alerts.xml</a_file> | ||
70 | <b_path>//UnsupportedCPU/message</b_path> | ||
71 | <c_attribute></c_attribute> | ||
72 | <d_old></d_old> | ||
73 | <e_new> | ||
74 | - Your CPU speed does not meet the minimum requirements. | ||
75 | </e_new> | ||
76 | <f_old_trans></f_old_trans> | ||
77 | <f_translation> | ||
78 | - あなたの CPU の速度は必須動作環境の条件を満たしていません。 | ||
79 | </f_translation> | ||
80 | </string><string><a_file>alerts.xml</a_file> | ||
81 | <b_path>//UnsupportedCPUAmount/message</b_path> | ||
82 | <c_attribute></c_attribute> | ||
83 | <d_old></d_old> | ||
84 | <e_new> | ||
85 | 796 | ||
86 | </e_new> | ||
87 | <f_old_trans></f_old_trans> | ||
88 | <f_translation> | ||
89 | 796 | ||
90 | </f_translation> | ||
91 | </string><string><a_file>alerts.xml</a_file> | ||
92 | <b_path>//UnsupportedRAM/message</b_path> | ||
93 | <c_attribute></c_attribute> | ||
94 | <d_old></d_old> | ||
95 | <e_new> | ||
96 | - Your system memory does not meet the minimum requirements. | ||
97 | </e_new> | ||
98 | <f_old_trans></f_old_trans> | ||
99 | <f_translation> | ||
100 | - あなたのシステム・メモリは必須動作環境の条件を満たしていません。 | ||
101 | </f_translation> | ||
102 | </string><string><a_file>alerts.xml</a_file> | ||
103 | <b_path>//UnsupportedRAMAmount/message</b_path> | ||
104 | <c_attribute></c_attribute> | ||
105 | <d_old></d_old> | ||
106 | <e_new> | ||
107 | 510 | ||
108 | </e_new> | ||
109 | <f_old_trans></f_old_trans> | ||
110 | <f_translation> | ||
111 | 510 | ||
112 | </f_translation> | ||
113 | </string><string><a_file>alerts.xml</a_file> | ||
114 | <b_path>//HelpEstateAbuseEmailAddress</b_path> | ||
115 | <c_attribute>title</c_attribute> | ||
116 | <d_old></d_old> | ||
117 | <e_new>Abuse Email Address</e_new> | ||
118 | <f_old_trans></f_old_trans> | ||
119 | <f_translation>嫌がらせに関するメール先</f_translation> | ||
120 | </string><string><a_file>alerts.xml</a_file> | ||
121 | <b_path>//HelpEstateAbuseEmailAddress/message</b_path> | ||
122 | <c_attribute></c_attribute> | ||
123 | <d_old></d_old> | ||
124 | <e_new> | ||
125 | Setting this to a valid email address will cause | ||
126 | abuse reports on this estate to be sent to that address. | ||
127 | Setting it blank will cause abuse reports to be sent | ||
128 | only to Linden Lab. | ||
129 | </e_new> | ||
130 | <f_old_trans></f_old_trans> | ||
131 | <f_translation> | ||
132 | これを有効なメールアドレスに設定すると、そのアドレスにこの不動産において行われた | ||
133 | 嫌がらせの報告が送信されるようになります。 | ||
134 | 設定を行わない場合(空白)、嫌がらせ報告は Linden Lab にのみ | ||
135 | 送信されます。 | ||
136 | </f_translation> | ||
137 | </string><string><a_file>alerts.xml</a_file> | ||
138 | <b_path>//RetryFetchInventoryDescendents/message</b_path> | ||
139 | <c_attribute></c_attribute> | ||
140 | <d_old></d_old> | ||
141 | <e_new> | ||
142 | Inventory fetch from server timed out. Retry? | ||
143 | </e_new> | ||
144 | <f_old_trans></f_old_trans> | ||
145 | <f_translation> | ||
146 | 「持ち物」データの取得はサーバーのタイムアウトにより完了しませんでした。 再実行しますか? | ||
147 | </f_translation> | ||
148 | </string><string><a_file>alerts.xml</a_file> | ||
149 | <b_path>//RetryFetchInventoryDescendents/ignore</b_path> | ||
150 | <c_attribute></c_attribute> | ||
151 | <d_old></d_old> | ||
152 | <e_new> | ||
153 | Retry Fetch Inventory Descendents | ||
154 | </e_new> | ||
155 | <f_old_trans></f_old_trans> | ||
156 | <f_translation> | ||
157 | 「持ち物」データの後続要素の取得を再実行 | ||
158 | </f_translation> | ||
159 | </string><string><a_file>alerts.xml</a_file> | ||
160 | <b_path>//RetryFetchInventoryDescendents/Retry</b_path> | ||
161 | <c_attribute></c_attribute> | ||
162 | <d_old></d_old> | ||
163 | <e_new> | ||
164 | Retry | ||
165 | </e_new> | ||
166 | <f_old_trans></f_old_trans> | ||
167 | <f_translation> | ||
168 | 再実行 | ||
169 | </f_translation> | ||
170 | </string><string><a_file>alerts.xml</a_file> | ||
171 | <b_path>//RetryFetchInventoryDescendents/Cancel</b_path> | ||
172 | <c_attribute></c_attribute> | ||
173 | <d_old></d_old> | ||
174 | <e_new> | ||
175 | Cancel | ||
176 | </e_new> | ||
177 | <f_old_trans></f_old_trans> | ||
178 | <f_translation> | ||
179 | キャンセル | ||
180 | </f_translation> | ||
181 | </string><string><a_file>alerts.xml</a_file> | ||
182 | <b_path>//ConfirmClearMediaUrlList/message</b_path> | ||
183 | <c_attribute></c_attribute> | ||
184 | <d_old></d_old> | ||
185 | <e_new> | ||
186 | Are you sure you want to clear your list of saved URLs? | ||
187 | </e_new> | ||
188 | <f_old_trans></f_old_trans> | ||
189 | <f_translation> | ||
190 | 保存された URL のリストを消去します。よろしいですか? | ||
191 | </f_translation> | ||
192 | </string><string><a_file>alerts.xml</a_file> | ||
193 | <b_path>//ConfirmClearMediaUrlList/Yes</b_path> | ||
194 | <c_attribute></c_attribute> | ||
195 | <d_old></d_old> | ||
196 | <e_new> | ||
197 | Yes | ||
198 | </e_new> | ||
199 | <f_old_trans></f_old_trans> | ||
200 | <f_translation> | ||
201 | はい | ||
202 | </f_translation> | ||
203 | </string><string><a_file>alerts.xml</a_file> | ||
204 | <b_path>//ConfirmClearMediaUrlList/No</b_path> | ||
205 | <c_attribute></c_attribute> | ||
206 | <d_old></d_old> | ||
207 | <e_new> | ||
208 | Cancel | ||
209 | </e_new> | ||
210 | <f_old_trans></f_old_trans> | ||
211 | <f_translation> | ||
212 | キャンセル | ||
213 | </f_translation> | ||
214 | </string><string><a_file>alerts.xml</a_file> | ||
215 | <b_path>//WLSavePresetAlert/message</b_path> | ||
216 | <c_attribute></c_attribute> | ||
217 | <d_old></d_old> | ||
218 | <e_new> | ||
219 | Do you wish to overwrite the saved preset? | ||
220 | </e_new> | ||
221 | <f_old_trans></f_old_trans> | ||
222 | <f_translation> | ||
223 | 保存された事前設定を上書きしますか? | ||
224 | </f_translation> | ||
225 | <f_old_trans></f_old_trans> | ||
226 | </string><string><a_file>alerts.xml</a_file> | ||
227 | <b_path>//WLSavePresetAlert/Save</b_path> | ||
228 | <c_attribute></c_attribute> | ||
229 | <d_old></d_old> | ||
230 | <e_new> | ||
231 | Yes | ||
232 | </e_new> | ||
233 | <f_old_trans></f_old_trans> | ||
234 | <f_translation> | ||
235 | はい | ||
236 | </f_translation> | ||
237 | </string><string><a_file>alerts.xml</a_file> | ||
238 | <b_path>//WLSavePresetAlert/Cancel</b_path> | ||
239 | <c_attribute></c_attribute> | ||
240 | <d_old></d_old> | ||
241 | <e_new> | ||
242 | No | ||
243 | </e_new> | ||
244 | <f_old_trans></f_old_trans> | ||
245 | <f_translation> | ||
246 | いいえ | ||
247 | </f_translation> | ||
248 | </string><string><a_file>alerts.xml</a_file> | ||
249 | <b_path>//WLDeletePresetAlert/message</b_path> | ||
250 | <c_attribute></c_attribute> | ||
251 | <d_old></d_old> | ||
252 | <e_new> | ||
253 | Do you wish to delete [SKY]? | ||
254 | </e_new> | ||
255 | <f_old_trans></f_old_trans> | ||
256 | <f_translation> | ||
257 | [SKY] を削除しますか? | ||
258 | </f_translation> | ||
259 | </string><string><a_file>alerts.xml</a_file> | ||
260 | <b_path>//WLDeletePresetAlert/Delete</b_path> | ||
261 | <c_attribute></c_attribute> | ||
262 | <d_old></d_old> | ||
263 | <e_new> | ||
264 | Yes | ||
265 | </e_new> | ||
266 | <f_old_trans></f_old_trans> | ||
267 | <f_translation> | ||
268 | はい | ||
269 | </f_translation> | ||
270 | </string><string><a_file>alerts.xml</a_file> | ||
271 | <b_path>//WLDeletePresetAlert/Cancel</b_path> | ||
272 | <c_attribute></c_attribute> | ||
273 | <d_old></d_old> | ||
274 | <e_new> | ||
275 | No | ||
276 | </e_new> | ||
277 | <f_old_trans></f_old_trans> | ||
278 | <f_translation> | ||
279 | いいえ | ||
280 | </f_translation> | ||
281 | </string><string><a_file>alerts.xml</a_file> | ||
282 | <b_path>//WLNoEditDefault/message</b_path> | ||
283 | <c_attribute></c_attribute> | ||
284 | <d_old></d_old> | ||
285 | <e_new> | ||
286 | You cannot edit or delete a default preset. | ||
287 | </e_new> | ||
288 | <f_old_trans></f_old_trans> | ||
289 | <f_translation> | ||
290 | デフォルトの設定を編集したり削除したりすることはできません。 | ||
291 | </f_translation> | ||
292 | </string><string><a_file>alerts.xml</a_file> | ||
293 | <b_path>//WLMissingSky/message</b_path> | ||
294 | <c_attribute></c_attribute> | ||
295 | <d_old></d_old> | ||
296 | <e_new> | ||
297 | This day cycle file references a missing sky file: [SKY]. | ||
298 | </e_new> | ||
299 | <f_old_trans></f_old_trans> | ||
300 | <f_translation> | ||
301 | このデイ・サイクルのファイルは次の存在しない「空」ファイルを参照しています: [SKY]. | ||
302 | </f_translation> | ||
303 | </string><string><a_file>alerts.xml</a_file> | ||
304 | <b_path>//PPSaveEffectAlert/message</b_path> | ||
305 | <c_attribute></c_attribute> | ||
306 | <d_old></d_old> | ||
307 | <e_new> | ||
308 | PostProcess Effect exists. Do you still wish overwrite it? | ||
309 | </e_new> | ||
310 | <f_old_trans></f_old_trans> | ||
311 | <f_translation> | ||
312 | ポストプロセス効果が存在します。 上書きしますか? | ||
313 | </f_translation> | ||
314 | </string><string><a_file>alerts.xml</a_file> | ||
315 | <b_path>//PPSaveEffectAlert/Save</b_path> | ||
316 | <c_attribute></c_attribute> | ||
317 | <d_old></d_old> | ||
318 | <e_new> | ||
319 | Yes | ||
320 | </e_new> | ||
321 | <f_old_trans></f_old_trans> | ||
322 | <f_translation> | ||
323 | はい | ||
324 | </f_translation> | ||
325 | </string><string><a_file>alerts.xml</a_file> | ||
326 | <b_path>//PPSaveEffectAlert/Cancel</b_path> | ||
327 | <c_attribute></c_attribute> | ||
328 | <d_old></d_old> | ||
329 | <e_new> | ||
330 | No | ||
331 | </e_new> | ||
332 | <f_old_trans></f_old_trans> | ||
333 | <f_translation> | ||
334 | いいえ | ||
335 | </f_translation> | ||
336 | </string><string><a_file>alerts.xml</a_file> | ||
337 | <b_path>//HelpEditSky/message</b_path> | ||
338 | <c_attribute></c_attribute> | ||
339 | <d_old></d_old> | ||
340 | <e_new> | ||
341 | Edit the WindLight sliders to create and save a set of skies. | ||
342 | </e_new> | ||
343 | <f_old_trans></f_old_trans> | ||
344 | <f_translation> | ||
345 | ウィンドライトの各種スライダーを編集して空を作成および保存します。 | ||
346 | </f_translation> | ||
347 | </string><string><a_file>alerts.xml</a_file> | ||
348 | <b_path>//HelpEditDayCycle/message</b_path> | ||
349 | <c_attribute></c_attribute> | ||
350 | <d_old></d_old> | ||
351 | <e_new> | ||
352 | Set which skies to turn to throughout the day. | ||
353 | </e_new> | ||
354 | <f_old_trans></f_old_trans> | ||
355 | <f_translation> | ||
356 | 1 日を通して変化する空の様子を設定します。 | ||
357 | </f_translation> | ||
358 | </string><string><a_file>alerts.xml</a_file> | ||
359 | <b_path>//HelpBlueHorizon/message</b_path> | ||
360 | <c_attribute></c_attribute> | ||
361 | <d_old></d_old> | ||
362 | <e_new> | ||
363 | Use the Red/Green/Blue (RGB) sliders to adjust the color of the sky. You can use the Intensity (I) slider to move all three RGB sliders in unison. | ||
364 | </e_new> | ||
365 | <f_old_trans></f_old_trans> | ||
366 | <f_translation> | ||
367 | 空の色を調整するには [R] (赤)、[G] (緑)、[B] (青) の各スライダーを使用します。 [I] スライダーを使用すると、3 つの RGB スライダーを一斉に動かすことができます。 | ||
368 | </f_translation> | ||
369 | </string><string><a_file>alerts.xml</a_file> | ||
370 | <b_path>//HelpHazeHorizon/message</b_path> | ||
371 | <c_attribute></c_attribute> | ||
372 | <d_old></d_old> | ||
373 | <e_new> | ||
374 | Haze Horizon is one of the most useful parameters for | ||
375 | adjusting overall light exposure in the scene. It is | ||
376 | effective for simulating many exposure settings, | ||
377 | such as white-outs from the sun and darker, | ||
378 | closed-iris settings. | ||
379 | </e_new> | ||
380 | <f_old_trans></f_old_trans> | ||
381 | <f_translation> | ||
382 | [空と遠景の露光]は風景の露光量全体を調整する上で最も便利なパラメーターの 1 つです。 太陽光によるホワイトアウト現象や暗く絞り込んだ設定など、さまざまな露出設定をシミュレーションできます。 | ||
383 | </f_translation> | ||
384 | </string><string><a_file>alerts.xml</a_file> | ||
385 | <b_path>//HelpBlueDensity/message</b_path> | ||
386 | <c_attribute></c_attribute> | ||
387 | <d_old></d_old> | ||
388 | <e_new> | ||
389 | Blue Density affects the overall color saturation of the sky and fog. If you move the Intensity (I) slider to the right, colors will become brighter and more vibrant. If you move it all the way to the left, the colors will become duller, eventually fading to black and white. If you want to fine-tune the sky's color balance, you can control individual elements of saturation by using the Red/Green/Blue (RGB) sliders. | ||
390 | </e_new> | ||
391 | <f_old_trans></f_old_trans> | ||
392 | <f_translation> | ||
393 | [空の配色と濃度]は空と霧の彩度全体に影響します。 [I] スライダーを右に移動すると色は明るくくっきりとなります。 このスライダーを左端に移動すると、色は彩りを失い、白黒に退色します。 空の色を微調整する場合は、[R] (赤)、 [緑] (G)、[青] (B) の各スライダーを使用して彩度を個別に制御できます。 | ||
394 | </f_translation> | ||
395 | </string><string><a_file>alerts.xml</a_file> | ||
396 | <b_path>//HelpHazeDensity/message</b_path> | ||
397 | <c_attribute></c_attribute> | ||
398 | <d_old></d_old> | ||
399 | <e_new> | ||
400 | Haze Density controls the level of dull, gray | ||
401 | haze in the atmosphere. It is effective for | ||
402 | simulating scenes with high levels of smoke | ||
403 | and man-made pollutants. It is also effective | ||
404 | for simulating fog and mist. | ||
405 | </e_new> | ||
406 | <f_old_trans></f_old_trans> | ||
407 | <f_translation> | ||
408 | [大気の不透明度]は大気中のどんよりとした空の雰囲気、グレーがかった霧のレベルを制御します。 濃い煙や大気汚染など | ||
409 | を表現するのに適しています。 霧やもやなどの表現手段としても効果的です。 | ||
410 | </f_translation> | ||
411 | </string><string><a_file>alerts.xml</a_file> | ||
412 | <b_path>//HelpDensityMult/message</b_path> | ||
413 | <c_attribute></c_attribute> | ||
414 | <d_old></d_old> | ||
415 | <e_new> | ||
416 | The Density Multiplier can be used to affect the overall atmospheric density. At lower settings, it creates a feeling of "thin air", and at higher settings, it creates a very heavy, smoggy effect. | ||
417 | </e_new> | ||
418 | <f_old_trans></f_old_trans> | ||
419 | <f_translation> | ||
420 | [大気の不透明度の増幅]は空気の濃度全体を制御するために使用できます。 この値を低く設定すると「大気の薄い状態」を演出し、高い数値に設定するととてもどんよりとしたスモッグのかかった雰囲気を表現できます。 | ||
421 | </f_translation> | ||
422 | </string><string><a_file>alerts.xml</a_file> | ||
423 | <b_path>//HelpDistanceMult/message</b_path> | ||
424 | <c_attribute></c_attribute> | ||
425 | <d_old></d_old> | ||
426 | <e_new> | ||
427 | Adjusts WindLight's perceived distance. A value of | ||
428 | zero effectively turns off WindLight's influence | ||
429 | on terrain and objects. Values greater than 1 simulate | ||
430 | greater distances for thicker atmospheric effects. | ||
431 | </e_new> | ||
432 | <f_old_trans></f_old_trans> | ||
433 | <f_translation> | ||
434 | ウィンドライトの視覚的距離を調整します。 値としてゼロを設定すると、地形およびオブジェクトに対する | ||
435 | ウィンドライトの影響を効果的に取り消すことができます。 1 より大きな値を設定する場合、値が大きくなるにつれて | ||
436 | 大気が次第に濃くなるような効果が得られます。 | ||
437 | </f_translation> | ||
438 | </string><string><a_file>alerts.xml</a_file> | ||
439 | <b_path>//HelpMaxAltitude/message</b_path> | ||
440 | <c_attribute></c_attribute> | ||
441 | <d_old></d_old> | ||
442 | <e_new> | ||
443 | Max Altitude adjusts the altitude calculations WindLight | ||
444 | performs when computing its atmospheric lighting. At | ||
445 | later times of day, it is useful for adjusting how | ||
446 | "deep" the sunset appears. | ||
447 | </e_new> | ||
448 | <f_old_trans></f_old_trans> | ||
449 | <f_translation> | ||
450 | [最大高度]では大気中の光の量を算出するときに | ||
451 | ウィンドライトが算出した高度を調整します。 1 日の終わりに夕焼けの度合いを調整するときに役立ちます。 | ||
452 | </f_translation> | ||
453 | </string><string><a_file>alerts.xml</a_file> | ||
454 | <b_path>//HelpSunlightColor/message</b_path> | ||
455 | <c_attribute></c_attribute> | ||
456 | <d_old></d_old> | ||
457 | <e_new> | ||
458 | Adjusts the color and intensity of the direct light in the scene. | ||
459 | </e_new> | ||
460 | <f_old_trans></f_old_trans> | ||
461 | <f_translation> | ||
462 | 風景の中で直射日光の色や強さを調整します。 | ||
463 | </f_translation> | ||
464 | </string><string><a_file>alerts.xml</a_file> | ||
465 | <b_path>//HelpSunAmbient/message</b_path> | ||
466 | <c_attribute></c_attribute> | ||
467 | <d_old></d_old> | ||
468 | <e_new> | ||
469 | Adjusts the color and intensity of ambient atmospheric light in the scene. | ||
470 | </e_new> | ||
471 | <f_old_trans></f_old_trans> | ||
472 | <f_translation> | ||
473 | 風景の中で周囲をとりまく大気中のアンビエント光の色や強さを調整します。 | ||
474 | </f_translation> | ||
475 | </string><string><a_file>alerts.xml</a_file> | ||
476 | <b_path>//HelpSunGlow/message</b_path> | ||
477 | <c_attribute></c_attribute> | ||
478 | <d_old></d_old> | ||
479 | <e_new> | ||
480 | The Size slider controls the size of the sun. | ||
481 | The Focus slider controls how blurred the sun | ||
482 | is over the sky. | ||
483 | </e_new> | ||
484 | <f_old_trans></f_old_trans> | ||
485 | <f_translation> | ||
486 | [サイズ]スライダーは太陽の大きさを制御します。 | ||
487 | [フォーカス]スライダーは空を背にした太陽のかすみ具合を制御します。 | ||
488 | </f_translation> | ||
489 | </string><string><a_file>alerts.xml</a_file> | ||
490 | <b_path>//HelpSceneGamma/message</b_path> | ||
491 | <c_attribute></c_attribute> | ||
492 | <d_old></d_old> | ||
493 | <e_new> | ||
494 | Adjust the screen's distribution of light and dark. | ||
495 | </e_new> | ||
496 | <f_old_trans></f_old_trans> | ||
497 | <f_translation> | ||
498 | 風景の中で明暗の配分を調整します。 | ||
499 | </f_translation> | ||
500 | </string><string><a_file>alerts.xml</a_file> | ||
501 | <b_path>//HelpStarBrightness/message</b_path> | ||
502 | <c_attribute></c_attribute> | ||
503 | <d_old></d_old> | ||
504 | <e_new> | ||
505 | Adjusts the brightness of the stars in the sky. | ||
506 | </e_new> | ||
507 | <f_old_trans></f_old_trans> | ||
508 | <f_translation> | ||
509 | 空の星の輝きを調整します。 | ||
510 | </f_translation> | ||
511 | </string><string><a_file>alerts.xml</a_file> | ||
512 | <b_path>//HelpTimeOfDay/message</b_path> | ||
513 | <c_attribute></c_attribute> | ||
514 | <d_old></d_old> | ||
515 | <e_new> | ||
516 | Controls the location of the sun in the sky. | ||
517 | Similar to elevation. | ||
518 | </e_new> | ||
519 | <f_old_trans></f_old_trans> | ||
520 | <f_translation> | ||
521 | 空の太陽の場所を調整します。 | ||
522 | 標高に似ています。 | ||
523 | </f_translation> | ||
524 | </string><string><a_file>alerts.xml</a_file> | ||
525 | <b_path>//HelpEastAngle/message</b_path> | ||
526 | <c_attribute></c_attribute> | ||
527 | <d_old></d_old> | ||
528 | <e_new> | ||
529 | Controls the location of the sun in the sky. | ||
530 | Similar to azimuth. | ||
531 | </e_new> | ||
532 | <f_old_trans></f_old_trans> | ||
533 | <f_translation> | ||
534 | 空の太陽の場所を調整します。 | ||
535 | 方位角に似ています。 | ||
536 | </f_translation> | ||
537 | </string><string><a_file>alerts.xml</a_file> | ||
538 | <b_path>//HelpCloudColor/message</b_path> | ||
539 | <c_attribute></c_attribute> | ||
540 | <d_old></d_old> | ||
541 | <e_new> | ||
542 | Edits the color of the clouds. It is generally | ||
543 | recommended to keep it whitish, | ||
544 | but hey, have fun if you want. | ||
545 | </e_new> | ||
546 | <f_old_trans></f_old_trans> | ||
547 | <f_translation> | ||
548 | 雲の色を編集します。 通常は白っぽい色をお勧めしますが、もちろん | ||
549 | お好みの色を設定してください。 | ||
550 | </f_translation> | ||
551 | </string><string><a_file>alerts.xml</a_file> | ||
552 | <b_path>//HelpCloudDetail/message</b_path> | ||
553 | <c_attribute></c_attribute> | ||
554 | <d_old></d_old> | ||
555 | <e_new> | ||
556 | Controls the detail image layered on top | ||
557 | of the main cloud image. X and Y control | ||
558 | its position. D (Density) controls how puffy or | ||
559 | fractured the clouds appear. | ||
560 | </e_new> | ||
561 | <f_old_trans></f_old_trans> | ||
562 | <f_translation> | ||
563 | 主要な雲のイメージの上にレイヤーされた詳細なイメージを制御します。 X と Y でその位置を制御します。 [D] (濃度) は真綿のような様子や雲の割れ目の | ||
564 | 様子など雲の外観を制御します。 | ||
565 | </f_translation> | ||
566 | </string><string><a_file>alerts.xml</a_file> | ||
567 | <b_path>//HelpCloudDensity/message</b_path> | ||
568 | <c_attribute></c_attribute> | ||
569 | <d_old></d_old> | ||
570 | <e_new> | ||
571 | Allows you to control the position of the clouds | ||
572 | with the X and Y sliders and how dense they are | ||
573 | with the the D slider. | ||
574 | </e_new> | ||
575 | <f_old_trans></f_old_trans> | ||
576 | <f_translation> | ||
577 | [X] と [Y] のスライダーで雲の位置を、 | ||
578 | [D] のスライダーでその密度を制御 | ||
579 | できます。 | ||
580 | </f_translation> | ||
581 | </string><string><a_file>alerts.xml</a_file> | ||
582 | <b_path>//HelpCloudCoverage/message</b_path> | ||
583 | <c_attribute></c_attribute> | ||
584 | <d_old></d_old> | ||
585 | <e_new> | ||
586 | Controls how much the clouds cover the sky. | ||
587 | </e_new> | ||
588 | <f_old_trans></f_old_trans> | ||
589 | <f_translation> | ||
590 | 空を覆う雲の量を制御します。 | ||
591 | </f_translation> | ||
592 | </string><string><a_file>alerts.xml</a_file> | ||
593 | <b_path>//HelpCloudScale/message</b_path> | ||
594 | <c_attribute></c_attribute> | ||
595 | <d_old></d_old> | ||
596 | <e_new> | ||
597 | Controls the scaling of the cloud image on the sky dome. | ||
598 | </e_new> | ||
599 | <f_old_trans></f_old_trans> | ||
600 | <f_translation> | ||
601 | 空に浮かぶ雲のイメージの縮尺を制御します。 | ||
602 | </f_translation> | ||
603 | </string><string><a_file>alerts.xml</a_file> | ||
604 | <b_path>//HelpCloudScrollX/message</b_path> | ||
605 | <c_attribute></c_attribute> | ||
606 | <d_old></d_old> | ||
607 | <e_new> | ||
608 | Controls the speed of the clouds as they move in the X direction. | ||
609 | </e_new> | ||
610 | <f_old_trans></f_old_trans> | ||
611 | <f_translation> | ||
612 | [X] の方向に雲が移動する際の速度を制御します。 | ||
613 | </f_translation> | ||
614 | </string><string><a_file>alerts.xml</a_file> | ||
615 | <b_path>//HelpCloudScrollY/message</b_path> | ||
616 | <c_attribute></c_attribute> | ||
617 | <d_old></d_old> | ||
618 | <e_new> | ||
619 | Controls the speed of the clouds as they move in the Y direction. | ||
620 | </e_new> | ||
621 | <f_old_trans></f_old_trans> | ||
622 | <f_translation> | ||
623 | [Y] の方向に雲が移動する際の速度を制御します。 | ||
624 | </f_translation> | ||
625 | </string><string><a_file>alerts.xml</a_file> | ||
626 | <b_path>//HelpClassicClouds/message</b_path> | ||
627 | <c_attribute></c_attribute> | ||
628 | <d_old></d_old> | ||
629 | <e_new> | ||
630 | Check this box to enable rendering of Second Life's older classic clouds in addition to WindLight's clouds. | ||
631 | </e_new> | ||
632 | <f_old_trans></f_old_trans> | ||
633 | <f_translation> | ||
634 | このボックスを有効にすると、WindLight の雲に加えて、Second Life の従来の雲もレンダリングできるようになります。 | ||
635 | </f_translation> | ||
636 | </string><string><a_file>alerts.xml</a_file> | ||
637 | <b_path>//HelpWaterFogColor/message</b_path> | ||
638 | <c_attribute></c_attribute> | ||
639 | <d_old></d_old> | ||
640 | <e_new> | ||
641 | Chooses the color of the underwater fog. | ||
642 | </e_new> | ||
643 | <f_old_trans></f_old_trans> | ||
644 | <f_translation> | ||
645 | 水中のフォグ効果に色をつけます。 | ||
646 | </f_translation> | ||
647 | </string><string><a_file>alerts.xml</a_file> | ||
648 | <b_path>//HelpWaterFogDensity/message</b_path> | ||
649 | <c_attribute></c_attribute> | ||
650 | <d_old></d_old> | ||
651 | <e_new> | ||
652 | Controls how dense the water fog is and how far you can see underwater. | ||
653 | </e_new> | ||
654 | <f_old_trans></f_old_trans> | ||
655 | <f_translation> | ||
656 | 水中のフォグ効果の強弱、水中でどのくらいの距離まで見渡せるかを制御します。 | ||
657 | </f_translation> | ||
658 | </string><string><a_file>alerts.xml</a_file> | ||
659 | <b_path>//HelpUnderWaterFogMod/message</b_path> | ||
660 | <c_attribute></c_attribute> | ||
661 | <d_old></d_old> | ||
662 | <e_new> | ||
663 | Modifies the effect of the Fog Density Exponent to control how far you can see when your avatar is underwater. | ||
664 | </e_new> | ||
665 | <f_old_trans></f_old_trans> | ||
666 | <f_translation> | ||
667 | [水中のフォグ濃度指数]の効果を加減して、あなたのアバターが水中にいるとき、どのくらい遠くまで見ることができるかを制御します。 | ||
668 | </f_translation> | ||
669 | </string><string><a_file>alerts.xml</a_file> | ||
670 | <b_path>//HelpWaterGlow/message</b_path> | ||
671 | <c_attribute></c_attribute> | ||
672 | <d_old></d_old> | ||
673 | <e_new> | ||
674 | Controls how much the surface of the water glows. | ||
675 | </e_new> | ||
676 | <f_old_trans></f_old_trans> | ||
677 | <f_translation> | ||
678 | 水面の輝きの度合いを制御します。 | ||
679 | </f_translation> | ||
680 | </string><string><a_file>alerts.xml</a_file> | ||
681 | <b_path>//HelpWaterNormalScale/message</b_path> | ||
682 | <c_attribute></c_attribute> | ||
683 | <d_old></d_old> | ||
684 | <e_new> | ||
685 | Controls the scaling of the three wavelets that make up the water. | ||
686 | </e_new> | ||
687 | <f_old_trans></f_old_trans> | ||
688 | <f_translation> | ||
689 | 水面を表現する 3 種類のさざ波の縮尺を制御します。 | ||
690 | </f_translation> | ||
691 | </string><string><a_file>alerts.xml</a_file> | ||
692 | <b_path>//HelpWaterFresnelScale/message</b_path> | ||
693 | <c_attribute></c_attribute> | ||
694 | <d_old></d_old> | ||
695 | <e_new> | ||
696 | Controls how much light is reflected at different angles. | ||
697 | </e_new> | ||
698 | <f_old_trans></f_old_trans> | ||
699 | <f_translation> | ||
700 | さまざまな角度で、反射する光の量を制御します。 | ||
701 | </f_translation> | ||
702 | </string><string><a_file>alerts.xml</a_file> | ||
703 | <b_path>//HelpWaterFresnelOffset/message</b_path> | ||
704 | <c_attribute></c_attribute> | ||
705 | <d_old></d_old> | ||
706 | <e_new> | ||
707 | Controls how much light intensity is reflected. | ||
708 | </e_new> | ||
709 | <f_old_trans></f_old_trans> | ||
710 | <f_translation> | ||
711 | 反射する光度の量を制御します。 | ||
712 | </f_translation> | ||
713 | </string><string><a_file>alerts.xml</a_file> | ||
714 | <b_path>//HelpWaterScaleAbove/message</b_path> | ||
715 | <c_attribute></c_attribute> | ||
716 | <d_old></d_old> | ||
717 | <e_new> | ||
718 | Controls how much light is refracted from looking above the surface of the water. | ||
719 | </e_new> | ||
720 | <f_old_trans></f_old_trans> | ||
721 | <f_translation> | ||
722 | 上から水中を見たときの光の屈折具合を制御します。 | ||
723 | </f_translation> | ||
724 | </string><string><a_file>alerts.xml</a_file> | ||
725 | <b_path>//HelpWaterScaleBelow/message</b_path> | ||
726 | <c_attribute></c_attribute> | ||
727 | <d_old></d_old> | ||
728 | <e_new> | ||
729 | Controls how much light is refracted from looking from below the surface of the water. | ||
730 | </e_new> | ||
731 | <f_old_trans></f_old_trans> | ||
732 | <f_translation> | ||
733 | 水中から見たときの光の屈折具合を制御します。 | ||
734 | </f_translation> | ||
735 | </string><string><a_file>alerts.xml</a_file> | ||
736 | <b_path>//HelpWaterBlurMultiplier/message</b_path> | ||
737 | <c_attribute></c_attribute> | ||
738 | <d_old></d_old> | ||
739 | <e_new> | ||
740 | Controls how waves and reflections are mixed. | ||
741 | </e_new> | ||
742 | <f_old_trans></f_old_trans> | ||
743 | <f_translation> | ||
744 | 波と反射の混ざり具合を制御します。 | ||
745 | </f_translation> | ||
746 | </string><string><a_file>alerts.xml</a_file> | ||
747 | <b_path>//HelpWaterNormalMap/message</b_path> | ||
748 | <c_attribute></c_attribute> | ||
749 | <d_old></d_old> | ||
750 | <e_new> | ||
751 | Controls what normal map is layered across the water | ||
752 | to determine reflections/refractions. | ||
753 | </e_new> | ||
754 | <f_old_trans></f_old_trans> | ||
755 | <f_translation> | ||
756 | 反射や屈折を決定するために水に重ねられるノーマル・マップを制御します。 | ||
757 | </f_translation> | ||
758 | </string><string><a_file>alerts.xml</a_file> | ||
759 | <b_path>//HelpWaterWave1/message</b_path> | ||
760 | <c_attribute></c_attribute> | ||
761 | <d_old></d_old> | ||
762 | <e_new> | ||
763 | Controls where and how fast the large scaled version of the normal | ||
764 | map moves in the X and Y direction. | ||
765 | </e_new> | ||
766 | <f_old_trans></f_old_trans> | ||
767 | <f_translation> | ||
768 | 引き伸ばされたノーマル・マップがX と Y 軸でどの方向にそして | ||
769 | どのくらいの速度で移動するかを制御します。 | ||
770 | </f_translation> | ||
771 | </string><string><a_file>alerts.xml</a_file> | ||
772 | <b_path>//HelpWaterWave2/message</b_path> | ||
773 | <c_attribute></c_attribute> | ||
774 | <d_old></d_old> | ||
775 | <e_new> | ||
776 | Controls where and how fast the the small scaled version of the | ||
777 | normal map moves in the X and Y direction. | ||
778 | </e_new> | ||
779 | <f_old_trans></f_old_trans> | ||
780 | <f_translation> | ||
781 | 縮められたノーマル・マップがX と Y 軸でどの方向にそしてどのくらいの速度で移動するかを制御します。 | ||
782 | </f_translation> | ||
783 | </string><string><a_file>alerts.xml</a_file> | ||
784 | <b_path>//NewSkyPreset/message</b_path> | ||
785 | <c_attribute></c_attribute> | ||
786 | <d_old></d_old> | ||
787 | <e_new> | ||
788 | Give me a name for the new sky. | ||
789 | </e_new> | ||
790 | <f_old_trans></f_old_trans> | ||
791 | <f_translation> | ||
792 | 新しい空の名前を指定してください。 | ||
793 | </f_translation> | ||
794 | </string><string><a_file>alerts.xml</a_file> | ||
795 | <b_path>//NewSkyPreset/</b_path> | ||
796 | <c_attribute></c_attribute> | ||
797 | <d_old></d_old> | ||
798 | <e_new> | ||
799 | New Preset | ||
800 | </e_new> | ||
801 | <f_old_trans></f_old_trans> | ||
802 | <f_translation> | ||
803 | 新しい事前設定 | ||
804 | </f_translation> | ||
805 | </string><string><a_file>alerts.xml</a_file> | ||
806 | <b_path>//NewSkyPreset/OK</b_path> | ||
807 | <c_attribute></c_attribute> | ||
808 | <d_old></d_old> | ||
809 | <e_new> | ||
810 | OK | ||
811 | </e_new> | ||
812 | <f_old_trans></f_old_trans> | ||
813 | <f_translation> | ||
814 | OK | ||
815 | </f_translation> | ||
816 | </string><string><a_file>alerts.xml</a_file> | ||
817 | <b_path>//NewSkyPreset/Cancel</b_path> | ||
818 | <c_attribute></c_attribute> | ||
819 | <d_old></d_old> | ||
820 | <e_new> | ||
821 | Cancel | ||
822 | </e_new> | ||
823 | <f_old_trans></f_old_trans> | ||
824 | <f_translation> | ||
825 | キャンセル | ||
826 | </f_translation> | ||
827 | </string><string><a_file>alerts.xml</a_file> | ||
828 | <b_path>//ExistsSkyPresetAlert/message</b_path> | ||
829 | <c_attribute></c_attribute> | ||
830 | <d_old></d_old> | ||
831 | <e_new> | ||
832 | Preset already exists! | ||
833 | </e_new> | ||
834 | <f_old_trans></f_old_trans> | ||
835 | <f_translation> | ||
836 | 事前設定がすでに存在します! | ||
837 | </f_translation> | ||
838 | </string><string><a_file>alerts.xml</a_file> | ||
839 | <b_path>//NewWaterPreset/message</b_path> | ||
840 | <c_attribute></c_attribute> | ||
841 | <d_old></d_old> | ||
842 | <e_new> | ||
843 | Give me a name for the new water preset. | ||
844 | </e_new> | ||
845 | <f_old_trans></f_old_trans> | ||
846 | <f_translation> | ||
847 | 新しい水の事前設定の名前を指定してください。 | ||
848 | </f_translation> | ||
849 | </string><string><a_file>alerts.xml</a_file> | ||
850 | <b_path>//NewWaterPreset/</b_path> | ||
851 | <c_attribute></c_attribute> | ||
852 | <d_old></d_old> | ||
853 | <e_new> | ||
854 | New Preset | ||
855 | </e_new> | ||
856 | <f_old_trans></f_old_trans> | ||
857 | <f_translation> | ||
858 | 新しい事前設定 | ||
859 | </f_translation> | ||
860 | </string><string><a_file>alerts.xml</a_file> | ||
861 | <b_path>//NewWaterPreset/OK</b_path> | ||
862 | <c_attribute></c_attribute> | ||
863 | <d_old></d_old> | ||
864 | <e_new> | ||
865 | OK | ||
866 | </e_new> | ||
867 | <f_old_trans></f_old_trans> | ||
868 | <f_translation> | ||
869 | OK | ||
870 | </f_translation> | ||
871 | </string><string><a_file>alerts.xml</a_file> | ||
872 | <b_path>//NewWaterPreset/Cancel</b_path> | ||
873 | <c_attribute></c_attribute> | ||
874 | <d_old></d_old> | ||
875 | <e_new> | ||
876 | Cancel | ||
877 | </e_new> | ||
878 | <f_old_trans></f_old_trans> | ||
879 | <f_translation> | ||
880 | キャンセル | ||
881 | </f_translation> | ||
882 | </string><string><a_file>alerts.xml</a_file> | ||
883 | <b_path>//ExistsWaterPresetAlert/message</b_path> | ||
884 | <c_attribute></c_attribute> | ||
885 | <d_old></d_old> | ||
886 | <e_new> | ||
887 | Preset already exists! | ||
888 | </e_new> | ||
889 | <f_old_trans></f_old_trans> | ||
890 | <f_translation> | ||
891 | 事前設定がすでに存在します! | ||
892 | </f_translation> | ||
893 | </string><string><a_file>alerts.xml</a_file> | ||
894 | <b_path>//WaterNoEditDefault/message</b_path> | ||
895 | <c_attribute></c_attribute> | ||
896 | <d_old></d_old> | ||
897 | <e_new> | ||
898 | You cannot edit or delete a default preset. | ||
899 | </e_new> | ||
900 | <f_old_trans></f_old_trans> | ||
901 | <f_translation> | ||
902 | デフォルトの設定を編集したり削除したりすることはできません。 | ||
903 | </f_translation> | ||
904 | </string><string><a_file>alerts.xml</a_file> | ||
905 | <b_path>//DebitPermissionDetails/message</b_path> | ||
906 | <c_attribute></c_attribute> | ||
907 | <d_old></d_old> | ||
908 | <e_new> | ||
909 | Granting this request gives a script ongoing permission to take Linden dollars (L$) from your account. To revoke this permission, the object owner must delete the object or reset the scripts in the object. | ||
910 | </e_new> | ||
911 | <f_old_trans></f_old_trans> | ||
912 | <f_translation> | ||
913 | この要求を許可すると、スクリプトからあなたのアカウントにリンデン・ドルを課金できるようになります。 この許可を取り消すには、オブジェクトのオーナーはオブジェクトを削除するか、オブジェクトのスクリプトをリセットしなければなりません。 | ||
914 | </f_translation> | ||
915 | </string><string><a_file>floater_about_land.xml</a_file> | ||
916 | <b_path>/floaterland/landtab/land_media_panel/with media:</b_path> | ||
917 | <c_attribute></c_attribute> | ||
918 | <d_old></d_old> | ||
919 | <e_new> | ||
920 | Media Type: | ||
921 | </e_new> | ||
922 | <f_old_trans></f_old_trans> | ||
923 | <f_translation> | ||
924 | メディア・タイプ: | ||
925 | </f_translation> | ||
926 | </string><string><a_file>floater_about_land.xml</a_file> | ||
927 | <b_path>/floaterland/landtab/land_media_panel/media type</b_path> | ||
928 | <c_attribute>tool_tip</c_attribute> | ||
929 | <d_old></d_old> | ||
930 | <e_new>Specify if the URL is a movie, web page, or other media</e_new> | ||
931 | <f_old_trans></f_old_trans> | ||
932 | <f_translation>URL が動画、ウェブ・ページ、その他のメディアの場合に指定します</f_translation> | ||
933 | </string><string><a_file>floater_about_land.xml</a_file> | ||
934 | <b_path>/floaterland/landtab/land_media_panel/at URL:</b_path> | ||
935 | <c_attribute></c_attribute> | ||
936 | <d_old></d_old> | ||
937 | <e_new> | ||
938 | Media URL: | ||
939 | </e_new> | ||
940 | <f_old_trans></f_old_trans> | ||
941 | <f_translation> | ||
942 | メディア URL: | ||
943 | </f_translation> | ||
944 | </string><string><a_file>floater_about_land.xml</a_file> | ||
945 | <b_path>/floaterland/landtab/land_media_panel/set_media_url</b_path> | ||
6 | <c_attribute>label</c_attribute> | 946 | <c_attribute>label</c_attribute> |
7 | <d_old></d_old> | 947 | <d_old></d_old> |
8 | <e_new>Type</e_new> | 948 | <e_new>Set...</e_new> |
949 | <f_old_trans></f_old_trans> | ||
950 | <f_translation>設定...</f_translation> | ||
951 | </string><string><a_file>floater_about_land.xml</a_file> | ||
952 | <b_path>/floaterland/landtab/land_media_panel/set_media_url</b_path> | ||
953 | <c_attribute>label_selected</c_attribute> | ||
954 | <d_old></d_old> | ||
955 | <e_new>Set...</e_new> | ||
9 | <f_old_trans></f_old_trans> | 956 | <f_old_trans></f_old_trans> |
10 | <f_translation>タイプ</f_translation> | 957 | <f_translation>設定...</f_translation> |
11 | </string><string><a_file>floater_about_land.xml</a_file> | 958 | </string><string><a_file>floater_about_land.xml</a_file> |
12 | <b_path>/floaterland/landtab/land_objects_panel/owner list/</b_path> | 959 | <b_path>/floaterland/landtab/land_media_panel/Description:</b_path> |
960 | <c_attribute></c_attribute> | ||
961 | <d_old></d_old> | ||
962 | <e_new> | ||
963 | Description: | ||
964 | </e_new> | ||
965 | <f_old_trans></f_old_trans> | ||
966 | <f_translation> | ||
967 | 説明: | ||
968 | </f_translation> | ||
969 | </string><string><a_file>floater_about_land.xml</a_file> | ||
970 | <b_path>/floaterland/landtab/land_media_panel/url_description</b_path> | ||
971 | <c_attribute>tool_tip</c_attribute> | ||
972 | <d_old></d_old> | ||
973 | <e_new>Text displayed next to play/load button</e_new> | ||
974 | <f_old_trans></f_old_trans> | ||
975 | <f_translation>[再生]/[ロード]ボタンの隣に表示されるテキスト</f_translation> | ||
976 | </string><string><a_file>floater_about_land.xml</a_file> | ||
977 | <b_path>/floaterland/landtab/land_media_panel/replace_texture_help</b_path> | ||
978 | <c_attribute></c_attribute> | ||
979 | <d_old></d_old> | ||
980 | <e_new> | ||
981 | (Objects using this texture will show the movie or | ||
982 | web page after you click the play arrow.) | ||
983 | </e_new> | ||
984 | <f_old_trans></f_old_trans> | ||
985 | <f_translation> | ||
986 | [再生]矢印をクリックすると、このテクスチャーを使用するオブジェクトに | ||
987 | 動画またはウェブ・ページが表示されます。 | ||
988 | </f_translation> | ||
989 | </string><string><a_file>floater_about_land.xml</a_file> | ||
990 | <b_path>/floaterland/landtab/land_media_panel/Options:</b_path> | ||
991 | <c_attribute></c_attribute> | ||
992 | <d_old></d_old> | ||
993 | <e_new> | ||
994 | Media | ||
995 | Options: | ||
996 | </e_new> | ||
997 | <f_old_trans></f_old_trans> | ||
998 | <f_translation> | ||
999 | メディア | ||
1000 | オプション: | ||
1001 | </f_translation> | ||
1002 | </string><string><a_file>floater_about_land.xml</a_file> | ||
1003 | <b_path>/floaterland/landtab/land_media_panel/media_loop</b_path> | ||
1004 | <c_attribute>label</c_attribute> | ||
1005 | <d_old></d_old> | ||
1006 | <e_new>Loop Media</e_new> | ||
1007 | <f_old_trans></f_old_trans> | ||
1008 | <f_translation>メディアのループ</f_translation> | ||
1009 | </string><string><a_file>floater_about_land.xml</a_file> | ||
1010 | <b_path>/floaterland/landtab/land_media_panel/media_loop</b_path> | ||
1011 | <c_attribute>tool_tip</c_attribute> | ||
1012 | <d_old></d_old> | ||
1013 | <e_new>Play media in a loop. When the media has finished playing, it will restart from the beginning.</e_new> | ||
1014 | <f_old_trans></f_old_trans> | ||
1015 | <f_translation>メディアをループ再生します。 メディアの再生が終わったら、最初から再生し直します。</f_translation> | ||
1016 | </string><string><a_file>floater_about_land.xml</a_file> | ||
1017 | <b_path>/floaterland/landtab/land_media_panel/hide_media_url</b_path> | ||
13 | <c_attribute>label</c_attribute> | 1018 | <c_attribute>label</c_attribute> |
14 | <d_old></d_old> | 1019 | <d_old></d_old> |
15 | <e_new>Name</e_new> | 1020 | <e_new>Hide Media URL</e_new> |
16 | <f_old_trans></f_old_trans> | 1021 | <f_old_trans></f_old_trans> |
17 | <f_translation>名前</f_translation> | 1022 | <f_translation>メディア URL を隠す</f_translation> |
18 | </string><string><a_file>floater_about_land.xml</a_file> | 1023 | </string><string><a_file>floater_about_land.xml</a_file> |
19 | <b_path>/floaterland/landtab/land_objects_panel/owner list/</b_path> | 1024 | <b_path>/floaterland/landtab/land_media_panel/hide_media_url</b_path> |
1025 | <c_attribute>tool_tip</c_attribute> | ||
1026 | <d_old></d_old> | ||
1027 | <e_new>Checking this option will hide the media url to any non-authorized viewers of this parcel information. Note this is not available for HTML types.</e_new> | ||
1028 | <f_old_trans></f_old_trans> | ||
1029 | <f_translation>このオプションをオンにすると、許可なしでこの区画情報にアクセスしているユーザーにはメディア URL が表示されません。 これは HTML タイプには使用できませんのでご注意ください。</f_translation> | ||
1030 | </string><string><a_file>floater_about_land.xml</a_file> | ||
1031 | <b_path>/floaterland/landtab/land_media_panel/hide_music_url</b_path> | ||
20 | <c_attribute>label</c_attribute> | 1032 | <c_attribute>label</c_attribute> |
21 | <d_old></d_old> | 1033 | <d_old></d_old> |
22 | <e_new>Count</e_new> | 1034 | <e_new>Hide Music URL</e_new> |
1035 | <f_old_trans></f_old_trans> | ||
1036 | <f_translation>音楽のURLを隠す</f_translation> | ||
1037 | </string><string><a_file>floater_about_land.xml</a_file> | ||
1038 | <b_path>/floaterland/landtab/land_media_panel/hide_music_url</b_path> | ||
1039 | <c_attribute>tool_tip</c_attribute> | ||
1040 | <d_old></d_old> | ||
1041 | <e_new>Checking this option will hide the music url to any non-authorized viewers of this parcel information</e_new> | ||
1042 | <f_old_trans></f_old_trans> | ||
1043 | <f_translation>このオプションをオンにすると、許可なしでこの区画情報にアクセスしているユーザーには音楽の URL が表示されません。</f_translation> | ||
1044 | </string><string><a_file>floater_about_land.xml</a_file> | ||
1045 | <b_path>/floaterland/landtab/land_media_panel/media_size</b_path> | ||
1046 | <c_attribute>tool_tip</c_attribute> | ||
1047 | <d_old></d_old> | ||
1048 | <e_new>Size to render Web media, leave 0 for default.</e_new> | ||
23 | <f_old_trans></f_old_trans> | 1049 | <f_old_trans></f_old_trans> |
24 | <f_translation>カウント</f_translation> | 1050 | <f_translation>レンダリングするウェブ・メディアのサイズ。デフォルトの 0 のままにします。</f_translation> |
1051 | </string><string><a_file>floater_about_land.xml</a_file> | ||
1052 | <b_path>/floaterland/landtab/land_media_panel/media_size</b_path> | ||
1053 | <c_attribute></c_attribute> | ||
1054 | <d_old></d_old> | ||
1055 | <e_new> | ||
1056 | Media size: | ||
1057 | </e_new> | ||
1058 | <f_old_trans></f_old_trans> | ||
1059 | <f_translation> | ||
1060 | メディア・サイズ: | ||
1061 | </f_translation> | ||
1062 | </string><string><a_file>floater_about_land.xml</a_file> | ||
1063 | <b_path>/floaterland/landtab/land_media_panel/media_size_width</b_path> | ||
1064 | <c_attribute>tool_tip</c_attribute> | ||
1065 | <d_old></d_old> | ||
1066 | <e_new>Size to render Web media, leave 0 for default.</e_new> | ||
1067 | <f_old_trans></f_old_trans> | ||
1068 | <f_translation>レンダリングするウェブ・メディアのサイズ。デフォルトの 0 のままにします。</f_translation> | ||
1069 | </string><string><a_file>floater_about_land.xml</a_file> | ||
1070 | <b_path>/floaterland/landtab/land_media_panel/media_size_height</b_path> | ||
1071 | <c_attribute>tool_tip</c_attribute> | ||
1072 | <d_old></d_old> | ||
1073 | <e_new>Size to render Web media, leave 0 for default.</e_new> | ||
1074 | <f_old_trans></f_old_trans> | ||
1075 | <f_translation>レンダリングするウェブ・メディアのサイズ。デフォルトの 0 のままにします。</f_translation> | ||
1076 | </string><string><a_file>floater_about_land.xml</a_file> | ||
1077 | <b_path>/floaterland/landtab/land_media_panel/pixels</b_path> | ||
1078 | <c_attribute></c_attribute> | ||
1079 | <d_old></d_old> | ||
1080 | <e_new> | ||
1081 | pixels | ||
1082 | </e_new> | ||
1083 | <f_old_trans></f_old_trans> | ||
1084 | <f_translation> | ||
1085 | ピクセル | ||
1086 | </f_translation> | ||
1087 | </string><string><a_file>floater_about_land.xml</a_file> | ||
1088 | <b_path>/floaterland/landtab/land_media_panel/MusicURL:</b_path> | ||
1089 | <c_attribute></c_attribute> | ||
1090 | <d_old></d_old> | ||
1091 | <e_new> | ||
1092 | Music URL: | ||
1093 | </e_new> | ||
1094 | <f_old_trans></f_old_trans> | ||
1095 | <f_translation> | ||
1096 | 音楽のURL: | ||
1097 | </f_translation> | ||
1098 | </string><string><a_file>floater_about_land.xml</a_file> | ||
1099 | <b_path>/floaterland/landtab/land_media_panel/Sound:</b_path> | ||
1100 | <c_attribute></c_attribute> | ||
1101 | <d_old></d_old> | ||
1102 | <e_new> | ||
1103 | Sound: | ||
1104 | </e_new> | ||
1105 | <f_old_trans></f_old_trans> | ||
1106 | <f_translation> | ||
1107 | サウンド: | ||
1108 | </f_translation> | ||
1109 | </string><string><a_file>floater_about_land.xml</a_file> | ||
1110 | <b_path>/floaterland/landtab/land_access_panel/AllowedText</b_path> | ||
1111 | <c_attribute>label</c_attribute> | ||
1112 | <d_old></d_old> | ||
1113 | <e_new>Always Allow</e_new> | ||
1114 | <f_old_trans></f_old_trans> | ||
1115 | <f_translation>常に許可</f_translation> | ||
1116 | </string><string><a_file>floater_about_land.xml</a_file> | ||
1117 | <b_path>/floaterland/landtab/land_access_panel/AllowedText</b_path> | ||
1118 | <c_attribute></c_attribute> | ||
1119 | <d_old></d_old> | ||
1120 | <e_new> | ||
1121 | Allowed Residents | ||
1122 | </e_new> | ||
1123 | <f_old_trans></f_old_trans> | ||
1124 | <f_translation> | ||
1125 | 許可された住人 | ||
1126 | </f_translation> | ||
1127 | </string><string><a_file>floater_about_land.xml</a_file> | ||
1128 | <b_path>/floaterland/landtab/land_access_panel/BannedText</b_path> | ||
1129 | <c_attribute>label</c_attribute> | ||
1130 | <d_old></d_old> | ||
1131 | <e_new>Ban</e_new> | ||
1132 | <f_old_trans></f_old_trans> | ||
1133 | <f_translation>禁止</f_translation> | ||
1134 | </string><string><a_file>floater_about_land.xml</a_file> | ||
1135 | <b_path>/floaterland/landtab/land_access_panel/BannedText</b_path> | ||
1136 | <c_attribute></c_attribute> | ||
1137 | <d_old></d_old> | ||
1138 | <e_new> | ||
1139 | Banned Residents | ||
1140 | </e_new> | ||
1141 | <f_old_trans></f_old_trans> | ||
1142 | <f_translation> | ||
1143 | 禁止された住人 | ||
1144 | </f_translation> | ||
25 | </string><string><a_file>floater_active_speakers.xml</a_file> | 1145 | </string><string><a_file>floater_active_speakers.xml</a_file> |
26 | <b_path>/active_speakers/active_speakers_panel/speakers_list/speaking_status</b_path> | 1146 | <b_path>/active_speakers/active_speakers_panel/speakers_list/speaking_status</b_path> |
27 | <c_attribute>label</c_attribute> | 1147 | <c_attribute>label</c_attribute> |
@@ -29,6 +1149,17 @@ | |||
29 | <e_new></e_new> | 1149 | <e_new></e_new> |
30 | <f_old_trans></f_old_trans> | 1150 | <f_old_trans></f_old_trans> |
31 | <f_translation></f_translation> | 1151 | <f_translation></f_translation> |
1152 | </string><string><a_file>floater_buy_object.xml</a_file> | ||
1153 | <b_path>/contents/title_buy_copy_text</b_path> | ||
1154 | <c_attribute></c_attribute> | ||
1155 | <d_old></d_old> | ||
1156 | <e_new> | ||
1157 | Buy a copy of | ||
1158 | </e_new> | ||
1159 | <f_old_trans></f_old_trans> | ||
1160 | <f_translation> | ||
1161 | 次のものを買う | ||
1162 | </f_translation> | ||
32 | </string><string><a_file>floater_chatterbox.xml</a_file> | 1163 | </string><string><a_file>floater_chatterbox.xml</a_file> |
33 | <b_path>/floater_chatterbox</b_path> | 1164 | <b_path>/floater_chatterbox</b_path> |
34 | <c_attribute>title</c_attribute> | 1165 | <c_attribute>title</c_attribute> |
@@ -36,139 +1167,459 @@ | |||
36 | <e_new>Communicate</e_new> | 1167 | <e_new>Communicate</e_new> |
37 | <f_old_trans></f_old_trans> | 1168 | <f_old_trans></f_old_trans> |
38 | <f_translation>コミュニケーション</f_translation> | 1169 | <f_translation>コミュニケーション</f_translation> |
39 | </string><string><a_file>floater_device_settings.xml</a_file> | 1170 | </string><string><a_file>floater_day_cycle_options.xml</a_file> |
40 | <b_path>/floater_device_settings</b_path> | 1171 | <b_path>/Day Cycle Floater</b_path> |
41 | <c_attribute>title</c_attribute> | 1172 | <c_attribute>title</c_attribute> |
42 | <d_old></d_old> | 1173 | <d_old></d_old> |
43 | <e_new>Voice Chat Device Settings</e_new> | 1174 | <e_new>Day Cycle Editor</e_new> |
44 | <f_old_trans></f_old_trans> | 1175 | <f_old_trans></f_old_trans> |
45 | <f_translation>ボイスチャット機器の設定</f_translation> | 1176 | <f_translation>デイ・サイクル編集</f_translation> |
46 | </string><string><a_file>floater_directory.xml</a_file> | 1177 | </string><string><a_file>floater_day_cycle_options.xml</a_file> |
47 | <b_path>/directory/Directory Tabs/find_all_panel/searching_text</b_path> | 1178 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle</b_path> |
1179 | <c_attribute>label</c_attribute> | ||
1180 | <d_old></d_old> | ||
1181 | <e_new>Day Cycle</e_new> | ||
1182 | <f_old_trans></f_old_trans> | ||
1183 | <f_translation>デイ・サイクル</f_translation> | ||
1184 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1185 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WLDayCycleHelp</b_path> | ||
1186 | <c_attribute>label</c_attribute> | ||
1187 | <d_old></d_old> | ||
1188 | <e_new>?</e_new> | ||
1189 | <f_old_trans></f_old_trans> | ||
1190 | <f_translation>?</f_translation> | ||
1191 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1192 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WLTimeSlider</b_path> | ||
1193 | <c_attribute>label</c_attribute> | ||
1194 | <d_old></d_old> | ||
1195 | <e_new></e_new> | ||
1196 | <f_old_trans></f_old_trans> | ||
1197 | <f_translation></f_translation> | ||
1198 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1199 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WLDayCycleKeys</b_path> | ||
1200 | <c_attribute>label</c_attribute> | ||
1201 | <d_old></d_old> | ||
1202 | <e_new></e_new> | ||
1203 | <f_old_trans></f_old_trans> | ||
1204 | <f_translation></f_translation> | ||
1205 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1206 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WL12am</b_path> | ||
48 | <c_attribute></c_attribute> | 1207 | <c_attribute></c_attribute> |
49 | <d_old></d_old> | 1208 | <d_old></d_old> |
50 | <e_new>Searching...</e_new> | 1209 | <e_new> |
1210 | 12am | ||
1211 | </e_new> | ||
51 | <f_old_trans></f_old_trans> | 1212 | <f_old_trans></f_old_trans> |
52 | <f_translation>検索中...</f_translation> | 1213 | <f_translation> |
53 | </string><string><a_file>floater_directory.xml</a_file> | 1214 | 深夜 12 時 |
54 | <b_path>/directory/Directory Tabs/find_all_panel/not_found_text</b_path> | 1215 | </f_translation> |
1216 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1217 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WL3am</b_path> | ||
55 | <c_attribute></c_attribute> | 1218 | <c_attribute></c_attribute> |
56 | <d_old></d_old> | 1219 | <d_old></d_old> |
57 | <e_new>None Found.</e_new> | 1220 | <e_new> |
1221 | 3am | ||
1222 | </e_new> | ||
58 | <f_old_trans></f_old_trans> | 1223 | <f_old_trans></f_old_trans> |
59 | <f_translation>何も見つかりませんでした</f_translation> | 1224 | <f_translation> |
60 | </string><string><a_file>floater_directory.xml</a_file> | 1225 | 午前 3 時 |
61 | <b_path>/directory/Directory Tabs/classified_panel/searching_text</b_path> | 1226 | </f_translation> |
1227 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1228 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WL6am</b_path> | ||
62 | <c_attribute></c_attribute> | 1229 | <c_attribute></c_attribute> |
63 | <d_old></d_old> | 1230 | <d_old></d_old> |
64 | <e_new>Searching...</e_new> | 1231 | <e_new> |
1232 | 6am | ||
1233 | </e_new> | ||
65 | <f_old_trans></f_old_trans> | 1234 | <f_old_trans></f_old_trans> |
66 | <f_translation>検索中...</f_translation> | 1235 | <f_translation> |
67 | </string><string><a_file>floater_directory.xml</a_file> | 1236 | 午前 6 時 |
68 | <b_path>/directory/Directory Tabs/classified_panel/not_found_text</b_path> | 1237 | </f_translation> |
1238 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1239 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WL9amHash</b_path> | ||
69 | <c_attribute></c_attribute> | 1240 | <c_attribute></c_attribute> |
70 | <d_old></d_old> | 1241 | <d_old></d_old> |
71 | <e_new>None Found.</e_new> | 1242 | <e_new> |
1243 | 9am | ||
1244 | </e_new> | ||
72 | <f_old_trans></f_old_trans> | 1245 | <f_old_trans></f_old_trans> |
73 | <f_translation>何も見つかりませんでした</f_translation> | 1246 | <f_translation> |
74 | </string><string><a_file>floater_directory.xml</a_file> | 1247 | 午前 9 時 |
75 | <b_path>/directory/Directory Tabs/events_panel/searching_text</b_path> | 1248 | </f_translation> |
1249 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1250 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WL12pmHash</b_path> | ||
76 | <c_attribute></c_attribute> | 1251 | <c_attribute></c_attribute> |
77 | <d_old></d_old> | 1252 | <d_old></d_old> |
78 | <e_new>Searching...</e_new> | 1253 | <e_new> |
1254 | 12pm | ||
1255 | </e_new> | ||
79 | <f_old_trans></f_old_trans> | 1256 | <f_old_trans></f_old_trans> |
80 | <f_translation>検索中...</f_translation> | 1257 | <f_translation> |
81 | </string><string><a_file>floater_directory.xml</a_file> | 1258 | 正午 12 時 |
82 | <b_path>/directory/Directory Tabs/events_panel/not_found_text</b_path> | 1259 | </f_translation> |
1260 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1261 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WL3pm</b_path> | ||
83 | <c_attribute></c_attribute> | 1262 | <c_attribute></c_attribute> |
84 | <d_old></d_old> | 1263 | <d_old></d_old> |
85 | <e_new>None Found.</e_new> | 1264 | <e_new> |
1265 | 3pm | ||
1266 | </e_new> | ||
86 | <f_old_trans></f_old_trans> | 1267 | <f_old_trans></f_old_trans> |
87 | <f_translation>何も見つかりませんでした</f_translation> | 1268 | <f_translation> |
88 | </string><string><a_file>floater_directory.xml</a_file> | 1269 | 午後 3 時 |
89 | <b_path>/directory/Directory Tabs/popular_panel/searching_text</b_path> | 1270 | </f_translation> |
1271 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1272 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WL6pm</b_path> | ||
90 | <c_attribute></c_attribute> | 1273 | <c_attribute></c_attribute> |
91 | <d_old></d_old> | 1274 | <d_old></d_old> |
92 | <e_new>Searching...</e_new> | 1275 | <e_new> |
1276 | 6pm | ||
1277 | </e_new> | ||
93 | <f_old_trans></f_old_trans> | 1278 | <f_old_trans></f_old_trans> |
94 | <f_translation>検索中...</f_translation> | 1279 | <f_translation> |
95 | </string><string><a_file>floater_directory.xml</a_file> | 1280 | 午後 6 時 |
96 | <b_path>/directory/Directory Tabs/popular_panel/not_found_text</b_path> | 1281 | </f_translation> |
1282 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1283 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WL9pm</b_path> | ||
97 | <c_attribute></c_attribute> | 1284 | <c_attribute></c_attribute> |
98 | <d_old></d_old> | 1285 | <d_old></d_old> |
99 | <e_new>None Found.</e_new> | 1286 | <e_new> |
1287 | 9pm | ||
1288 | </e_new> | ||
100 | <f_old_trans></f_old_trans> | 1289 | <f_old_trans></f_old_trans> |
101 | <f_translation>何も見つかりませんでした</f_translation> | 1290 | <f_translation> |
102 | </string><string><a_file>floater_directory.xml</a_file> | 1291 | 午後 9 時 |
103 | <b_path>/directory/Directory Tabs/land_sales_panel/searching_text</b_path> | 1292 | </f_translation> |
1293 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1294 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WL12am2</b_path> | ||
104 | <c_attribute></c_attribute> | 1295 | <c_attribute></c_attribute> |
105 | <d_old></d_old> | 1296 | <d_old></d_old> |
106 | <e_new>Searching...</e_new> | 1297 | <e_new> |
1298 | 12am | ||
1299 | </e_new> | ||
107 | <f_old_trans></f_old_trans> | 1300 | <f_old_trans></f_old_trans> |
108 | <f_translation>検索中...</f_translation> | 1301 | <f_translation> |
109 | </string><string><a_file>floater_directory.xml</a_file> | 1302 | 深夜 12 時 |
110 | <b_path>/directory/Directory Tabs/land_sales_panel/not_found_text</b_path> | 1303 | </f_translation> |
1304 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1305 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WL12amHash</b_path> | ||
111 | <c_attribute></c_attribute> | 1306 | <c_attribute></c_attribute> |
112 | <d_old></d_old> | 1307 | <d_old></d_old> |
113 | <e_new>None Found.</e_new> | 1308 | <e_new> |
1309 | | | ||
1310 | </e_new> | ||
114 | <f_old_trans></f_old_trans> | 1311 | <f_old_trans></f_old_trans> |
115 | <f_translation>何も見つかりませんでした</f_translation> | 1312 | <f_translation> |
116 | </string><string><a_file>floater_directory.xml</a_file> | 1313 | | |
117 | <b_path>/directory/Directory Tabs/places_panel/searching_text</b_path> | 1314 | </f_translation> |
1315 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1316 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WL3amHash</b_path> | ||
118 | <c_attribute></c_attribute> | 1317 | <c_attribute></c_attribute> |
119 | <d_old></d_old> | 1318 | <d_old></d_old> |
120 | <e_new>Searching...</e_new> | 1319 | <e_new> |
1320 | I | ||
1321 | </e_new> | ||
121 | <f_old_trans></f_old_trans> | 1322 | <f_old_trans></f_old_trans> |
122 | <f_translation>検索中...</f_translation> | 1323 | <f_translation> |
123 | </string><string><a_file>floater_directory.xml</a_file> | 1324 | I |
124 | <b_path>/directory/Directory Tabs/places_panel/not_found_text</b_path> | 1325 | </f_translation> |
1326 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1327 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WL6amHash</b_path> | ||
1328 | <c_attribute></c_attribute> | ||
1329 | <d_old></d_old> | ||
1330 | <e_new> | ||
1331 | | | ||
1332 | </e_new> | ||
1333 | <f_old_trans></f_old_trans> | ||
1334 | <f_translation> | ||
1335 | | | ||
1336 | </f_translation> | ||
1337 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1338 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WL9amHash2</b_path> | ||
125 | <c_attribute></c_attribute> | 1339 | <c_attribute></c_attribute> |
126 | <d_old></d_old> | 1340 | <d_old></d_old> |
127 | <e_new>None Found.</e_new> | 1341 | <e_new> |
1342 | I | ||
1343 | </e_new> | ||
128 | <f_old_trans></f_old_trans> | 1344 | <f_old_trans></f_old_trans> |
129 | <f_translation>何も見つかりませんでした</f_translation> | 1345 | <f_translation> |
130 | </string><string><a_file>floater_directory.xml</a_file> | 1346 | I |
131 | <b_path>/directory/Directory Tabs/people_panel/searching_text</b_path> | 1347 | </f_translation> |
1348 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1349 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WL12pmHash2</b_path> | ||
132 | <c_attribute></c_attribute> | 1350 | <c_attribute></c_attribute> |
133 | <d_old></d_old> | 1351 | <d_old></d_old> |
134 | <e_new>Searching...</e_new> | 1352 | <e_new> |
1353 | | | ||
1354 | </e_new> | ||
135 | <f_old_trans></f_old_trans> | 1355 | <f_old_trans></f_old_trans> |
136 | <f_translation>検索中...</f_translation> | 1356 | <f_translation> |
137 | </string><string><a_file>floater_directory.xml</a_file> | 1357 | | |
138 | <b_path>/directory/Directory Tabs/people_panel/not_found_text</b_path> | 1358 | </f_translation> |
1359 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1360 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WL3pmHash</b_path> | ||
139 | <c_attribute></c_attribute> | 1361 | <c_attribute></c_attribute> |
140 | <d_old></d_old> | 1362 | <d_old></d_old> |
141 | <e_new>None Found.</e_new> | 1363 | <e_new> |
1364 | I | ||
1365 | </e_new> | ||
142 | <f_old_trans></f_old_trans> | 1366 | <f_old_trans></f_old_trans> |
143 | <f_translation>何も見つかりませんでした</f_translation> | 1367 | <f_translation> |
144 | </string><string><a_file>floater_directory.xml</a_file> | 1368 | I |
145 | <b_path>/directory/Directory Tabs/groups_panel/searching_text</b_path> | 1369 | </f_translation> |
1370 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1371 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WL6pmHash</b_path> | ||
146 | <c_attribute></c_attribute> | 1372 | <c_attribute></c_attribute> |
147 | <d_old></d_old> | 1373 | <d_old></d_old> |
148 | <e_new>Searching...</e_new> | 1374 | <e_new> |
1375 | | | ||
1376 | </e_new> | ||
149 | <f_old_trans></f_old_trans> | 1377 | <f_old_trans></f_old_trans> |
150 | <f_translation>検索中...</f_translation> | 1378 | <f_translation> |
151 | </string><string><a_file>floater_directory.xml</a_file> | 1379 | | |
152 | <b_path>/directory/Directory Tabs/groups_panel/not_found_text</b_path> | 1380 | </f_translation> |
1381 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1382 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WL9pmHash</b_path> | ||
153 | <c_attribute></c_attribute> | 1383 | <c_attribute></c_attribute> |
154 | <d_old></d_old> | 1384 | <d_old></d_old> |
155 | <e_new>None Found.</e_new> | 1385 | <e_new> |
1386 | I | ||
1387 | </e_new> | ||
156 | <f_old_trans></f_old_trans> | 1388 | <f_old_trans></f_old_trans> |
157 | <f_translation>何も見つかりませんでした</f_translation> | 1389 | <f_translation> |
158 | </string><string><a_file>floater_directory.xml</a_file> | 1390 | I |
159 | <b_path>/directory/Directory Tabs/find_all_old_panel/searching_text</b_path> | 1391 | </f_translation> |
1392 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1393 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WL12amHash2</b_path> | ||
160 | <c_attribute></c_attribute> | 1394 | <c_attribute></c_attribute> |
161 | <d_old></d_old> | 1395 | <d_old></d_old> |
162 | <e_new>Searching...</e_new> | 1396 | <e_new> |
1397 | | | ||
1398 | </e_new> | ||
163 | <f_old_trans></f_old_trans> | 1399 | <f_old_trans></f_old_trans> |
164 | <f_translation>検索中...</f_translation> | 1400 | <f_translation> |
165 | </string><string><a_file>floater_directory.xml</a_file> | 1401 | | |
166 | <b_path>/directory/Directory Tabs/find_all_old_panel/not_found_text</b_path> | 1402 | </f_translation> |
1403 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1404 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WLAddKey</b_path> | ||
1405 | <c_attribute>label</c_attribute> | ||
1406 | <d_old></d_old> | ||
1407 | <e_new>Add Key</e_new> | ||
1408 | <f_old_trans></f_old_trans> | ||
1409 | <f_translation>キーの追加</f_translation> | ||
1410 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1411 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WLAddKey</b_path> | ||
1412 | <c_attribute>label_selected</c_attribute> | ||
1413 | <d_old></d_old> | ||
1414 | <e_new>Add Key</e_new> | ||
1415 | <f_old_trans></f_old_trans> | ||
1416 | <f_translation>キーの追加</f_translation> | ||
1417 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1418 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WLDeleteKey</b_path> | ||
1419 | <c_attribute>label</c_attribute> | ||
1420 | <d_old></d_old> | ||
1421 | <e_new>Delete Key</e_new> | ||
1422 | <f_old_trans></f_old_trans> | ||
1423 | <f_translation>キーの削除</f_translation> | ||
1424 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1425 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WLDeleteKey</b_path> | ||
1426 | <c_attribute>label_selected</c_attribute> | ||
1427 | <d_old></d_old> | ||
1428 | <e_new>Delete Key</e_new> | ||
1429 | <f_old_trans></f_old_trans> | ||
1430 | <f_translation>キーの削除</f_translation> | ||
1431 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1432 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WLCurKeyFrameText</b_path> | ||
1433 | <c_attribute></c_attribute> | ||
1434 | <d_old></d_old> | ||
1435 | <e_new> | ||
1436 | Key Frame Settings: | ||
1437 | </e_new> | ||
1438 | <f_old_trans></f_old_trans> | ||
1439 | <f_translation> | ||
1440 | キーフレームの設定: | ||
1441 | </f_translation> | ||
1442 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1443 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WLCurKeyTimeText</b_path> | ||
167 | <c_attribute></c_attribute> | 1444 | <c_attribute></c_attribute> |
168 | <d_old></d_old> | 1445 | <d_old></d_old> |
169 | <e_new>None Found.</e_new> | 1446 | <e_new> |
1447 | Key Time: | ||
1448 | </e_new> | ||
1449 | <f_old_trans></f_old_trans> | ||
1450 | <f_translation> | ||
1451 | キー・タイム: | ||
1452 | </f_translation> | ||
1453 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1454 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WLCurKeyHour</b_path> | ||
1455 | <c_attribute>label</c_attribute> | ||
1456 | <d_old></d_old> | ||
1457 | <e_new>Hour</e_new> | ||
1458 | <f_old_trans></f_old_trans> | ||
1459 | <f_translation>時間</f_translation> | ||
1460 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1461 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WLCurKeyMin</b_path> | ||
1462 | <c_attribute>label</c_attribute> | ||
1463 | <d_old></d_old> | ||
1464 | <e_new>Min</e_new> | ||
1465 | <f_old_trans></f_old_trans> | ||
1466 | <f_translation>分</f_translation> | ||
1467 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1468 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WLCurKeyTimeText2</b_path> | ||
1469 | <c_attribute></c_attribute> | ||
1470 | <d_old></d_old> | ||
1471 | <e_new> | ||
1472 | Key Preset: | ||
1473 | </e_new> | ||
1474 | <f_old_trans></f_old_trans> | ||
1475 | <f_translation> | ||
1476 | キーの事前設定: | ||
1477 | </f_translation> | ||
1478 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1479 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WLKeyPresets</b_path> | ||
1480 | <c_attribute>label</c_attribute> | ||
1481 | <d_old></d_old> | ||
1482 | <e_new>Preset</e_new> | ||
1483 | <f_old_trans></f_old_trans> | ||
1484 | <f_translation>事前設定</f_translation> | ||
1485 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1486 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/DayCycleText</b_path> | ||
1487 | <c_attribute></c_attribute> | ||
1488 | <d_old></d_old> | ||
1489 | <e_new> | ||
1490 | Snap: | ||
1491 | </e_new> | ||
1492 | <f_old_trans></f_old_trans> | ||
1493 | <f_translation> | ||
1494 | スナップ: | ||
1495 | </f_translation> | ||
1496 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1497 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WLSnapOptions</b_path> | ||
1498 | <c_attribute>label</c_attribute> | ||
1499 | <d_old></d_old> | ||
1500 | <e_new>5 min</e_new> | ||
1501 | <f_old_trans></f_old_trans> | ||
1502 | <f_translation>5 分</f_translation> | ||
1503 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1504 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/DayCycleText2</b_path> | ||
1505 | <c_attribute></c_attribute> | ||
1506 | <d_old></d_old> | ||
1507 | <e_new> | ||
1508 | Length of Cycle: | ||
1509 | </e_new> | ||
1510 | <f_old_trans></f_old_trans> | ||
1511 | <f_translation> | ||
1512 | サイクルの長さ: | ||
1513 | </f_translation> | ||
1514 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1515 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WLLengthOfDayHour</b_path> | ||
1516 | <c_attribute>label</c_attribute> | ||
1517 | <d_old></d_old> | ||
1518 | <e_new>Hour</e_new> | ||
1519 | <f_old_trans></f_old_trans> | ||
1520 | <f_translation>時間</f_translation> | ||
1521 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1522 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WLLengthOfDayMin</b_path> | ||
1523 | <c_attribute>label</c_attribute> | ||
1524 | <d_old></d_old> | ||
1525 | <e_new>Min</e_new> | ||
1526 | <f_old_trans></f_old_trans> | ||
1527 | <f_translation>分</f_translation> | ||
1528 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1529 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WLLengthOfDaySec</b_path> | ||
1530 | <c_attribute>label</c_attribute> | ||
1531 | <d_old></d_old> | ||
1532 | <e_new>Sec</e_new> | ||
170 | <f_old_trans></f_old_trans> | 1533 | <f_old_trans></f_old_trans> |
171 | <f_translation>何も見つかりませんでした</f_translation> | 1534 | <f_translation>秒</f_translation> |
1535 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1536 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/DayCycleText3</b_path> | ||
1537 | <c_attribute></c_attribute> | ||
1538 | <d_old></d_old> | ||
1539 | <e_new> | ||
1540 | Preview: | ||
1541 | </e_new> | ||
1542 | <f_old_trans></f_old_trans> | ||
1543 | <f_translation> | ||
1544 | プレビュー: | ||
1545 | </f_translation> | ||
1546 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1547 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WLAnimSky</b_path> | ||
1548 | <c_attribute>label</c_attribute> | ||
1549 | <d_old></d_old> | ||
1550 | <e_new>Play</e_new> | ||
1551 | <f_old_trans></f_old_trans> | ||
1552 | <f_translation>再生</f_translation> | ||
1553 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1554 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WLAnimSky</b_path> | ||
1555 | <c_attribute>label_selected</c_attribute> | ||
1556 | <d_old></d_old> | ||
1557 | <e_new>Play</e_new> | ||
1558 | <f_old_trans></f_old_trans> | ||
1559 | <f_translation>再生</f_translation> | ||
1560 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1561 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WLStopAnimSky</b_path> | ||
1562 | <c_attribute>label</c_attribute> | ||
1563 | <d_old></d_old> | ||
1564 | <e_new>Stop!</e_new> | ||
1565 | <f_old_trans></f_old_trans> | ||
1566 | <f_translation>停止!</f_translation> | ||
1567 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1568 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WLStopAnimSky</b_path> | ||
1569 | <c_attribute>label_selected</c_attribute> | ||
1570 | <d_old></d_old> | ||
1571 | <e_new>Stop</e_new> | ||
1572 | <f_old_trans></f_old_trans> | ||
1573 | <f_translation>停止</f_translation> | ||
1574 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1575 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WLUseLindenTime</b_path> | ||
1576 | <c_attribute>label</c_attribute> | ||
1577 | <d_old></d_old> | ||
1578 | <e_new>Use Estate Time</e_new> | ||
1579 | <f_old_trans></f_old_trans> | ||
1580 | <f_translation>不動産の時刻を使用</f_translation> | ||
1581 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1582 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WLUseLindenTime</b_path> | ||
1583 | <c_attribute>label_selected</c_attribute> | ||
1584 | <d_old></d_old> | ||
1585 | <e_new>Go to Estate Time</e_new> | ||
1586 | <f_old_trans></f_old_trans> | ||
1587 | <f_translation>不動産の時刻に変更</f_translation> | ||
1588 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1589 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WLSaveDayCycle</b_path> | ||
1590 | <c_attribute>label</c_attribute> | ||
1591 | <d_old></d_old> | ||
1592 | <e_new>Save Test Day</e_new> | ||
1593 | <f_old_trans></f_old_trans> | ||
1594 | <f_translation>デイ・テストを保存</f_translation> | ||
1595 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1596 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WLSaveDayCycle</b_path> | ||
1597 | <c_attribute>label_selected</c_attribute> | ||
1598 | <d_old></d_old> | ||
1599 | <e_new>Save Test Day</e_new> | ||
1600 | <f_old_trans></f_old_trans> | ||
1601 | <f_translation>デイ・テストを保存</f_translation> | ||
1602 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1603 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WLLoadDayCycle</b_path> | ||
1604 | <c_attribute>label</c_attribute> | ||
1605 | <d_old></d_old> | ||
1606 | <e_new>Load Test Day</e_new> | ||
1607 | <f_old_trans></f_old_trans> | ||
1608 | <f_translation>デイ・テストをロード</f_translation> | ||
1609 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1610 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WLLoadDayCycle</b_path> | ||
1611 | <c_attribute>label_selected</c_attribute> | ||
1612 | <d_old></d_old> | ||
1613 | <e_new>Load Test Day</e_new> | ||
1614 | <f_old_trans></f_old_trans> | ||
1615 | <f_translation>デイ・テストをロード</f_translation> | ||
1616 | </string><string><a_file>floater_device_settings.xml</a_file> | ||
1617 | <b_path>/floater_device_settings</b_path> | ||
1618 | <c_attribute>title</c_attribute> | ||
1619 | <d_old></d_old> | ||
1620 | <e_new>Voice Chat Device Settings</e_new> | ||
1621 | <f_old_trans></f_old_trans> | ||
1622 | <f_translation>ボイスチャット機器の設定</f_translation> | ||
172 | </string><string><a_file>floater_directory.xml</a_file> | 1623 | </string><string><a_file>floater_directory.xml</a_file> |
173 | <b_path>/directory/Directory Tabs/find_all_old_panel/results/icon</b_path> | 1624 | <b_path>/directory/Directory Tabs/find_all_old_panel/results/icon</b_path> |
174 | <c_attribute>label</c_attribute> | 1625 | <c_attribute>label</c_attribute> |
@@ -176,6 +1627,132 @@ | |||
176 | <e_new></e_new> | 1627 | <e_new></e_new> |
177 | <f_old_trans></f_old_trans> | 1628 | <f_old_trans></f_old_trans> |
178 | <f_translation></f_translation> | 1629 | <f_translation></f_translation> |
1630 | </string><string><a_file>floater_env_settings.xml</a_file> | ||
1631 | <b_path>/Environment Editor Floater</b_path> | ||
1632 | <c_attribute>title</c_attribute> | ||
1633 | <d_old></d_old> | ||
1634 | <e_new>Environment Editor</e_new> | ||
1635 | <f_old_trans></f_old_trans> | ||
1636 | <f_translation>環境編集</f_translation> | ||
1637 | </string><string><a_file>floater_env_settings.xml</a_file> | ||
1638 | <b_path>/Environment Editor Floater/EnvTimeText</b_path> | ||
1639 | <c_attribute></c_attribute> | ||
1640 | <d_old></d_old> | ||
1641 | <e_new> | ||
1642 | Time of Day | ||
1643 | </e_new> | ||
1644 | <f_old_trans></f_old_trans> | ||
1645 | <f_translation> | ||
1646 | 時刻 | ||
1647 | </f_translation> | ||
1648 | </string><string><a_file>floater_env_settings.xml</a_file> | ||
1649 | <b_path>/Environment Editor Floater/EnvTimeText2</b_path> | ||
1650 | <c_attribute></c_attribute> | ||
1651 | <d_old></d_old> | ||
1652 | <e_new> | ||
1653 | 12:00 PM | ||
1654 | </e_new> | ||
1655 | <f_old_trans></f_old_trans> | ||
1656 | <f_translation> | ||
1657 | 正午 12:00 | ||
1658 | </f_translation> | ||
1659 | </string><string><a_file>floater_env_settings.xml</a_file> | ||
1660 | <b_path>/Environment Editor Floater/EnvTimeSlider</b_path> | ||
1661 | <c_attribute>label</c_attribute> | ||
1662 | <d_old></d_old> | ||
1663 | <e_new></e_new> | ||
1664 | <f_old_trans></f_old_trans> | ||
1665 | <f_translation></f_translation> | ||
1666 | </string><string><a_file>floater_env_settings.xml</a_file> | ||
1667 | <b_path>/Environment Editor Floater/EnvCloudText</b_path> | ||
1668 | <c_attribute></c_attribute> | ||
1669 | <d_old></d_old> | ||
1670 | <e_new> | ||
1671 | Cloud Cover | ||
1672 | </e_new> | ||
1673 | <f_old_trans></f_old_trans> | ||
1674 | <f_translation> | ||
1675 | 雲の量 | ||
1676 | </f_translation> | ||
1677 | <f_old_trans></f_old_trans> | ||
1678 | </string><string><a_file>floater_env_settings.xml</a_file> | ||
1679 | <b_path>/Environment Editor Floater/EnvCloudSlider</b_path> | ||
1680 | <c_attribute>label</c_attribute> | ||
1681 | <d_old></d_old> | ||
1682 | <e_new></e_new> | ||
1683 | <f_old_trans></f_old_trans> | ||
1684 | <f_translation></f_translation> | ||
1685 | </string><string><a_file>floater_env_settings.xml</a_file> | ||
1686 | <b_path>/Environment Editor Floater/EnvWaterColorText</b_path> | ||
1687 | <c_attribute></c_attribute> | ||
1688 | <d_old></d_old> | ||
1689 | <e_new> | ||
1690 | Water Color | ||
1691 | </e_new> | ||
1692 | <f_old_trans></f_old_trans> | ||
1693 | <f_translation> | ||
1694 | 水の色 | ||
1695 | </f_translation> | ||
1696 | </string><string><a_file>floater_env_settings.xml</a_file> | ||
1697 | <b_path>/Environment Editor Floater/EnvWaterColor</b_path> | ||
1698 | <c_attribute>label</c_attribute> | ||
1699 | <d_old></d_old> | ||
1700 | <e_new></e_new> | ||
1701 | <f_old_trans></f_old_trans> | ||
1702 | <f_translation></f_translation> | ||
1703 | </string><string><a_file>floater_env_settings.xml</a_file> | ||
1704 | <b_path>/Environment Editor Floater/EnvWaterColor</b_path> | ||
1705 | <c_attribute>tool_tip</c_attribute> | ||
1706 | <d_old></d_old> | ||
1707 | <e_new>Click to open Color Picker</e_new> | ||
1708 | <f_old_trans></f_old_trans> | ||
1709 | <f_translation>カラー・ピッカーをクリックして開く</f_translation> | ||
1710 | </string><string><a_file>floater_env_settings.xml</a_file> | ||
1711 | <b_path>/Environment Editor Floater/EnvWaterFogText</b_path> | ||
1712 | <c_attribute></c_attribute> | ||
1713 | <d_old></d_old> | ||
1714 | <e_new> | ||
1715 | Water Fog | ||
1716 | </e_new> | ||
1717 | <f_old_trans></f_old_trans> | ||
1718 | <f_translation> | ||
1719 | 水中のフォグ効果 | ||
1720 | </f_translation> | ||
1721 | </string><string><a_file>floater_env_settings.xml</a_file> | ||
1722 | <b_path>/Environment Editor Floater/EnvWaterFogSlider</b_path> | ||
1723 | <c_attribute>label</c_attribute> | ||
1724 | <d_old></d_old> | ||
1725 | <e_new></e_new> | ||
1726 | <f_old_trans></f_old_trans> | ||
1727 | <f_translation></f_translation> | ||
1728 | </string><string><a_file>floater_env_settings.xml</a_file> | ||
1729 | <b_path>/Environment Editor Floater/EnvUseEstateTimeButton</b_path> | ||
1730 | <c_attribute>label</c_attribute> | ||
1731 | <d_old></d_old> | ||
1732 | <e_new>Use Estate Time</e_new> | ||
1733 | <f_old_trans></f_old_trans> | ||
1734 | <f_translation>不動産の時刻を使用</f_translation> | ||
1735 | </string><string><a_file>floater_env_settings.xml</a_file> | ||
1736 | <b_path>/Environment Editor Floater/EnvAdvancedSkyButton</b_path> | ||
1737 | <c_attribute>label</c_attribute> | ||
1738 | <d_old></d_old> | ||
1739 | <e_new>Advanced Sky</e_new> | ||
1740 | <f_old_trans></f_old_trans> | ||
1741 | <f_translation>空の高度な設定</f_translation> | ||
1742 | </string><string><a_file>floater_env_settings.xml</a_file> | ||
1743 | <b_path>/Environment Editor Floater/EnvAdvancedWaterButton</b_path> | ||
1744 | <c_attribute>label</c_attribute> | ||
1745 | <d_old></d_old> | ||
1746 | <e_new>Advanced Water</e_new> | ||
1747 | <f_old_trans></f_old_trans> | ||
1748 | <f_translation>水の高度な設定</f_translation> | ||
1749 | </string><string><a_file>floater_env_settings.xml</a_file> | ||
1750 | <b_path>/Environment Editor Floater/EnvSettingsHelpButton</b_path> | ||
1751 | <c_attribute>label</c_attribute> | ||
1752 | <d_old></d_old> | ||
1753 | <e_new>?</e_new> | ||
1754 | <f_old_trans></f_old_trans> | ||
1755 | <f_translation>?</f_translation> | ||
179 | </string><string><a_file>floater_groups.xml</a_file> | 1756 | </string><string><a_file>floater_groups.xml</a_file> |
180 | <b_path>/groups/group list/name</b_path> | 1757 | <b_path>/groups/group list/name</b_path> |
181 | <c_attribute>label</c_attribute> | 1758 | <c_attribute>label</c_attribute> |
@@ -183,50 +1760,497 @@ | |||
183 | <e_new></e_new> | 1760 | <e_new></e_new> |
184 | <f_old_trans></f_old_trans> | 1761 | <f_old_trans></f_old_trans> |
185 | <f_translation></f_translation> | 1762 | <f_translation></f_translation> |
186 | </string><string><a_file>floater_im.xml</a_file> | 1763 | </string><string><a_file>floater_hardware_settings.xml</a_file> |
187 | <b_path>/im_floater/no_ability_error</b_path> | 1764 | <b_path>/Hardware Settings Floater</b_path> |
1765 | <c_attribute>title</c_attribute> | ||
1766 | <d_old></d_old> | ||
1767 | <e_new>Hardware Settings</e_new> | ||
1768 | <f_old_trans></f_old_trans> | ||
1769 | <f_translation>ハードウェア設定</f_translation> | ||
1770 | </string><string><a_file>floater_hardware_settings.xml</a_file> | ||
1771 | <b_path>/Hardware Settings Floater/Filtering:</b_path> | ||
188 | <c_attribute></c_attribute> | 1772 | <c_attribute></c_attribute> |
189 | <d_old></d_old> | 1773 | <d_old></d_old> |
190 | <e_new> | 1774 | <e_new> |
191 | You do not have that ability. | 1775 | Filtering: |
192 | </e_new> | 1776 | </e_new> |
193 | <f_old_trans></f_old_trans> | 1777 | <f_old_trans></f_old_trans> |
194 | <f_translation> | 1778 | <f_translation> |
195 | なたにはその力 | 1779 | : |
196 | </f_translation> | 1780 | </f_translation> |
197 | </string><string><a_file>floater_im.xml</a_file> | 1781 | </string><string><a_file>floater_hardware_settings.xml</a_file> |
198 | <b_path>/im_floater/not_a_mod_error</b_path> | 1782 | <b_path>/Hardware Settings Floater/ani</b_path> |
1783 | <c_attribute>label</c_attribute> | ||
1784 | <d_old></d_old> | ||
1785 | <e_new>Anisotropic Filtering (slower when enabled)</e_new> | ||
1786 | <f_old_trans></f_old_trans> | ||
1787 | <f_translation>異方的フィルタリング(有効にすると速度が低下します)</f_translation> | ||
1788 | </string><string><a_file>floater_hardware_settings.xml</a_file> | ||
1789 | <b_path>/Hardware Settings Floater/gamma</b_path> | ||
1790 | <c_attribute>label</c_attribute> | ||
1791 | <d_old></d_old> | ||
1792 | <e_new>Gamma:</e_new> | ||
1793 | <f_old_trans></f_old_trans> | ||
1794 | <f_translation>ガンマ:</f_translation> | ||
1795 | </string><string><a_file>floater_hardware_settings.xml</a_file> | ||
1796 | <b_path>/Hardware Settings Floater/(brightness, lower is brighter)</b_path> | ||
199 | <c_attribute></c_attribute> | 1797 | <c_attribute></c_attribute> |
200 | <d_old></d_old> | 1798 | <d_old></d_old> |
201 | <e_new> | 1799 | <e_new> |
202 | You are not a session moderator. | 1800 | (brightness, lower is brighter, 0=use default) |
203 | </e_new> | 1801 | </e_new> |
204 | <f_old_trans></f_old_trans> | 1802 | <f_old_trans></f_old_trans> |
205 | <f_translation> | 1803 | <f_translation> |
206 | タではありません。 | 1804 | (明低明0=値用) |
207 | </f_translation> | 1805 | </f_translation> |
208 | </string><string><a_file>floater_im.xml</a_file> | 1806 | </string><string><a_file>floater_hardware_settings.xml</a_file> |
209 | <b_path>/im_floater/muted_error</b_path> | 1807 | <b_path>/Hardware Settings Floater/Enable VBO:</b_path> |
1808 | <c_attribute></c_attribute> | ||
1809 | <d_old></d_old> | ||
1810 | <e_new> | ||
1811 | Enable VBO: | ||
1812 | </e_new> | ||
1813 | <f_old_trans></f_old_trans> | ||
1814 | <f_translation> | ||
1815 | VBO を有効化: | ||
1816 | </f_translation> | ||
1817 | </string><string><a_file>floater_hardware_settings.xml</a_file> | ||
1818 | <b_path>/Hardware Settings Floater/vbo</b_path> | ||
1819 | <c_attribute>label</c_attribute> | ||
1820 | <d_old></d_old> | ||
1821 | <e_new>Enable OpenGL Vertex Buffer Objects</e_new> | ||
1822 | <f_old_trans></f_old_trans> | ||
1823 | <f_translation>OpenGL Vertex Buffer オブジェクトを有効化</f_translation> | ||
1824 | </string><string><a_file>floater_hardware_settings.xml</a_file> | ||
1825 | <b_path>/Hardware Settings Floater/vbo</b_path> | ||
1826 | <c_attribute>tool_tip</c_attribute> | ||
1827 | <d_old></d_old> | ||
1828 | <e_new>Enabling this on modern hardware gives a performance gain. However, older hardware often has poor implementations of VBOs and you may get crashes when this is enabled.</e_new> | ||
1829 | <f_old_trans></f_old_trans> | ||
1830 | <f_translation>最新のハードウェアでこの設定を有効にすると、パフォーマンスが向上します。 しかし、旧型のハードウェアでは VBO の実装が貧弱な場合が多く、この設定を有効にすることでクラッシュにつながるおそれがあります。</f_translation> | ||
1831 | </string><string><a_file>floater_hardware_settings.xml</a_file> | ||
1832 | <b_path>/Hardware Settings Floater/GrapicsCardTextureMemory</b_path> | ||
1833 | <c_attribute>label</c_attribute> | ||
1834 | <d_old></d_old> | ||
1835 | <e_new>Texture Memory (MB):</e_new> | ||
1836 | <f_old_trans></f_old_trans> | ||
1837 | <f_translation>テクスチャー・メモリ (MB):</f_translation> | ||
1838 | </string><string><a_file>floater_hardware_settings.xml</a_file> | ||
1839 | <b_path>/Hardware Settings Floater/GrapicsCardTextureMemory</b_path> | ||
1840 | <c_attribute>tool_tip</c_attribute> | ||
1841 | <d_old></d_old> | ||
1842 | <e_new>Amount of memory to allocate for textures. Defaults to Video Card Memory. Reducing this may improve performance but may also make textures blurry.</e_new> | ||
1843 | <f_old_trans></f_old_trans> | ||
1844 | <f_translation>テクスチャーに割り当てるメモリの合計。 ビデオ・カード・メモリをデフォルトにします。 この数値を減らすと、パフォーマンスが改善されますが、テクスチャーがぼやけた感じになる場合があります。</f_translation> | ||
1845 | </string><string><a_file>floater_hardware_settings.xml</a_file> | ||
1846 | <b_path>/Hardware Settings Floater/fog</b_path> | ||
1847 | <c_attribute>label</c_attribute> | ||
1848 | <d_old></d_old> | ||
1849 | <e_new>Fog Distance Ratio:</e_new> | ||
1850 | <f_old_trans></f_old_trans> | ||
1851 | <f_translation>フォグの距離比率:</f_translation> | ||
1852 | </string><string><a_file>floater_hardware_settings.xml</a_file> | ||
1853 | <b_path>/Hardware Settings Floater/OK</b_path> | ||
1854 | <c_attribute>label</c_attribute> | ||
1855 | <d_old></d_old> | ||
1856 | <e_new>OK</e_new> | ||
1857 | <f_old_trans></f_old_trans> | ||
1858 | <f_translation>OK</f_translation> | ||
1859 | </string><string><a_file>floater_hardware_settings.xml</a_file> | ||
1860 | <b_path>/Hardware Settings Floater/OK</b_path> | ||
1861 | <c_attribute>label_selected</c_attribute> | ||
1862 | <d_old></d_old> | ||
1863 | <e_new>OK</e_new> | ||
1864 | <f_old_trans></f_old_trans> | ||
1865 | <f_translation>OK</f_translation> | ||
1866 | </string><string><a_file>floater_instant_message.xml</a_file> | ||
1867 | <b_path>/im_floater/default_text_label</b_path> | ||
210 | <c_attribute></c_attribute> | 1868 | <c_attribute></c_attribute> |
211 | <d_old></d_old> | 1869 | <d_old></d_old> |
212 | <e_new> | 1870 | <e_new> |
213 | You have been muted. | 1871 | Click here to instant message. |
214 | </e_new> | 1872 | </e_new> |
215 | <f_old_trans></f_old_trans> | 1873 | <f_old_trans></f_old_trans> |
216 | <f_translation> | 1874 | <f_translation> |
217 | さます。 | 1875 | ッIM |
218 | </f_translation> | 1876 | </f_translation> |
219 | </string><string><a_file>floater_im.xml</a_file> | 1877 | </string><string><a_file>floater_instant_message_ad_hoc.xml</a_file> |
220 | <b_path>/im_floater/mute_agent_event</b_path> | 1878 | <b_path>/im_floater/default_text_label</b_path> |
221 | <c_attribute></c_attribute> | 1879 | <c_attribute></c_attribute> |
222 | <d_old></d_old> | 1880 | <d_old></d_old> |
223 | <e_new> | 1881 | <e_new> |
224 | muting agent in | 1882 | Click here to instant message. |
225 | </e_new> | 1883 | </e_new> |
226 | <f_old_trans></f_old_trans> | 1884 | <f_old_trans></f_old_trans> |
227 | <f_translation> | 1885 | <f_translation> |
228 | 次地域ェュートています | 1886 | ッしてIM |
229 | </f_translation> | 1887 | </f_translation> |
1888 | </string><string><a_file>floater_live_lsleditor.xml</a_file> | ||
1889 | <b_path>/script ed float/script_running</b_path> | ||
1890 | <c_attribute></c_attribute> | ||
1891 | <d_old></d_old> | ||
1892 | <e_new> | ||
1893 | Running | ||
1894 | </e_new> | ||
1895 | <f_old_trans></f_old_trans> | ||
1896 | <f_translation> | ||
1897 | 実行中 | ||
1898 | </f_translation> | ||
1899 | </string><string><a_file>floater_media_browser.xml</a_file> | ||
1900 | <b_path>/floater_about</b_path> | ||
1901 | <c_attribute>title</c_attribute> | ||
1902 | <d_old></d_old> | ||
1903 | <e_new>Media Browser</e_new> | ||
1904 | <f_old_trans></f_old_trans> | ||
1905 | <f_translation>メディア・ブラウザー</f_translation> | ||
1906 | </string><string><a_file>floater_media_browser.xml</a_file> | ||
1907 | <b_path>/floater_about///back</b_path> | ||
1908 | <c_attribute>label</c_attribute> | ||
1909 | <d_old></d_old> | ||
1910 | <e_new>Back</e_new> | ||
1911 | <f_old_trans></f_old_trans> | ||
1912 | <f_translation>戻る</f_translation> | ||
1913 | </string><string><a_file>floater_media_browser.xml</a_file> | ||
1914 | <b_path>/floater_about///forward</b_path> | ||
1915 | <c_attribute>label</c_attribute> | ||
1916 | <d_old></d_old> | ||
1917 | <e_new>Forward</e_new> | ||
1918 | <f_old_trans></f_old_trans> | ||
1919 | <f_translation>転送</f_translation> | ||
1920 | </string><string><a_file>floater_media_browser.xml</a_file> | ||
1921 | <b_path>/floater_about///reload</b_path> | ||
1922 | <c_attribute>label</c_attribute> | ||
1923 | <d_old></d_old> | ||
1924 | <e_new>Reload</e_new> | ||
1925 | <f_old_trans></f_old_trans> | ||
1926 | <f_translation>再ロード</f_translation> | ||
1927 | </string><string><a_file>floater_media_browser.xml</a_file> | ||
1928 | <b_path>/floater_about///go</b_path> | ||
1929 | <c_attribute>label</c_attribute> | ||
1930 | <d_old></d_old> | ||
1931 | <e_new>Go</e_new> | ||
1932 | <f_old_trans></f_old_trans> | ||
1933 | <f_translation>行く</f_translation> | ||
1934 | </string><string><a_file>floater_media_browser.xml</a_file> | ||
1935 | <b_path>/floater_about//parcel_owner_controls/assign</b_path> | ||
1936 | <c_attribute>label</c_attribute> | ||
1937 | <d_old></d_old> | ||
1938 | <e_new>Send Current URL to Parcel</e_new> | ||
1939 | <f_old_trans></f_old_trans> | ||
1940 | <f_translation>現在の URL を区画に送信</f_translation> | ||
1941 | </string><string><a_file>floater_media_browser.xml</a_file> | ||
1942 | <b_path>/floater_about///open_browser</b_path> | ||
1943 | <c_attribute>label</c_attribute> | ||
1944 | <d_old></d_old> | ||
1945 | <e_new>Open in My Web Browser</e_new> | ||
1946 | <f_old_trans></f_old_trans> | ||
1947 | <f_translation>自分の Web ブラウザーで開く</f_translation> | ||
1948 | </string><string><a_file>floater_media_browser.xml</a_file> | ||
1949 | <b_path>/floater_about///open_always</b_path> | ||
1950 | <c_attribute>label</c_attribute> | ||
1951 | <d_old></d_old> | ||
1952 | <e_new>Always open in my web browser</e_new> | ||
1953 | <f_old_trans></f_old_trans> | ||
1954 | <f_translation>常に自分のウェブ・ブラウザーで開く</f_translation> | ||
1955 | </string><string><a_file>floater_media_browser.xml</a_file> | ||
1956 | <b_path>/floater_about///close</b_path> | ||
1957 | <c_attribute>label</c_attribute> | ||
1958 | <d_old></d_old> | ||
1959 | <e_new>Close</e_new> | ||
1960 | <f_old_trans></f_old_trans> | ||
1961 | <f_translation>閉じる</f_translation> | ||
1962 | </string><string><a_file>floater_post_process.xml</a_file> | ||
1963 | <b_path>/Post-Process Floater</b_path> | ||
1964 | <c_attribute>title</c_attribute> | ||
1965 | <d_old></d_old> | ||
1966 | <e_new>Post-Process Settings</e_new> | ||
1967 | <f_old_trans></f_old_trans> | ||
1968 | <f_translation>ポストプロセス設定</f_translation> | ||
1969 | </string><string><a_file>floater_post_process.xml</a_file> | ||
1970 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiColorFilterPanel</b_path> | ||
1971 | <c_attribute>label</c_attribute> | ||
1972 | <d_old></d_old> | ||
1973 | <e_new>Color Filter</e_new> | ||
1974 | <f_old_trans></f_old_trans> | ||
1975 | <f_translation>カラー・フィルター</f_translation> | ||
1976 | </string><string><a_file>floater_post_process.xml</a_file> | ||
1977 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiColorFilterPanel/wmiColorFilterToggle</b_path> | ||
1978 | <c_attribute>label</c_attribute> | ||
1979 | <d_old></d_old> | ||
1980 | <e_new>Enable</e_new> | ||
1981 | <f_old_trans></f_old_trans> | ||
1982 | <f_translation>有効</f_translation> | ||
1983 | </string><string><a_file>floater_post_process.xml</a_file> | ||
1984 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiColorFilterPanel/wmiColorFilterBrightnessText</b_path> | ||
1985 | <c_attribute></c_attribute> | ||
1986 | <d_old></d_old> | ||
1987 | <e_new> | ||
1988 | Brightness | ||
1989 | </e_new> | ||
1990 | <f_old_trans></f_old_trans> | ||
1991 | <f_translation> | ||
1992 | 明るさ | ||
1993 | </f_translation> | ||
1994 | </string><string><a_file>floater_post_process.xml</a_file> | ||
1995 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiColorFilterPanel/wmiColorFilterBrightness</b_path> | ||
1996 | <c_attribute>label</c_attribute> | ||
1997 | <d_old></d_old> | ||
1998 | <e_new></e_new> | ||
1999 | <f_old_trans></f_old_trans> | ||
2000 | <f_translation></f_translation> | ||
2001 | </string><string><a_file>floater_post_process.xml</a_file> | ||
2002 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiColorFilterPanel/wmiColorFilterSaturationText</b_path> | ||
2003 | <c_attribute></c_attribute> | ||
2004 | <d_old></d_old> | ||
2005 | <e_new> | ||
2006 | Saturation | ||
2007 | </e_new> | ||
2008 | <f_old_trans></f_old_trans> | ||
2009 | <f_translation> | ||
2010 | 彩度 | ||
2011 | </f_translation> | ||
2012 | </string><string><a_file>floater_post_process.xml</a_file> | ||
2013 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiColorFilterPanel/wmiColorFilterSaturation</b_path> | ||
2014 | <c_attribute>label</c_attribute> | ||
2015 | <d_old></d_old> | ||
2016 | <e_new></e_new> | ||
2017 | <f_old_trans></f_old_trans> | ||
2018 | <f_translation></f_translation> | ||
2019 | </string><string><a_file>floater_post_process.xml</a_file> | ||
2020 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiColorFilterPanel/wmiColorFilterContrastText</b_path> | ||
2021 | <c_attribute></c_attribute> | ||
2022 | <d_old></d_old> | ||
2023 | <e_new> | ||
2024 | Contrast | ||
2025 | </e_new> | ||
2026 | <f_old_trans></f_old_trans> | ||
2027 | <f_translation> | ||
2028 | コントラスト | ||
2029 | </f_translation> | ||
2030 | </string><string><a_file>floater_post_process.xml</a_file> | ||
2031 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiColorFilterPanel/wmiColorFilterContrast</b_path> | ||
2032 | <c_attribute>label</c_attribute> | ||
2033 | <d_old></d_old> | ||
2034 | <e_new></e_new> | ||
2035 | <f_old_trans></f_old_trans> | ||
2036 | <f_translation></f_translation> | ||
2037 | </string><string><a_file>floater_post_process.xml</a_file> | ||
2038 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiColorFilterPanel/wmiColorFilterBaseText</b_path> | ||
2039 | <c_attribute></c_attribute> | ||
2040 | <d_old></d_old> | ||
2041 | <e_new> | ||
2042 | Contrast Base Color | ||
2043 | </e_new> | ||
2044 | <f_old_trans></f_old_trans> | ||
2045 | <f_translation> | ||
2046 | コントラストの基本色 | ||
2047 | </f_translation> | ||
2048 | </string><string><a_file>floater_post_process.xml</a_file> | ||
2049 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiColorFilterPanel/wmiColorFilterBaseR</b_path> | ||
2050 | <c_attribute>label</c_attribute> | ||
2051 | <d_old></d_old> | ||
2052 | <e_new>R</e_new> | ||
2053 | <f_old_trans></f_old_trans> | ||
2054 | <f_translation>R</f_translation> | ||
2055 | </string><string><a_file>floater_post_process.xml</a_file> | ||
2056 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiColorFilterPanel/wmiColorFilterBaseG</b_path> | ||
2057 | <c_attribute>label</c_attribute> | ||
2058 | <d_old></d_old> | ||
2059 | <e_new>G</e_new> | ||
2060 | <f_old_trans></f_old_trans> | ||
2061 | <f_translation>G</f_translation> | ||
2062 | </string><string><a_file>floater_post_process.xml</a_file> | ||
2063 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiColorFilterPanel/wmiColorFilterBaseB</b_path> | ||
2064 | <c_attribute>label</c_attribute> | ||
2065 | <d_old></d_old> | ||
2066 | <e_new>B</e_new> | ||
2067 | <f_old_trans></f_old_trans> | ||
2068 | <f_translation>B</f_translation> | ||
2069 | </string><string><a_file>floater_post_process.xml</a_file> | ||
2070 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiColorFilterPanel/wmiColorFilterBaseI</b_path> | ||
2071 | <c_attribute>label</c_attribute> | ||
2072 | <d_old></d_old> | ||
2073 | <e_new>I</e_new> | ||
2074 | <f_old_trans></f_old_trans> | ||
2075 | <f_translation>I</f_translation> | ||
2076 | </string><string><a_file>floater_post_process.xml</a_file> | ||
2077 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiNightVisionPanel</b_path> | ||
2078 | <c_attribute>label</c_attribute> | ||
2079 | <d_old></d_old> | ||
2080 | <e_new>Night Vision</e_new> | ||
2081 | <f_old_trans></f_old_trans> | ||
2082 | <f_translation>ナイトビジョン</f_translation> | ||
2083 | </string><string><a_file>floater_post_process.xml</a_file> | ||
2084 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiNightVisionPanel/wmiNightVisionToggle</b_path> | ||
2085 | <c_attribute>label</c_attribute> | ||
2086 | <d_old></d_old> | ||
2087 | <e_new>Enable</e_new> | ||
2088 | <f_old_trans></f_old_trans> | ||
2089 | <f_translation>有効</f_translation> | ||
2090 | </string><string><a_file>floater_post_process.xml</a_file> | ||
2091 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiNightVisionPanel/wmiNightVisionBrightMultText</b_path> | ||
2092 | <c_attribute></c_attribute> | ||
2093 | <d_old></d_old> | ||
2094 | <e_new> | ||
2095 | Light Amplification Multiple | ||
2096 | </e_new> | ||
2097 | <f_old_trans></f_old_trans> | ||
2098 | <f_translation> | ||
2099 | 光の増幅(マルチ) | ||
2100 | </f_translation> | ||
2101 | </string><string><a_file>floater_post_process.xml</a_file> | ||
2102 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiNightVisionPanel/wmiNightVisionBrightMult</b_path> | ||
2103 | <c_attribute>label</c_attribute> | ||
2104 | <d_old></d_old> | ||
2105 | <e_new></e_new> | ||
2106 | <f_old_trans></f_old_trans> | ||
2107 | <f_translation></f_translation> | ||
2108 | </string><string><a_file>floater_post_process.xml</a_file> | ||
2109 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiNightVisionPanel/wmiNightVisionNoiseSizeText</b_path> | ||
2110 | <c_attribute></c_attribute> | ||
2111 | <d_old></d_old> | ||
2112 | <e_new> | ||
2113 | Noise Size | ||
2114 | </e_new> | ||
2115 | <f_old_trans></f_old_trans> | ||
2116 | <f_translation> | ||
2117 | ノイズ・サイズ | ||
2118 | </f_translation> | ||
2119 | </string><string><a_file>floater_post_process.xml</a_file> | ||
2120 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiNightVisionPanel/wmiNightVisionNoiseSize</b_path> | ||
2121 | <c_attribute>label</c_attribute> | ||
2122 | <d_old></d_old> | ||
2123 | <e_new></e_new> | ||
2124 | <f_old_trans></f_old_trans> | ||
2125 | <f_translation></f_translation> | ||
2126 | </string><string><a_file>floater_post_process.xml</a_file> | ||
2127 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiNightVisionPanel/wmiNightVisionNoiseStrengthText</b_path> | ||
2128 | <c_attribute></c_attribute> | ||
2129 | <d_old></d_old> | ||
2130 | <e_new> | ||
2131 | Noise Strength | ||
2132 | </e_new> | ||
2133 | <f_old_trans></f_old_trans> | ||
2134 | <f_translation> | ||
2135 | ノイズ強度 | ||
2136 | </f_translation> | ||
2137 | </string><string><a_file>floater_post_process.xml</a_file> | ||
2138 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiNightVisionPanel/wmiNightVisionNoiseStrength</b_path> | ||
2139 | <c_attribute>label</c_attribute> | ||
2140 | <d_old></d_old> | ||
2141 | <e_new></e_new> | ||
2142 | <f_old_trans></f_old_trans> | ||
2143 | <f_translation></f_translation> | ||
2144 | </string><string><a_file>floater_post_process.xml</a_file> | ||
2145 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiBloomPanel</b_path> | ||
2146 | <c_attribute>label</c_attribute> | ||
2147 | <d_old></d_old> | ||
2148 | <e_new>Bloom</e_new> | ||
2149 | <f_old_trans></f_old_trans> | ||
2150 | <f_translation>ブルーム</f_translation> | ||
2151 | </string><string><a_file>floater_post_process.xml</a_file> | ||
2152 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiBloomPanel/wmiBloomToggle</b_path> | ||
2153 | <c_attribute>label</c_attribute> | ||
2154 | <d_old></d_old> | ||
2155 | <e_new>Enable</e_new> | ||
2156 | <f_old_trans></f_old_trans> | ||
2157 | <f_translation>有効</f_translation> | ||
2158 | </string><string><a_file>floater_post_process.xml</a_file> | ||
2159 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiBloomPanel/wmiBloomExtractText</b_path> | ||
2160 | <c_attribute></c_attribute> | ||
2161 | <d_old></d_old> | ||
2162 | <e_new> | ||
2163 | Luminosity Extraction | ||
2164 | </e_new> | ||
2165 | <f_old_trans></f_old_trans> | ||
2166 | <f_translation> | ||
2167 | 明度の抽出 | ||
2168 | </f_translation> | ||
2169 | </string><string><a_file>floater_post_process.xml</a_file> | ||
2170 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiBloomPanel/wmiBloomExtract</b_path> | ||
2171 | <c_attribute>label</c_attribute> | ||
2172 | <d_old></d_old> | ||
2173 | <e_new></e_new> | ||
2174 | <f_old_trans></f_old_trans> | ||
2175 | <f_translation></f_translation> | ||
2176 | </string><string><a_file>floater_post_process.xml</a_file> | ||
2177 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiBloomPanel/wmiBloomSizeText</b_path> | ||
2178 | <c_attribute></c_attribute> | ||
2179 | <d_old></d_old> | ||
2180 | <e_new> | ||
2181 | Bloom Size | ||
2182 | </e_new> | ||
2183 | <f_old_trans></f_old_trans> | ||
2184 | <f_translation> | ||
2185 | ブルーム・サイズ | ||
2186 | </f_translation> | ||
2187 | </string><string><a_file>floater_post_process.xml</a_file> | ||
2188 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiBloomPanel/wmiBloomSize</b_path> | ||
2189 | <c_attribute>label</c_attribute> | ||
2190 | <d_old></d_old> | ||
2191 | <e_new></e_new> | ||
2192 | <f_old_trans></f_old_trans> | ||
2193 | <f_translation></f_translation> | ||
2194 | </string><string><a_file>floater_post_process.xml</a_file> | ||
2195 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiBloomPanel/wmiBloomStrengthText</b_path> | ||
2196 | <c_attribute></c_attribute> | ||
2197 | <d_old></d_old> | ||
2198 | <e_new> | ||
2199 | Bloom Strength | ||
2200 | </e_new> | ||
2201 | <f_old_trans></f_old_trans> | ||
2202 | <f_translation> | ||
2203 | ブルーム強度 | ||
2204 | </f_translation> | ||
2205 | </string><string><a_file>floater_post_process.xml</a_file> | ||
2206 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiBloomPanel/wmiBloomStrength</b_path> | ||
2207 | <c_attribute>label</c_attribute> | ||
2208 | <d_old></d_old> | ||
2209 | <e_new></e_new> | ||
2210 | <f_old_trans></f_old_trans> | ||
2211 | <f_translation></f_translation> | ||
2212 | </string><string><a_file>floater_post_process.xml</a_file> | ||
2213 | <b_path>/Post-Process Floater/Post-Process Tabs/Extras</b_path> | ||
2214 | <c_attribute>label</c_attribute> | ||
2215 | <d_old></d_old> | ||
2216 | <e_new>Extras</e_new> | ||
2217 | <f_old_trans></f_old_trans> | ||
2218 | <f_translation>その他</f_translation> | ||
2219 | </string><string><a_file>floater_post_process.xml</a_file> | ||
2220 | <b_path>/Post-Process Floater/Post-Process Tabs/Extras/PPLoadEffect</b_path> | ||
2221 | <c_attribute>label</c_attribute> | ||
2222 | <d_old></d_old> | ||
2223 | <e_new>LoadEffect</e_new> | ||
2224 | <f_old_trans></f_old_trans> | ||
2225 | <f_translation>効果読み込み</f_translation> | ||
2226 | </string><string><a_file>floater_post_process.xml</a_file> | ||
2227 | <b_path>/Post-Process Floater/Post-Process Tabs/Extras/PPLoadEffect</b_path> | ||
2228 | <c_attribute>label_selected</c_attribute> | ||
2229 | <d_old></d_old> | ||
2230 | <e_new>LoadEffect</e_new> | ||
2231 | <f_old_trans></f_old_trans> | ||
2232 | <f_translation>効果読み込み</f_translation> | ||
2233 | </string><string><a_file>floater_post_process.xml</a_file> | ||
2234 | <b_path>/Post-Process Floater/Post-Process Tabs/Extras/PPSaveEffect</b_path> | ||
2235 | <c_attribute>label</c_attribute> | ||
2236 | <d_old></d_old> | ||
2237 | <e_new>SaveEffect</e_new> | ||
2238 | <f_old_trans></f_old_trans> | ||
2239 | <f_translation>効果保存</f_translation> | ||
2240 | </string><string><a_file>floater_post_process.xml</a_file> | ||
2241 | <b_path>/Post-Process Floater/Post-Process Tabs/Extras/PPSaveEffect</b_path> | ||
2242 | <c_attribute>label_selected</c_attribute> | ||
2243 | <d_old></d_old> | ||
2244 | <e_new>SaveEffect</e_new> | ||
2245 | <f_old_trans></f_old_trans> | ||
2246 | <f_translation>効果保存</f_translation> | ||
2247 | </string><string><a_file>floater_post_process.xml</a_file> | ||
2248 | <b_path>/Post-Process Floater/Post-Process Tabs/Extras/PPEffectNameEditor</b_path> | ||
2249 | <c_attribute>label</c_attribute> | ||
2250 | <d_old></d_old> | ||
2251 | <e_new>Effect Name</e_new> | ||
2252 | <f_old_trans></f_old_trans> | ||
2253 | <f_translation>効果名</f_translation> | ||
230 | </string><string><a_file>floater_preview_classified.xml</a_file> | 2254 | </string><string><a_file>floater_preview_classified.xml</a_file> |
231 | <b_path>/classified_preview</b_path> | 2255 | <b_path>/classified_preview</b_path> |
232 | <c_attribute>title</c_attribute> | 2256 | <c_attribute>title</c_attribute> |
@@ -255,15 +2279,1842 @@ | |||
255 | <e_new>Region/Estate</e_new> | 2279 | <e_new>Region/Estate</e_new> |
256 | <f_old_trans></f_old_trans> | 2280 | <f_old_trans></f_old_trans> |
257 | <f_translation>地域/不動産</f_translation> | 2281 | <f_translation>地域/不動産</f_translation> |
258 | </string><string><a_file>floater_select_key.xml</a_file> | 2282 | </string><string><a_file>floater_snapshot.xml</a_file> |
259 | <b_path>/modal container</b_path> | 2283 | <b_path>/Snapshot/more_btn</b_path> |
2284 | <c_attribute>label</c_attribute> | ||
2285 | <d_old></d_old> | ||
2286 | <e_new>More >></e_new> | ||
2287 | <f_old_trans></f_old_trans> | ||
2288 | <f_translation>全表示 >></f_translation> | ||
2289 | </string><string><a_file>floater_snapshot.xml</a_file> | ||
2290 | <b_path>/Snapshot/more_btn</b_path> | ||
2291 | <c_attribute>tool_tip</c_attribute> | ||
2292 | <d_old></d_old> | ||
2293 | <e_new>Advanced Options</e_new> | ||
2294 | <f_old_trans></f_old_trans> | ||
2295 | <f_translation>高度なオプション</f_translation> | ||
2296 | </string><string><a_file>floater_snapshot.xml</a_file> | ||
2297 | <b_path>/Snapshot/less_btn</b_path> | ||
2298 | <c_attribute>label</c_attribute> | ||
2299 | <d_old></d_old> | ||
2300 | <e_new><< Less</e_new> | ||
2301 | <f_old_trans></f_old_trans> | ||
2302 | <f_translation><< 簡易</f_translation> | ||
2303 | </string><string><a_file>floater_snapshot.xml</a_file> | ||
2304 | <b_path>/Snapshot/less_btn</b_path> | ||
2305 | <c_attribute>tool_tip</c_attribute> | ||
2306 | <d_old></d_old> | ||
2307 | <e_new>Advanced Options</e_new> | ||
2308 | <f_old_trans></f_old_trans> | ||
2309 | <f_translation>高度なオプション</f_translation> | ||
2310 | </string><string><a_file>floater_tools.xml</a_file> | ||
2311 | <b_path>/toolbox floater/Object Info Tabs/General/clickaction/Play</b_path> | ||
2312 | <c_attribute></c_attribute> | ||
2313 | <d_old></d_old> | ||
2314 | <e_new> | ||
2315 | Play parcel media | ||
2316 | </e_new> | ||
2317 | <f_old_trans></f_old_trans> | ||
2318 | <f_translation> | ||
2319 | 区画メディアを再生 | ||
2320 | </f_translation> | ||
2321 | </string><string><a_file>floater_tools.xml</a_file> | ||
2322 | <b_path>/toolbox floater/Object Info Tabs/General/clickaction/Opemmedia</b_path> | ||
2323 | <c_attribute></c_attribute> | ||
2324 | <d_old></d_old> | ||
2325 | <e_new> | ||
2326 | Open parcel media | ||
2327 | </e_new> | ||
2328 | <f_old_trans></f_old_trans> | ||
2329 | <f_translation> | ||
2330 | 区画メディアを開く | ||
2331 | </f_translation> | ||
2332 | </string><string><a_file>floater_tools.xml</a_file> | ||
2333 | <b_path>/toolbox floater/Object Info Tabs/Texture/glow label</b_path> | ||
2334 | <c_attribute></c_attribute> | ||
2335 | <d_old></d_old> | ||
2336 | <e_new> | ||
2337 | Glow | ||
2338 | </e_new> | ||
2339 | <f_old_trans></f_old_trans> | ||
2340 | <f_translation> | ||
2341 | 光 | ||
2342 | </f_translation> | ||
2343 | </string><string><a_file>floater_url_entry.xml</a_file> | ||
2344 | <b_path>/url_entry</b_path> | ||
2345 | <c_attribute>title</c_attribute> | ||
2346 | <d_old></d_old> | ||
2347 | <e_new></e_new> | ||
2348 | <f_old_trans></f_old_trans> | ||
2349 | <f_translation></f_translation> | ||
2350 | </string><string><a_file>floater_url_entry.xml</a_file> | ||
2351 | <b_path>/url_entry/media_label</b_path> | ||
2352 | <c_attribute></c_attribute> | ||
2353 | <d_old></d_old> | ||
2354 | <e_new> | ||
2355 | Media URL: | ||
2356 | </e_new> | ||
2357 | <f_old_trans></f_old_trans> | ||
2358 | <f_translation> | ||
2359 | メディア URL: | ||
2360 | </f_translation> | ||
2361 | </string><string><a_file>floater_url_entry.xml</a_file> | ||
2362 | <b_path>/url_entry/ok_btn</b_path> | ||
2363 | <c_attribute>label</c_attribute> | ||
2364 | <d_old></d_old> | ||
2365 | <e_new>OK</e_new> | ||
2366 | <f_old_trans></f_old_trans> | ||
2367 | <f_translation>OK</f_translation> | ||
2368 | </string><string><a_file>floater_url_entry.xml</a_file> | ||
2369 | <b_path>/url_entry/cancel_btn</b_path> | ||
2370 | <c_attribute>label</c_attribute> | ||
2371 | <d_old></d_old> | ||
2372 | <e_new>Cancel</e_new> | ||
2373 | <f_old_trans></f_old_trans> | ||
2374 | <f_translation>キャンセル</f_translation> | ||
2375 | </string><string><a_file>floater_url_entry.xml</a_file> | ||
2376 | <b_path>/url_entry/cancel_btn2</b_path> | ||
2377 | <c_attribute>label</c_attribute> | ||
2378 | <d_old></d_old> | ||
2379 | <e_new>Cancel</e_new> | ||
2380 | <f_old_trans></f_old_trans> | ||
2381 | <f_translation>キャンセル</f_translation> | ||
2382 | </string><string><a_file>floater_url_entry.xml</a_file> | ||
2383 | <b_path>/url_entry/clear_btn</b_path> | ||
2384 | <c_attribute>label</c_attribute> | ||
2385 | <d_old></d_old> | ||
2386 | <e_new>Clear</e_new> | ||
2387 | <f_old_trans></f_old_trans> | ||
2388 | <f_translation>クリア</f_translation> | ||
2389 | </string><string><a_file>floater_url_entry.xml</a_file> | ||
2390 | <b_path>/url_entry/loading_label</b_path> | ||
2391 | <c_attribute></c_attribute> | ||
2392 | <d_old></d_old> | ||
2393 | <e_new> | ||
2394 | Loading... | ||
2395 | </e_new> | ||
2396 | <f_old_trans></f_old_trans> | ||
2397 | <f_translation> | ||
2398 | ロード中... | ||
2399 | </f_translation> | ||
2400 | </string><string><a_file>floater_water.xml</a_file> | ||
2401 | <b_path>/Water Floater</b_path> | ||
2402 | <c_attribute>title</c_attribute> | ||
2403 | <d_old></d_old> | ||
2404 | <e_new>Advanced Water Editor</e_new> | ||
2405 | <f_old_trans></f_old_trans> | ||
2406 | <f_translation>水の高度な編集</f_translation> | ||
2407 | </string><string><a_file>floater_water.xml</a_file> | ||
2408 | <b_path>/Water Floater/KeyFramePresetsText</b_path> | ||
2409 | <c_attribute></c_attribute> | ||
2410 | <d_old></d_old> | ||
2411 | <e_new> | ||
2412 | Water Presets: | ||
2413 | </e_new> | ||
2414 | <f_old_trans></f_old_trans> | ||
2415 | <f_translation> | ||
2416 | 水の事前設定: | ||
2417 | </f_translation> | ||
2418 | </string><string><a_file>floater_water.xml</a_file> | ||
2419 | <b_path>/Water Floater/WaterNewPreset</b_path> | ||
2420 | <c_attribute>label</c_attribute> | ||
2421 | <d_old></d_old> | ||
2422 | <e_new>New</e_new> | ||
2423 | <f_old_trans></f_old_trans> | ||
2424 | <f_translation>新規</f_translation> | ||
2425 | </string><string><a_file>floater_water.xml</a_file> | ||
2426 | <b_path>/Water Floater/WaterNewPreset</b_path> | ||
2427 | <c_attribute>label_selected</c_attribute> | ||
2428 | <d_old></d_old> | ||
2429 | <e_new>New</e_new> | ||
2430 | <f_old_trans></f_old_trans> | ||
2431 | <f_translation>新規</f_translation> | ||
2432 | </string><string><a_file>floater_water.xml</a_file> | ||
2433 | <b_path>/Water Floater/WaterSavePreset</b_path> | ||
2434 | <c_attribute>label</c_attribute> | ||
2435 | <d_old></d_old> | ||
2436 | <e_new>Save</e_new> | ||
2437 | <f_old_trans></f_old_trans> | ||
2438 | <f_translation>保存</f_translation> | ||
2439 | </string><string><a_file>floater_water.xml</a_file> | ||
2440 | <b_path>/Water Floater/WaterSavePreset</b_path> | ||
2441 | <c_attribute>label_selected</c_attribute> | ||
2442 | <d_old></d_old> | ||
2443 | <e_new>Save</e_new> | ||
2444 | <f_old_trans></f_old_trans> | ||
2445 | <f_translation>保存</f_translation> | ||
2446 | </string><string><a_file>floater_water.xml</a_file> | ||
2447 | <b_path>/Water Floater/WaterDeletePreset</b_path> | ||
2448 | <c_attribute>label</c_attribute> | ||
2449 | <d_old></d_old> | ||
2450 | <e_new>Delete</e_new> | ||
2451 | <f_old_trans></f_old_trans> | ||
2452 | <f_translation>削除</f_translation> | ||
2453 | </string><string><a_file>floater_water.xml</a_file> | ||
2454 | <b_path>/Water Floater/WaterDeletePreset</b_path> | ||
2455 | <c_attribute>label_selected</c_attribute> | ||
2456 | <d_old></d_old> | ||
2457 | <e_new>Delete</e_new> | ||
2458 | <f_old_trans></f_old_trans> | ||
2459 | <f_translation>削除</f_translation> | ||
2460 | </string><string><a_file>floater_water.xml</a_file> | ||
2461 | <b_path>/Water Floater/Water Tabs/Settings</b_path> | ||
2462 | <c_attribute>label</c_attribute> | ||
2463 | <d_old></d_old> | ||
2464 | <e_new>Settings</e_new> | ||
2465 | <f_old_trans></f_old_trans> | ||
2466 | <f_translation>設定</f_translation> | ||
2467 | </string><string><a_file>floater_water.xml</a_file> | ||
2468 | <b_path>/Water Floater/Water Tabs/Settings/BHText</b_path> | ||
2469 | <c_attribute></c_attribute> | ||
2470 | <d_old></d_old> | ||
2471 | <e_new> | ||
2472 | Water Fog Color | ||
2473 | </e_new> | ||
2474 | <f_old_trans></f_old_trans> | ||
2475 | <f_translation> | ||
2476 | 水中のフォグ効果の色 | ||
2477 | </f_translation> | ||
2478 | </string><string><a_file>floater_water.xml</a_file> | ||
2479 | <b_path>/Water Floater/Water Tabs/Settings/WaterFogColorHelp</b_path> | ||
2480 | <c_attribute>label</c_attribute> | ||
2481 | <d_old></d_old> | ||
2482 | <e_new>?</e_new> | ||
2483 | <f_old_trans></f_old_trans> | ||
2484 | <f_translation>?</f_translation> | ||
2485 | </string><string><a_file>floater_water.xml</a_file> | ||
2486 | <b_path>/Water Floater/Water Tabs/Settings/WaterFogColor</b_path> | ||
2487 | <c_attribute>label</c_attribute> | ||
2488 | <d_old></d_old> | ||
2489 | <e_new></e_new> | ||
2490 | <f_old_trans></f_old_trans> | ||
2491 | <f_translation></f_translation> | ||
2492 | </string><string><a_file>floater_water.xml</a_file> | ||
2493 | <b_path>/Water Floater/Water Tabs/Settings/WaterFogColor</b_path> | ||
2494 | <c_attribute>tool_tip</c_attribute> | ||
2495 | <d_old></d_old> | ||
2496 | <e_new>Click to open Color Picker</e_new> | ||
2497 | <f_old_trans></f_old_trans> | ||
2498 | <f_translation>カラー・ピッカーをクリックして開く</f_translation> | ||
2499 | </string><string><a_file>floater_water.xml</a_file> | ||
2500 | <b_path>/Water Floater/Water Tabs/Settings/WaterFogDensText</b_path> | ||
2501 | <c_attribute></c_attribute> | ||
2502 | <d_old></d_old> | ||
2503 | <e_new> | ||
2504 | Fog Density Exponent | ||
2505 | </e_new> | ||
2506 | <f_old_trans></f_old_trans> | ||
2507 | <f_translation> | ||
2508 | 水中の透明度指数 | ||
2509 | </f_translation> | ||
2510 | </string><string><a_file>floater_water.xml</a_file> | ||
2511 | <b_path>/Water Floater/Water Tabs/Settings/WaterFogDensityHelp</b_path> | ||
2512 | <c_attribute>label</c_attribute> | ||
2513 | <d_old></d_old> | ||
2514 | <e_new>?</e_new> | ||
2515 | <f_old_trans></f_old_trans> | ||
2516 | <f_translation>?</f_translation> | ||
2517 | </string><string><a_file>floater_water.xml</a_file> | ||
2518 | <b_path>/Water Floater/Water Tabs/Settings/WaterFogDensity</b_path> | ||
2519 | <c_attribute>label</c_attribute> | ||
2520 | <d_old></d_old> | ||
2521 | <e_new></e_new> | ||
2522 | <f_old_trans></f_old_trans> | ||
2523 | <f_translation></f_translation> | ||
2524 | </string><string><a_file>floater_water.xml</a_file> | ||
2525 | <b_path>/Water Floater/Water Tabs/Settings/WaterUnderWaterFogModText</b_path> | ||
2526 | <c_attribute></c_attribute> | ||
2527 | <d_old></d_old> | ||
2528 | <e_new> | ||
2529 | Underwater Fog Modifier | ||
2530 | </e_new> | ||
2531 | <f_old_trans></f_old_trans> | ||
2532 | <f_translation> | ||
2533 | 水中のフォグ効果加減 | ||
2534 | </f_translation> | ||
2535 | </string><string><a_file>floater_water.xml</a_file> | ||
2536 | <b_path>/Water Floater/Water Tabs/Settings/WaterUnderWaterFogModHelp</b_path> | ||
2537 | <c_attribute>label</c_attribute> | ||
2538 | <d_old></d_old> | ||
2539 | <e_new>?</e_new> | ||
2540 | <f_old_trans></f_old_trans> | ||
2541 | <f_translation>?</f_translation> | ||
2542 | </string><string><a_file>floater_water.xml</a_file> | ||
2543 | <b_path>/Water Floater/Water Tabs/Settings/WaterUnderWaterFogMod</b_path> | ||
2544 | <c_attribute>label</c_attribute> | ||
2545 | <d_old></d_old> | ||
2546 | <e_new></e_new> | ||
2547 | <f_old_trans></f_old_trans> | ||
2548 | <f_translation></f_translation> | ||
2549 | </string><string><a_file>floater_water.xml</a_file> | ||
2550 | <b_path>/Water Floater/Water Tabs/Settings/BDensText</b_path> | ||
2551 | <c_attribute></c_attribute> | ||
2552 | <d_old></d_old> | ||
2553 | <e_new> | ||
2554 | Reflection Wavelet Scale | ||
2555 | </e_new> | ||
2556 | <f_old_trans></f_old_trans> | ||
2557 | <f_translation> | ||
2558 | さざ波の反射スケール | ||
2559 | </f_translation> | ||
2560 | </string><string><a_file>floater_water.xml</a_file> | ||
2561 | <b_path>/Water Floater/Water Tabs/Settings/WaterNormalScaleHelp</b_path> | ||
2562 | <c_attribute>label</c_attribute> | ||
2563 | <d_old></d_old> | ||
2564 | <e_new>?</e_new> | ||
2565 | <f_old_trans></f_old_trans> | ||
2566 | <f_translation>?</f_translation> | ||
2567 | </string><string><a_file>floater_water.xml</a_file> | ||
2568 | <b_path>/Water Floater/Water Tabs/Settings/BHText2</b_path> | ||
2569 | <c_attribute></c_attribute> | ||
2570 | <d_old></d_old> | ||
2571 | <e_new> | ||
2572 | 1 | ||
2573 | </e_new> | ||
2574 | <f_old_trans></f_old_trans> | ||
2575 | <f_translation> | ||
2576 | 1 | ||
2577 | </f_translation> | ||
2578 | </string><string><a_file>floater_water.xml</a_file> | ||
2579 | <b_path>/Water Floater/Water Tabs/Settings/BHText3</b_path> | ||
2580 | <c_attribute></c_attribute> | ||
2581 | <d_old></d_old> | ||
2582 | <e_new> | ||
2583 | 2 | ||
2584 | </e_new> | ||
2585 | <f_old_trans></f_old_trans> | ||
2586 | <f_translation> | ||
2587 | 2 | ||
2588 | </f_translation> | ||
2589 | </string><string><a_file>floater_water.xml</a_file> | ||
2590 | <b_path>/Water Floater/Water Tabs/Settings/BHText4</b_path> | ||
2591 | <c_attribute></c_attribute> | ||
2592 | <d_old></d_old> | ||
2593 | <e_new> | ||
2594 | 3 | ||
2595 | </e_new> | ||
2596 | <f_old_trans></f_old_trans> | ||
2597 | <f_translation> | ||
2598 | 3 | ||
2599 | </f_translation> | ||
2600 | </string><string><a_file>floater_water.xml</a_file> | ||
2601 | <b_path>/Water Floater/Water Tabs/Settings/WaterNormalScaleX</b_path> | ||
2602 | <c_attribute>label</c_attribute> | ||
2603 | <d_old></d_old> | ||
2604 | <e_new></e_new> | ||
2605 | <f_old_trans></f_old_trans> | ||
2606 | <f_translation></f_translation> | ||
2607 | </string><string><a_file>floater_water.xml</a_file> | ||
2608 | <b_path>/Water Floater/Water Tabs/Settings/WaterNormalScaleY</b_path> | ||
2609 | <c_attribute>label</c_attribute> | ||
2610 | <d_old></d_old> | ||
2611 | <e_new></e_new> | ||
2612 | <f_old_trans></f_old_trans> | ||
2613 | <f_translation></f_translation> | ||
2614 | </string><string><a_file>floater_water.xml</a_file> | ||
2615 | <b_path>/Water Floater/Water Tabs/Settings/WaterNormalScaleZ</b_path> | ||
2616 | <c_attribute>label</c_attribute> | ||
2617 | <d_old></d_old> | ||
2618 | <e_new></e_new> | ||
2619 | <f_old_trans></f_old_trans> | ||
2620 | <f_translation></f_translation> | ||
2621 | </string><string><a_file>floater_water.xml</a_file> | ||
2622 | <b_path>/Water Floater/Water Tabs/Settings/HDText</b_path> | ||
2623 | <c_attribute></c_attribute> | ||
2624 | <d_old></d_old> | ||
2625 | <e_new> | ||
2626 | Fresnel Scale | ||
2627 | </e_new> | ||
2628 | <f_old_trans></f_old_trans> | ||
2629 | <f_translation> | ||
2630 | フレネル・スケール | ||
2631 | </f_translation> | ||
2632 | </string><string><a_file>floater_water.xml</a_file> | ||
2633 | <b_path>/Water Floater/Water Tabs/Settings/WaterFresnelScaleHelp</b_path> | ||
2634 | <c_attribute>label</c_attribute> | ||
2635 | <d_old></d_old> | ||
2636 | <e_new>?</e_new> | ||
2637 | <f_old_trans></f_old_trans> | ||
2638 | <f_translation>?</f_translation> | ||
2639 | </string><string><a_file>floater_water.xml</a_file> | ||
2640 | <b_path>/Water Floater/Water Tabs/Settings/WaterFresnelScale</b_path> | ||
2641 | <c_attribute>label</c_attribute> | ||
2642 | <d_old></d_old> | ||
2643 | <e_new></e_new> | ||
2644 | <f_old_trans></f_old_trans> | ||
2645 | <f_translation></f_translation> | ||
2646 | </string><string><a_file>floater_water.xml</a_file> | ||
2647 | <b_path>/Water Floater/Water Tabs/Settings/FresnelOffsetText</b_path> | ||
2648 | <c_attribute></c_attribute> | ||
2649 | <d_old></d_old> | ||
2650 | <e_new> | ||
2651 | Fresnel Offset | ||
2652 | </e_new> | ||
2653 | <f_old_trans></f_old_trans> | ||
2654 | <f_translation> | ||
2655 | フレネル・オフセット | ||
2656 | </f_translation> | ||
2657 | </string><string><a_file>floater_water.xml</a_file> | ||
2658 | <b_path>/Water Floater/Water Tabs/Settings/WaterFresnelOffsetHelp</b_path> | ||
2659 | <c_attribute>label</c_attribute> | ||
2660 | <d_old></d_old> | ||
2661 | <e_new>?</e_new> | ||
2662 | <f_old_trans></f_old_trans> | ||
2663 | <f_translation>?</f_translation> | ||
2664 | </string><string><a_file>floater_water.xml</a_file> | ||
2665 | <b_path>/Water Floater/Water Tabs/Settings/WaterFresnelOffset</b_path> | ||
2666 | <c_attribute>label</c_attribute> | ||
2667 | <d_old></d_old> | ||
2668 | <e_new></e_new> | ||
2669 | <f_old_trans></f_old_trans> | ||
2670 | <f_translation></f_translation> | ||
2671 | </string><string><a_file>floater_water.xml</a_file> | ||
2672 | <b_path>/Water Floater/Water Tabs/Settings/DensMultText</b_path> | ||
2673 | <c_attribute></c_attribute> | ||
2674 | <d_old></d_old> | ||
2675 | <e_new> | ||
2676 | Refract Scale Above | ||
2677 | </e_new> | ||
2678 | <f_old_trans></f_old_trans> | ||
2679 | <f_translation> | ||
2680 | 水面の屈折スケール | ||
2681 | </f_translation> | ||
2682 | </string><string><a_file>floater_water.xml</a_file> | ||
2683 | <b_path>/Water Floater/Water Tabs/Settings/WaterScaleAboveHelp</b_path> | ||
2684 | <c_attribute>label</c_attribute> | ||
2685 | <d_old></d_old> | ||
2686 | <e_new>?</e_new> | ||
2687 | <f_old_trans></f_old_trans> | ||
2688 | <f_translation>?</f_translation> | ||
2689 | </string><string><a_file>floater_water.xml</a_file> | ||
2690 | <b_path>/Water Floater/Water Tabs/Settings/WaterScaleAbove</b_path> | ||
2691 | <c_attribute>label</c_attribute> | ||
2692 | <d_old></d_old> | ||
2693 | <e_new></e_new> | ||
2694 | <f_old_trans></f_old_trans> | ||
2695 | <f_translation></f_translation> | ||
2696 | </string><string><a_file>floater_water.xml</a_file> | ||
2697 | <b_path>/Water Floater/Water Tabs/Settings/WaterScaleBelowText</b_path> | ||
2698 | <c_attribute></c_attribute> | ||
2699 | <d_old></d_old> | ||
2700 | <e_new> | ||
2701 | Refract Scale Below | ||
2702 | </e_new> | ||
2703 | <f_old_trans></f_old_trans> | ||
2704 | <f_translation> | ||
2705 | 水中の屈折スケール | ||
2706 | </f_translation> | ||
2707 | </string><string><a_file>floater_water.xml</a_file> | ||
2708 | <b_path>/Water Floater/Water Tabs/Settings/WaterScaleBelowHelp</b_path> | ||
2709 | <c_attribute>label</c_attribute> | ||
2710 | <d_old></d_old> | ||
2711 | <e_new>?</e_new> | ||
2712 | <f_old_trans></f_old_trans> | ||
2713 | <f_translation>?</f_translation> | ||
2714 | </string><string><a_file>floater_water.xml</a_file> | ||
2715 | <b_path>/Water Floater/Water Tabs/Settings/WaterScaleBelow</b_path> | ||
2716 | <c_attribute>label</c_attribute> | ||
2717 | <d_old></d_old> | ||
2718 | <e_new></e_new> | ||
2719 | <f_old_trans></f_old_trans> | ||
2720 | <f_translation></f_translation> | ||
2721 | </string><string><a_file>floater_water.xml</a_file> | ||
2722 | <b_path>/Water Floater/Water Tabs/Settings/MaxAltText</b_path> | ||
2723 | <c_attribute></c_attribute> | ||
2724 | <d_old></d_old> | ||
2725 | <e_new> | ||
2726 | Blur Multiplier | ||
2727 | </e_new> | ||
2728 | <f_old_trans></f_old_trans> | ||
2729 | <f_translation> | ||
2730 | 不透明度の増幅 | ||
2731 | </f_translation> | ||
2732 | </string><string><a_file>floater_water.xml</a_file> | ||
2733 | <b_path>/Water Floater/Water Tabs/Settings/WaterBlurMultiplierHelp</b_path> | ||
2734 | <c_attribute>label</c_attribute> | ||
2735 | <d_old></d_old> | ||
2736 | <e_new>?</e_new> | ||
2737 | <f_old_trans></f_old_trans> | ||
2738 | <f_translation>?</f_translation> | ||
2739 | </string><string><a_file>floater_water.xml</a_file> | ||
2740 | <b_path>/Water Floater/Water Tabs/Settings/WaterBlurMult</b_path> | ||
2741 | <c_attribute>label</c_attribute> | ||
2742 | <d_old></d_old> | ||
2743 | <e_new></e_new> | ||
2744 | <f_old_trans></f_old_trans> | ||
2745 | <f_translation></f_translation> | ||
2746 | </string><string><a_file>floater_water.xml</a_file> | ||
2747 | <b_path>/Water Floater/Water Tabs/Waves</b_path> | ||
2748 | <c_attribute>label</c_attribute> | ||
2749 | <d_old></d_old> | ||
2750 | <e_new>Image</e_new> | ||
2751 | <f_old_trans></f_old_trans> | ||
2752 | <f_translation>画像</f_translation> | ||
2753 | </string><string><a_file>floater_water.xml</a_file> | ||
2754 | <b_path>/Water Floater/Water Tabs/Waves/BHText</b_path> | ||
2755 | <c_attribute></c_attribute> | ||
2756 | <d_old></d_old> | ||
2757 | <e_new> | ||
2758 | Big Wave Direction | ||
2759 | </e_new> | ||
2760 | <f_old_trans></f_old_trans> | ||
2761 | <f_translation> | ||
2762 | 大波の方向 | ||
2763 | </f_translation> | ||
2764 | </string><string><a_file>floater_water.xml</a_file> | ||
2765 | <b_path>/Water Floater/Water Tabs/Waves/WaterWave1Help</b_path> | ||
2766 | <c_attribute>label</c_attribute> | ||
2767 | <d_old></d_old> | ||
2768 | <e_new>?</e_new> | ||
2769 | <f_old_trans></f_old_trans> | ||
2770 | <f_translation>?</f_translation> | ||
2771 | </string><string><a_file>floater_water.xml</a_file> | ||
2772 | <b_path>/Water Floater/Water Tabs/Waves/WaterWave1DirXText</b_path> | ||
2773 | <c_attribute></c_attribute> | ||
2774 | <d_old></d_old> | ||
2775 | <e_new> | ||
2776 | X | ||
2777 | </e_new> | ||
2778 | <f_old_trans></f_old_trans> | ||
2779 | <f_translation> | ||
2780 | X | ||
2781 | </f_translation> | ||
2782 | </string><string><a_file>floater_water.xml</a_file> | ||
2783 | <b_path>/Water Floater/Water Tabs/Waves/WaterWave1DirYText</b_path> | ||
2784 | <c_attribute></c_attribute> | ||
2785 | <d_old></d_old> | ||
2786 | <e_new> | ||
2787 | Y | ||
2788 | </e_new> | ||
2789 | <f_old_trans></f_old_trans> | ||
2790 | <f_translation> | ||
2791 | Y | ||
2792 | </f_translation> | ||
2793 | </string><string><a_file>floater_water.xml</a_file> | ||
2794 | <b_path>/Water Floater/Water Tabs/Waves/WaterWave1DirX</b_path> | ||
2795 | <c_attribute>label</c_attribute> | ||
2796 | <d_old></d_old> | ||
2797 | <e_new></e_new> | ||
2798 | <f_old_trans></f_old_trans> | ||
2799 | <f_translation></f_translation> | ||
2800 | </string><string><a_file>floater_water.xml</a_file> | ||
2801 | <b_path>/Water Floater/Water Tabs/Waves/WaterWave1DirY</b_path> | ||
2802 | <c_attribute>label</c_attribute> | ||
2803 | <d_old></d_old> | ||
2804 | <e_new></e_new> | ||
2805 | <f_old_trans></f_old_trans> | ||
2806 | <f_translation></f_translation> | ||
2807 | </string><string><a_file>floater_water.xml</a_file> | ||
2808 | <b_path>/Water Floater/Water Tabs/Waves/BHText2</b_path> | ||
2809 | <c_attribute></c_attribute> | ||
2810 | <d_old></d_old> | ||
2811 | <e_new> | ||
2812 | Little Wave Direction | ||
2813 | </e_new> | ||
2814 | <f_old_trans></f_old_trans> | ||
2815 | <f_translation> | ||
2816 | 小波の方向 | ||
2817 | </f_translation> | ||
2818 | </string><string><a_file>floater_water.xml</a_file> | ||
2819 | <b_path>/Water Floater/Water Tabs/Waves/WaterWave2Help</b_path> | ||
2820 | <c_attribute>label</c_attribute> | ||
2821 | <d_old></d_old> | ||
2822 | <e_new>?</e_new> | ||
2823 | <f_old_trans></f_old_trans> | ||
2824 | <f_translation>?</f_translation> | ||
2825 | </string><string><a_file>floater_water.xml</a_file> | ||
2826 | <b_path>/Water Floater/Water Tabs/Waves/WaterWave2DirXText</b_path> | ||
2827 | <c_attribute></c_attribute> | ||
2828 | <d_old></d_old> | ||
2829 | <e_new> | ||
2830 | X | ||
2831 | </e_new> | ||
2832 | <f_old_trans></f_old_trans> | ||
2833 | <f_translation> | ||
2834 | X | ||
2835 | </f_translation> | ||
2836 | </string><string><a_file>floater_water.xml</a_file> | ||
2837 | <b_path>/Water Floater/Water Tabs/Waves/WaterWave2DirYText</b_path> | ||
2838 | <c_attribute></c_attribute> | ||
2839 | <d_old></d_old> | ||
2840 | <e_new> | ||
2841 | Y | ||
2842 | </e_new> | ||
2843 | <f_old_trans></f_old_trans> | ||
2844 | <f_translation> | ||
2845 | Y | ||
2846 | </f_translation> | ||
2847 | </string><string><a_file>floater_water.xml</a_file> | ||
2848 | <b_path>/Water Floater/Water Tabs/Waves/WaterWave2DirX</b_path> | ||
2849 | <c_attribute>label</c_attribute> | ||
2850 | <d_old></d_old> | ||
2851 | <e_new></e_new> | ||
2852 | <f_old_trans></f_old_trans> | ||
2853 | <f_translation></f_translation> | ||
2854 | </string><string><a_file>floater_water.xml</a_file> | ||
2855 | <b_path>/Water Floater/Water Tabs/Waves/WaterWave2DirY</b_path> | ||
2856 | <c_attribute>label</c_attribute> | ||
2857 | <d_old></d_old> | ||
2858 | <e_new></e_new> | ||
2859 | <f_old_trans></f_old_trans> | ||
2860 | <f_translation></f_translation> | ||
2861 | </string><string><a_file>floater_water.xml</a_file> | ||
2862 | <b_path>/Water Floater/Water Tabs/Waves/BHText3</b_path> | ||
2863 | <c_attribute></c_attribute> | ||
2864 | <d_old></d_old> | ||
2865 | <e_new> | ||
2866 | Normal Map | ||
2867 | </e_new> | ||
2868 | <f_old_trans></f_old_trans> | ||
2869 | <f_translation> | ||
2870 | ノーマル・マップ | ||
2871 | </f_translation> | ||
2872 | </string><string><a_file>floater_water.xml</a_file> | ||
2873 | <b_path>/Water Floater/Water Tabs/Waves/WaterNormalMapHelp</b_path> | ||
2874 | <c_attribute>label</c_attribute> | ||
2875 | <d_old></d_old> | ||
2876 | <e_new>?</e_new> | ||
2877 | <f_old_trans></f_old_trans> | ||
2878 | <f_translation>?</f_translation> | ||
2879 | </string><string><a_file>floater_water.xml</a_file> | ||
2880 | <b_path>/Water Floater/Water Tabs/Waves/WaterNormalMap</b_path> | ||
2881 | <c_attribute>label</c_attribute> | ||
2882 | <d_old></d_old> | ||
2883 | <e_new></e_new> | ||
2884 | <f_old_trans></f_old_trans> | ||
2885 | <f_translation></f_translation> | ||
2886 | </string><string><a_file>floater_water.xml</a_file> | ||
2887 | <b_path>/Water Floater/WLDefaultWaterNames</b_path> | ||
2888 | <c_attribute></c_attribute> | ||
2889 | <d_old></d_old> | ||
2890 | <e_new> | ||
2891 | Default:Glassy:Pond:Murky:Second Plague:SNAKE!!!:Valdez | ||
2892 | </e_new> | ||
2893 | <f_old_trans></f_old_trans> | ||
2894 | <f_translation> | ||
2895 | Default:Glassy:Pond:Murky:Second Plague:SNAKE!!!:Valdez | ||
2896 | </f_translation> | ||
2897 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
2898 | <b_path>/WindLight floater</b_path> | ||
260 | <c_attribute>title</c_attribute> | 2899 | <c_attribute>title</c_attribute> |
261 | <d_old></d_old> | 2900 | <d_old></d_old> |
262 | <e_new> </e_new> | 2901 | <e_new>Advanced Sky Editor</e_new> |
2902 | <f_old_trans></f_old_trans> | ||
2903 | <f_translation>空の高度な編集</f_translation> | ||
2904 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
2905 | <b_path>/WindLight floater/KeyFramePresetsText</b_path> | ||
2906 | <c_attribute></c_attribute> | ||
2907 | <d_old></d_old> | ||
2908 | <e_new> | ||
2909 | Sky Presets: | ||
2910 | </e_new> | ||
2911 | <f_old_trans></f_old_trans> | ||
2912 | <f_translation> | ||
2913 | 空の事前設定: | ||
2914 | </f_translation> | ||
2915 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
2916 | <b_path>/WindLight floater/WLNewPreset</b_path> | ||
2917 | <c_attribute>label</c_attribute> | ||
2918 | <d_old></d_old> | ||
2919 | <e_new>New</e_new> | ||
2920 | <f_old_trans></f_old_trans> | ||
2921 | <f_translation>新規</f_translation> | ||
2922 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
2923 | <b_path>/WindLight floater/WLNewPreset</b_path> | ||
2924 | <c_attribute>label_selected</c_attribute> | ||
2925 | <d_old></d_old> | ||
2926 | <e_new>New</e_new> | ||
2927 | <f_old_trans></f_old_trans> | ||
2928 | <f_translation>新規</f_translation> | ||
2929 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
2930 | <b_path>/WindLight floater/WLSavePreset</b_path> | ||
2931 | <c_attribute>label</c_attribute> | ||
2932 | <d_old></d_old> | ||
2933 | <e_new>Save</e_new> | ||
2934 | <f_old_trans></f_old_trans> | ||
2935 | <f_translation>保存</f_translation> | ||
2936 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
2937 | <b_path>/WindLight floater/WLSavePreset</b_path> | ||
2938 | <c_attribute>label_selected</c_attribute> | ||
2939 | <d_old></d_old> | ||
2940 | <e_new>Save</e_new> | ||
2941 | <f_old_trans></f_old_trans> | ||
2942 | <f_translation>保存</f_translation> | ||
2943 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
2944 | <b_path>/WindLight floater/WLDeletePreset</b_path> | ||
2945 | <c_attribute>label</c_attribute> | ||
2946 | <d_old></d_old> | ||
2947 | <e_new>Delete</e_new> | ||
2948 | <f_old_trans></f_old_trans> | ||
2949 | <f_translation>削除</f_translation> | ||
2950 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
2951 | <b_path>/WindLight floater/WLDeletePreset</b_path> | ||
2952 | <c_attribute>label_selected</c_attribute> | ||
2953 | <d_old></d_old> | ||
2954 | <e_new>Delete</e_new> | ||
2955 | <f_old_trans></f_old_trans> | ||
2956 | <f_translation>削除</f_translation> | ||
2957 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
2958 | <b_path>/WindLight floater/WLDayCycleMenuButton</b_path> | ||
2959 | <c_attribute>label</c_attribute> | ||
2960 | <d_old></d_old> | ||
2961 | <e_new>Day Cycle Editor</e_new> | ||
2962 | <f_old_trans></f_old_trans> | ||
2963 | <f_translation>デイ・サイクル編集</f_translation> | ||
2964 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
2965 | <b_path>/WindLight floater/WLDayCycleMenuButton</b_path> | ||
2966 | <c_attribute>label_selected</c_attribute> | ||
2967 | <d_old></d_old> | ||
2968 | <e_new>Day Cycle Editor</e_new> | ||
2969 | <f_old_trans></f_old_trans> | ||
2970 | <f_translation>デイ・サイクル編集</f_translation> | ||
2971 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
2972 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere</b_path> | ||
2973 | <c_attribute>label</c_attribute> | ||
2974 | <d_old></d_old> | ||
2975 | <e_new>Atmosphere</e_new> | ||
2976 | <f_old_trans></f_old_trans> | ||
2977 | <f_translation>大気</f_translation> | ||
2978 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
2979 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/BHText</b_path> | ||
2980 | <c_attribute></c_attribute> | ||
2981 | <d_old></d_old> | ||
2982 | <e_new> | ||
2983 | Blue Horizon | ||
2984 | </e_new> | ||
2985 | <f_old_trans></f_old_trans> | ||
2986 | <f_translation> | ||
2987 | 空の配色 | ||
2988 | </f_translation> | ||
2989 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
2990 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/WLBlueHorizonHelp</b_path> | ||
2991 | <c_attribute>label</c_attribute> | ||
2992 | <d_old></d_old> | ||
2993 | <e_new>?</e_new> | ||
2994 | <f_old_trans></f_old_trans> | ||
2995 | <f_translation>?</f_translation> | ||
2996 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
2997 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/BHText2</b_path> | ||
2998 | <c_attribute></c_attribute> | ||
2999 | <d_old></d_old> | ||
3000 | <e_new> | ||
3001 | R | ||
3002 | </e_new> | ||
3003 | <f_old_trans></f_old_trans> | ||
3004 | <f_translation> | ||
3005 | R | ||
3006 | </f_translation> | ||
3007 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3008 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/BHText3</b_path> | ||
3009 | <c_attribute></c_attribute> | ||
3010 | <d_old></d_old> | ||
3011 | <e_new> | ||
3012 | G | ||
3013 | </e_new> | ||
3014 | <f_old_trans></f_old_trans> | ||
3015 | <f_translation> | ||
3016 | G | ||
3017 | </f_translation> | ||
3018 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3019 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/BHText4</b_path> | ||
3020 | <c_attribute></c_attribute> | ||
3021 | <d_old></d_old> | ||
3022 | <e_new> | ||
3023 | B | ||
3024 | </e_new> | ||
3025 | <f_old_trans></f_old_trans> | ||
3026 | <f_translation> | ||
3027 | B | ||
3028 | </f_translation> | ||
3029 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3030 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/BHText5</b_path> | ||
3031 | <c_attribute></c_attribute> | ||
3032 | <d_old></d_old> | ||
3033 | <e_new> | ||
3034 | I | ||
3035 | </e_new> | ||
3036 | <f_old_trans></f_old_trans> | ||
3037 | <f_translation> | ||
3038 | I | ||
3039 | </f_translation> | ||
3040 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3041 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/WLBlueHorizonR</b_path> | ||
3042 | <c_attribute>label</c_attribute> | ||
3043 | <d_old></d_old> | ||
3044 | <e_new></e_new> | ||
3045 | <f_old_trans></f_old_trans> | ||
3046 | <f_translation></f_translation> | ||
3047 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3048 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/WLBlueHorizonG</b_path> | ||
3049 | <c_attribute>label</c_attribute> | ||
3050 | <d_old></d_old> | ||
3051 | <e_new></e_new> | ||
3052 | <f_old_trans></f_old_trans> | ||
3053 | <f_translation></f_translation> | ||
3054 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3055 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/WLBlueHorizonB</b_path> | ||
3056 | <c_attribute>label</c_attribute> | ||
3057 | <d_old></d_old> | ||
3058 | <e_new></e_new> | ||
3059 | <f_old_trans></f_old_trans> | ||
3060 | <f_translation></f_translation> | ||
3061 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3062 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/WLBlueHorizonI</b_path> | ||
3063 | <c_attribute>label</c_attribute> | ||
3064 | <d_old></d_old> | ||
3065 | <e_new></e_new> | ||
3066 | <f_old_trans></f_old_trans> | ||
3067 | <f_translation></f_translation> | ||
3068 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3069 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/BDensText</b_path> | ||
3070 | <c_attribute></c_attribute> | ||
3071 | <d_old></d_old> | ||
3072 | <e_new> | ||
3073 | Haze Horizon | ||
3074 | </e_new> | ||
3075 | <f_old_trans></f_old_trans> | ||
3076 | <f_translation> | ||
3077 | 空と遠景の露光 | ||
3078 | </f_translation> | ||
3079 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3080 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/WLHazeHorizonHelp</b_path> | ||
3081 | <c_attribute>label</c_attribute> | ||
3082 | <d_old></d_old> | ||
3083 | <e_new>?</e_new> | ||
3084 | <f_old_trans></f_old_trans> | ||
3085 | <f_translation>?</f_translation> | ||
3086 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3087 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/WLHazeHorizon</b_path> | ||
3088 | <c_attribute>label</c_attribute> | ||
3089 | <d_old></d_old> | ||
3090 | <e_new></e_new> | ||
3091 | <f_old_trans></f_old_trans> | ||
3092 | <f_translation></f_translation> | ||
3093 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3094 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/BDensText2</b_path> | ||
3095 | <c_attribute></c_attribute> | ||
3096 | <d_old></d_old> | ||
3097 | <e_new> | ||
3098 | Blue Density | ||
3099 | </e_new> | ||
3100 | <f_old_trans></f_old_trans> | ||
3101 | <f_translation> | ||
3102 | 空の配色と濃度 | ||
3103 | </f_translation> | ||
3104 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3105 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/WLBlueDensityHelp</b_path> | ||
3106 | <c_attribute>label</c_attribute> | ||
3107 | <d_old></d_old> | ||
3108 | <e_new>?</e_new> | ||
3109 | <f_old_trans></f_old_trans> | ||
3110 | <f_translation>?</f_translation> | ||
3111 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3112 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/BHText6</b_path> | ||
3113 | <c_attribute></c_attribute> | ||
3114 | <d_old></d_old> | ||
3115 | <e_new> | ||
3116 | R | ||
3117 | </e_new> | ||
3118 | <f_old_trans></f_old_trans> | ||
3119 | <f_translation> | ||
3120 | R | ||
3121 | </f_translation> | ||
3122 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3123 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/BHText7</b_path> | ||
3124 | <c_attribute></c_attribute> | ||
3125 | <d_old></d_old> | ||
3126 | <e_new> | ||
3127 | G | ||
3128 | </e_new> | ||
3129 | <f_old_trans></f_old_trans> | ||
3130 | <f_translation> | ||
3131 | G | ||
3132 | </f_translation> | ||
3133 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3134 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/BHText8</b_path> | ||
3135 | <c_attribute></c_attribute> | ||
3136 | <d_old></d_old> | ||
3137 | <e_new> | ||
3138 | B | ||
3139 | </e_new> | ||
3140 | <f_old_trans></f_old_trans> | ||
3141 | <f_translation> | ||
3142 | B | ||
3143 | </f_translation> | ||
3144 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3145 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/BHText9</b_path> | ||
3146 | <c_attribute></c_attribute> | ||
3147 | <d_old></d_old> | ||
3148 | <e_new> | ||
3149 | I | ||
3150 | </e_new> | ||
3151 | <f_old_trans></f_old_trans> | ||
3152 | <f_translation> | ||
3153 | I | ||
3154 | </f_translation> | ||
3155 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3156 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/WLBlueDensityR</b_path> | ||
3157 | <c_attribute>label</c_attribute> | ||
3158 | <d_old></d_old> | ||
3159 | <e_new></e_new> | ||
3160 | <f_old_trans></f_old_trans> | ||
3161 | <f_translation></f_translation> | ||
3162 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3163 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/WLBlueDensityG</b_path> | ||
3164 | <c_attribute>label</c_attribute> | ||
3165 | <d_old></d_old> | ||
3166 | <e_new></e_new> | ||
3167 | <f_old_trans></f_old_trans> | ||
3168 | <f_translation></f_translation> | ||
3169 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3170 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/WLBlueDensityB</b_path> | ||
3171 | <c_attribute>label</c_attribute> | ||
3172 | <d_old></d_old> | ||
3173 | <e_new></e_new> | ||
3174 | <f_old_trans></f_old_trans> | ||
3175 | <f_translation></f_translation> | ||
3176 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3177 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/WLBlueDensityI</b_path> | ||
3178 | <c_attribute>label</c_attribute> | ||
3179 | <d_old></d_old> | ||
3180 | <e_new></e_new> | ||
3181 | <f_old_trans></f_old_trans> | ||
3182 | <f_translation></f_translation> | ||
3183 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3184 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/HDText</b_path> | ||
3185 | <c_attribute></c_attribute> | ||
3186 | <d_old></d_old> | ||
3187 | <e_new> | ||
3188 | Haze Density | ||
3189 | </e_new> | ||
3190 | <f_old_trans></f_old_trans> | ||
3191 | <f_translation> | ||
3192 | 大気の不透明度 | ||
3193 | </f_translation> | ||
3194 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3195 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/WLHazeDensityHelp</b_path> | ||
3196 | <c_attribute>label</c_attribute> | ||
3197 | <d_old></d_old> | ||
3198 | <e_new>?</e_new> | ||
3199 | <f_old_trans></f_old_trans> | ||
3200 | <f_translation>?</f_translation> | ||
3201 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3202 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/WLHazeDensity</b_path> | ||
3203 | <c_attribute>label</c_attribute> | ||
3204 | <d_old></d_old> | ||
3205 | <e_new></e_new> | ||
3206 | <f_old_trans></f_old_trans> | ||
3207 | <f_translation></f_translation> | ||
3208 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3209 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/DensMultText</b_path> | ||
3210 | <c_attribute></c_attribute> | ||
3211 | <d_old></d_old> | ||
3212 | <e_new> | ||
3213 | Density Multiplier | ||
3214 | </e_new> | ||
3215 | <f_old_trans></f_old_trans> | ||
3216 | <f_translation> | ||
3217 | 大気の不透明度の増幅 | ||
3218 | </f_translation> | ||
3219 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3220 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/WLDensityMultHelp</b_path> | ||
3221 | <c_attribute>label</c_attribute> | ||
3222 | <d_old></d_old> | ||
3223 | <e_new>?</e_new> | ||
3224 | <f_old_trans></f_old_trans> | ||
3225 | <f_translation>?</f_translation> | ||
3226 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3227 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/WLDensityMult</b_path> | ||
3228 | <c_attribute>label</c_attribute> | ||
3229 | <d_old></d_old> | ||
3230 | <e_new></e_new> | ||
3231 | <f_old_trans></f_old_trans> | ||
3232 | <f_translation></f_translation> | ||
3233 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3234 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/WLDistanceMultText</b_path> | ||
3235 | <c_attribute></c_attribute> | ||
3236 | <d_old></d_old> | ||
3237 | <e_new> | ||
3238 | Distance Multiplier | ||
3239 | </e_new> | ||
3240 | <f_old_trans></f_old_trans> | ||
3241 | <f_translation> | ||
3242 | 視界の増幅 | ||
3243 | </f_translation> | ||
3244 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3245 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/WLDistanceMultHelp</b_path> | ||
3246 | <c_attribute>label</c_attribute> | ||
3247 | <d_old></d_old> | ||
3248 | <e_new>?</e_new> | ||
3249 | <f_old_trans></f_old_trans> | ||
3250 | <f_translation>?</f_translation> | ||
3251 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3252 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/WLDistanceMult</b_path> | ||
3253 | <c_attribute>label</c_attribute> | ||
3254 | <d_old></d_old> | ||
3255 | <e_new></e_new> | ||
3256 | <f_old_trans></f_old_trans> | ||
3257 | <f_translation></f_translation> | ||
3258 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3259 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/MaxAltText</b_path> | ||
3260 | <c_attribute></c_attribute> | ||
3261 | <d_old></d_old> | ||
3262 | <e_new> | ||
3263 | Max Altitude | ||
3264 | </e_new> | ||
3265 | <f_old_trans></f_old_trans> | ||
3266 | <f_translation> | ||
3267 | 最大高度 | ||
3268 | </f_translation> | ||
3269 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3270 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/WLMaxAltitudeHelp</b_path> | ||
3271 | <c_attribute>label</c_attribute> | ||
3272 | <d_old></d_old> | ||
3273 | <e_new>?</e_new> | ||
3274 | <f_old_trans></f_old_trans> | ||
3275 | <f_translation>?</f_translation> | ||
3276 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3277 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/WLMaxAltitude</b_path> | ||
3278 | <c_attribute>label</c_attribute> | ||
3279 | <d_old></d_old> | ||
3280 | <e_new></e_new> | ||
3281 | <f_old_trans></f_old_trans> | ||
3282 | <f_translation></f_translation> | ||
3283 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3284 | <b_path>/WindLight floater/WindLight Tabs/Lighting</b_path> | ||
3285 | <c_attribute>label</c_attribute> | ||
3286 | <d_old></d_old> | ||
3287 | <e_new>Lighting</e_new> | ||
3288 | <f_old_trans></f_old_trans> | ||
3289 | <f_translation>ライティング</f_translation> | ||
3290 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3291 | <b_path>/WindLight floater/WindLight Tabs/Lighting/SLCText</b_path> | ||
3292 | <c_attribute></c_attribute> | ||
3293 | <d_old></d_old> | ||
3294 | <e_new> | ||
3295 | Sun/Moon Color | ||
3296 | </e_new> | ||
3297 | <f_old_trans></f_old_trans> | ||
3298 | <f_translation> | ||
3299 | 太陽/月の色 | ||
3300 | </f_translation> | ||
3301 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3302 | <b_path>/WindLight floater/WindLight Tabs/Lighting/WLSunlightColorHelp</b_path> | ||
3303 | <c_attribute>label</c_attribute> | ||
3304 | <d_old></d_old> | ||
3305 | <e_new>?</e_new> | ||
3306 | <f_old_trans></f_old_trans> | ||
3307 | <f_translation>?</f_translation> | ||
3308 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3309 | <b_path>/WindLight floater/WindLight Tabs/Lighting/BHText</b_path> | ||
3310 | <c_attribute></c_attribute> | ||
3311 | <d_old></d_old> | ||
3312 | <e_new> | ||
3313 | R | ||
3314 | </e_new> | ||
3315 | <f_old_trans></f_old_trans> | ||
3316 | <f_translation> | ||
3317 | R | ||
3318 | </f_translation> | ||
3319 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3320 | <b_path>/WindLight floater/WindLight Tabs/Lighting/BHText2</b_path> | ||
3321 | <c_attribute></c_attribute> | ||
3322 | <d_old></d_old> | ||
3323 | <e_new> | ||
3324 | G | ||
3325 | </e_new> | ||
3326 | <f_old_trans></f_old_trans> | ||
3327 | <f_translation> | ||
3328 | G | ||
3329 | </f_translation> | ||
3330 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3331 | <b_path>/WindLight floater/WindLight Tabs/Lighting/BHText3</b_path> | ||
3332 | <c_attribute></c_attribute> | ||
3333 | <d_old></d_old> | ||
3334 | <e_new> | ||
3335 | B | ||
3336 | </e_new> | ||
3337 | <f_old_trans></f_old_trans> | ||
3338 | <f_translation> | ||
3339 | B | ||
3340 | </f_translation> | ||
3341 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3342 | <b_path>/WindLight floater/WindLight Tabs/Lighting/BHText4</b_path> | ||
3343 | <c_attribute></c_attribute> | ||
3344 | <d_old></d_old> | ||
3345 | <e_new> | ||
3346 | I | ||
3347 | </e_new> | ||
3348 | <f_old_trans></f_old_trans> | ||
3349 | <f_translation> | ||
3350 | I | ||
3351 | </f_translation> | ||
3352 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3353 | <b_path>/WindLight floater/WindLight Tabs/Lighting/WLSunlightR</b_path> | ||
3354 | <c_attribute>label</c_attribute> | ||
3355 | <d_old></d_old> | ||
3356 | <e_new></e_new> | ||
3357 | <f_old_trans></f_old_trans> | ||
3358 | <f_translation></f_translation> | ||
3359 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3360 | <b_path>/WindLight floater/WindLight Tabs/Lighting/WLSunlightG</b_path> | ||
3361 | <c_attribute>label</c_attribute> | ||
3362 | <d_old></d_old> | ||
3363 | <e_new></e_new> | ||
3364 | <f_old_trans></f_old_trans> | ||
3365 | <f_translation></f_translation> | ||
3366 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3367 | <b_path>/WindLight floater/WindLight Tabs/Lighting/WLSunlightB</b_path> | ||
3368 | <c_attribute>label</c_attribute> | ||
3369 | <d_old></d_old> | ||
3370 | <e_new></e_new> | ||
3371 | <f_old_trans></f_old_trans> | ||
3372 | <f_translation></f_translation> | ||
3373 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3374 | <b_path>/WindLight floater/WindLight Tabs/Lighting/WLSunlightI</b_path> | ||
3375 | <c_attribute>label</c_attribute> | ||
3376 | <d_old></d_old> | ||
3377 | <e_new></e_new> | ||
3378 | <f_old_trans></f_old_trans> | ||
3379 | <f_translation></f_translation> | ||
3380 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3381 | <b_path>/WindLight floater/WindLight Tabs/Lighting/TODText</b_path> | ||
3382 | <c_attribute></c_attribute> | ||
3383 | <d_old></d_old> | ||
3384 | <e_new> | ||
3385 | Sun/Moon Position | ||
3386 | </e_new> | ||
3387 | <f_old_trans></f_old_trans> | ||
3388 | <f_translation> | ||
3389 | 太陽/月の位置 | ||
3390 | </f_translation> | ||
3391 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3392 | <b_path>/WindLight floater/WindLight Tabs/Lighting/WLTimeOfDayHelp</b_path> | ||
3393 | <c_attribute>label</c_attribute> | ||
3394 | <d_old></d_old> | ||
3395 | <e_new>?</e_new> | ||
3396 | <f_old_trans></f_old_trans> | ||
3397 | <f_translation>?</f_translation> | ||
3398 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3399 | <b_path>/WindLight floater/WindLight Tabs/Lighting/WLSunAngle</b_path> | ||
3400 | <c_attribute>label</c_attribute> | ||
3401 | <d_old></d_old> | ||
3402 | <e_new></e_new> | ||
3403 | <f_old_trans></f_old_trans> | ||
3404 | <f_translation></f_translation> | ||
3405 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3406 | <b_path>/WindLight floater/WindLight Tabs/Lighting/WLAmbientText</b_path> | ||
3407 | <c_attribute></c_attribute> | ||
3408 | <d_old></d_old> | ||
3409 | <e_new> | ||
3410 | Ambient | ||
3411 | </e_new> | ||
3412 | <f_old_trans></f_old_trans> | ||
3413 | <f_translation> | ||
3414 | アンビエント | ||
3415 | </f_translation> | ||
3416 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3417 | <b_path>/WindLight floater/WindLight Tabs/Lighting/WLAmbientHelp</b_path> | ||
3418 | <c_attribute>label</c_attribute> | ||
3419 | <d_old></d_old> | ||
3420 | <e_new>?</e_new> | ||
3421 | <f_old_trans></f_old_trans> | ||
3422 | <f_translation>?</f_translation> | ||
3423 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3424 | <b_path>/WindLight floater/WindLight Tabs/Lighting/BHText5</b_path> | ||
3425 | <c_attribute></c_attribute> | ||
3426 | <d_old></d_old> | ||
3427 | <e_new> | ||
3428 | R | ||
3429 | </e_new> | ||
3430 | <f_old_trans></f_old_trans> | ||
3431 | <f_translation> | ||
3432 | R | ||
3433 | </f_translation> | ||
3434 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3435 | <b_path>/WindLight floater/WindLight Tabs/Lighting/BHText6</b_path> | ||
3436 | <c_attribute></c_attribute> | ||
3437 | <d_old></d_old> | ||
3438 | <e_new> | ||
3439 | G | ||
3440 | </e_new> | ||
3441 | <f_old_trans></f_old_trans> | ||
3442 | <f_translation> | ||
3443 | G | ||
3444 | </f_translation> | ||
3445 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3446 | <b_path>/WindLight floater/WindLight Tabs/Lighting/BHText7</b_path> | ||
3447 | <c_attribute></c_attribute> | ||
3448 | <d_old></d_old> | ||
3449 | <e_new> | ||
3450 | B | ||
3451 | </e_new> | ||
3452 | <f_old_trans></f_old_trans> | ||
3453 | <f_translation> | ||
3454 | B | ||
3455 | </f_translation> | ||
3456 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3457 | <b_path>/WindLight floater/WindLight Tabs/Lighting/BHText8</b_path> | ||
3458 | <c_attribute></c_attribute> | ||
3459 | <d_old></d_old> | ||
3460 | <e_new> | ||
3461 | I | ||
3462 | </e_new> | ||
3463 | <f_old_trans></f_old_trans> | ||
3464 | <f_translation> | ||
3465 | I | ||
3466 | </f_translation> | ||
3467 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3468 | <b_path>/WindLight floater/WindLight Tabs/Lighting/WLAmbientR</b_path> | ||
3469 | <c_attribute>label</c_attribute> | ||
3470 | <d_old></d_old> | ||
3471 | <e_new></e_new> | ||
3472 | <f_old_trans></f_old_trans> | ||
3473 | <f_translation></f_translation> | ||
3474 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3475 | <b_path>/WindLight floater/WindLight Tabs/Lighting/WLAmbientG</b_path> | ||
3476 | <c_attribute>label</c_attribute> | ||
3477 | <d_old></d_old> | ||
3478 | <e_new></e_new> | ||
3479 | <f_old_trans></f_old_trans> | ||
3480 | <f_translation></f_translation> | ||
3481 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3482 | <b_path>/WindLight floater/WindLight Tabs/Lighting/WLAmbientB</b_path> | ||
3483 | <c_attribute>label</c_attribute> | ||
3484 | <d_old></d_old> | ||
3485 | <e_new></e_new> | ||
3486 | <f_old_trans></f_old_trans> | ||
3487 | <f_translation></f_translation> | ||
3488 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3489 | <b_path>/WindLight floater/WindLight Tabs/Lighting/WLAmbientI</b_path> | ||
3490 | <c_attribute>label</c_attribute> | ||
3491 | <d_old></d_old> | ||
3492 | <e_new></e_new> | ||
3493 | <f_old_trans></f_old_trans> | ||
3494 | <f_translation></f_translation> | ||
3495 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3496 | <b_path>/WindLight floater/WindLight Tabs/Lighting/WLEastAngleText</b_path> | ||
3497 | <c_attribute></c_attribute> | ||
3498 | <d_old></d_old> | ||
3499 | <e_new> | ||
3500 | East Angle | ||
3501 | </e_new> | ||
3502 | <f_old_trans></f_old_trans> | ||
3503 | <f_translation> | ||
3504 | 東の角度 | ||
3505 | </f_translation> | ||
3506 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3507 | <b_path>/WindLight floater/WindLight Tabs/Lighting/WLEastAngleHelp</b_path> | ||
3508 | <c_attribute>label</c_attribute> | ||
3509 | <d_old></d_old> | ||
3510 | <e_new>?</e_new> | ||
3511 | <f_old_trans></f_old_trans> | ||
3512 | <f_translation>?</f_translation> | ||
3513 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3514 | <b_path>/WindLight floater/WindLight Tabs/Lighting/WLEastAngle</b_path> | ||
3515 | <c_attribute>label</c_attribute> | ||
3516 | <d_old></d_old> | ||
3517 | <e_new></e_new> | ||
3518 | <f_old_trans></f_old_trans> | ||
3519 | <f_translation></f_translation> | ||
3520 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3521 | <b_path>/WindLight floater/WindLight Tabs/Lighting/SunGlowText</b_path> | ||
3522 | <c_attribute></c_attribute> | ||
3523 | <d_old></d_old> | ||
3524 | <e_new> | ||
3525 | Sun Glow | ||
3526 | </e_new> | ||
3527 | <f_old_trans></f_old_trans> | ||
3528 | <f_translation> | ||
3529 | 太陽の輝き | ||
3530 | </f_translation> | ||
3531 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3532 | <b_path>/WindLight floater/WindLight Tabs/Lighting/WLSunGlowHelp</b_path> | ||
3533 | <c_attribute>label</c_attribute> | ||
3534 | <d_old></d_old> | ||
3535 | <e_new>?</e_new> | ||
3536 | <f_old_trans></f_old_trans> | ||
3537 | <f_translation>?</f_translation> | ||
3538 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3539 | <b_path>/WindLight floater/WindLight Tabs/Lighting/WLGlowB</b_path> | ||
3540 | <c_attribute>label</c_attribute> | ||
3541 | <d_old></d_old> | ||
3542 | <e_new>Focus </e_new> | ||
3543 | <f_old_trans></f_old_trans> | ||
3544 | <f_translation>フォーカス </f_translation> | ||
3545 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3546 | <b_path>/WindLight floater/WindLight Tabs/Lighting/WLGlowR</b_path> | ||
3547 | <c_attribute>label</c_attribute> | ||
3548 | <d_old></d_old> | ||
3549 | <e_new>Size </e_new> | ||
3550 | <f_old_trans></f_old_trans> | ||
3551 | <f_translation>サイズ </f_translation> | ||
3552 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3553 | <b_path>/WindLight floater/WindLight Tabs/Lighting/SceneGammaText</b_path> | ||
3554 | <c_attribute></c_attribute> | ||
3555 | <d_old></d_old> | ||
3556 | <e_new> | ||
3557 | Scene Gamma | ||
3558 | </e_new> | ||
3559 | <f_old_trans></f_old_trans> | ||
3560 | <f_translation> | ||
3561 | 風景ガンマ | ||
3562 | </f_translation> | ||
3563 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3564 | <b_path>/WindLight floater/WindLight Tabs/Lighting/WLSceneGammaHelp</b_path> | ||
3565 | <c_attribute>label</c_attribute> | ||
3566 | <d_old></d_old> | ||
3567 | <e_new>?</e_new> | ||
3568 | <f_old_trans></f_old_trans> | ||
3569 | <f_translation>?</f_translation> | ||
3570 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3571 | <b_path>/WindLight floater/WindLight Tabs/Lighting/WLGamma</b_path> | ||
3572 | <c_attribute>label</c_attribute> | ||
3573 | <d_old></d_old> | ||
3574 | <e_new></e_new> | ||
3575 | <f_old_trans></f_old_trans> | ||
3576 | <f_translation></f_translation> | ||
3577 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3578 | <b_path>/WindLight floater/WindLight Tabs/Lighting/WLStarText</b_path> | ||
3579 | <c_attribute></c_attribute> | ||
3580 | <d_old></d_old> | ||
3581 | <e_new> | ||
3582 | Star Brightness | ||
3583 | </e_new> | ||
3584 | <f_old_trans></f_old_trans> | ||
3585 | <f_translation> | ||
3586 | 星の輝き | ||
3587 | </f_translation> | ||
3588 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3589 | <b_path>/WindLight floater/WindLight Tabs/Lighting/WLStarBrightnessHelp</b_path> | ||
3590 | <c_attribute>label</c_attribute> | ||
3591 | <d_old></d_old> | ||
3592 | <e_new>?</e_new> | ||
3593 | <f_old_trans></f_old_trans> | ||
3594 | <f_translation>?</f_translation> | ||
3595 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3596 | <b_path>/WindLight floater/WindLight Tabs/Lighting/WLStarAlpha</b_path> | ||
3597 | <c_attribute>label</c_attribute> | ||
3598 | <d_old></d_old> | ||
3599 | <e_new></e_new> | ||
3600 | <f_old_trans></f_old_trans> | ||
3601 | <f_translation></f_translation> | ||
3602 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3603 | <b_path>/WindLight floater/WindLight Tabs/Clouds</b_path> | ||
3604 | <c_attribute>label</c_attribute> | ||
3605 | <d_old></d_old> | ||
3606 | <e_new>Clouds</e_new> | ||
3607 | <f_old_trans></f_old_trans> | ||
3608 | <f_translation>雲</f_translation> | ||
3609 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3610 | <b_path>/WindLight floater/WindLight Tabs/Clouds/WLCloudColorText</b_path> | ||
3611 | <c_attribute></c_attribute> | ||
3612 | <d_old></d_old> | ||
3613 | <e_new> | ||
3614 | Cloud Color | ||
3615 | </e_new> | ||
3616 | <f_old_trans></f_old_trans> | ||
3617 | <f_translation> | ||
3618 | 雲の色 | ||
3619 | </f_translation> | ||
3620 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3621 | <b_path>/WindLight floater/WindLight Tabs/Clouds/WLCloudColorHelp</b_path> | ||
3622 | <c_attribute>label</c_attribute> | ||
3623 | <d_old></d_old> | ||
3624 | <e_new>?</e_new> | ||
3625 | <f_old_trans></f_old_trans> | ||
3626 | <f_translation>?</f_translation> | ||
3627 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3628 | <b_path>/WindLight floater/WindLight Tabs/Clouds/BHText</b_path> | ||
3629 | <c_attribute></c_attribute> | ||
3630 | <d_old></d_old> | ||
3631 | <e_new> | ||
3632 | R | ||
3633 | </e_new> | ||
3634 | <f_old_trans></f_old_trans> | ||
3635 | <f_translation> | ||
3636 | R | ||
3637 | </f_translation> | ||
3638 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3639 | <b_path>/WindLight floater/WindLight Tabs/Clouds/BHText2</b_path> | ||
3640 | <c_attribute></c_attribute> | ||
3641 | <d_old></d_old> | ||
3642 | <e_new> | ||
3643 | G | ||
3644 | </e_new> | ||
3645 | <f_old_trans></f_old_trans> | ||
3646 | <f_translation> | ||
3647 | G | ||
3648 | </f_translation> | ||
3649 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3650 | <b_path>/WindLight floater/WindLight Tabs/Clouds/BHText3</b_path> | ||
3651 | <c_attribute></c_attribute> | ||
3652 | <d_old></d_old> | ||
3653 | <e_new> | ||
3654 | B | ||
3655 | </e_new> | ||
3656 | <f_old_trans></f_old_trans> | ||
3657 | <f_translation> | ||
3658 | B | ||
3659 | </f_translation> | ||
3660 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3661 | <b_path>/WindLight floater/WindLight Tabs/Clouds/BHText4</b_path> | ||
3662 | <c_attribute></c_attribute> | ||
3663 | <d_old></d_old> | ||
3664 | <e_new> | ||
3665 | I | ||
3666 | </e_new> | ||
3667 | <f_old_trans></f_old_trans> | ||
3668 | <f_translation> | ||
3669 | I | ||
3670 | </f_translation> | ||
3671 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3672 | <b_path>/WindLight floater/WindLight Tabs/Clouds/WLCloudColorR</b_path> | ||
3673 | <c_attribute>label</c_attribute> | ||
3674 | <d_old></d_old> | ||
3675 | <e_new></e_new> | ||
3676 | <f_old_trans></f_old_trans> | ||
3677 | <f_translation></f_translation> | ||
3678 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3679 | <b_path>/WindLight floater/WindLight Tabs/Clouds/WLCloudColorG</b_path> | ||
3680 | <c_attribute>label</c_attribute> | ||
3681 | <d_old></d_old> | ||
3682 | <e_new></e_new> | ||
3683 | <f_old_trans></f_old_trans> | ||
3684 | <f_translation></f_translation> | ||
3685 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3686 | <b_path>/WindLight floater/WindLight Tabs/Clouds/WLCloudColorB</b_path> | ||
3687 | <c_attribute>label</c_attribute> | ||
3688 | <d_old></d_old> | ||
3689 | <e_new></e_new> | ||
3690 | <f_old_trans></f_old_trans> | ||
3691 | <f_translation></f_translation> | ||
3692 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3693 | <b_path>/WindLight floater/WindLight Tabs/Clouds/WLCloudColorI</b_path> | ||
3694 | <c_attribute>label</c_attribute> | ||
3695 | <d_old></d_old> | ||
3696 | <e_new></e_new> | ||
3697 | <f_old_trans></f_old_trans> | ||
3698 | <f_translation></f_translation> | ||
3699 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3700 | <b_path>/WindLight floater/WindLight Tabs/Clouds/WLCloudColorText2</b_path> | ||
3701 | <c_attribute></c_attribute> | ||
3702 | <d_old></d_old> | ||
3703 | <e_new> | ||
3704 | Cloud XY/Density | ||
3705 | </e_new> | ||
3706 | <f_old_trans></f_old_trans> | ||
3707 | <f_translation> | ||
3708 | 雲の XY/密度 | ||
3709 | </f_translation> | ||
3710 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3711 | <b_path>/WindLight floater/WindLight Tabs/Clouds/WLCloudDensityHelp</b_path> | ||
3712 | <c_attribute>label</c_attribute> | ||
3713 | <d_old></d_old> | ||
3714 | <e_new>?</e_new> | ||
3715 | <f_old_trans></f_old_trans> | ||
3716 | <f_translation>?</f_translation> | ||
3717 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3718 | <b_path>/WindLight floater/WindLight Tabs/Clouds/BHText5</b_path> | ||
3719 | <c_attribute></c_attribute> | ||
3720 | <d_old></d_old> | ||
3721 | <e_new> | ||
3722 | X | ||
3723 | </e_new> | ||
3724 | <f_old_trans></f_old_trans> | ||
3725 | <f_translation> | ||
3726 | X | ||
3727 | </f_translation> | ||
3728 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3729 | <b_path>/WindLight floater/WindLight Tabs/Clouds/BHText6</b_path> | ||
3730 | <c_attribute></c_attribute> | ||
3731 | <d_old></d_old> | ||
3732 | <e_new> | ||
3733 | Y | ||
3734 | </e_new> | ||
3735 | <f_old_trans></f_old_trans> | ||
3736 | <f_translation> | ||
3737 | Y | ||
3738 | </f_translation> | ||
3739 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3740 | <b_path>/WindLight floater/WindLight Tabs/Clouds/BHText7</b_path> | ||
3741 | <c_attribute></c_attribute> | ||
3742 | <d_old></d_old> | ||
3743 | <e_new> | ||
3744 | D | ||
3745 | </e_new> | ||
3746 | <f_old_trans></f_old_trans> | ||
3747 | <f_translation> | ||
3748 | D | ||
3749 | </f_translation> | ||
3750 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3751 | <b_path>/WindLight floater/WindLight Tabs/Clouds/WLCloudX</b_path> | ||
3752 | <c_attribute>label</c_attribute> | ||
3753 | <d_old></d_old> | ||
3754 | <e_new></e_new> | ||
3755 | <f_old_trans></f_old_trans> | ||
3756 | <f_translation></f_translation> | ||
3757 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3758 | <b_path>/WindLight floater/WindLight Tabs/Clouds/WLCloudY</b_path> | ||
3759 | <c_attribute>label</c_attribute> | ||
3760 | <d_old></d_old> | ||
3761 | <e_new></e_new> | ||
3762 | <f_old_trans></f_old_trans> | ||
3763 | <f_translation></f_translation> | ||
3764 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3765 | <b_path>/WindLight floater/WindLight Tabs/Clouds/WLCloudDensity</b_path> | ||
3766 | <c_attribute>label</c_attribute> | ||
3767 | <d_old></d_old> | ||
3768 | <e_new></e_new> | ||
3769 | <f_old_trans></f_old_trans> | ||
3770 | <f_translation></f_translation> | ||
3771 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3772 | <b_path>/WindLight floater/WindLight Tabs/Clouds/WLCloudCoverageText</b_path> | ||
3773 | <c_attribute></c_attribute> | ||
3774 | <d_old></d_old> | ||
3775 | <e_new> | ||
3776 | Cloud Coverage | ||
3777 | </e_new> | ||
3778 | <f_old_trans></f_old_trans> | ||
3779 | <f_translation> | ||
3780 | 雲の量 | ||
3781 | </f_translation> | ||
3782 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3783 | <b_path>/WindLight floater/WindLight Tabs/Clouds/WLCloudCoverageHelp</b_path> | ||
3784 | <c_attribute>label</c_attribute> | ||
3785 | <d_old></d_old> | ||
3786 | <e_new>?</e_new> | ||
3787 | <f_old_trans></f_old_trans> | ||
3788 | <f_translation>?</f_translation> | ||
3789 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3790 | <b_path>/WindLight floater/WindLight Tabs/Clouds/WLCloudCoverage</b_path> | ||
3791 | <c_attribute>label</c_attribute> | ||
3792 | <d_old></d_old> | ||
3793 | <e_new></e_new> | ||
3794 | <f_old_trans></f_old_trans> | ||
3795 | <f_translation></f_translation> | ||
3796 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3797 | <b_path>/WindLight floater/WindLight Tabs/Clouds/WLCloudScaleText</b_path> | ||
3798 | <c_attribute></c_attribute> | ||
3799 | <d_old></d_old> | ||
3800 | <e_new> | ||
3801 | Cloud Scale | ||
3802 | </e_new> | ||
3803 | <f_old_trans></f_old_trans> | ||
3804 | <f_translation> | ||
3805 | 雲のスケール | ||
3806 | </f_translation> | ||
3807 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3808 | <b_path>/WindLight floater/WindLight Tabs/Clouds/WLCloudScaleHelp</b_path> | ||
3809 | <c_attribute>label</c_attribute> | ||
3810 | <d_old></d_old> | ||
3811 | <e_new>?</e_new> | ||
3812 | <f_old_trans></f_old_trans> | ||
3813 | <f_translation>?</f_translation> | ||
3814 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3815 | <b_path>/WindLight floater/WindLight Tabs/Clouds/WLCloudScale</b_path> | ||
3816 | <c_attribute>label</c_attribute> | ||
3817 | <d_old></d_old> | ||
3818 | <e_new></e_new> | ||
3819 | <f_old_trans></f_old_trans> | ||
3820 | <f_translation></f_translation> | ||
3821 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3822 | <b_path>/WindLight floater/WindLight Tabs/Clouds/WLCloudDetailText</b_path> | ||
3823 | <c_attribute></c_attribute> | ||
3824 | <d_old></d_old> | ||
3825 | <e_new> | ||
3826 | Cloud Detail (XY/Density) | ||
3827 | </e_new> | ||
3828 | <f_old_trans></f_old_trans> | ||
3829 | <f_translation> | ||
3830 | 雲の詳細 (XY/密度) | ||
3831 | </f_translation> | ||
3832 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3833 | <b_path>/WindLight floater/WindLight Tabs/Clouds/WLCloudDetailHelp</b_path> | ||
3834 | <c_attribute>label</c_attribute> | ||
3835 | <d_old></d_old> | ||
3836 | <e_new>?</e_new> | ||
3837 | <f_old_trans></f_old_trans> | ||
3838 | <f_translation>?</f_translation> | ||
3839 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3840 | <b_path>/WindLight floater/WindLight Tabs/Clouds/BHText8</b_path> | ||
3841 | <c_attribute></c_attribute> | ||
3842 | <d_old></d_old> | ||
3843 | <e_new> | ||
3844 | X | ||
3845 | </e_new> | ||
3846 | <f_old_trans></f_old_trans> | ||
3847 | <f_translation> | ||
3848 | X | ||
3849 | </f_translation> | ||
3850 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3851 | <b_path>/WindLight floater/WindLight Tabs/Clouds/BHText9</b_path> | ||
3852 | <c_attribute></c_attribute> | ||
3853 | <d_old></d_old> | ||
3854 | <e_new> | ||
3855 | Y | ||
3856 | </e_new> | ||
3857 | <f_old_trans></f_old_trans> | ||
3858 | <f_translation> | ||
3859 | Y | ||
3860 | </f_translation> | ||
3861 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3862 | <b_path>/WindLight floater/WindLight Tabs/Clouds/BHText10</b_path> | ||
3863 | <c_attribute></c_attribute> | ||
3864 | <d_old></d_old> | ||
3865 | <e_new> | ||
3866 | D | ||
3867 | </e_new> | ||
3868 | <f_old_trans></f_old_trans> | ||
3869 | <f_translation> | ||
3870 | D | ||
3871 | </f_translation> | ||
3872 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3873 | <b_path>/WindLight floater/WindLight Tabs/Clouds/WLCloudDetailX</b_path> | ||
3874 | <c_attribute>label</c_attribute> | ||
3875 | <d_old></d_old> | ||
3876 | <e_new></e_new> | ||
3877 | <f_old_trans></f_old_trans> | ||
3878 | <f_translation></f_translation> | ||
3879 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3880 | <b_path>/WindLight floater/WindLight Tabs/Clouds/WLCloudDetailY</b_path> | ||
3881 | <c_attribute>label</c_attribute> | ||
3882 | <d_old></d_old> | ||
3883 | <e_new></e_new> | ||
3884 | <f_old_trans></f_old_trans> | ||
3885 | <f_translation></f_translation> | ||
3886 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3887 | <b_path>/WindLight floater/WindLight Tabs/Clouds/WLCloudDetailDensity</b_path> | ||
3888 | <c_attribute>label</c_attribute> | ||
3889 | <d_old></d_old> | ||
3890 | <e_new></e_new> | ||
3891 | <f_old_trans></f_old_trans> | ||
3892 | <f_translation></f_translation> | ||
3893 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3894 | <b_path>/WindLight floater/WindLight Tabs/Clouds/WLCloudScrollXText</b_path> | ||
3895 | <c_attribute></c_attribute> | ||
3896 | <d_old></d_old> | ||
3897 | <e_new> | ||
3898 | Cloud Scroll X | ||
3899 | </e_new> | ||
3900 | <f_old_trans></f_old_trans> | ||
3901 | <f_translation> | ||
3902 | 雲の移動速度 (X 方向) | ||
3903 | </f_translation> | ||
3904 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3905 | <b_path>/WindLight floater/WindLight Tabs/Clouds/WLCloudScrollXHelp</b_path> | ||
3906 | <c_attribute>label</c_attribute> | ||
3907 | <d_old></d_old> | ||
3908 | <e_new>?</e_new> | ||
3909 | <f_old_trans></f_old_trans> | ||
3910 | <f_translation>?</f_translation> | ||
3911 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3912 | <b_path>/WindLight floater/WindLight Tabs/Clouds/WLCloudLockX</b_path> | ||
3913 | <c_attribute>label</c_attribute> | ||
3914 | <d_old></d_old> | ||
3915 | <e_new>Lock</e_new> | ||
3916 | <f_old_trans></f_old_trans> | ||
3917 | <f_translation>ロック</f_translation> | ||
3918 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3919 | <b_path>/WindLight floater/WindLight Tabs/Clouds/WLCloudScrollX</b_path> | ||
3920 | <c_attribute>label</c_attribute> | ||
3921 | <d_old></d_old> | ||
3922 | <e_new></e_new> | ||
3923 | <f_old_trans></f_old_trans> | ||
3924 | <f_translation></f_translation> | ||
3925 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3926 | <b_path>/WindLight floater/WindLight Tabs/Clouds/WLCloudScrollYText</b_path> | ||
3927 | <c_attribute></c_attribute> | ||
3928 | <d_old></d_old> | ||
3929 | <e_new> | ||
3930 | Cloud Scroll Y | ||
3931 | </e_new> | ||
3932 | <f_old_trans></f_old_trans> | ||
3933 | <f_translation> | ||
3934 | 雲の移動速度 (Y 方向) | ||
3935 | </f_translation> | ||
3936 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3937 | <b_path>/WindLight floater/WindLight Tabs/Clouds/WLCloudScrollYHelp</b_path> | ||
3938 | <c_attribute>label</c_attribute> | ||
3939 | <d_old></d_old> | ||
3940 | <e_new>?</e_new> | ||
3941 | <f_old_trans></f_old_trans> | ||
3942 | <f_translation>?</f_translation> | ||
3943 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3944 | <b_path>/WindLight floater/WindLight Tabs/Clouds/WLCloudLockY</b_path> | ||
3945 | <c_attribute>label</c_attribute> | ||
3946 | <d_old></d_old> | ||
3947 | <e_new>Lock</e_new> | ||
3948 | <f_old_trans></f_old_trans> | ||
3949 | <f_translation>ロック</f_translation> | ||
3950 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3951 | <b_path>/WindLight floater/WindLight Tabs/Clouds/WLCloudScrollY</b_path> | ||
3952 | <c_attribute>label</c_attribute> | ||
3953 | <d_old></d_old> | ||
3954 | <e_new></e_new> | ||
3955 | <f_old_trans></f_old_trans> | ||
3956 | <f_translation></f_translation> | ||
3957 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3958 | <b_path>/WindLight floater/WindLight Tabs/Clouds/DrawClassicClouds</b_path> | ||
3959 | <c_attribute>label</c_attribute> | ||
3960 | <d_old></d_old> | ||
3961 | <e_new>Draw Classic Clouds</e_new> | ||
3962 | <f_old_trans></f_old_trans> | ||
3963 | <f_translation>従来の雲を描画</f_translation> | ||
3964 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3965 | <b_path>/WindLight floater/WindLight Tabs/Clouds/WLClassicCloudsHelp</b_path> | ||
3966 | <c_attribute>label</c_attribute> | ||
3967 | <d_old></d_old> | ||
3968 | <e_new>?</e_new> | ||
3969 | <f_old_trans></f_old_trans> | ||
3970 | <f_translation>?</f_translation> | ||
3971 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3972 | <b_path>/WindLight floater/WLDefaultSkyNames</b_path> | ||
3973 | <c_attribute></c_attribute> | ||
3974 | <d_old></d_old> | ||
3975 | <e_new> | ||
3976 | A-12AM:A-12PM:A-3AM:A-3PM:A-4.30PM:A-6AM:A-6PM:A-9AM:A-9PM:Barcelona:Blizzard:Blue Midday:Coastal Afternoon:Coastal Sunset:Default:Desert Sunset:Fine Day:Fluffy Big Clouds:Foggy:Funky Funky:Funky Funky Funky:Gelatto:Ghost:Incongruent Truths:Midday 1:Midday 2:Midday 3:Midday 4:Night:Pirate:Purple:Sailor's Delight:Sheer Sensuality | ||
3977 | </e_new> | ||
3978 | <f_old_trans></f_old_trans> | ||
3979 | <f_translation> | ||
3980 | A-12AM:A-12PM:A-3AM:A-3PM:A-4.30PM:A-6AM:A-6PM:A-9AM:A-9PM:Barcelona:Blizzard:Blue Midday:Coastal Afternoon:Coastal Sunset:Default:Desert Sunset:Fine Day:Fluffy Big Clouds:Foggy:Funky Funky:Funky Funky Funky:Gelatto:Ghost:Incongruent Truths:Midday 1:Midday 2:Midday 3:Midday 4:Night:Pirate:Purple:Sailor's Delight:Sheer Sensuality | ||
3981 | </f_translation> | ||
3982 | </string><string><a_file>menu_viewer.xml</a_file> | ||
3983 | <b_path>/Main Menu/View/Beacons/separator2</b_path> | ||
3984 | <c_attribute>label</c_attribute> | ||
3985 | <d_old></d_old> | ||
3986 | <e_new>-----------</e_new> | ||
3987 | <f_old_trans></f_old_trans> | ||
3988 | <f_translation>-----------</f_translation> | ||
3989 | </string><string><a_file>menu_viewer.xml</a_file> | ||
3990 | <b_path>/Main Menu/View/Beacons/separator3</b_path> | ||
3991 | <c_attribute>label</c_attribute> | ||
3992 | <d_old></d_old> | ||
3993 | <e_new>-----------</e_new> | ||
3994 | <f_old_trans></f_old_trans> | ||
3995 | <f_translation>-----------</f_translation> | ||
3996 | </string><string><a_file>menu_viewer.xml</a_file> | ||
3997 | <b_path>/Main Menu/View/Beacons/Beacon Width</b_path> | ||
3998 | <c_attribute>label</c_attribute> | ||
3999 | <d_old></d_old> | ||
4000 | <e_new>Beacon Width</e_new> | ||
4001 | <f_old_trans></f_old_trans> | ||
4002 | <f_translation>標識の幅</f_translation> | ||
4003 | </string><string><a_file>menu_viewer.xml</a_file> | ||
4004 | <b_path>/Main Menu/View/Beacons/Beacon Width/Beacon Width 1</b_path> | ||
4005 | <c_attribute>label</c_attribute> | ||
4006 | <d_old></d_old> | ||
4007 | <e_new>1</e_new> | ||
4008 | <f_old_trans></f_old_trans> | ||
4009 | <f_translation>1</f_translation> | ||
4010 | </string><string><a_file>menu_viewer.xml</a_file> | ||
4011 | <b_path>/Main Menu/View/Beacons/Beacon Width/Beacon Width 4</b_path> | ||
4012 | <c_attribute>label</c_attribute> | ||
4013 | <d_old></d_old> | ||
4014 | <e_new>4</e_new> | ||
4015 | <f_old_trans></f_old_trans> | ||
4016 | <f_translation>4</f_translation> | ||
4017 | </string><string><a_file>menu_viewer.xml</a_file> | ||
4018 | <b_path>/Main Menu/View/Beacons/Beacon Width/Beacon Width 16</b_path> | ||
4019 | <c_attribute>label</c_attribute> | ||
4020 | <d_old></d_old> | ||
4021 | <e_new>16</e_new> | ||
4022 | <f_old_trans></f_old_trans> | ||
4023 | <f_translation>16</f_translation> | ||
4024 | </string><string><a_file>menu_viewer.xml</a_file> | ||
4025 | <b_path>/Main Menu/View/Beacons/Beacon Width/Beacon Width 32</b_path> | ||
4026 | <c_attribute>label</c_attribute> | ||
4027 | <d_old></d_old> | ||
4028 | <e_new>32</e_new> | ||
4029 | <f_old_trans></f_old_trans> | ||
4030 | <f_translation>32</f_translation> | ||
4031 | </string><string><a_file>menu_viewer.xml</a_file> | ||
4032 | <b_path>/Main Menu/World/Environment Settings</b_path> | ||
4033 | <c_attribute>label</c_attribute> | ||
4034 | <d_old></d_old> | ||
4035 | <e_new>Environment Settings</e_new> | ||
4036 | <f_old_trans></f_old_trans> | ||
4037 | <f_translation>環境設定</f_translation> | ||
4038 | </string><string><a_file>menu_viewer.xml</a_file> | ||
4039 | <b_path>/Main Menu/World/Environment Settings/Sunrise</b_path> | ||
4040 | <c_attribute>label</c_attribute> | ||
4041 | <d_old></d_old> | ||
4042 | <e_new>Sunrise</e_new> | ||
4043 | <f_old_trans></f_old_trans> | ||
4044 | <f_translation>日の出</f_translation> | ||
4045 | </string><string><a_file>menu_viewer.xml</a_file> | ||
4046 | <b_path>/Main Menu/World/Environment Settings/Noon</b_path> | ||
4047 | <c_attribute>label</c_attribute> | ||
4048 | <d_old></d_old> | ||
4049 | <e_new>Midday</e_new> | ||
4050 | <f_old_trans></f_old_trans> | ||
4051 | <f_translation>正午</f_translation> | ||
4052 | </string><string><a_file>menu_viewer.xml</a_file> | ||
4053 | <b_path>/Main Menu/World/Environment Settings/Sunset</b_path> | ||
4054 | <c_attribute>label</c_attribute> | ||
4055 | <d_old></d_old> | ||
4056 | <e_new>Sunset</e_new> | ||
4057 | <f_old_trans></f_old_trans> | ||
4058 | <f_translation>日没</f_translation> | ||
4059 | </string><string><a_file>menu_viewer.xml</a_file> | ||
4060 | <b_path>/Main Menu/World/Environment Settings/Midnight</b_path> | ||
4061 | <c_attribute>label</c_attribute> | ||
4062 | <d_old></d_old> | ||
4063 | <e_new>Midnight</e_new> | ||
4064 | <f_old_trans></f_old_trans> | ||
4065 | <f_translation>深夜</f_translation> | ||
4066 | </string><string><a_file>menu_viewer.xml</a_file> | ||
4067 | <b_path>/Main Menu/World/Environment Settings/Revert to Region Default</b_path> | ||
4068 | <c_attribute>label</c_attribute> | ||
4069 | <d_old></d_old> | ||
4070 | <e_new>Revert to Region Default</e_new> | ||
4071 | <f_old_trans></f_old_trans> | ||
4072 | <f_translation>地域デフォルトに戻す</f_translation> | ||
4073 | </string><string><a_file>menu_viewer.xml</a_file> | ||
4074 | <b_path>/Main Menu/World/Environment Settings/separator</b_path> | ||
4075 | <c_attribute>label</c_attribute> | ||
4076 | <d_old></d_old> | ||
4077 | <e_new>-----------</e_new> | ||
4078 | <f_old_trans></f_old_trans> | ||
4079 | <f_translation>-----------</f_translation> | ||
4080 | </string><string><a_file>menu_viewer.xml</a_file> | ||
4081 | <b_path>/Main Menu/World/Environment Settings/Environment Editor</b_path> | ||
4082 | <c_attribute>label</c_attribute> | ||
4083 | <d_old></d_old> | ||
4084 | <e_new>Environment Editor</e_new> | ||
4085 | <f_old_trans></f_old_trans> | ||
4086 | <f_translation>環境編集</f_translation> | ||
4087 | </string><string><a_file>menu_viewer.xml</a_file> | ||
4088 | <b_path>/Main Menu/Tools/Bug Reporting/separator72</b_path> | ||
4089 | <c_attribute>label</c_attribute> | ||
4090 | <d_old></d_old> | ||
4091 | <e_new>-----------</e_new> | ||
4092 | <f_old_trans></f_old_trans> | ||
4093 | <f_translation>-----------</f_translation> | ||
4094 | </string><string><a_file>notify.xml</a_file> | ||
4095 | <b_path>//FirstMedia/message</b_path> | ||
4096 | <c_attribute></c_attribute> | ||
4097 | <d_old></d_old> | ||
4098 | <e_new> | ||
4099 | You have begun playing media. Media can set to play automatically in the preferences window under Audio / Video. Note that this can be a security risk for media sites you do not trust. | ||
4100 | </e_new> | ||
4101 | <f_old_trans></f_old_trans> | ||
4102 | <f_translation> | ||
4103 | メディアの再生を開始しました。 オーディオ/ビデオの環境設定で、自動的にメディアを再生するように設定することができます。 注: この設定により、信頼しないメディア・サイトに接続されるセキュリティ・リスクが伴います。 | ||
4104 | </f_translation> | ||
4105 | </string><string><a_file>notify.xml</a_file> | ||
4106 | <b_path>//ServerVersionChanged/message</b_path> | ||
4107 | <c_attribute></c_attribute> | ||
4108 | <d_old></d_old> | ||
4109 | <e_new> | ||
4110 | The region you have entered is running a different simulator version. Click this message for details. | ||
4111 | </e_new> | ||
263 | <f_old_trans></f_old_trans> | 4112 | <f_old_trans></f_old_trans> |
264 | <f_translation> </f_translation> | 4113 | <f_translation> |
4114 | 入力した地域は異なるシミュレーターのバージョンで実行されています。 詳細についてはこのメッセージをクリックしてください。 | ||
4115 | </f_translation> | ||
265 | </string><string><a_file>panel_audio.xml</a_file> | 4116 | </string><string><a_file>panel_audio.xml</a_file> |
266 | <b_path>/Media panel/mute_music</b_path> | 4117 | <b_path>/Media panel/mute_audio</b_path> |
267 | <c_attribute>label</c_attribute> | 4118 | <c_attribute>label</c_attribute> |
268 | <d_old></d_old> | 4119 | <d_old></d_old> |
269 | <e_new></e_new> | 4120 | <e_new></e_new> |
@@ -311,6 +4162,61 @@ | |||
311 | <e_new></e_new> | 4162 | <e_new></e_new> |
312 | <f_old_trans></f_old_trans> | 4163 | <f_old_trans></f_old_trans> |
313 | <f_translation></f_translation> | 4164 | <f_translation></f_translation> |
4165 | </string><string><a_file>panel_audio_device.xml</a_file> | ||
4166 | <b_path>/device_settings/Audio Devices</b_path> | ||
4167 | <c_attribute></c_attribute> | ||
4168 | <d_old></d_old> | ||
4169 | <e_new> | ||
4170 | Audio Devices | ||
4171 | </e_new> | ||
4172 | <f_old_trans></f_old_trans> | ||
4173 | <f_translation> | ||
4174 | オーディオ機器 | ||
4175 | </f_translation> | ||
4176 | </string><string><a_file>panel_audio_device.xml</a_file> | ||
4177 | <b_path>/device_settings/Input level:</b_path> | ||
4178 | <c_attribute></c_attribute> | ||
4179 | <d_old></d_old> | ||
4180 | <e_new> | ||
4181 | Input Level | ||
4182 | </e_new> | ||
4183 | <f_old_trans></f_old_trans> | ||
4184 | <f_translation> | ||
4185 | 入力レベル | ||
4186 | </f_translation> | ||
4187 | </string><string><a_file>panel_avatar.xml</a_file> | ||
4188 | <b_path>/Panel Avatar/tab/My Notes/Loading</b_path> | ||
4189 | <c_attribute></c_attribute> | ||
4190 | <d_old></d_old> | ||
4191 | <e_new> | ||
4192 | Loading... | ||
4193 | </e_new> | ||
4194 | <f_old_trans></f_old_trans> | ||
4195 | <f_translation> | ||
4196 | ロード中... | ||
4197 | </f_translation> | ||
4198 | </string><string><a_file>panel_classified.xml</a_file> | ||
4199 | <b_path>/Classified/ad_placed_paid</b_path> | ||
4200 | <c_attribute></c_attribute> | ||
4201 | <d_old></d_old> | ||
4202 | <e_new> | ||
4203 | Ad placed: [DATE], Paid L$[AMT] for listing. | ||
4204 | </e_new> | ||
4205 | <f_old_trans></f_old_trans> | ||
4206 | <f_translation> | ||
4207 | 広告掲載: [DATE]、L$[AMT] 支払い済み | ||
4208 | </f_translation> | ||
4209 | </string><string><a_file>panel_friends.xml</a_file> | ||
4210 | <b_path>/friends/Multiple</b_path> | ||
4211 | <c_attribute></c_attribute> | ||
4212 | <d_old></d_old> | ||
4213 | <e_new> | ||
4214 | Multiple friends... | ||
4215 | </e_new> | ||
4216 | <f_old_trans></f_old_trans> | ||
4217 | <f_translation> | ||
4218 | 複数のフレンド... | ||
4219 | </f_translation> | ||
314 | </string><string><a_file>panel_groups.xml</a_file> | 4220 | </string><string><a_file>panel_groups.xml</a_file> |
315 | <b_path>/groups/group list/name</b_path> | 4221 | <b_path>/groups/group list/name</b_path> |
316 | <c_attribute>label</c_attribute> | 4222 | <c_attribute>label</c_attribute> |
@@ -318,28 +4224,28 @@ | |||
318 | <e_new></e_new> | 4224 | <e_new></e_new> |
319 | <f_old_trans></f_old_trans> | 4225 | <f_old_trans></f_old_trans> |
320 | <f_translation></f_translation> | 4226 | <f_translation></f_translation> |
321 | </string><string><a_file>panel_login.xml</a_file> | 4227 | </string><string><a_file>panel_group_land_money.xml</a_file> |
322 | <b_path>/panel_login/forgot_password_text</b_path> | 4228 | <b_path>/land_money_tab/loading_txt</b_path> |
323 | <c_attribute></c_attribute> | 4229 | <c_attribute></c_attribute> |
324 | <d_old></d_old> | 4230 | <d_old></d_old> |
325 | <e_new> | 4231 | <e_new> |
326 | Forgot your password? | 4232 | Loading... |
327 | </e_new> | 4233 | </e_new> |
328 | <f_old_trans></f_old_trans> | 4234 | <f_old_trans></f_old_trans> |
329 | <f_translation> | 4235 | <f_translation> |
330 | ドをお忘れですか? | 4236 | ード中... |
331 | </f_translation> | 4237 | </f_translation> |
332 | </string><string><a_file>panel_login.xml</a_file> | 4238 | </string><string><a_file>panel_group_roles.xml</a_file> |
333 | <b_path>/panel_login/forgot_password_url</b_path> | 4239 | <b_path>/roles_tab/roles_tab_container/roles_sub_tab/cant_delete_role</b_path> |
334 | <c_attribute></c_attribute> | 4240 | <c_attribute></c_attribute> |
335 | <d_old></d_old> | 4241 | <d_old></d_old> |
336 | <e_new> | 4242 | <e_new> |
337 | http://secondlife.com/account/request.php | 4243 | The 'Everyone' and 'Owners' Roles are special and cannot be deleted. |
338 | </e_new> | 4244 | </e_new> |
339 | <f_old_trans></f_old_trans> | 4245 | <f_old_trans></f_old_trans> |
340 | <f_translation> | 4246 | <f_translation> |
341 | http://secondlife.com/account/request.php | 4247 | 「全員」と「オーナー」は特別な役割なので、削除できません。 |
342 | </f_translation> | 4248 | </f_translation> |
343 | </string><string><a_file>panel_master_volume.xml</a_file> | 4249 | </string><string><a_file>panel_master_volume.xml</a_file> |
344 | <b_path>/master_volume/mute_master</b_path> | 4250 | <b_path>/master_volume/mute_master</b_path> |
345 | <c_attribute>label</c_attribute> | 4251 | <c_attribute>label</c_attribute> |
@@ -347,6 +4253,893 @@ | |||
347 | <e_new></e_new> | 4253 | <e_new></e_new> |
348 | <f_old_trans></f_old_trans> | 4254 | <f_old_trans></f_old_trans> |
349 | <f_translation></f_translation> | 4255 | <f_translation></f_translation> |
4256 | </string><string><a_file>panel_media_controls.xml</a_file> | ||
4257 | <b_path>/media_controls/music_icon</b_path> | ||
4258 | <c_attribute>label</c_attribute> | ||
4259 | <d_old></d_old> | ||
4260 | <e_new></e_new> | ||
4261 | <f_old_trans></f_old_trans> | ||
4262 | <f_translation></f_translation> | ||
4263 | </string><string><a_file>panel_media_controls.xml</a_file> | ||
4264 | <b_path>/media_controls/music_icon</b_path> | ||
4265 | <c_attribute>tool_tip</c_attribute> | ||
4266 | <d_old></d_old> | ||
4267 | <e_new>Play/pause streaming music</e_new> | ||
4268 | <f_old_trans></f_old_trans> | ||
4269 | <f_translation>ストリーミング・ミュージックの再生/一時停止</f_translation> | ||
4270 | </string><string><a_file>panel_media_controls.xml</a_file> | ||
4271 | <b_path>/media_controls/music_pause</b_path> | ||
4272 | <c_attribute>label</c_attribute> | ||
4273 | <d_old></d_old> | ||
4274 | <e_new></e_new> | ||
4275 | <f_old_trans></f_old_trans> | ||
4276 | <f_translation></f_translation> | ||
4277 | </string><string><a_file>panel_media_controls.xml</a_file> | ||
4278 | <b_path>/media_controls/music_pause</b_path> | ||
4279 | <c_attribute>tool_tip</c_attribute> | ||
4280 | <d_old></d_old> | ||
4281 | <e_new>Pause streaming music</e_new> | ||
4282 | <f_old_trans></f_old_trans> | ||
4283 | <f_translation>ストリーミング・ミュージックの一時停止</f_translation> | ||
4284 | </string><string><a_file>panel_media_controls.xml</a_file> | ||
4285 | <b_path>/media_controls/music_stop</b_path> | ||
4286 | <c_attribute>label</c_attribute> | ||
4287 | <d_old></d_old> | ||
4288 | <e_new></e_new> | ||
4289 | <f_old_trans></f_old_trans> | ||
4290 | <f_translation></f_translation> | ||
4291 | </string><string><a_file>panel_media_controls.xml</a_file> | ||
4292 | <b_path>/media_controls/music_stop</b_path> | ||
4293 | <c_attribute>tool_tip</c_attribute> | ||
4294 | <d_old></d_old> | ||
4295 | <e_new>Stop streaming music</e_new> | ||
4296 | <f_old_trans></f_old_trans> | ||
4297 | <f_translation>ストリーミング・ミュージックの停止</f_translation> | ||
4298 | </string><string><a_file>panel_media_controls.xml</a_file> | ||
4299 | <b_path>/media_controls/media_icon</b_path> | ||
4300 | <c_attribute>label</c_attribute> | ||
4301 | <d_old></d_old> | ||
4302 | <e_new></e_new> | ||
4303 | <f_old_trans></f_old_trans> | ||
4304 | <f_translation></f_translation> | ||
4305 | </string><string><a_file>panel_media_controls.xml</a_file> | ||
4306 | <b_path>/media_controls/media_icon</b_path> | ||
4307 | <c_attribute>tool_tip</c_attribute> | ||
4308 | <d_old></d_old> | ||
4309 | <e_new>Play/pause streaming music</e_new> | ||
4310 | <f_old_trans></f_old_trans> | ||
4311 | <f_translation>ストリーミング・ミュージックの再生/一時停止</f_translation> | ||
4312 | </string><string><a_file>panel_media_controls.xml</a_file> | ||
4313 | <b_path>/media_controls/media_pause</b_path> | ||
4314 | <c_attribute>label</c_attribute> | ||
4315 | <d_old></d_old> | ||
4316 | <e_new></e_new> | ||
4317 | <f_old_trans></f_old_trans> | ||
4318 | <f_translation></f_translation> | ||
4319 | </string><string><a_file>panel_media_controls.xml</a_file> | ||
4320 | <b_path>/media_controls/media_pause</b_path> | ||
4321 | <c_attribute>tool_tip</c_attribute> | ||
4322 | <d_old></d_old> | ||
4323 | <e_new>Pause streaming media</e_new> | ||
4324 | <f_old_trans></f_old_trans> | ||
4325 | <f_translation>ストリーミング・メディアの一時停止</f_translation> | ||
4326 | </string><string><a_file>panel_media_controls.xml</a_file> | ||
4327 | <b_path>/media_controls/media_stop</b_path> | ||
4328 | <c_attribute>label</c_attribute> | ||
4329 | <d_old></d_old> | ||
4330 | <e_new></e_new> | ||
4331 | <f_old_trans></f_old_trans> | ||
4332 | <f_translation></f_translation> | ||
4333 | </string><string><a_file>panel_media_controls.xml</a_file> | ||
4334 | <b_path>/media_controls/media_stop</b_path> | ||
4335 | <c_attribute>tool_tip</c_attribute> | ||
4336 | <d_old></d_old> | ||
4337 | <e_new>Stop streaming media</e_new> | ||
4338 | <f_old_trans></f_old_trans> | ||
4339 | <f_translation>ストリーミング・メディアの停止</f_translation> | ||
4340 | </string><string><a_file>panel_media_remote.xml</a_file> | ||
4341 | <b_path>/media_remote/play_label</b_path> | ||
4342 | <c_attribute></c_attribute> | ||
4343 | <d_old></d_old> | ||
4344 | <e_new> | ||
4345 | Play | ||
4346 | </e_new> | ||
4347 | <f_old_trans></f_old_trans> | ||
4348 | <f_translation> | ||
4349 | 再生 | ||
4350 | </f_translation> | ||
4351 | </string><string><a_file>panel_media_remote.xml</a_file> | ||
4352 | <b_path>/media_remote/stop_label</b_path> | ||
4353 | <c_attribute></c_attribute> | ||
4354 | <d_old></d_old> | ||
4355 | <e_new> | ||
4356 | Stop | ||
4357 | </e_new> | ||
4358 | <f_old_trans></f_old_trans> | ||
4359 | <f_translation> | ||
4360 | 停止 | ||
4361 | </f_translation> | ||
4362 | </string><string><a_file>panel_media_remote.xml</a_file> | ||
4363 | <b_path>/media_remote/pause_label</b_path> | ||
4364 | <c_attribute></c_attribute> | ||
4365 | <d_old></d_old> | ||
4366 | <e_new> | ||
4367 | Pause | ||
4368 | </e_new> | ||
4369 | <f_old_trans></f_old_trans> | ||
4370 | <f_translation> | ||
4371 | 一時停止 | ||
4372 | </f_translation> | ||
4373 | </string><string><a_file>panel_media_remote.xml</a_file> | ||
4374 | <b_path>/media_remote/default_tooltip_label</b_path> | ||
4375 | <c_attribute></c_attribute> | ||
4376 | <d_old></d_old> | ||
4377 | <e_new> | ||
4378 | No Media Specified | ||
4379 | </e_new> | ||
4380 | <f_old_trans></f_old_trans> | ||
4381 | <f_translation> | ||
4382 | メディアが指定されていません | ||
4383 | </f_translation> | ||
4384 | </string><string><a_file>panel_media_remote.xml</a_file> | ||
4385 | <b_path>/media_remote/media_hidden_label</b_path> | ||
4386 | <c_attribute></c_attribute> | ||
4387 | <d_old></d_old> | ||
4388 | <e_new> | ||
4389 | (URL hidden by parcel owner) | ||
4390 | </e_new> | ||
4391 | <f_old_trans></f_old_trans> | ||
4392 | <f_translation> | ||
4393 | (区画オーナーが URL を非表示に設定) | ||
4394 | </f_translation> | ||
4395 | </string><string><a_file>panel_media_remote.xml</a_file> | ||
4396 | <b_path>/media_remote/media_icon_tooltip_web</b_path> | ||
4397 | <c_attribute></c_attribute> | ||
4398 | <d_old></d_old> | ||
4399 | <e_new> | ||
4400 | This location displays content from the World Wide Web. Click the Play button to display Web content. | ||
4401 | </e_new> | ||
4402 | <f_old_trans></f_old_trans> | ||
4403 | <f_translation> | ||
4404 | このロケーションではワールド・ワイド・ウェブの内容が表示されます。 ウェブ・コンテンツを表示するには[再生]ボタンをクリックしてください。 | ||
4405 | </f_translation> | ||
4406 | </string><string><a_file>panel_media_remote.xml</a_file> | ||
4407 | <b_path>/media_remote/media_icon_tooltip_movie</b_path> | ||
4408 | <c_attribute></c_attribute> | ||
4409 | <d_old></d_old> | ||
4410 | <e_new> | ||
4411 | This location displays Video content. Click the Play button to play the video. | ||
4412 | </e_new> | ||
4413 | <f_old_trans></f_old_trans> | ||
4414 | <f_translation> | ||
4415 | このロケーションではビデオ・コンテンツが表示されます。 ビデオを再生するには[再生]ボタンをクリックしてください。 | ||
4416 | </f_translation> | ||
4417 | </string><string><a_file>panel_media_remote.xml</a_file> | ||
4418 | <b_path>/media_remote/media_play_tooltip</b_path> | ||
4419 | <c_attribute></c_attribute> | ||
4420 | <d_old></d_old> | ||
4421 | <e_new> | ||
4422 | Display Web content at this location. | ||
4423 | </e_new> | ||
4424 | <f_old_trans></f_old_trans> | ||
4425 | <f_translation> | ||
4426 | このロケーションでウェブ・コンテンツを表示します。 | ||
4427 | </f_translation> | ||
4428 | </string><string><a_file>panel_preferences_audio.xml</a_file> | ||
4429 | <b_path>/Media panel/streaming_prefs_text</b_path> | ||
4430 | <c_attribute></c_attribute> | ||
4431 | <d_old></d_old> | ||
4432 | <e_new> | ||
4433 | Streaming Preferences: | ||
4434 | </e_new> | ||
4435 | <f_old_trans></f_old_trans> | ||
4436 | <f_translation> | ||
4437 | ストリーミング環境設定: | ||
4438 | </f_translation> | ||
4439 | </string><string><a_file>panel_preferences_audio.xml</a_file> | ||
4440 | <b_path>/Media panel/audio_prefs_text</b_path> | ||
4441 | <c_attribute></c_attribute> | ||
4442 | <d_old></d_old> | ||
4443 | <e_new> | ||
4444 | Audio Preferences: | ||
4445 | </e_new> | ||
4446 | <f_old_trans></f_old_trans> | ||
4447 | <f_translation> | ||
4448 | オーディオ環境設定: | ||
4449 | </f_translation> | ||
4450 | </string><string><a_file>panel_preferences_audio.xml</a_file> | ||
4451 | <b_path>/Media panel/auto_streaming_video</b_path> | ||
4452 | <c_attribute>label</c_attribute> | ||
4453 | <d_old></d_old> | ||
4454 | <e_new>Automatically play media</e_new> | ||
4455 | <f_old_trans></f_old_trans> | ||
4456 | <f_translation>メディアを自動再生</f_translation> | ||
4457 | </string><string><a_file>panel_preferences_general.xml</a_file> | ||
4458 | <b_path>/general_panel/UI Size:</b_path> | ||
4459 | <c_attribute></c_attribute> | ||
4460 | <d_old></d_old> | ||
4461 | <e_new> | ||
4462 | UI Size: | ||
4463 | </e_new> | ||
4464 | <f_old_trans></f_old_trans> | ||
4465 | <f_translation> | ||
4466 | UI サイズ: | ||
4467 | </f_translation> | ||
4468 | </string><string><a_file>panel_preferences_general.xml</a_file> | ||
4469 | <b_path>/general_panel/ui_auto_scale</b_path> | ||
4470 | <c_attribute>label</c_attribute> | ||
4471 | <d_old></d_old> | ||
4472 | <e_new>Use resolution independent scale</e_new> | ||
4473 | <f_old_trans></f_old_trans> | ||
4474 | <f_translation>解像度独立スケールを使用</f_translation> | ||
4475 | </string><string><a_file>panel_preferences_general.xml</a_file> | ||
4476 | <b_path>/general_panel/show_search_panel</b_path> | ||
4477 | <c_attribute>label</c_attribute> | ||
4478 | <d_old></d_old> | ||
4479 | <e_new>Show search panel in overlay bar</e_new> | ||
4480 | <f_old_trans></f_old_trans> | ||
4481 | <f_translation>オーバーレイ・バーに検索パネルを表示</f_translation> | ||
4482 | </string><string><a_file>panel_preferences_general.xml</a_file> | ||
4483 | <b_path>/general_panel/show_search_panel</b_path> | ||
4484 | <c_attribute>tool_tip</c_attribute> | ||
4485 | <d_old></d_old> | ||
4486 | <e_new>Display the embedded search panel.</e_new> | ||
4487 | <f_old_trans></f_old_trans> | ||
4488 | <f_translation>組み込みの検索パネルを表示します。</f_translation> | ||
4489 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4490 | <b_path>/Display panel/GraphicsPreferencesHelpButton</b_path> | ||
4491 | <c_attribute>label</c_attribute> | ||
4492 | <d_old></d_old> | ||
4493 | <e_new>?</e_new> | ||
4494 | <f_old_trans></f_old_trans> | ||
4495 | <f_translation>?</f_translation> | ||
4496 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4497 | <b_path>/Display panel/FullScreenInfo</b_path> | ||
4498 | <c_attribute></c_attribute> | ||
4499 | <d_old></d_old> | ||
4500 | <e_new> | ||
4501 | If unchecked, viewer will display full-screen when logged in. | ||
4502 | </e_new> | ||
4503 | <f_old_trans></f_old_trans> | ||
4504 | <f_translation> | ||
4505 | チェックされていない場合は、ログインするとビューワがフルスクリーンで表示されます。 | ||
4506 | </f_translation> | ||
4507 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4508 | <b_path>/Display panel/DisplayResLabel</b_path> | ||
4509 | <c_attribute></c_attribute> | ||
4510 | <d_old></d_old> | ||
4511 | <e_new> | ||
4512 | Display Resolution: | ||
4513 | </e_new> | ||
4514 | <f_old_trans></f_old_trans> | ||
4515 | <f_translation> | ||
4516 | 表示解像度: | ||
4517 | </f_translation> | ||
4518 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4519 | <b_path>/Display panel/AspectRatioLabel1</b_path> | ||
4520 | <c_attribute>tool_tip</c_attribute> | ||
4521 | <d_old></d_old> | ||
4522 | <e_new>width / height</e_new> | ||
4523 | <f_old_trans></f_old_trans> | ||
4524 | <f_translation>(幅/高さ)</f_translation> | ||
4525 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4526 | <b_path>/Display panel/AspectRatioLabel1</b_path> | ||
4527 | <c_attribute></c_attribute> | ||
4528 | <d_old></d_old> | ||
4529 | <e_new> | ||
4530 | Aspect Ratio: | ||
4531 | </e_new> | ||
4532 | <f_old_trans></f_old_trans> | ||
4533 | <f_translation> | ||
4534 | 縦横比: | ||
4535 | </f_translation> | ||
4536 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4537 | <b_path>/Display panel/aspect_ratio</b_path> | ||
4538 | <c_attribute>tool_tip</c_attribute> | ||
4539 | <d_old></d_old> | ||
4540 | <e_new>width / height</e_new> | ||
4541 | <f_old_trans></f_old_trans> | ||
4542 | <f_translation>(幅/高さ)</f_translation> | ||
4543 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4544 | <b_path>/Display panel/aspect_ratio/8:5(Widescreen)</b_path> | ||
4545 | <c_attribute></c_attribute> | ||
4546 | <d_old></d_old> | ||
4547 | <e_new> | ||
4548 | 8:5 (Widescreen) | ||
4549 | </e_new> | ||
4550 | <f_old_trans></f_old_trans> | ||
4551 | <f_translation> | ||
4552 | 8:5(ワイドスクリ-ン) | ||
4553 | </f_translation> | ||
4554 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4555 | <b_path>/Display panel/HigherText</b_path> | ||
4556 | <c_attribute></c_attribute> | ||
4557 | <d_old></d_old> | ||
4558 | <e_new> | ||
4559 | Quality and | ||
4560 | </e_new> | ||
4561 | <f_old_trans></f_old_trans> | ||
4562 | <f_translation> | ||
4563 | 品質および | ||
4564 | </f_translation> | ||
4565 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4566 | <b_path>/Display panel/QualityText</b_path> | ||
4567 | <c_attribute></c_attribute> | ||
4568 | <d_old></d_old> | ||
4569 | <e_new> | ||
4570 | Performance: | ||
4571 | </e_new> | ||
4572 | <f_old_trans></f_old_trans> | ||
4573 | <f_translation> | ||
4574 | パフォーマンス: | ||
4575 | </f_translation> | ||
4576 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4577 | <b_path>/Display panel/FasterText</b_path> | ||
4578 | <c_attribute></c_attribute> | ||
4579 | <d_old></d_old> | ||
4580 | <e_new> | ||
4581 | Faster | ||
4582 | </e_new> | ||
4583 | <f_old_trans></f_old_trans> | ||
4584 | <f_translation> | ||
4585 | 速い | ||
4586 | </f_translation> | ||
4587 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4588 | <b_path>/Display panel/ShadersPrefText</b_path> | ||
4589 | <c_attribute></c_attribute> | ||
4590 | <d_old></d_old> | ||
4591 | <e_new> | ||
4592 | Low | ||
4593 | </e_new> | ||
4594 | <f_old_trans></f_old_trans> | ||
4595 | <f_translation> | ||
4596 | 低 | ||
4597 | </f_translation> | ||
4598 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4599 | <b_path>/Display panel/ShadersPrefText2</b_path> | ||
4600 | <c_attribute></c_attribute> | ||
4601 | <d_old></d_old> | ||
4602 | <e_new> | ||
4603 | Mid | ||
4604 | </e_new> | ||
4605 | <f_old_trans></f_old_trans> | ||
4606 | <f_translation> | ||
4607 | 中 | ||
4608 | </f_translation> | ||
4609 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4610 | <b_path>/Display panel/ShadersPrefText3</b_path> | ||
4611 | <c_attribute></c_attribute> | ||
4612 | <d_old></d_old> | ||
4613 | <e_new> | ||
4614 | High | ||
4615 | </e_new> | ||
4616 | <f_old_trans></f_old_trans> | ||
4617 | <f_translation> | ||
4618 | 高 | ||
4619 | </f_translation> | ||
4620 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4621 | <b_path>/Display panel/ShadersPrefText4</b_path> | ||
4622 | <c_attribute></c_attribute> | ||
4623 | <d_old></d_old> | ||
4624 | <e_new> | ||
4625 | Ultra | ||
4626 | </e_new> | ||
4627 | <f_old_trans></f_old_trans> | ||
4628 | <f_translation> | ||
4629 | 超高 | ||
4630 | </f_translation> | ||
4631 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4632 | <b_path>/Display panel/HigherText2</b_path> | ||
4633 | <c_attribute></c_attribute> | ||
4634 | <d_old></d_old> | ||
4635 | <e_new> | ||
4636 | Higher | ||
4637 | </e_new> | ||
4638 | <f_old_trans></f_old_trans> | ||
4639 | <f_translation> | ||
4640 | 高い | ||
4641 | </f_translation> | ||
4642 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4643 | <b_path>/Display panel/QualityText2</b_path> | ||
4644 | <c_attribute></c_attribute> | ||
4645 | <d_old></d_old> | ||
4646 | <e_new> | ||
4647 | Quality | ||
4648 | </e_new> | ||
4649 | <f_old_trans></f_old_trans> | ||
4650 | <f_translation> | ||
4651 | 品質 | ||
4652 | </f_translation> | ||
4653 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4654 | <b_path>/Display panel/QualityPerformanceSelection</b_path> | ||
4655 | <c_attribute>label</c_attribute> | ||
4656 | <d_old></d_old> | ||
4657 | <e_new></e_new> | ||
4658 | <f_old_trans></f_old_trans> | ||
4659 | <f_translation></f_translation> | ||
4660 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4661 | <b_path>/Display panel/CustomSettings</b_path> | ||
4662 | <c_attribute>label</c_attribute> | ||
4663 | <d_old></d_old> | ||
4664 | <e_new>Custom</e_new> | ||
4665 | <f_old_trans></f_old_trans> | ||
4666 | <f_translation>カスタム</f_translation> | ||
4667 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4668 | <b_path>/Display panel/ShadersText</b_path> | ||
4669 | <c_attribute></c_attribute> | ||
4670 | <d_old></d_old> | ||
4671 | <e_new> | ||
4672 | Shaders: | ||
4673 | </e_new> | ||
4674 | <f_old_trans></f_old_trans> | ||
4675 | <f_translation> | ||
4676 | シェーダー: | ||
4677 | </f_translation> | ||
4678 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4679 | <b_path>/Display panel/BumpShiny</b_path> | ||
4680 | <c_attribute>label</c_attribute> | ||
4681 | <d_old></d_old> | ||
4682 | <e_new>Bump Mapping and Shiny</e_new> | ||
4683 | <f_old_trans></f_old_trans> | ||
4684 | <f_translation>バンプ・マッピングと光沢</f_translation> | ||
4685 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4686 | <b_path>/Display panel/BasicShaders</b_path> | ||
4687 | <c_attribute>label</c_attribute> | ||
4688 | <d_old></d_old> | ||
4689 | <e_new>Basic Shaders</e_new> | ||
4690 | <f_old_trans></f_old_trans> | ||
4691 | <f_translation>基本シェーダー</f_translation> | ||
4692 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4693 | <b_path>/Display panel/BasicShaders</b_path> | ||
4694 | <c_attribute>tool_tip</c_attribute> | ||
4695 | <d_old></d_old> | ||
4696 | <e_new>Disabling this option may prevent some graphics card drivers from crashing.</e_new> | ||
4697 | <f_old_trans></f_old_trans> | ||
4698 | <f_translation>このオプションを無効にするとグラフィック・カード・ドライバの種類によってはクラッシュ防止になります。</f_translation> | ||
4699 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4700 | <b_path>/Display panel/WindLightUseAtmosShaders</b_path> | ||
4701 | <c_attribute>label</c_attribute> | ||
4702 | <d_old></d_old> | ||
4703 | <e_new>Atmospheric Shaders</e_new> | ||
4704 | <f_old_trans></f_old_trans> | ||
4705 | <f_translation>周囲(大気)シェーダー</f_translation> | ||
4706 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4707 | <b_path>/Display panel/Reflections</b_path> | ||
4708 | <c_attribute>label</c_attribute> | ||
4709 | <d_old></d_old> | ||
4710 | <e_new>Water Reflections</e_new> | ||
4711 | <f_old_trans></f_old_trans> | ||
4712 | <f_translation>水の反射</f_translation> | ||
4713 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4714 | <b_path>/Display panel/ReflectionDetailText</b_path> | ||
4715 | <c_attribute></c_attribute> | ||
4716 | <d_old></d_old> | ||
4717 | <e_new> | ||
4718 | Reflection Detail: | ||
4719 | </e_new> | ||
4720 | <f_old_trans></f_old_trans> | ||
4721 | <f_translation> | ||
4722 | 反射詳細: | ||
4723 | </f_translation> | ||
4724 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4725 | <b_path>/Display panel/ReflectionDetailRadio/0</b_path> | ||
4726 | <c_attribute></c_attribute> | ||
4727 | <d_old></d_old> | ||
4728 | <e_new> | ||
4729 | Terrain and Trees | ||
4730 | </e_new> | ||
4731 | <f_old_trans></f_old_trans> | ||
4732 | <f_translation> | ||
4733 | 地形と樹木 | ||
4734 | </f_translation> | ||
4735 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4736 | <b_path>/Display panel/ReflectionDetailRadio/1</b_path> | ||
4737 | <c_attribute></c_attribute> | ||
4738 | <d_old></d_old> | ||
4739 | <e_new> | ||
4740 | All Static Objects | ||
4741 | </e_new> | ||
4742 | <f_old_trans></f_old_trans> | ||
4743 | <f_translation> | ||
4744 | すべての静的オブジェクト | ||
4745 | </f_translation> | ||
4746 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4747 | <b_path>/Display panel/ReflectionDetailRadio/2</b_path> | ||
4748 | <c_attribute></c_attribute> | ||
4749 | <d_old></d_old> | ||
4750 | <e_new> | ||
4751 | All Avatars and Objects | ||
4752 | </e_new> | ||
4753 | <f_old_trans></f_old_trans> | ||
4754 | <f_translation> | ||
4755 | すべてのアバターとオブジェクト | ||
4756 | </f_translation> | ||
4757 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4758 | <b_path>/Display panel/ReflectionDetailRadio/3</b_path> | ||
4759 | <c_attribute></c_attribute> | ||
4760 | <d_old></d_old> | ||
4761 | <e_new> | ||
4762 | Everything | ||
4763 | </e_new> | ||
4764 | <f_old_trans></f_old_trans> | ||
4765 | <f_translation> | ||
4766 | すべて | ||
4767 | </f_translation> | ||
4768 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4769 | <b_path>/Display panel/AvatarRenderingText</b_path> | ||
4770 | <c_attribute></c_attribute> | ||
4771 | <d_old></d_old> | ||
4772 | <e_new> | ||
4773 | Avatar Rendering: | ||
4774 | </e_new> | ||
4775 | <f_old_trans></f_old_trans> | ||
4776 | <f_translation> | ||
4777 | アバター・レンダリング: | ||
4778 | </f_translation> | ||
4779 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4780 | <b_path>/Display panel/AvatarImpostors</b_path> | ||
4781 | <c_attribute>label</c_attribute> | ||
4782 | <d_old></d_old> | ||
4783 | <e_new>Avatar Impostors</e_new> | ||
4784 | <f_old_trans></f_old_trans> | ||
4785 | <f_translation>アバターの精度を下げる</f_translation> | ||
4786 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4787 | <b_path>/Display panel/AvatarVertexProgram</b_path> | ||
4788 | <c_attribute>label</c_attribute> | ||
4789 | <d_old></d_old> | ||
4790 | <e_new>Hardware Skinning</e_new> | ||
4791 | <f_old_trans></f_old_trans> | ||
4792 | <f_translation>ハードウェア・スキニング</f_translation> | ||
4793 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4794 | <b_path>/Display panel/AvatarCloth</b_path> | ||
4795 | <c_attribute>label</c_attribute> | ||
4796 | <d_old></d_old> | ||
4797 | <e_new>Avatar Cloth</e_new> | ||
4798 | <f_old_trans></f_old_trans> | ||
4799 | <f_translation>アバターの服</f_translation> | ||
4800 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4801 | <b_path>/Display panel/DrawDistanceMeterText1</b_path> | ||
4802 | <c_attribute></c_attribute> | ||
4803 | <d_old></d_old> | ||
4804 | <e_new> | ||
4805 | m | ||
4806 | </e_new> | ||
4807 | <f_old_trans></f_old_trans> | ||
4808 | <f_translation> | ||
4809 | m | ||
4810 | </f_translation> | ||
4811 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4812 | <b_path>/Display panel/DrawDistanceMeterText2</b_path> | ||
4813 | <c_attribute></c_attribute> | ||
4814 | <d_old></d_old> | ||
4815 | <e_new> | ||
4816 | m | ||
4817 | </e_new> | ||
4818 | <f_old_trans></f_old_trans> | ||
4819 | <f_translation> | ||
4820 | m | ||
4821 | </f_translation> | ||
4822 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4823 | <b_path>/Display panel/DrawDistance</b_path> | ||
4824 | <c_attribute>label</c_attribute> | ||
4825 | <d_old></d_old> | ||
4826 | <e_new>Draw Distance:</e_new> | ||
4827 | <f_old_trans></f_old_trans> | ||
4828 | <f_translation>描画距離:</f_translation> | ||
4829 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4830 | <b_path>/Display panel/MaxParticleCount</b_path> | ||
4831 | <c_attribute>label</c_attribute> | ||
4832 | <d_old></d_old> | ||
4833 | <e_new>Max. Particle Count:</e_new> | ||
4834 | <f_old_trans></f_old_trans> | ||
4835 | <f_translation>最大パーティクル数:</f_translation> | ||
4836 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4837 | <b_path>/Display panel/RenderPostProcess</b_path> | ||
4838 | <c_attribute>label</c_attribute> | ||
4839 | <d_old></d_old> | ||
4840 | <e_new>Post Process Quality:</e_new> | ||
4841 | <f_old_trans></f_old_trans> | ||
4842 | <f_translation>ポストプロセス品質:</f_translation> | ||
4843 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4844 | <b_path>/Display panel/MeshDetailText</b_path> | ||
4845 | <c_attribute></c_attribute> | ||
4846 | <d_old></d_old> | ||
4847 | <e_new> | ||
4848 | Mesh Detail: | ||
4849 | </e_new> | ||
4850 | <f_old_trans></f_old_trans> | ||
4851 | <f_translation> | ||
4852 | メッシュ詳細: | ||
4853 | </f_translation> | ||
4854 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4855 | <b_path>/Display panel/ObjectMeshDetail</b_path> | ||
4856 | <c_attribute>label</c_attribute> | ||
4857 | <d_old></d_old> | ||
4858 | <e_new> Objects:</e_new> | ||
4859 | <f_old_trans></f_old_trans> | ||
4860 | <f_translation> オブジェクト:</f_translation> | ||
4861 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4862 | <b_path>/Display panel/FlexibleMeshDetail</b_path> | ||
4863 | <c_attribute>label</c_attribute> | ||
4864 | <d_old></d_old> | ||
4865 | <e_new> Flexiprims:</e_new> | ||
4866 | <f_old_trans></f_old_trans> | ||
4867 | <f_translation> フレキシプリム:</f_translation> | ||
4868 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4869 | <b_path>/Display panel/TreeMeshDetail</b_path> | ||
4870 | <c_attribute>label</c_attribute> | ||
4871 | <d_old></d_old> | ||
4872 | <e_new> Trees:</e_new> | ||
4873 | <f_old_trans></f_old_trans> | ||
4874 | <f_translation> 樹木:</f_translation> | ||
4875 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4876 | <b_path>/Display panel/AvatarMeshDetail</b_path> | ||
4877 | <c_attribute>label</c_attribute> | ||
4878 | <d_old></d_old> | ||
4879 | <e_new> Avatars:</e_new> | ||
4880 | <f_old_trans></f_old_trans> | ||
4881 | <f_translation> アバター:</f_translation> | ||
4882 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4883 | <b_path>/Display panel/TerrainMeshDetail</b_path> | ||
4884 | <c_attribute>label</c_attribute> | ||
4885 | <d_old></d_old> | ||
4886 | <e_new> Terrain:</e_new> | ||
4887 | <f_old_trans></f_old_trans> | ||
4888 | <f_translation> 地形:</f_translation> | ||
4889 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4890 | <b_path>/Display panel/SkyMeshDetail</b_path> | ||
4891 | <c_attribute>label</c_attribute> | ||
4892 | <d_old></d_old> | ||
4893 | <e_new> Sky:</e_new> | ||
4894 | <f_old_trans></f_old_trans> | ||
4895 | <f_translation> 空:</f_translation> | ||
4896 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4897 | <b_path>/Display panel/PostProcessText</b_path> | ||
4898 | <c_attribute></c_attribute> | ||
4899 | <d_old></d_old> | ||
4900 | <e_new> | ||
4901 | Low | ||
4902 | </e_new> | ||
4903 | <f_old_trans></f_old_trans> | ||
4904 | <f_translation> | ||
4905 | 低 | ||
4906 | </f_translation> | ||
4907 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4908 | <b_path>/Display panel/ObjectMeshDetailText</b_path> | ||
4909 | <c_attribute></c_attribute> | ||
4910 | <d_old></d_old> | ||
4911 | <e_new> | ||
4912 | Low | ||
4913 | </e_new> | ||
4914 | <f_old_trans></f_old_trans> | ||
4915 | <f_translation> | ||
4916 | 低 | ||
4917 | </f_translation> | ||
4918 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4919 | <b_path>/Display panel/FlexibleMeshDetailText</b_path> | ||
4920 | <c_attribute></c_attribute> | ||
4921 | <d_old></d_old> | ||
4922 | <e_new> | ||
4923 | Low | ||
4924 | </e_new> | ||
4925 | <f_old_trans></f_old_trans> | ||
4926 | <f_translation> | ||
4927 | 低 | ||
4928 | </f_translation> | ||
4929 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4930 | <b_path>/Display panel/TreeMeshDetailText</b_path> | ||
4931 | <c_attribute></c_attribute> | ||
4932 | <d_old></d_old> | ||
4933 | <e_new> | ||
4934 | Low | ||
4935 | </e_new> | ||
4936 | <f_old_trans></f_old_trans> | ||
4937 | <f_translation> | ||
4938 | 低 | ||
4939 | </f_translation> | ||
4940 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4941 | <b_path>/Display panel/AvatarMeshDetailText</b_path> | ||
4942 | <c_attribute></c_attribute> | ||
4943 | <d_old></d_old> | ||
4944 | <e_new> | ||
4945 | Low | ||
4946 | </e_new> | ||
4947 | <f_old_trans></f_old_trans> | ||
4948 | <f_translation> | ||
4949 | 低 | ||
4950 | </f_translation> | ||
4951 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4952 | <b_path>/Display panel/TerrainMeshDetailText</b_path> | ||
4953 | <c_attribute></c_attribute> | ||
4954 | <d_old></d_old> | ||
4955 | <e_new> | ||
4956 | Low | ||
4957 | </e_new> | ||
4958 | <f_old_trans></f_old_trans> | ||
4959 | <f_translation> | ||
4960 | 低 | ||
4961 | </f_translation> | ||
4962 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4963 | <b_path>/Display panel/SkyMeshDetailText</b_path> | ||
4964 | <c_attribute></c_attribute> | ||
4965 | <d_old></d_old> | ||
4966 | <e_new> | ||
4967 | Low | ||
4968 | </e_new> | ||
4969 | <f_old_trans></f_old_trans> | ||
4970 | <f_translation> | ||
4971 | 低 | ||
4972 | </f_translation> | ||
4973 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4974 | <b_path>/Display panel/LightingDetailText</b_path> | ||
4975 | <c_attribute></c_attribute> | ||
4976 | <d_old></d_old> | ||
4977 | <e_new> | ||
4978 | Lighting Detail: | ||
4979 | </e_new> | ||
4980 | <f_old_trans></f_old_trans> | ||
4981 | <f_translation> | ||
4982 | ライティング詳細: | ||
4983 | </f_translation> | ||
4984 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4985 | <b_path>/Display panel/LightingDetailRadio/SunMoon</b_path> | ||
4986 | <c_attribute></c_attribute> | ||
4987 | <d_old></d_old> | ||
4988 | <e_new> | ||
4989 | Sun and moon only | ||
4990 | </e_new> | ||
4991 | <f_old_trans></f_old_trans> | ||
4992 | <f_translation> | ||
4993 | 太陽と月のみ | ||
4994 | </f_translation> | ||
4995 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4996 | <b_path>/Display panel/LightingDetailRadio/LocalLights</b_path> | ||
4997 | <c_attribute></c_attribute> | ||
4998 | <d_old></d_old> | ||
4999 | <e_new> | ||
5000 | Nearby local lights | ||
5001 | </e_new> | ||
5002 | <f_old_trans></f_old_trans> | ||
5003 | <f_translation> | ||
5004 | 近隣のローカル・ライト | ||
5005 | </f_translation> | ||
5006 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
5007 | <b_path>/Display panel/TerrainDetailText</b_path> | ||
5008 | <c_attribute></c_attribute> | ||
5009 | <d_old></d_old> | ||
5010 | <e_new> | ||
5011 | Terrain Detail: | ||
5012 | </e_new> | ||
5013 | <f_old_trans></f_old_trans> | ||
5014 | <f_translation> | ||
5015 | 地形詳細: | ||
5016 | </f_translation> | ||
5017 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
5018 | <b_path>/Display panel/TerrainDetailRadio/0</b_path> | ||
5019 | <c_attribute></c_attribute> | ||
5020 | <d_old></d_old> | ||
5021 | <e_new> | ||
5022 | Low | ||
5023 | </e_new> | ||
5024 | <f_old_trans></f_old_trans> | ||
5025 | <f_translation> | ||
5026 | 低 | ||
5027 | </f_translation> | ||
5028 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
5029 | <b_path>/Display panel/TerrainDetailRadio/2</b_path> | ||
5030 | <c_attribute></c_attribute> | ||
5031 | <d_old></d_old> | ||
5032 | <e_new> | ||
5033 | High | ||
5034 | </e_new> | ||
5035 | <f_old_trans></f_old_trans> | ||
5036 | <f_translation> | ||
5037 | 高 | ||
5038 | </f_translation> | ||
5039 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
5040 | <b_path>/Display panel/Defaults</b_path> | ||
5041 | <c_attribute>label</c_attribute> | ||
5042 | <d_old></d_old> | ||
5043 | <e_new>Recommended Settings</e_new> | ||
5044 | <f_old_trans></f_old_trans> | ||
5045 | <f_translation>推奨された設定</f_translation> | ||
5046 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
5047 | <b_path>/Display panel/GraphicsHardwareButton</b_path> | ||
5048 | <c_attribute>label</c_attribute> | ||
5049 | <d_old></d_old> | ||
5050 | <e_new>Hardware Options</e_new> | ||
5051 | <f_old_trans></f_old_trans> | ||
5052 | <f_translation>ハードウェア・オプション</f_translation> | ||
5053 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
5054 | <b_path>/Display panel/GraphicsHardwareButton</b_path> | ||
5055 | <c_attribute>label_selected</c_attribute> | ||
5056 | <d_old></d_old> | ||
5057 | <e_new>Hardware Options</e_new> | ||
5058 | <f_old_trans></f_old_trans> | ||
5059 | <f_translation>ハードウェア・オプション</f_translation> | ||
5060 | </string><string><a_file>panel_preferences_im.xml</a_file> | ||
5061 | <b_path>/im/text_box4</b_path> | ||
5062 | <c_attribute></c_attribute> | ||
5063 | <d_old></d_old> | ||
5064 | <e_new> | ||
5065 | Logging Options: | ||
5066 | </e_new> | ||
5067 | <f_old_trans></f_old_trans> | ||
5068 | <f_translation> | ||
5069 | ログイン・オプション: | ||
5070 | </f_translation> | ||
5071 | </string><string><a_file>panel_preferences_input.xml</a_file> | ||
5072 | <b_path>/Input panel/text2</b_path> | ||
5073 | <c_attribute></c_attribute> | ||
5074 | <d_old></d_old> | ||
5075 | <e_new> | ||
5076 | Avatar Display Options: | ||
5077 | </e_new> | ||
5078 | <f_old_trans></f_old_trans> | ||
5079 | <f_translation> | ||
5080 | アバター表示オプション: | ||
5081 | </f_translation> | ||
5082 | </string><string><a_file>panel_preferences_input.xml</a_file> | ||
5083 | <b_path>/Input panel/avfp</b_path> | ||
5084 | <c_attribute>label</c_attribute> | ||
5085 | <d_old></d_old> | ||
5086 | <e_new>Show Avatar in Mouselook</e_new> | ||
5087 | <f_old_trans></f_old_trans> | ||
5088 | <f_translation>アバターをマウスルックで表示</f_translation> | ||
5089 | </string><string><a_file>panel_preferences_voice.xml</a_file> | ||
5090 | <b_path>/chat/device_settings_text</b_path> | ||
5091 | <c_attribute></c_attribute> | ||
5092 | <d_old></d_old> | ||
5093 | <e_new> | ||
5094 | NOTE: Running the Device Settings or Voice Chat Setup will temporarily disconnect you from Voice Chat. | ||
5095 | </e_new> | ||
5096 | <f_old_trans></f_old_trans> | ||
5097 | <f_translation> | ||
5098 | メモ: 「機器の設定」または「ボイス・チャットの設定」を実行すると、一時的にボイス・チャットから切断されます。 | ||
5099 | </f_translation> | ||
5100 | </string><string><a_file>panel_preferences_web.xml</a_file> | ||
5101 | <b_path>/web/use_external_browser</b_path> | ||
5102 | <c_attribute>tool_tip</c_attribute> | ||
5103 | <d_old></d_old> | ||
5104 | <e_new>Use outside web browser for help, web links, etc. Not recommended if running full screen.</e_new> | ||
5105 | <f_old_trans></f_old_trans> | ||
5106 | <f_translation>ヘルプ、Webリンクなどのために、外部Webブラウザを使用します。フル画面で実行している場合には推奨できません。</f_translation> | ||
5107 | </string><string><a_file>panel_preferences_web.xml</a_file> | ||
5108 | <b_path>/web/use_external_browser/external</b_path> | ||
5109 | <c_attribute></c_attribute> | ||
5110 | <d_old></d_old> | ||
5111 | <e_new> | ||
5112 | Use external web browser (Firefox, Safari, Internet Explorer) | ||
5113 | </e_new> | ||
5114 | <f_old_trans></f_old_trans> | ||
5115 | <f_translation> | ||
5116 | 外部のウェブ・ブラウザー (Firefox, Safari, Internet Explorer) を使用 | ||
5117 | </f_translation> | ||
5118 | </string><string><a_file>panel_preferences_web.xml</a_file> | ||
5119 | <b_path>/web/use_external_browser/internal</b_path> | ||
5120 | <c_attribute></c_attribute> | ||
5121 | <d_old></d_old> | ||
5122 | <e_new> | ||
5123 | Use built-in web browser | ||
5124 | </e_new> | ||
5125 | <f_old_trans></f_old_trans> | ||
5126 | <f_translation> | ||
5127 | 内蔵のウェブ・ブラウザーを使用 | ||
5128 | </f_translation> | ||
5129 | </string><string><a_file>panel_region_estate.xml</a_file> | ||
5130 | <b_path>/Estate/abuse_email_address_help</b_path> | ||
5131 | <c_attribute>label</c_attribute> | ||
5132 | <d_old></d_old> | ||
5133 | <e_new>?</e_new> | ||
5134 | <f_old_trans></f_old_trans> | ||
5135 | <f_translation>?</f_translation> | ||
5136 | </string><string><a_file>panel_voice_options.xml</a_file> | ||
5137 | <b_path>/content_panel/friends_only_check</b_path> | ||
5138 | <c_attribute>label</c_attribute> | ||
5139 | <d_old></d_old> | ||
5140 | <e_new>Only allow Friends to initiate Voice Calls with me</e_new> | ||
5141 | <f_old_trans></f_old_trans> | ||
5142 | <f_translation>自分とのボイスチャットは、フレンドのみが開始できるようにする</f_translation> | ||
350 | </string><string><a_file>panel_voice_remote_expanded.xml</a_file> | 5143 | </string><string><a_file>panel_voice_remote_expanded.xml</a_file> |
351 | <b_path>/voice_remote/voice_channel_bg</b_path> | 5144 | <b_path>/voice_remote/voice_channel_bg</b_path> |
352 | <c_attribute>label</c_attribute> | 5145 | <c_attribute>label</c_attribute> |
diff --git a/linden/indra/newview/skins/xui/ja/need_to_update.xml b/linden/indra/newview/skins/xui/ja/need_to_update.xml index 99df7a5..6ba0bbd 100644 --- a/linden/indra/newview/skins/xui/ja/need_to_update.xml +++ b/linden/indra/newview/skins/xui/ja/need_to_update.xml | |||
@@ -2,125 +2,90 @@ | |||
2 | 2 | ||
3 | <strings> | 3 | <strings> |
4 | <string><a_file>alerts.xml</a_file> | 4 | <string><a_file>alerts.xml</a_file> |
5 | <b_path>//ErrorEncodingSnapshot/message</b_path> | 5 | <b_path>//DisplaySettingsNoShaders/message</b_path> |
6 | <c_attribute></c_attribute> | 6 | <c_attribute></c_attribute> |
7 | <d_old> | 7 | <d_old> |
8 | Error encoding snapshot. | 8 | [SECOND_LIFE] crashed while initializing graphics drivers. |
9 | Shaders will be disabled in order to avoid some common driver errors. | ||
10 | This will disable some graphics features. | ||
11 | We recommend updating your graphics card drivers. | ||
12 | Shaders can be re-enabled in Preferences > Graphics Detail. | ||
9 | </d_old> | 13 | </d_old> |
10 | <e_new> | 14 | <e_new> |
11 | Error encoding snapshot! | 15 | [SECOND_LIFE] crashed while initializing graphics drivers. |
16 | Graphics Quality will be set to low to avoid some common driver errors. | ||
17 | This will disable some graphics features. | ||
18 | We recommend updating your graphics card drivers. | ||
19 | Graphics Quality can be raised in Preferences > Graphics. | ||
12 | </e_new> | 20 | </e_new> |
13 | <f_translation> | 21 | <f_translation> |
14 | スナップショットのエンコード化でエラーが出ました! | 22 | [SECOND_LIFE] は、グラフィック・ドライバの初期化中にクラッシュしました。 |
23 | 一般的なドライバ・エラーを回避するため、[グラフィックの品質]は[低]に設定されます。 | ||
24 | これにより、いくつかのグラフィックス機能は無効になります。 | ||
25 | グラフィックカード・ドライバのアップデートをお勧めします。 | ||
26 | [グラフィックの品質]は[環境設定]>[グラフィック]から上げることができます。 | ||
15 | </f_translation> | 27 | </f_translation> |
16 | <f_old_trans> | 28 | <f_old_trans> |
17 | スナップショットのエンコード化でエラーが出ました! | 29 | [SECOND_LIFE] は、グラフィックドライバの初期化中にクラッシュしました。 |
30 | 一般的なドライバのエラーを避けるため、シェーダー (色合い) は無効化されます。 | ||
31 | これにより、いくつかのグラフィックフィーチャーは無効になります。 | ||
32 | グラフィックカード・ドライバのアップデートをお勧めします。 | ||
33 | シェーダーは、設定>グラフィック詳細で有効に設定し直すことができます。 | ||
18 | </f_old_trans> | 34 | </f_old_trans> |
19 | </string><string><a_file>alerts.xml</a_file> | 35 | </string><string><a_file>alerts.xml</a_file> |
20 | <b_path>//AddClassified/message</b_path> | 36 | <b_path>//HelpEstateAllowResident/message</b_path> |
21 | <c_attribute></c_attribute> | 37 | <c_attribute></c_attribute> |
22 | <d_old> | 38 | <d_old> |
23 | Classified ads appear in the 'Classified' section of the | 39 | Access to this estate will be limited to Residents |
24 | Search directory and on www.secondlife.com for one week. | 40 | listed here and any groups below. This setting is |
25 | Fill out your ad, then click 'Publish...' to add it to the | 41 | only available when Visible from Mainland is |
26 | directory. | 42 | unchecked. |
27 | You'll be asked for a price to pay when clicking Publish. | ||
28 | Paying more makes your ad appear higher in the list, and | ||
29 | also appear higher when people search for keywords. | ||
30 | </d_old> | 43 | </d_old> |
31 | <e_new> | 44 | <e_new> |
32 | Classified ads appear in the 'Classified' section of the | 45 | Access to this estate will be limited to Residents |
33 | Find directory for one week. | 46 | listed here and any groups below. This setting is |
34 | Fill out your ad, then click 'Publish...' to add it to the | 47 | only available when Public Access is |
35 | directory. | 48 | unchecked. |
36 | You'll be asked for a price to pay when clicking Publish. | ||
37 | Paying more makes your ad appear higher in the list, and | ||
38 | also appear higher when people search for keywords. | ||
39 | </e_new> | 49 | </e_new> |
40 | <f_translation> | 50 | <f_translation> |
41 | 検索ディレクトリの「クラシファイド」セクションに、 | 51 | この不動産へのアクセスは、ここに登録されている住人と |
42 | クラシファイド広告が1週間掲載されます。 | 52 | 下記で特別に登録されたグループのみに許可されます。 この設定は |
43 | 広告を記入後、[公開]をクリックし、ディレクトリに | 53 | [パブリック・アクセス]がオフになってるときのみ、 |
44 | 追加します。 | 54 | 使用可能です。 |
45 | [公開]をクリックすると、支払金額を尋ねられます。 | ||
46 | 多く払うほど、広告がクラシファイド・リストとキーワード検索 | ||
47 | の上位に表示されます。 | ||
48 | </f_translation> | 55 | </f_translation> |
49 | <f_old_trans> | 56 | <f_old_trans> |
50 | 検索ディレクトリの「クラシファイド」セクションに、 | 57 | この不動産へのアクセスは、ここに登録されている住人と |
51 | クラシファイド広告が1週間掲載されます。 | 58 | 下記で特別に登録されたグループのみに許可されます。この設定は、 |
52 | 広告を記入後、[公開]をクリックし、ディレクトリに | 59 | 「メインランドからここが見える」がチェックされていない場合のみ、 |
53 | 追加します。 | 60 | 利用できます。 |
54 | [公開]をクリックすると、支払金額を尋ねられます。 | ||
55 | 多く払うほど、広告がクラシファイド・リストとキーワード検索 | ||
56 | の上位に表示されます。 | ||
57 | </f_old_trans> | 61 | </f_old_trans> |
58 | </string><string><a_file>floater_about_land.xml</a_file> | 62 | </string><string><a_file>alerts.xml</a_file> |
59 | <b_path>/floaterland/landtab/land_objects_panel</b_path> | 63 | <b_path>//HelpEstateAllowGroup/message</b_path> |
60 | <c_attribute></c_attribute> | 64 | <c_attribute></c_attribute> |
61 | <d_old></d_old> | 65 | <d_old> |
66 | Access to this estate will be limited to groups | ||
67 | listed here and any Residents above. This setting is | ||
68 | only available when Visible from Mainland is | ||
69 | unchecked. | ||
70 | </d_old> | ||
62 | <e_new> | 71 | <e_new> |
63 | 72 | Access to this estate will be limited to groups | |
64 | 73 | listed here and any Residents above. This setting is | |
65 | 74 | only available when Public Access is | |
66 | 75 | unchecked. | |
67 | |||
68 | |||
69 | |||
70 | |||
71 | |||
72 | |||
73 | |||
74 | |||
75 | |||
76 | |||
77 | |||
78 | |||
79 | |||
80 | |||
81 | |||
82 | |||
83 | |||
84 | |||
85 | |||
86 | |||
87 | |||
88 | |||
89 | |||
90 | |||
91 | /> | ||
92 | </e_new> | 76 | </e_new> |
93 | <f_translation> | 77 | <f_translation> |
94 | 78 | この不動産へのアクセスは、ここに登録されているグループと | |
95 | 79 | 下記で特別に登録された住人のみに許可されます。 この設定は | |
96 | 80 | [パブリック・アクセス]がオフになってるときのみ、 | |
97 | 81 | 使用可能です。 | |
98 | |||
99 | |||
100 | |||
101 | |||
102 | |||
103 | |||
104 | |||
105 | |||
106 | |||
107 | |||
108 | |||
109 | |||
110 | |||
111 | |||
112 | |||
113 | |||
114 | |||
115 | |||
116 | |||
117 | |||
118 | |||
119 | |||
120 | |||
121 | |||
122 | /> | ||
123 | </f_translation> | 82 | </f_translation> |
83 | <f_old_trans> | ||
84 | この不動産へのアクセスは、ここに登録されているグループと | ||
85 | 下記で特別に登録された住人のみに許可されます。この設定は、 | ||
86 | 「メインランドからここが見える」がチェックされていない場合のみ、 | ||
87 | 利用できます。 | ||
88 | </f_old_trans> | ||
124 | </string><string><a_file>floater_about_land.xml</a_file> | 89 | </string><string><a_file>floater_about_land.xml</a_file> |
125 | <b_path>/floaterland/landtab/land_media_panel/Media texture:</b_path> | 90 | <b_path>/floaterland/landtab/land_media_panel/Media texture:</b_path> |
126 | <c_attribute></c_attribute> | 91 | <c_attribute></c_attribute> |
@@ -129,135 +94,414 @@ also appear higher when people search for keywords. | |||
129 | texture: | 94 | texture: |
130 | </d_old> | 95 | </d_old> |
131 | <e_new> | 96 | <e_new> |
132 | Sound | 97 | Replace |
133 | Settings: | 98 | Texture: |
134 | </e_new> | 99 | </e_new> |
135 | <f_translation> | 100 | <f_translation> |
136 | サウンド | 101 | 置換 |
137 | 設: | 102 | テクスチャー |
138 | </f_translation> | 103 | </f_translation> |
139 | <f_old_trans> | 104 | <f_old_trans> |
140 | サウンド | 105 | サウンド |
141 | 設定: | 106 | 設定: |
142 | </f_old_trans> | 107 | </f_old_trans> |
143 | </string><string><a_file>floater_about_land.xml</a_file> | 108 | </string><string><a_file>floater_about_land.xml</a_file> |
144 | <b_path>/floaterland/landtab/land_access_panel/AccessCheck</b_path> | 109 | <b_path>/floaterland/landtab/land_media_panel/media_auto_scale</b_path> |
145 | <c_attribute>label</c_attribute> | 110 | <c_attribute>label</c_attribute> |
146 | <d_old>Always Allow</d_old> | 111 | <d_old>Auto scale content (slower and reduced visual quality)</d_old> |
147 | <e_new>Ban</e_new> | 112 | <e_new>Auto scale</e_new> |
148 | <f_translation>禁</f_translation> | 113 | <f_translation>スケールを自動定</f_translation> |
149 | <f_old_trans>禁止</f_old_trans> | 114 | <f_old_trans>コンテンツのスケールを自動設定(描速画質が低下します)</f_old_trans> |
150 | </string><string><a_file>floater_about_land.xml</a_file> | 115 | </string><string><a_file>floater_about_land.xml</a_file> |
151 | <b_path>/floaterland/landtab/land_access_panel/AccessCheck</b_path> | 116 | <b_path>/floaterland/landtab/land_media_panel/Voice settings:</b_path> |
152 | <c_attribute></c_attribute> | 117 | <c_attribute></c_attribute> |
153 | <d_old> | 118 | <d_old> |
154 | Allowed Residents | 119 | Voice |
120 | Settings: | ||
155 | </d_old> | 121 | </d_old> |
156 | <e_new> | 122 | <e_new> |
157 | Banned Residents | 123 | Voice: |
158 | </e_new> | 124 | </e_new> |
159 | <f_translation> | 125 | <f_translation> |
160 | 禁止住人 | 126 | : |
161 | </f_translation> | 127 | </f_translation> |
162 | <f_old_trans> | 128 | <f_old_trans> |
163 | 禁止された住人 | 129 | ボイス |
130 | 設定: | ||
164 | </f_old_trans> | 131 | </f_old_trans> |
165 | </string><string><a_file>panel_audio_device.xml</a_file> | 132 | </string><string><a_file>floater_buy_object.xml</a_file> |
166 | <b_path>/device_settings/Input device (microphone):</b_path> | 133 | <b_path>/contents/title_buy_text</b_path> |
167 | <c_attribute></c_attribute> | 134 | <c_attribute></c_attribute> |
168 | <d_old> | 135 | <d_old> |
169 | Audio Devices | 136 | Buy [NAME] |
137 | </d_old> | ||
138 | <e_new> | ||
139 | Buy | ||
140 | </e_new> | ||
141 | <f_translation> | ||
142 | 購入 | ||
143 | </f_translation> | ||
144 | <f_old_trans> | ||
145 | [NAME]を買う | ||
146 | </f_old_trans> | ||
147 | </string><string><a_file>floater_chat_history.xml</a_file> | ||
148 | <b_path>/chat floater</b_path> | ||
149 | <c_attribute>title</c_attribute> | ||
150 | <d_old>Local Chat</d_old> | ||
151 | <e_new>Local Chat (history)</e_new> | ||
152 | <f_translation>ローカル・チャット (履歴)</f_translation> | ||
153 | <f_old_trans>チャット履歴</f_old_trans> | ||
154 | </string><string><a_file>floater_critical.xml</a_file> | ||
155 | <b_path>/modal container</b_path> | ||
156 | <c_attribute>title</c_attribute> | ||
157 | <d_old> </d_old> | ||
158 | <e_new></e_new> | ||
159 | <f_translation></f_translation> | ||
160 | <f_old_trans> </f_old_trans> | ||
161 | </string><string><a_file>floater_new_outfit_dialog.xml</a_file> | ||
162 | <b_path>/modal container</b_path> | ||
163 | <c_attribute>title</c_attribute> | ||
164 | <d_old> </d_old> | ||
165 | <e_new></e_new> | ||
166 | <f_translation></f_translation> | ||
167 | <f_old_trans> </f_old_trans> | ||
168 | </string><string><a_file>floater_select_key.xml</a_file> | ||
169 | <b_path>/modal container</b_path> | ||
170 | <c_attribute>title</c_attribute> | ||
171 | <d_old> </d_old> | ||
172 | <e_new></e_new> | ||
173 | <f_translation></f_translation> | ||
174 | </string><string><a_file>floater_snapshot.xml</a_file> | ||
175 | <b_path>/Snapshot/file_size_label</b_path> | ||
176 | <c_attribute></c_attribute> | ||
177 | <d_old> | ||
178 | File size: [SIZE] bytes | ||
179 | </d_old> | ||
180 | <e_new> | ||
181 | File size: [SIZE] KB | ||
182 | </e_new> | ||
183 | <f_translation> | ||
184 | ファイル・サイズ: [SIZE] KB | ||
185 | </f_translation> | ||
186 | <f_old_trans> | ||
187 | ファイル サイズ:[SIZE]バイト | ||
188 | </f_old_trans> | ||
189 | </string><string><a_file>floater_snapshot.xml</a_file> | ||
190 | <b_path>/Snapshot/new_snapshot_btn</b_path> | ||
191 | <c_attribute>label</c_attribute> | ||
192 | <d_old>New Snapshot</d_old> | ||
193 | <e_new>Refresh Snapshot</e_new> | ||
194 | <f_translation>スナップショットを更新</f_translation> | ||
195 | <f_old_trans>新しいスナップショット</f_old_trans> | ||
196 | </string><string><a_file>floater_snapshot.xml</a_file> | ||
197 | <b_path>/Snapshot/discard_btn</b_path> | ||
198 | <c_attribute>label</c_attribute> | ||
199 | <d_old>Discard</d_old> | ||
200 | <e_new>Cancel</e_new> | ||
201 | <f_translation>キャンセル</f_translation> | ||
202 | <f_old_trans>破棄</f_old_trans> | ||
203 | </string><string><a_file>floater_snapshot.xml</a_file> | ||
204 | <b_path>/Snapshot/keep_aspect_check</b_path> | ||
205 | <c_attribute>label</c_attribute> | ||
206 | <d_old>Keep specified aspect ratio</d_old> | ||
207 | <e_new>Constrain Proportions</e_new> | ||
208 | <f_translation>比率の制限</f_translation> | ||
209 | <f_old_trans>指定の縦横比を保持</f_old_trans> | ||
210 | </string><string><a_file>floater_test.xml</a_file> | ||
211 | <b_path>/Test</b_path> | ||
212 | <c_attribute>title</c_attribute> | ||
213 | <d_old>Choose Resident</d_old> | ||
214 | <e_new>Test</e_new> | ||
215 | <f_translation>テスト</f_translation> | ||
216 | <f_old_trans>住人を選択</f_old_trans> | ||
217 | </string><string><a_file>floater_tos.xml</a_file> | ||
218 | <b_path>/modal container</b_path> | ||
219 | <c_attribute>title</c_attribute> | ||
220 | <d_old> </d_old> | ||
221 | <e_new></e_new> | ||
222 | <f_translation></f_translation> | ||
223 | <f_old_trans> </f_old_trans> | ||
224 | </string><string><a_file>floater_wearable_save_as.xml</a_file> | ||
225 | <b_path>/modal container</b_path> | ||
226 | <c_attribute>title</c_attribute> | ||
227 | <d_old> </d_old> | ||
228 | <e_new></e_new> | ||
229 | <f_translation></f_translation> | ||
230 | <f_old_trans> </f_old_trans> | ||
231 | </string><string><a_file>floater_world_map.xml</a_file> | ||
232 | <b_path>/worldmap/infohub_chk</b_path> | ||
233 | <c_attribute>label</c_attribute> | ||
234 | <d_old> </d_old> | ||
235 | <e_new></e_new> | ||
236 | <f_translation></f_translation> | ||
237 | <f_old_trans> </f_old_trans> | ||
238 | </string><string><a_file>floater_world_map.xml</a_file> | ||
239 | <b_path>/worldmap/telehubchk</b_path> | ||
240 | <c_attribute>label</c_attribute> | ||
241 | <d_old> </d_old> | ||
242 | <e_new></e_new> | ||
243 | <f_translation></f_translation> | ||
244 | <f_old_trans> </f_old_trans> | ||
245 | </string><string><a_file>floater_world_map.xml</a_file> | ||
246 | <b_path>/worldmap/popular_chk</b_path> | ||
247 | <c_attribute>label</c_attribute> | ||
248 | <d_old> </d_old> | ||
249 | <e_new></e_new> | ||
250 | <f_translation></f_translation> | ||
251 | <f_old_trans> </f_old_trans> | ||
252 | </string><string><a_file>floater_world_map.xml</a_file> | ||
253 | <b_path>/worldmap/land_for_sale_chk</b_path> | ||
254 | <c_attribute>label</c_attribute> | ||
255 | <d_old> </d_old> | ||
256 | <e_new></e_new> | ||
257 | <f_translation></f_translation> | ||
258 | <f_old_trans> </f_old_trans> | ||
259 | </string><string><a_file>floater_world_map.xml</a_file> | ||
260 | <b_path>/worldmap/event_chk</b_path> | ||
261 | <c_attribute>label</c_attribute> | ||
262 | <d_old> </d_old> | ||
263 | <e_new></e_new> | ||
264 | <f_translation></f_translation> | ||
265 | <f_old_trans> </f_old_trans> | ||
266 | </string><string><a_file>floater_world_map.xml</a_file> | ||
267 | <b_path>/worldmap/event_mature_chk</b_path> | ||
268 | <c_attribute>label</c_attribute> | ||
269 | <d_old> </d_old> | ||
270 | <e_new></e_new> | ||
271 | <f_translation></f_translation> | ||
272 | <f_old_trans> </f_old_trans> | ||
273 | </string><string><a_file>menu_viewer.xml</a_file> | ||
274 | <b_path>/Main Menu/View/Chat History</b_path> | ||
275 | <c_attribute>label</c_attribute> | ||
276 | <d_old>Chat History</d_old> | ||
277 | <e_new>Local Chat</e_new> | ||
278 | <f_translation>ローカル・チャット</f_translation> | ||
279 | <f_old_trans>チャット履歴</f_old_trans> | ||
280 | </string><string><a_file>menu_viewer.xml</a_file> | ||
281 | <b_path>/Main Menu/View/Instant Message</b_path> | ||
282 | <c_attribute>label</c_attribute> | ||
283 | <d_old>Instant Message</d_old> | ||
284 | <e_new>Communicate</e_new> | ||
285 | <f_translation>コミュニケーション</f_translation> | ||
286 | <f_old_trans>インスタント・メッセージ</f_old_trans> | ||
287 | </string><string><a_file>notify.xml</a_file> | ||
288 | <b_path>//FirstDebugMenus/message</b_path> | ||
289 | <c_attribute></c_attribute> | ||
290 | <d_old> | ||
291 | You have enabled the Client and Server debugging menus. | ||
292 | These menus contain features useful for developers debugging Second Life. | ||
293 | To toggle these menus on and off press Ctrl-Alt-D. On a Mac press Cmd-Opt-Shift-D. | ||
170 | </d_old> | 294 | </d_old> |
171 | <e_new> | 295 | <e_new> |
172 | Input device (microphone): | 296 | You have enabled the Advanced menu. |
297 | This menu contains features useful for developers debugging Second Life. | ||
298 | To toggle this menu on Windows press Ctrl-Alt-D. On Mac press Cmd-Opt-Shift-D. | ||
173 | </e_new> | 299 | </e_new> |
174 | <f_translation> | 300 | <f_translation> |
175 | 入力機器 (マイクロフォン): | 301 | 高度な設定を有効にしました。 |
302 | このメニューには、Second Life をデバッグするデベロッパーにとって有用な機能があります。 | ||
303 | このメニューを切り替えるには、Windows では Ctrl-Alt-Dを押します。Macの場合は、Cmd-Opt-Shift-Dを押してください。. | ||
176 | </f_translation> | 304 | </f_translation> |
177 | <f_old_trans> | 305 | <f_old_trans> |
178 | 入力レベル | 306 | クライアントとサーバーのデバッグメニューを有効にしました。 |
179 | </f_old_trans> | 307 | これらのメニューには、Second Lifeをデバッグするデベロッパーにとって有用な機能があります。 |
180 | </string><string><a_file>panel_audio_device.xml</a_file> | 308 | これらのメニューのオンとオフを切り替えるには、Ctrl-Alt-Dを押します。Macの場合は、Cmd-Opt-Shift-Dを押してください。. |
181 | <b_path>/device_settings/Input device (microphone):</b_path> | 309 | </f_old_trans> |
310 | </string><string><a_file>notify.xml</a_file> | ||
311 | <b_path>//FirstSculptedPrim/message</b_path> | ||
182 | <c_attribute></c_attribute> | 312 | <c_attribute></c_attribute> |
183 | <d_old> | 313 | <d_old> |
184 | Audio Devices | 314 | You are editing a sculpted prim. |
315 | Sculpted prims require a special texture to specify their shape. | ||
316 | You can find example sculpted textures in the system library. | ||
185 | </d_old> | 317 | </d_old> |
186 | <e_new> | 318 | <e_new> |
187 | Input Level | 319 | You are editing a sculpted prim. |
320 | Sculpted prims require a special texture to specify their shape. | ||
321 | You can find example sculpted textures in the inventory library. | ||
188 | </e_new> | 322 | </e_new> |
189 | <f_translation> | 323 | <f_translation> |
190 | 入力レベル | 324 | 変形されたプリムを編集しています。 |
325 | 変形されたプリムは、形状を指定するための特別なテクスチャーが必要です。 | ||
326 | 持ち物ライブラリで、変形されたテクスチャーのサンプルを参照できます。 | ||
191 | </f_translation> | 327 | </f_translation> |
192 | <f_old_trans> | 328 | <f_old_trans> |
329 | 変形されたプリムを編集しています。 | ||
330 | 変形されたプリムは、形状を指定するための特別なテクスチャが必要です。 | ||
331 | システムライブラリで、変形されたテクスチャのサンプルを参照できます。 | ||
332 | </f_old_trans> | ||
333 | </string><string><a_file>panel_audio_device.xml</a_file> | ||
334 | <b_path>/device_settings/Input device (microphone):</b_path> | ||
335 | <c_attribute></c_attribute> | ||
336 | <d_old> | ||
337 | Audio Devices | ||
338 | </d_old> | ||
339 | <e_new> | ||
340 | Input device (microphone): | ||
341 | </e_new> | ||
342 | <f_translation> | ||
343 | 入力機器(マイクロフォン): | ||
344 | </f_translation> | ||
345 | <f_old_trans> | ||
193 | 入力レベル | 346 | 入力レベル |
194 | </f_old_trans> | 347 | </f_old_trans> |
195 | </string><string><a_file>panel_login.xml</a_file> | 348 | </string><string><a_file>panel_avatar.xml</a_file> |
196 | <b_path>/panel_login/real_url</b_path> | 349 | <b_path>/Panel Avatar/ShowOnMapFriendOffline</b_path> |
197 | <c_attribute></c_attribute> | 350 | <c_attribute></c_attribute> |
198 | <d_old> | 351 | <d_old> |
199 | https://secondlife.com/app/login/?show_login_form=True | 352 | Show location on the map. |
353 | Disabled because they are not online. | ||
200 | </d_old> | 354 | </d_old> |
201 | <e_new> | 355 | <e_new> |
202 | http://secondlife.com/app/login/ | 356 | Show location on the map. |
357 | Disabled because they are not online. | ||
203 | </e_new> | 358 | </e_new> |
204 | <f_translation> | 359 | <f_translation> |
205 | http://secondlife.com/app/login/ | 360 | 地図上でロケーションを表示します。 |
361 | 相手がオンラインではないため、表示できません。 | ||
206 | </f_translation> | 362 | </f_translation> |
207 | <f_old_trans> | 363 | <f_old_trans> |
208 | https://secondlife.com/app/login/?show_login_form=True | 364 | 地図上でロケーションを表示します。 |
365 | 相手がオンラインではないため、表示できません。 | ||
209 | </f_old_trans> | 366 | </f_old_trans> |
210 | </string><string><a_file>panel_preferences_audio.xml</a_file> | 367 | </string><string><a_file>panel_group_general.xml</a_file> |
211 | <b_path>/Media panel/doppler_effect_text</b_path> | 368 | <b_path>/general_tab/confirm_group_create_str</b_path> |
212 | <c_attribute></c_attribute> | 369 | <c_attribute></c_attribute> |
213 | <d_old> | 370 | <d_old> |
214 | Streaming Preferences: | 371 | Creating this group will cost L$100. |
372 | Are you really, really, REALLY sure you want to spend L$100 to create this group? | ||
215 | </d_old> | 373 | </d_old> |
216 | <e_new> | 374 | <e_new> |
217 | Audio Preferences: | 375 | Creating this group will cost L$100. |
376 | Are you really, really, REALLY sure you want to spend L$100 to create this group? | ||
377 | Be aware that if nobody else joins this group within 48 hours, it will be disbanded and the group's name will be unavailable for future use. | ||
218 | </e_new> | 378 | </e_new> |
219 | <f_translation> | 379 | <f_translation> |
220 | オーディオ環境設定: | 380 | このグループの作成にはL$100かかります。 |
381 | このグループの作成にL$100ものお金をかけてもかまいませんか? 慎重に判断してください。 | ||
382 | 48 時間以内に誰もこのグループに参加しなかった場合、グループは解体され、グループの名前は今後使用できなくなります。 | ||
221 | </f_translation> | 383 | </f_translation> |
222 | <f_old_trans> | 384 | <f_old_trans> |
223 | オーディオ環境設定: | 385 | このグループの作成にはL$100かかります。 |
386 | このグループの作成にL$100ものお金をかけてもかまいませんか? 慎重に判断してください。 | ||
224 | </f_old_trans> | 387 | </f_old_trans> |
225 | </string><string><a_file>panel_preferences_im.xml</a_file> | 388 | </string><string><a_file>panel_group_roles.xml</a_file> |
226 | <b_path>/im/text_box3</b_path> | 389 | <b_path>/roles_tab/roles_tab_container/members_sub_tab/help_text</b_path> |
390 | <c_attribute></c_attribute> | ||
391 | <d_old> | ||
392 | You can add or remove Roles assigned to Members. | ||
393 | Select multiple Members by holding the Ctrl key and | ||
394 | clicking on their names. | ||
395 | </d_old> | ||
396 | <e_new> | ||
397 | You can add or remove Roles assigned to Members. | ||
398 | Select multiple Members by holding the Ctrl key and | ||
399 | clicking on their names. | ||
400 | </e_new> | ||
401 | <f_translation> | ||
402 | あなたはメンバーに割り当てられた役割を付加、削除できます。 | ||
403 | Ctrl キーを押しながらメンバー名をクリックすると | ||
404 | 複数の人を選択できます。 | ||
405 | </f_translation> | ||
406 | <f_old_trans> | ||
407 | あなたはメンバーに割り当てられた役割を付加、削除できます。 | ||
408 | Ctrlキーを押しながらメンバー名をクリックすると | ||
409 | 複数の人を選択できます。 | ||
410 | </f_old_trans> | ||
411 | </string><string><a_file>panel_land_covenant.xml</a_file> | ||
412 | <b_path>/Covenant/can_resell</b_path> | ||
227 | <c_attribute></c_attribute> | 413 | <c_attribute></c_attribute> |
228 | <d_old> | 414 | <d_old> |
229 | Busy Mode Response: | 415 | Purchased land in this region may be resold. |
230 | </d_old> | 416 | </d_old> |
231 | <e_new> | 417 | <e_new> |
232 | Logging Options: | 418 | string land in this region may be resold. |
233 | </e_new> | 419 | </e_new> |
234 | <f_translation> | 420 | <f_translation> |
235 | : | 421 | 域続土地、再販ます。 |
236 | </f_translation> | 422 | </f_translation> |
237 | <f_old_trans> | 423 | <f_old_trans> |
238 | : | 424 | 域入土地再販ます。 |
239 | </f_old_trans> | 425 | </f_old_trans> |
240 | </string><string><a_file>panel_preferences_voice.xml</a_file> | 426 | </string><string><a_file>panel_media_controls.xml</a_file> |
241 | <b_path>/chat/voice_chat_description</b_path> | 427 | <b_path>/media_controls/media_play</b_path> |
428 | <c_attribute>tool_tip</c_attribute> | ||
429 | <d_old>Play/pause streaming movies</d_old> | ||
430 | <e_new>Play/pause streaming music</e_new> | ||
431 | <f_translation>ストリーミング・ミュージックの再生/一時停止</f_translation> | ||
432 | <f_old_trans>ストリーミング・ムービーの再生/一時停止</f_old_trans> | ||
433 | </string><string><a_file>panel_preferences_audio.xml</a_file> | ||
434 | <b_path>/Media panel/streaming_video</b_path> | ||
435 | <c_attribute>label</c_attribute> | ||
436 | <d_old>Play Streaming Video When Available (uses more bandwidth)</d_old> | ||
437 | <e_new>Play Streaming Media When Available (uses more bandwidth)</e_new> | ||
438 | <f_translation>ストリーミング・メディアが使用可能なら再生(帯域幅の消費増)</f_translation> | ||
439 | <f_old_trans>動画がある場合再生する(通信が重くなる)</f_old_trans> | ||
440 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
441 | <b_path>/Display panel/windowed mode</b_path> | ||
442 | <c_attribute>label</c_attribute> | ||
443 | <d_old>Run in a window</d_old> | ||
444 | <e_new>Run Second Life in a window</e_new> | ||
445 | <f_translation>ウィンドウ内で Second Life を起動</f_translation> | ||
446 | <f_old_trans>ウィンドウ内で実行</f_old_trans> | ||
447 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
448 | <b_path>/Display panel/aspect_auto_detect</b_path> | ||
449 | <c_attribute>label</c_attribute> | ||
450 | <d_old>Auto detect</d_old> | ||
451 | <e_new>Auto-detect ratio</e_new> | ||
452 | <f_translation>自動検出率</f_translation> | ||
453 | <f_old_trans>自動検出</f_old_trans> | ||
454 | </string><string><a_file>panel_voice_enable.xml</a_file> | ||
455 | <b_path>/content_panel/voice_intro_text2</b_path> | ||
242 | <c_attribute></c_attribute> | 456 | <c_attribute></c_attribute> |
243 | <d_old> | 457 | <d_old> |
244 | Push-to-Talk mode lets you control when your voice is transmitted. When in toggle mode, press and release the push-to-talk trigger to switch your microphone on and off. When not in toggle mode, the microphone is active only when the trigger is held down. | 458 | Do you want to enable Voice Chat now? |
245 | </d_old> | 459 | </d_old> |
246 | <e_new> | 460 | <e_new> |
247 | NOTE: Running the Device Settings or Voice Chat Setup will temporarily disconnect you from Voice Chat. | 461 | Voice Chat is enabled by default. Do you wish to continue using Voice Chat? |
248 | </e_new> | 462 | </e_new> |
249 | <f_translation> | 463 | <f_translation> |
250 | メモ: 「機器の設定」または「ボイス・チャットの設定」を実行すると、一時的にボイス・チャットから切断されます。 | 464 | ボイスチャットはデフォルトで有効になっています。 ボイスチャットをこのまま使用しますか? |
251 | </f_translation> | 465 | </f_translation> |
252 | <f_old_trans> | 466 | <f_old_trans> |
253 | メモ: 「機器の設定」または「ボイス・チャットの設定」を実行すると、一時的にボイス・チャットから切断されます。 | 467 | 今すぐボイスチャットを有効にしますか? |
254 | </f_old_trans> | 468 | </f_old_trans> |
469 | </string><string><a_file>panel_voice_enable.xml</a_file> | ||
470 | <b_path>/content_panel/voice_enable/1</b_path> | ||
471 | <c_attribute></c_attribute> | ||
472 | <d_old> | ||
473 | Yes, enable Voice Chat. | ||
474 | </d_old> | ||
475 | <e_new> | ||
476 | Yes, continue using Voice Chat. | ||
477 | </e_new> | ||
478 | <f_translation> | ||
479 | はい、ボイスチャットをこのまま使います。 | ||
480 | </f_translation> | ||
481 | <f_old_trans> | ||
482 | はい、ボイスチャットを有効にする。 | ||
483 | </f_old_trans> | ||
484 | </string><string><a_file>panel_voice_enable.xml</a_file> | ||
485 | <b_path>/content_panel/voice_enable/0</b_path> | ||
486 | <c_attribute></c_attribute> | ||
487 | <d_old> | ||
488 | No, do not enable Voice Chat at this time. | ||
489 | </d_old> | ||
490 | <e_new> | ||
491 | No, disable Voice Chat. | ||
492 | </e_new> | ||
493 | <f_translation> | ||
494 | いいえ、ボイスチャットを無効にします。 | ||
495 | </f_translation> | ||
496 | <f_old_trans> | ||
497 | いいえ、今はボイスチャットを有効にしない。 | ||
498 | </f_old_trans> | ||
255 | </string><string><a_file>panel_voice_options.xml</a_file> | 499 | </string><string><a_file>panel_voice_options.xml</a_file> |
256 | <b_path>/content_panel/push_to_talk_check</b_path> | 500 | <b_path>/content_panel/push_to_talk_check</b_path> |
257 | <c_attribute>label</c_attribute> | 501 | <c_attribute>label</c_attribute> |
258 | <d_old>Only allow Friends to initiate Voice Calls with me</d_old> | 502 | <d_old>Only allow Friends to initiate Voice Calls with me</d_old> |
259 | <e_new>Start Viewer in Push-to-Talk mode</e_new> | 503 | <e_new>Start Viewer in Push-to-Talk mode</e_new> |
260 | <f_translation>プッシュ・トゥ・トークモードでビュアーを起動</f_translation> | 504 | <f_translation>プッシュ・トゥ・トーク モードでビュアーを起動</f_translation> |
261 | <f_old_trans>プッシュ・トゥ・トーク モードでビュアーを起動</f_old_trans> | 505 | <f_old_trans>プッシュ・トゥ・トークモードでビュアーを起動</f_old_trans> |
262 | </string> | 506 | </string> |
263 | </strings> | 507 | </strings> |
diff --git a/linden/indra/newview/skins/xui/ja/notify.xml b/linden/indra/newview/skins/xui/ja/notify.xml index 6a95c55..0e0bf36 100644 --- a/linden/indra/newview/skins/xui/ja/notify.xml +++ b/linden/indra/newview/skins/xui/ja/notify.xml | |||
@@ -873,16 +873,21 @@ Mキーを押して移行します。 | |||
873 | </notify> | 873 | </notify> |
874 | <notify name="FirstDebugMenus"> | 874 | <notify name="FirstDebugMenus"> |
875 | <message name="message"> | 875 | <message name="message"> |
876 | ライアントサーバーバッメニュー有効にしました。 | 876 | 高度を有効にしました。 |
877 | これらのメニューには、Second Lifeをデバッグするデベロッパーにとって有用な機能があります。 | 877 | このメニューには、Second Life をデバッグするデベロッパーにとって有用な機能があります。 |
878 | これらのメニューのオンとオフを切り替えるには、Ctrl-Alt-Dを押します。Macの場合は、Cmd-Opt-Shift-Dを押してください。. | 878 | このメニューを切り替えるには、Windows では Ctrl-Alt-Dを押します。Macの場合は、Cmd-Opt-Shift-Dを押してください。. |
879 | </message> | 879 | </message> |
880 | </notify> | 880 | </notify> |
881 | <notify name="FirstSculptedPrim"> | 881 | <notify name="FirstSculptedPrim"> |
882 | <message name="message"> | 882 | <message name="message"> |
883 | 変形されたプリムを編集しています。 | 883 | 変形されたプリムを編集しています。 |
884 | 変形されたプリムは、形状を指定するための特別なテクスチャが必要です。 | 884 | 変形されたプリムは、形状を指定するための特別なテクスチャーが必要です。 |
885 | システムライブラリで、変形されたテクスチャのサンプルを参照できます。 | 885 | 持ち物ライブラリで、変形されたテクスチャーのサンプルを参照できます。 |
886 | </message> | ||
887 | </notify> | ||
888 | <notify name="FirstMedia"> | ||
889 | <message name="message"> | ||
890 | メディアの再生を開始しました。 オーディオ/ビデオの環境設定で、自動的にメディアを再生するように設定することができます。 注: この設定により、信頼しないメディア・サイトに接続されるセキュリティ・リスクが伴います。 | ||
886 | </message> | 891 | </message> |
887 | </notify> | 892 | </notify> |
888 | <notify name="MaxListSelectMessage"> | 893 | <notify name="MaxListSelectMessage"> |
@@ -1016,4 +1021,9 @@ Mキーを押して移行します。 | |||
1016 | [VOICE_CHANNEL_NAME]のボイス・チャットに接続中に、エラーが発生しました。後でもう一度お試しください。 | 1021 | [VOICE_CHANNEL_NAME]のボイス・チャットに接続中に、エラーが発生しました。後でもう一度お試しください。 |
1017 | </message> | 1022 | </message> |
1018 | </notify> | 1023 | </notify> |
1024 | <notify name="ServerVersionChanged"> | ||
1025 | <message name="message"> | ||
1026 | 入力した地域は異なるシミュレーターのバージョンで実行されています。 詳細についてはこのメッセージをクリックしてください。 | ||
1027 | </message> | ||
1028 | </notify> | ||
1019 | </notifications> | 1029 | </notifications> |
diff --git a/linden/indra/newview/skins/xui/ja/panel_audio_device.xml b/linden/indra/newview/skins/xui/ja/panel_audio_device.xml index db0bf73..7bd1bce 100644 --- a/linden/indra/newview/skins/xui/ja/panel_audio_device.xml +++ b/linden/indra/newview/skins/xui/ja/panel_audio_device.xml | |||
@@ -1,9 +1,15 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <panel name="device_settings"> | 2 | <panel name="device_settings"> |
3 | <text name="Audio Devices"> | ||
4 | オーディオ機器 | ||
5 | </text> | ||
3 | <text name="Output device (speakers):"> | 6 | <text name="Output device (speakers):"> |
4 | 出力機器 (スピーカー): | 7 | 出力機器 (スピーカー): |
5 | </text> | 8 | </text> |
6 | <text name="Input device (microphone):"> | 9 | <text name="Input device (microphone):"> |
10 | 入力機器(マイクロフォン): | ||
11 | </text> | ||
12 | <text name="Input level:"> | ||
7 | 入力レベル | 13 | 入力レベル |
8 | </text> | 14 | </text> |
9 | <text_editor name="voice_intro_text1"> | 15 | <text_editor name="voice_intro_text1"> |
diff --git a/linden/indra/newview/skins/xui/ja/panel_avatar.xml b/linden/indra/newview/skins/xui/ja/panel_avatar.xml index 37d491b..8c4c92b 100644 --- a/linden/indra/newview/skins/xui/ja/panel_avatar.xml +++ b/linden/indra/newview/skins/xui/ja/panel_avatar.xml | |||
@@ -171,6 +171,9 @@ | |||
171 | </text> | 171 | </text> |
172 | </panel> | 172 | </panel> |
173 | <panel label="私の記録" name="My Notes"> | 173 | <panel label="私の記録" name="My Notes"> |
174 | <string name="Loading"> | ||
175 | ロード中... | ||
176 | </string> | ||
174 | <text name="label"> | 177 | <text name="label"> |
175 | このスペースに、この人物に関するメモを記録します。 進行中の取引、 | 178 | このスペースに、この人物に関するメモを記録します。 進行中の取引、 |
176 | 共同プロジェクトなどを記録。メモを見ることができるのは | 179 | 共同プロジェクトなどを記録。メモを見ることができるのは |
@@ -194,7 +197,7 @@ | |||
194 | </text> | 197 | </text> |
195 | <text name="ShowOnMapFriendOffline"> | 198 | <text name="ShowOnMapFriendOffline"> |
196 | 地図上でロケーションを表示します。 | 199 | 地図上でロケーションを表示します。 |
197 | 相手がオンラインではないため、表示できません。 | 200 | 相手がオンラインではないため、表示できません。 |
198 | </text> | 201 | </text> |
199 | <text name="ShowOnMapFriendOnline"> | 202 | <text name="ShowOnMapFriendOnline"> |
200 | 地図上でロケーションを表示します。 | 203 | 地図上でロケーションを表示します。 |
diff --git a/linden/indra/newview/skins/xui/ja/panel_classified.xml b/linden/indra/newview/skins/xui/ja/panel_classified.xml index 373d925..7d12719 100644 --- a/linden/indra/newview/skins/xui/ja/panel_classified.xml +++ b/linden/indra/newview/skins/xui/ja/panel_classified.xml | |||
@@ -11,6 +11,9 @@ | |||
11 | <check_box label="成人" name="classified_mature_check" /> | 11 | <check_box label="成人" name="classified_mature_check" /> |
12 | <combo_box label="" name="classified_category_combo" /> | 12 | <combo_box label="" name="classified_category_combo" /> |
13 | <button label="更新" name="classified_update_btn" /> | 13 | <button label="更新" name="classified_update_btn" /> |
14 | <string name="ad_placed_paid"> | ||
15 | 広告掲載: [DATE]、L$[AMT] 支払い済み | ||
16 | </string> | ||
14 | <text name="update_txt"> | 17 | <text name="update_txt"> |
15 | アップデート | 18 | アップデート |
16 | </text> | 19 | </text> |
diff --git a/linden/indra/newview/skins/xui/ja/panel_friends.xml b/linden/indra/newview/skins/xui/ja/panel_friends.xml index d0ede63..2373fb0 100644 --- a/linden/indra/newview/skins/xui/ja/panel_friends.xml +++ b/linden/indra/newview/skins/xui/ja/panel_friends.xml | |||
@@ -1,5 +1,8 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <panel name="friends"> | 2 | <panel name="friends"> |
3 | <string name="Multiple"> | ||
4 | 複数のフレンド... | ||
5 | </string> | ||
3 | <scroll_list name="friend_list" | 6 | <scroll_list name="friend_list" |
4 | tool_tip="複数のフレンドを選択するには、ShiftキーまたはCtrlキーを押しながら名前をクリックします。"> | 7 | tool_tip="複数のフレンドを選択するには、ShiftキーまたはCtrlキーを押しながら名前をクリックします。"> |
5 | <column name="icon_online_status" tool_tip="オンライン・ステータス" /> | 8 | <column name="icon_online_status" tool_tip="オンライン・ステータス" /> |
diff --git a/linden/indra/newview/skins/xui/ja/panel_group_general.xml b/linden/indra/newview/skins/xui/ja/panel_group_general.xml index 94b2dfe..7c3b5bc 100644 --- a/linden/indra/newview/skins/xui/ja/panel_group_general.xml +++ b/linden/indra/newview/skins/xui/ja/panel_group_general.xml | |||
@@ -59,8 +59,9 @@ | |||
59 | メンバー・データを検索 | 59 | メンバー・データを検索 |
60 | </text> | 60 | </text> |
61 | <text name="confirm_group_create_str"> | 61 | <text name="confirm_group_create_str"> |
62 | このグループの作成にはL$100かかります。 | 62 | このグループの作成にはL$100かかります。 |
63 | このグループの作成にL$100ものお金をかけてもかまいませんか? 慎重に判断してください。 | 63 | このグループの作成にL$100ものお金をかけてもかまいませんか? 慎重に判断してください。 |
64 | 48 時間以内に誰もこのグループに参加しなかった場合、グループは解体され、グループの名前は今後使用できなくなります。 | ||
64 | </text> | 65 | </text> |
65 | <text> | 66 | <text> |
66 | グループの環境設定 | 67 | グループの環境設定 |
diff --git a/linden/indra/newview/skins/xui/ja/panel_group_land_money.xml b/linden/indra/newview/skins/xui/ja/panel_group_land_money.xml index 1f26063..53ea61a 100644 --- a/linden/indra/newview/skins/xui/ja/panel_group_land_money.xml +++ b/linden/indra/newview/skins/xui/ja/panel_group_land_money.xml | |||
@@ -14,6 +14,9 @@ | |||
14 | <text name="cant_view_group_accounting_text"> | 14 | <text name="cant_view_group_accounting_text"> |
15 | あなたはグループの会計情報の表示を許されていません。 | 15 | あなたはグループの会計情報の表示を許されていません。 |
16 | </text> | 16 | </text> |
17 | <string name="loading_txt"> | ||
18 | ロード中... | ||
19 | </string> | ||
17 | <text name="group_land_heading"> | 20 | <text name="group_land_heading"> |
18 | グループの保有地 | 21 | グループの保有地 |
19 | </text> | 22 | </text> |
diff --git a/linden/indra/newview/skins/xui/ja/panel_group_roles.xml b/linden/indra/newview/skins/xui/ja/panel_group_roles.xml index 65858fd..4640600 100644 --- a/linden/indra/newview/skins/xui/ja/panel_group_roles.xml +++ b/linden/indra/newview/skins/xui/ja/panel_group_roles.xml | |||
@@ -27,13 +27,13 @@ | |||
27 | 下にある役割を選択してください。 役割の名前、説明、メンバー・タイトルを修正することができます。 | 27 | 下にある役割を選択してください。 役割の名前、説明、メンバー・タイトルを修正することができます。 |
28 | </text> | 28 | </text> |
29 | <text name="role_properties_not_modifiable"> | 29 | <text name="role_properties_not_modifiable"> |
30 | 以下の役割を選択し、役割のプロパティ、メンバー、および許可された能力を確 | 30 | 以下の役割を選択し、役割のプロパティ、メンバー、および許可された能力を確 |
31 | </text> | 31 | </text> |
32 | <text name="role_actions_modifiable"> | 32 | <text name="role_actions_modifiable"> |
33 | あなたは役割に能力を割り当てることもできます。 | 33 | あなたは役割に能力を割り当てることもできます。 |
34 | </text> | 34 | </text> |
35 | <text name="role_actions_not_modifiable"> | 35 | <text name="role_actions_not_modifiable"> |
36 | 能力の表示はできますが、修正や割り当てなどはできません。 | 36 | 能力の表示はできますが、修正や割り当てなどはできません。 |
37 | </text> | 37 | </text> |
38 | </panel> | 38 | </panel> |
39 | <panel name="actions_header"> | 39 | <panel name="actions_header"> |
@@ -57,9 +57,9 @@ | |||
57 | <button label="新しい人を招待..." name="member_invite" /> | 57 | <button label="新しい人を招待..." name="member_invite" /> |
58 | <button label="グループから追放" name="member_eject" /> | 58 | <button label="グループから追放" name="member_eject" /> |
59 | <text name="help_text"> | 59 | <text name="help_text"> |
60 | あなたはメンバーに割り当てられた役割を付加、削除できます。 | 60 | あなたはメンバーに割り当てられた役割を付加、削除できます。 |
61 | Ctrlキーを押しながらメンバー名をクリックすると | 61 | Ctrl キーを押しながらメンバー名をクリックすると |
62 | 複数の人を選択できます。 | 62 | 複数の人を選択できます。 |
63 | </text> | 63 | </text> |
64 | </panel> | 64 | </panel> |
65 | <panel label="役割" name="roles_sub_tab"> | 65 | <panel label="役割" name="roles_sub_tab"> |
@@ -78,6 +78,9 @@ | |||
78 | 1つまたは複数の役割に属することができます。 1つのグループに対し、 | 78 | 1つまたは複数の役割に属することができます。 1つのグループに対し、 |
79 | 「全員」と「オーナー」の役割を含めて最高で10の役割を持たせることができます。 | 79 | 「全員」と「オーナー」の役割を含めて最高で10の役割を持たせることができます。 |
80 | </text> | 80 | </text> |
81 | <string name="cant_delete_role"> | ||
82 | 「全員」と「オーナー」は特別な役割なので、削除できません。 | ||
83 | </string> | ||
81 | </panel> | 84 | </panel> |
82 | <panel label="能力" name="actions_sub_tab"> | 85 | <panel label="能力" name="actions_sub_tab"> |
83 | <button label="検索" name="search_button" /> | 86 | <button label="検索" name="search_button" /> |
diff --git a/linden/indra/newview/skins/xui/ja/panel_land_covenant.xml b/linden/indra/newview/skins/xui/ja/panel_land_covenant.xml index dc8d01d..e1e9ba7 100644 --- a/linden/indra/newview/skins/xui/ja/panel_land_covenant.xml +++ b/linden/indra/newview/skins/xui/ja/panel_land_covenant.xml | |||
@@ -25,7 +25,7 @@ | |||
25 | この地域で購入した土地は、統合/再分割が可能な場合とそうでない場合があります。 | 25 | この地域で購入した土地は、統合/再分割が可能な場合とそうでない場合があります。 |
26 | </text> | 26 | </text> |
27 | <text name="can_resell"> | 27 | <text name="can_resell"> |
28 | この地域購入土地は、再販できます。 | 28 | この地域続きの土地は、再販できます。 |
29 | </text> | 29 | </text> |
30 | <text name="can_not_resell"> | 30 | <text name="can_not_resell"> |
31 | この地域で購入した土地は、再販できないことがあります。 | 31 | この地域で購入した土地は、再販できないことがあります。 |
diff --git a/linden/indra/newview/skins/xui/ja/panel_media_controls.xml b/linden/indra/newview/skins/xui/ja/panel_media_controls.xml index ca2fb5b..dccdc35 100644 --- a/linden/indra/newview/skins/xui/ja/panel_media_controls.xml +++ b/linden/indra/newview/skins/xui/ja/panel_media_controls.xml | |||
@@ -1,10 +1,45 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <panel name="media_controls"> | 2 | <panel name="media_controls"> |
3 | <icon name="music_icon" | ||
4 | tool_tip="ストリーミング・ミュージックの再生/一時停止" /> | ||
3 | <button name="music_play" | 5 | <button name="music_play" |
4 | tool_tip="ストリーミング・ミュージックの再生/一時停止" /> | 6 | tool_tip="ストリーミング・ミュージックの再生/一時停止" /> |
7 | <button name="music_pause" | ||
8 | tool_tip="ストリーミング・ミュージックの一時停止" /> | ||
9 | <button name="music_stop" | ||
10 | tool_tip="ストリーミング・ミュージックの停止" /> | ||
11 | <icon name="media_icon" | ||
12 | tool_tip="ストリーミング・ミュージックの再生/一時停止" /> | ||
5 | <button name="media_play" | 13 | <button name="media_play" |
6 | tool_tip="ストリーミング・ムービーの再生/一時停止" /> | 14 | tool_tip="ストリーミング・ミュージックの再生/一時停止" /> |
15 | <button name="media_pause" | ||
16 | tool_tip="ストリーミング・メディアの一時停止" /> | ||
17 | <button name="media_stop" tool_tip="ストリーミング・メディアの停止" /> | ||
7 | <volume_slider name="volume_slider" tool_tip="マスター・ボリューム" /> | 18 | <volume_slider name="volume_slider" tool_tip="マスター・ボリューム" /> |
8 | <button name="mute_master" tool_tip="マスター・ミュート" /> | 19 | <button name="mute_master" tool_tip="マスター・ミュート" /> |
9 | <button name="expand" tool_tip="個別のボリューム・レベルを調節する。" /> | 20 | <button name="expand" tool_tip="個別のボリューム・レベルを調節する。" /> |
21 | <string name="play_label"> | ||
22 | 再生 | ||
23 | </string> | ||
24 | <string name="stop_label"> | ||
25 | 停止 | ||
26 | </string> | ||
27 | <string name="pause_label"> | ||
28 | 一時停止 | ||
29 | </string> | ||
30 | <string name="default_tooltip_label"> | ||
31 | メディアが指定されていません | ||
32 | </string> | ||
33 | <string name="media_hidden_label"> | ||
34 | (区画オーナーが URL を非表示に設定) | ||
35 | </string> | ||
36 | <string name="media_icon_tooltip_web"> | ||
37 | このロケーションではワールド・ワイド・ウェブの内容が表示されます。 ウェブ・コンテンツを表示するには[再生]ボタンをクリックしてください。 | ||
38 | </string> | ||
39 | <string name="media_icon_tooltip_movie"> | ||
40 | このロケーションではビデオ・コンテンツが表示されます。 ビデオを再生するには[再生]ボタンをクリックしてください。 | ||
41 | </string> | ||
42 | <string name="media_play_tooltip"> | ||
43 | このロケーションでウェブ・コンテンツを表示します。 | ||
44 | </string> | ||
10 | </panel> | 45 | </panel> |
diff --git a/linden/indra/newview/skins/xui/ja/panel_media_remote.xml b/linden/indra/newview/skins/xui/ja/panel_media_remote.xml index 4664032..e92e475 100644 --- a/linden/indra/newview/skins/xui/ja/panel_media_remote.xml +++ b/linden/indra/newview/skins/xui/ja/panel_media_remote.xml | |||
@@ -1,18 +1,3 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <panel name="music_remote"> | 2 | <panel name="media_remote"> |
3 | <text type="string" length="6" name="text"> | ||
4 | ムービー | ||
5 | </text> | ||
6 | <volume_slider name="volume_slider" | ||
7 | tool_tip="このスライダーでボリュームを調整" /> | ||
8 | <button label="" label_selected="" name="stop_btn" tool_tip="メディアを停止" /> | ||
9 | <button label="" label_selected="" name="play_btn" | ||
10 | tool_tip="メディア・ストリームを再生" /> | ||
11 | <button label="" label_selected="" name="pause_btn" | ||
12 | tool_tip="メデイア・ストリームを一時停止" /> | ||
13 | <button name="media_stop" tool_tip="メディアを停止します。" /> | ||
14 | <button name="media_play" | ||
15 | tool_tip="メディア・ストリームを再生します。" /> | ||
16 | <button name="media_pause" | ||
17 | tool_tip="メデイア・ストリームを一時停止します。" /> | ||
18 | </panel> | 3 | </panel> |
diff --git a/linden/indra/newview/skins/xui/ja/panel_preferences_audio.xml b/linden/indra/newview/skins/xui/ja/panel_preferences_audio.xml index 21c6919..bf3d972 100644 --- a/linden/indra/newview/skins/xui/ja/panel_preferences_audio.xml +++ b/linden/indra/newview/skins/xui/ja/panel_preferences_audio.xml | |||
@@ -4,7 +4,14 @@ | |||
4 | ボリューム: | 4 | ボリューム: |
5 | </text> | 5 | </text> |
6 | <check_box label="オーディオをミュート" name="disable audio" /> | 6 | <check_box label="オーディオをミュート" name="disable audio" /> |
7 | <text name="streaming_prefs_text"> | ||
8 | ストリーミング環境設定: | ||
9 | </text> | ||
10 | <text name="audio_prefs_text"> | ||
11 | オーディオ環境設定: | ||
12 | </text> | ||
7 | <panel label="ボリューム" name="Volume Panel" /> | 13 | <panel label="ボリューム" name="Volume Panel" /> |
14 | <check_box label="メディアを自動再生" name="auto_streaming_video" /> | ||
8 | <check_box | 15 | <check_box |
9 | label="ウィンドウが最小化されたときにオーディオをミュート" | 16 | label="ウィンドウが最小化されたときにオーディオをミュート" |
10 | name="mute_when_minimized" /> | 17 | name="mute_when_minimized" /> |
@@ -13,7 +20,8 @@ | |||
13 | </text> | 20 | </text> |
14 | <check_box label="音楽がある場合再生する(通信が重くなる)" | 21 | <check_box label="音楽がある場合再生する(通信が重くなる)" |
15 | name="streaming_music" /> | 22 | name="streaming_music" /> |
16 | <check_box label="動画がある場合再生する(通信が重くなる)" | 23 | <check_box |
24 | label="ストリーミング・メディアが使用可能なら再生(帯域幅の消費増)" | ||
17 | name="streaming_video" /> | 25 | name="streaming_video" /> |
18 | <text type="string" length="1" name="system_volume_text"> | 26 | <text type="string" length="1" name="system_volume_text"> |
19 | サウンド効果: | 27 | サウンド効果: |
diff --git a/linden/indra/newview/skins/xui/ja/panel_preferences_general.xml b/linden/indra/newview/skins/xui/ja/panel_preferences_general.xml index 8ca1cba..a6806e9 100644 --- a/linden/indra/newview/skins/xui/ja/panel_preferences_general.xml +++ b/linden/indra/newview/skins/xui/ja/panel_preferences_general.xml | |||
@@ -27,6 +27,10 @@ | |||
27 | <check_box label="小さなアバター名" name="small_avatar_names_checkbox" /> | 27 | <check_box label="小さなアバター名" name="small_avatar_names_checkbox" /> |
28 | <color_swatch label="" name="effect_color_swatch" | 28 | <color_swatch label="" name="effect_color_swatch" |
29 | tool_tip="カラー・ピッカーをクリックして開く" /> | 29 | tool_tip="カラー・ピッカーをクリックして開く" /> |
30 | <text name="UI Size:"> | ||
31 | UI サイズ: | ||
32 | </text> | ||
33 | <check_box label="解像度独立スケールを使用" name="ui_auto_scale" /> | ||
30 | <spinner label="退席までの時間:" name="afk_timeout_spinner" /> | 34 | <spinner label="退席までの時間:" name="afk_timeout_spinner" /> |
31 | <check_box label="オンライン・フレンド通知を表示" | 35 | <check_box label="オンライン・フレンド通知を表示" |
32 | name="friends_online_notify_checkbox" /> | 36 | name="friends_online_notify_checkbox" /> |
@@ -39,6 +43,9 @@ | |||
39 | <check_box label="デフォルト・システムのカラー選択を使用" | 43 | <check_box label="デフォルト・システムのカラー選択を使用" |
40 | name="use_system_color_picker_checkbox" | 44 | name="use_system_color_picker_checkbox" |
41 | tool_tip="Second Life内蔵でない、デフォルト・システムのカラー選択を使用" /> | 45 | tool_tip="Second Life内蔵でない、デフォルト・システムのカラー選択を使用" /> |
46 | <check_box label="オーバーレイ・バーに検索パネルを表示" | ||
47 | name="show_search_panel" | ||
48 | tool_tip="組み込みの検索パネルを表示します。" /> | ||
42 | <text type="string" length="1" name="start_location_textbox"> | 49 | <text type="string" length="1" name="start_location_textbox"> |
43 | ログイン位置: | 50 | ログイン位置: |
44 | </text> | 51 | </text> |
diff --git a/linden/indra/newview/skins/xui/ja/panel_preferences_graphics1.xml b/linden/indra/newview/skins/xui/ja/panel_preferences_graphics1.xml index 58169d6..0139602 100644 --- a/linden/indra/newview/skins/xui/ja/panel_preferences_graphics1.xml +++ b/linden/indra/newview/skins/xui/ja/panel_preferences_graphics1.xml | |||
@@ -3,7 +3,8 @@ | |||
3 | <text type="string" length="1" name="text"> | 3 | <text type="string" length="1" name="text"> |
4 | 表示解像度: | 4 | 表示解像度: |
5 | </text> | 5 | </text> |
6 | <check_box label="ウィンドウ内で実行" name="windowed mode" /> | 6 | <button label="?" name="GraphicsPreferencesHelpButton" /> |
7 | <check_box label="ウィンドウ内で Second Life を起動" name="windowed mode" /> | ||
7 | <text_editor name="voice_chat_description"> | 8 | <text_editor name="voice_chat_description"> |
8 | チェック無しの場合は、ログイン時にフルスクリーン表示 | 9 | チェック無しの場合は、ログイン時にフルスクリーン表示 |
9 | </text_editor> | 10 | </text_editor> |
@@ -13,18 +14,30 @@ | |||
13 | <text type="string" length="1" name="(width / height)"> | 14 | <text type="string" length="1" name="(width / height)"> |
14 | (幅/高さ) | 15 | (幅/高さ) |
15 | </text> | 16 | </text> |
16 | <combo_box name="aspect_ratio"> | 17 | <text_editor name="FullScreenInfo"> |
18 | チェックされていない場合は、ログインするとビューワがフルスクリーンで表示されます。 | ||
19 | </text_editor> | ||
20 | <text name="DisplayResLabel"> | ||
21 | 表示解像度: | ||
22 | </text> | ||
23 | <text name="AspectRatioLabel1" tool_tip="(幅/高さ)"> | ||
24 | 縦横比: | ||
25 | </text> | ||
26 | <combo_box name="aspect_ratio" tool_tip="(幅/高さ)"> | ||
17 | <combo_item type="string" length="1" name="4:3(StandardCRT)"> | 27 | <combo_item type="string" length="1" name="4:3(StandardCRT)"> |
18 | 4:3(標準CRT) | 28 | 4:3(標準CRT) |
19 | </combo_item> | 29 | </combo_item> |
20 | <combo_item type="string" length="1" name="5:4(1280x1024LCD)"> | 30 | <combo_item type="string" length="1" name="5:4(1280x1024LCD)"> |
21 | 5:4(1280x1024 LCD) | 31 | 5:4(1280x1024 LCD) |
22 | </combo_item> | 32 | </combo_item> |
33 | <combo_item name="8:5(Widescreen)"> | ||
34 | 8:5(ワイドスクリ-ン) | ||
35 | </combo_item> | ||
23 | <combo_item type="string" length="1" name="16:9(Widescreen)"> | 36 | <combo_item type="string" length="1" name="16:9(Widescreen)"> |
24 | 16:9(ワイドスクリ-ン) | 37 | 16:9(ワイドスクリ-ン) |
25 | </combo_item> | 38 | </combo_item> |
26 | </combo_box> | 39 | </combo_box> |
27 | <check_box label="自動検出" name="aspect_auto_detect" /> | 40 | <check_box label="自動検出率" name="aspect_auto_detect" /> |
28 | <text type="string" length="1" name="UI Size:"> | 41 | <text type="string" length="1" name="UI Size:"> |
29 | UIサイズ: | 42 | UIサイズ: |
30 | </text> | 43 | </text> |
@@ -37,6 +50,130 @@ | |||
37 | <check_box label="解像度単独スケールを使用" name="ui_auto_scale" /> | 50 | <check_box label="解像度単独スケールを使用" name="ui_auto_scale" /> |
38 | <spinner label="描画距離:" name="draw_distance" /> | 51 | <spinner label="描画距離:" name="draw_distance" /> |
39 | <check_box label="アバターをマウスルックで表示" name="avfp" /> | 52 | <check_box label="アバターをマウスルックで表示" name="avfp" /> |
53 | <text name="HigherText"> | ||
54 | 品質および | ||
55 | </text> | ||
56 | <text name="QualityText"> | ||
57 | パフォーマンス: | ||
58 | </text> | ||
59 | <text name="FasterText"> | ||
60 | 速い | ||
61 | </text> | ||
62 | <text name="ShadersPrefText"> | ||
63 | 低 | ||
64 | </text> | ||
65 | <text name="ShadersPrefText2"> | ||
66 | 中 | ||
67 | </text> | ||
68 | <text name="ShadersPrefText3"> | ||
69 | 高 | ||
70 | </text> | ||
71 | <text name="ShadersPrefText4"> | ||
72 | 超高 | ||
73 | </text> | ||
74 | <text name="HigherText2"> | ||
75 | 高い | ||
76 | </text> | ||
77 | <text name="QualityText2"> | ||
78 | 品質 | ||
79 | </text> | ||
80 | <check_box label="カスタム" name="CustomSettings" /> | ||
81 | <text name="ShadersText"> | ||
82 | シェーダー: | ||
83 | </text> | ||
84 | <check_box label="バンプ・マッピングと光沢" name="BumpShiny" /> | ||
85 | <check_box label="基本シェーダー" name="BasicShaders" | ||
86 | tool_tip="このオプションを無効にするとグラフィック・カード・ドライバの種類によってはクラッシュ防止になります。" /> | ||
87 | <check_box label="周囲(大気)シェーダー" name="WindLightUseAtmosShaders" /> | ||
88 | <check_box label="水の反射" name="Reflections" /> | ||
89 | <text name="ReflectionDetailText"> | ||
90 | 反射詳細: | ||
91 | </text> | ||
92 | <radio_group name="ReflectionDetailRadio"> | ||
93 | <radio_item name="0"> | ||
94 | 地形と樹木 | ||
95 | </radio_item> | ||
96 | <radio_item name="1"> | ||
97 | すべての静的オブジェクト | ||
98 | </radio_item> | ||
99 | <radio_item name="2"> | ||
100 | すべてのアバターとオブジェクト | ||
101 | </radio_item> | ||
102 | <radio_item name="3"> | ||
103 | すべて | ||
104 | </radio_item> | ||
105 | </radio_group> | ||
106 | <text name="AvatarRenderingText"> | ||
107 | アバター・レンダリング: | ||
108 | </text> | ||
109 | <check_box label="アバターの精度を下げる" name="AvatarImpostors" /> | ||
110 | <check_box label="ハードウェア・スキニング" name="AvatarVertexProgram" /> | ||
111 | <check_box label="アバターの服" name="AvatarCloth" /> | ||
112 | <text name="DrawDistanceMeterText1"> | ||
113 | m | ||
114 | </text> | ||
115 | <text name="DrawDistanceMeterText2"> | ||
116 | m | ||
117 | </text> | ||
118 | <slider label="描画距離:" name="DrawDistance" /> | ||
119 | <slider label="最大パーティクル数:" name="MaxParticleCount" /> | ||
120 | <slider label="ポストプロセス品質:" name="RenderPostProcess" /> | ||
121 | <text name="MeshDetailText"> | ||
122 | メッシュ詳細: | ||
123 | </text> | ||
124 | <slider label=" オブジェクト:" name="ObjectMeshDetail" /> | ||
125 | <slider label=" フレキシプリム:" name="FlexibleMeshDetail" /> | ||
126 | <slider label=" 樹木:" name="TreeMeshDetail" /> | ||
127 | <slider label=" アバター:" name="AvatarMeshDetail" /> | ||
128 | <slider label=" 地形:" name="TerrainMeshDetail" /> | ||
129 | <slider label=" 空:" name="SkyMeshDetail" /> | ||
130 | <text name="PostProcessText"> | ||
131 | 低 | ||
132 | </text> | ||
133 | <text name="ObjectMeshDetailText"> | ||
134 | 低 | ||
135 | </text> | ||
136 | <text name="FlexibleMeshDetailText"> | ||
137 | 低 | ||
138 | </text> | ||
139 | <text name="TreeMeshDetailText"> | ||
140 | 低 | ||
141 | </text> | ||
142 | <text name="AvatarMeshDetailText"> | ||
143 | 低 | ||
144 | </text> | ||
145 | <text name="TerrainMeshDetailText"> | ||
146 | 低 | ||
147 | </text> | ||
148 | <text name="SkyMeshDetailText"> | ||
149 | 低 | ||
150 | </text> | ||
151 | <text name="LightingDetailText"> | ||
152 | ライティング詳細: | ||
153 | </text> | ||
154 | <radio_group name="LightingDetailRadio"> | ||
155 | <radio_item name="SunMoon"> | ||
156 | 太陽と月のみ | ||
157 | </radio_item> | ||
158 | <radio_item name="LocalLights"> | ||
159 | 近隣のローカル・ライト | ||
160 | </radio_item> | ||
161 | </radio_group> | ||
162 | <text name="TerrainDetailText"> | ||
163 | 地形詳細: | ||
164 | </text> | ||
165 | <radio_group name="TerrainDetailRadio"> | ||
166 | <radio_item name="0"> | ||
167 | 低 | ||
168 | </radio_item> | ||
169 | <radio_item name="2"> | ||
170 | 高 | ||
171 | </radio_item> | ||
172 | </radio_group> | ||
173 | <button label="推奨された設定" name="Defaults" /> | ||
174 | <button label="ハードウェア・オプション" | ||
175 | label_selected="ハードウェア・オプション" | ||
176 | name="GraphicsHardwareButton" /> | ||
40 | <text name="resolution_format"> | 177 | <text name="resolution_format"> |
41 | [RES_X] x [RES_Y] | 178 | [RES_X] x [RES_Y] |
42 | </text> | 179 | </text> |
diff --git a/linden/indra/newview/skins/xui/ja/panel_preferences_im.xml b/linden/indra/newview/skins/xui/ja/panel_preferences_im.xml index 097e9e9..091b0c7 100644 --- a/linden/indra/newview/skins/xui/ja/panel_preferences_im.xml +++ b/linden/indra/newview/skins/xui/ja/panel_preferences_im.xml | |||
@@ -15,6 +15,9 @@ | |||
15 | <check_box label="IMを電子メール([EMAIL])へ送信" name="send_im_to_email" /> | 15 | <check_box label="IMを電子メール([EMAIL])へ送信" name="send_im_to_email" /> |
16 | <check_box label="チャット履歴にIMを含める" name="include_im_in_chat_history" /> | 16 | <check_box label="チャット履歴にIMを含める" name="include_im_in_chat_history" /> |
17 | <check_box label="IMにタイムスタンプを表示" name="show_timestamps_check" /> | 17 | <check_box label="IMにタイムスタンプを表示" name="show_timestamps_check" /> |
18 | <text name="text_box4"> | ||
19 | ログイン・オプション: | ||
20 | </text> | ||
18 | <check_box label="IMを記録" name="log_instant_messages" /> | 21 | <check_box label="IMを記録" name="log_instant_messages" /> |
19 | <check_box label="IMログにタイムスタンプを表示" | 22 | <check_box label="IMログにタイムスタンプを表示" |
20 | name="log_instant_messages_timestamp" /> | 23 | name="log_instant_messages_timestamp" /> |
diff --git a/linden/indra/newview/skins/xui/ja/panel_preferences_input.xml b/linden/indra/newview/skins/xui/ja/panel_preferences_input.xml index d116f88..80778a1 100644 --- a/linden/indra/newview/skins/xui/ja/panel_preferences_input.xml +++ b/linden/indra/newview/skins/xui/ja/panel_preferences_input.xml | |||
@@ -21,4 +21,8 @@ | |||
21 | tool_tip="編集モードの開始、終了時はカメラ自動位置調整を使用" /> | 21 | tool_tip="編集モードの開始、終了時はカメラ自動位置調整を使用" /> |
22 | <check_box label="容姿カメラの自動移動" name="appearance camera movement" | 22 | <check_box label="容姿カメラの自動移動" name="appearance camera movement" |
23 | tool_tip="編集モードでは、カメラ自動位置調整を使用" /> | 23 | tool_tip="編集モードでは、カメラ自動位置調整を使用" /> |
24 | <text name="text2"> | ||
25 | アバター表示オプション: | ||
26 | </text> | ||
27 | <check_box label="アバターをマウスルックで表示" name="avfp" /> | ||
24 | </panel> | 28 | </panel> |
diff --git a/linden/indra/newview/skins/xui/ja/panel_preferences_voice.xml b/linden/indra/newview/skins/xui/ja/panel_preferences_voice.xml index 5b8f29a..5d6b096 100644 --- a/linden/indra/newview/skins/xui/ja/panel_preferences_voice.xml +++ b/linden/indra/newview/skins/xui/ja/panel_preferences_voice.xml | |||
@@ -33,6 +33,9 @@ | |||
33 | <check_box | 33 | <check_box |
34 | label="自分のフレンドリストにある人からのみ、ボイスコールを受け付ける" | 34 | label="自分のフレンドリストにある人からのみ、ボイスコールを受け付ける" |
35 | name="voice_call_friends_only_check" /> | 35 | name="voice_call_friends_only_check" /> |
36 | <text_editor name="device_settings_text"> | ||
37 | メモ: 「機器の設定」または「ボイス・チャットの設定」を実行すると、一時的にボイス・チャットから切断されます。 | ||
38 | </text_editor> | ||
36 | <button label="機器の設定" name="device_settings_btn" /> | 39 | <button label="機器の設定" name="device_settings_btn" /> |
37 | <button label="ボイス・チャットの設定" name="launch_voice_wizard_button" /> | 40 | <button label="ボイス・チャットの設定" name="launch_voice_wizard_button" /> |
38 | </panel> | 41 | </panel> |
diff --git a/linden/indra/newview/skins/xui/ja/panel_preferences_web.xml b/linden/indra/newview/skins/xui/ja/panel_preferences_web.xml index 467fa0e..c545fa7 100644 --- a/linden/indra/newview/skins/xui/ja/panel_preferences_web.xml +++ b/linden/indra/newview/skins/xui/ja/panel_preferences_web.xml | |||
@@ -1,5 +1,14 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <panel label="ウェブ" name="web"> | 2 | <panel label="ウェブ" name="web"> |
3 | <radio_group name="use_external_browser" | ||
4 | tool_tip="ヘルプ、Webリンクなどのために、外部Webブラウザを使用します。フル画面で実行している場合には推奨できません。"> | ||
5 | <radio_item name="external"> | ||
6 | 外部のウェブ・ブラウザー (Firefox, Safari, Internet Explorer) を使用 | ||
7 | </radio_item> | ||
8 | <radio_item name="internal"> | ||
9 | 内蔵のウェブ・ブラウザーを使用 | ||
10 | </radio_item> | ||
11 | </radio_group> | ||
3 | <text name="cache_size_label_l"> | 12 | <text name="cache_size_label_l"> |
4 | ブラウザーキャッシュ: | 13 | ブラウザーキャッシュ: |
5 | </text> | 14 | </text> |
diff --git a/linden/indra/newview/skins/xui/ja/panel_region_estate.xml b/linden/indra/newview/skins/xui/ja/panel_region_estate.xml index 1fae8b5..42eaec0 100644 --- a/linden/indra/newview/skins/xui/ja/panel_region_estate.xml +++ b/linden/indra/newview/skins/xui/ja/panel_region_estate.xml | |||
@@ -24,6 +24,7 @@ | |||
24 | tool_tip="年齢確認を済ませていない住人を排除する詳細については、support.secondlife.comを参照してください。" /> | 24 | tool_tip="年齢確認を済ませていない住人を排除する詳細については、support.secondlife.comを参照してください。" /> |
25 | <check_box label="ボイスチャットを許可" name="voice_chat_check" /> | 25 | <check_box label="ボイスチャットを許可" name="voice_chat_check" /> |
26 | <button label="?" name="voice_chat_help" /> | 26 | <button label="?" name="voice_chat_help" /> |
27 | <button label="?" name="abuse_email_address_help" /> | ||
27 | <text name="estate_manager_label"> | 28 | <text name="estate_manager_label"> |
28 | 不動産マネージャー: | 29 | 不動産マネージャー: |
29 | </text> | 30 | </text> |
diff --git a/linden/indra/newview/skins/xui/ja/panel_voice_enable.xml b/linden/indra/newview/skins/xui/ja/panel_voice_enable.xml index ca2a02b..adb7766 100644 --- a/linden/indra/newview/skins/xui/ja/panel_voice_enable.xml +++ b/linden/indra/newview/skins/xui/ja/panel_voice_enable.xml | |||
@@ -4,14 +4,14 @@ | |||
4 | Second Lifeのボイスチャットへようこそ! ボイスチャットで、他の住人と会話を楽しむことができます。 このウィザードは、ボイスチャットの設定に必要な手順を案内します。 ボイス・チャットを使用するには、オーディオ・スピーカーが必要です。また、他の人と話をするには、マイクロフォンまたはマイクロフォン付きのステレオ・ヘッドセットが必要です。 | 4 | Second Lifeのボイスチャットへようこそ! ボイスチャットで、他の住人と会話を楽しむことができます。 このウィザードは、ボイスチャットの設定に必要な手順を案内します。 ボイス・チャットを使用するには、オーディオ・スピーカーが必要です。また、他の人と話をするには、マイクロフォンまたはマイクロフォン付きのステレオ・ヘッドセットが必要です。 |
5 | </text_editor> | 5 | </text_editor> |
6 | <text_editor name="voice_intro_text2"> | 6 | <text_editor name="voice_intro_text2"> |
7 | 今すぐボイスチャットを有効にしますか? | 7 | ボイスチャットはデフォルトで有効になっています。 ボイスチャットをこのまま使用しますか? |
8 | </text_editor> | 8 | </text_editor> |
9 | <radio_group name="voice_enable"> | 9 | <radio_group name="voice_enable"> |
10 | <radio_item name="1"> | 10 | <radio_item name="1"> |
11 | はい、ボイスチャットを有効。 | 11 | はい、ボイスチャットを使います |
12 | </radio_item> | 12 | </radio_item> |
13 | <radio_item name="0"> | 13 | <radio_item name="0"> |
14 | いいえ、今イスチャットを有効にし。 | 14 | いいえ、ボイスチャットを無効にし。 |
15 | </radio_item> | 15 | </radio_item> |
16 | </radio_group> | 16 | </radio_group> |
17 | <text_editor name="voice_intro_text3"> | 17 | <text_editor name="voice_intro_text3"> |
diff --git a/linden/indra/newview/skins/xui/ja/panel_voice_options.xml b/linden/indra/newview/skins/xui/ja/panel_voice_options.xml index d1a9878..d708691 100644 --- a/linden/indra/newview/skins/xui/ja/panel_voice_options.xml +++ b/linden/indra/newview/skins/xui/ja/panel_voice_options.xml | |||
@@ -11,7 +11,10 @@ | |||
11 | アバターの位置からボイスチャットを聞く。 | 11 | アバターの位置からボイスチャットを聞く。 |
12 | </radio_item> | 12 | </radio_item> |
13 | </radio_group> | 13 | </radio_group> |
14 | <check_box label="プッシュ・トゥ・トークモードでビュアーを起動" | 14 | <check_box |
15 | label="自分とのボイスチャットは、フレンドのみが開始できるようにする" | ||
16 | name="friends_only_check" /> | ||
17 | <check_box label="プッシュ・トゥ・トーク モードでビュアーを起動" | ||
15 | name="push_to_talk_check" /> | 18 | name="push_to_talk_check" /> |
16 | <check_box label="切り替えモードで、プッシュ・トゥ・トークを使用" | 19 | <check_box label="切り替えモードで、プッシュ・トゥ・トークを使用" |
17 | name="push_to_talk_toggle_check" /> | 20 | name="push_to_talk_toggle_check" /> |
diff --git a/linden/indra/newview/skins/xui/ko/alerts.xml b/linden/indra/newview/skins/xui/ko/alerts.xml index a07fe33..226dd1f 100644 --- a/linden/indra/newview/skins/xui/ko/alerts.xml +++ b/linden/indra/newview/skins/xui/ko/alerts.xml | |||
@@ -728,9 +728,59 @@ L$0로 판매하는 경우, 팔 사람을 선택하십시오. | |||
728 | 취소 | 728 | 취소 |
729 | </option> | 729 | </option> |
730 | </alert> | 730 | </alert> |
731 | <alert name="UnsupportedGLRequirements"> | ||
732 | <message name="message"> | ||
733 | 세컨드라이프를 실행하는 데 필요한 하드웨어 요구 사항이 충족되지 않았습니다. 세컨드라이프를 이용하려면 멀티텍스처를 지원하는 OpenGL 그래픽 카드가 필요합니다. 적절한 그래픽 카드가 있는 경우 해당 그래픽 카드에 대한 최신 드라이버와 운영 체제에 맞는 서비스 팩과 패치가 설치되어 있는지 확인하십시오. | ||
734 | |||
735 | 그래도 문제가 지속되면 다음 사이트를 방문해 보십시오: http://www.secondlife.com/support | ||
736 | </message> | ||
737 | </alert> | ||
738 | <alert name="UnsupportedHardware"> | ||
739 | <message name="message"> | ||
740 | 경고: 시스템이 세컨드라이프의 최소 시스템 요구 사항을 충족하지 않습니다. 계속해서 세컨드라이프를 사용하면 컴퓨터의 성능 저하가 발생할 수 있습니다. 지원되지 않는 시스템 구성에 대한 기술적인 지원은 제공되지 않습니다. | ||
741 | |||
742 | 최소 사양 | ||
743 | [_URL]을 방문하여 추가 정보를 확인 하시겠습니까? | ||
744 | </message> | ||
745 | <option name="Yes"> | ||
746 | 예 | ||
747 | </option> | ||
748 | <option name="No"> | ||
749 | 아니오 | ||
750 | </option> | ||
751 | </alert> | ||
752 | <alert name="UnsupportedGPU"> | ||
753 | <message name="message"> | ||
754 | - 사용 중인 그래픽 카드가 최소 요구 사항을 충족하지 않습니다. | ||
755 | </message> | ||
756 | </alert> | ||
757 | <alert name="UnsupportedCPU"> | ||
758 | <message name="message"> | ||
759 | - 사용 중인 CPU 속도가 최소 요구 사항을 충족하지 않습니다. | ||
760 | </message> | ||
761 | </alert> | ||
762 | <alert name="UnsupportedCPUAmount"> | ||
763 | <message name="message"> | ||
764 | 796 | ||
765 | </message> | ||
766 | </alert> | ||
767 | <alert name="UnsupportedRAM"> | ||
768 | <message name="message"> | ||
769 | - 사용 중인 시스템 메모리가 카드가 최소 요구 사항을 충족하지 않습니다. | ||
770 | </message> | ||
771 | </alert> | ||
772 | <alert name="UnsupportedRAMAmount"> | ||
773 | <message name="message"> | ||
774 | 510 | ||
775 | </message> | ||
776 | </alert> | ||
731 | <alert name="DisplaySettingsNoShaders"> | 777 | <alert name="DisplaySettingsNoShaders"> |
732 | <message name="message"> | 778 | <message name="message"> |
733 | 그래픽 드라이버 인식중 오류가 발생했습니다. 일반적인 드라이버 오류를 피하기 위해 쉐이더는 자동으로 비활성 될 것 입니다. 이것은 일부 그래픽 관련 효과를 비활성 시킬 것 입니다.그래픽 카드나 드라아버의 업데이트를 권유합니다. 쉐이더는 환경설정>그래픽 디테일 에서 다시 활성화 시킬 수 있습니다. | 779 | 그래픽 드라이버 초기화 중 [SECOND_LIFE]에 오류가 발생했습니다. |
780 | 일반적인 드라이버 오류를 방지하기 위해 그래픽 품질이 낮게 설정됩니다. | ||
781 | 이로 인해 일부 그래픽 기능을 사용할 수 없게 될 수 있습니다.. | ||
782 | 그래픽 카드 드라이버의 업데이트를 권장합니다. | ||
783 | 환경 설정 > 그래픽에서 그래픽 품질을 높일 수 있습니다. | ||
734 | </message> | 784 | </message> |
735 | </alert> | 785 | </alert> |
736 | <alert name="ErrorEncodingSnapshot"> | 786 | <alert name="ErrorEncodingSnapshot"> |
@@ -1302,6 +1352,14 @@ www.secondlife.com으로 돌아가 신규 계정을 만드시겠습니까? | |||
1302 | - 이 구획의 일반 오브젝트 | 1352 | - 이 구획의 일반 오브젝트 |
1303 | </message> | 1353 | </message> |
1304 | </alert> | 1354 | </alert> |
1355 | <alert name="HelpEstateAbuseEmailAddress" title="악용 신고 이메일 주소"> | ||
1356 | <message name="message"> | ||
1357 | 유효한 이메일 주소로 이 옵션을 설정하면 | ||
1358 | 이 사유지에 대한 악용 신고가 해당 주소로 전송됩니다. | ||
1359 | 이 옵션을 공란으로 비워두면 악용 신고 내용이 | ||
1360 | 린든랩으로만 전송됩니다. | ||
1361 | </message> | ||
1362 | </alert> | ||
1305 | <alert name="HelpEstateVoiceChat" title="음성 채팅 허용"> | 1363 | <alert name="HelpEstateVoiceChat" title="음성 채팅 허용"> |
1306 | <message name="message"> | 1364 | <message name="message"> |
1307 | 이 사유지의 구획은 주민들이 부근에 있는 다른 사람들과 대화할 수 있는 | 1365 | 이 사유지의 구획은 주민들이 부근에 있는 다른 사람들과 대화할 수 있는 |
@@ -1330,6 +1388,20 @@ www.secondlife.com으로 돌아가 신규 계정을 만드시겠습니까? | |||
1330 | 취소 | 1388 | 취소 |
1331 | </option> | 1389 | </option> |
1332 | </alert> | 1390 | </alert> |
1391 | <alert name="RetryFetchInventoryDescendents"> | ||
1392 | <message name="message"> | ||
1393 | 서버에서 인벤토리를 가져오는 중 시간이 초과되었습니다. 다시 시도하시겠습니까? | ||
1394 | </message> | ||
1395 | <ignore name="ignore"> | ||
1396 | 인벤토리 가져오기 다시 시도 | ||
1397 | </ignore> | ||
1398 | <option name="Retry"> | ||
1399 | 다시 시도 | ||
1400 | </option> | ||
1401 | <option name="Cancel"> | ||
1402 | 취소 | ||
1403 | </option> | ||
1404 | </alert> | ||
1333 | <alert name="ConfirmQuit"> | 1405 | <alert name="ConfirmQuit"> |
1334 | <message name="message"> | 1406 | <message name="message"> |
1335 | 종료 하시겠습니까? | 1407 | 종료 하시겠습니까? |
@@ -3987,18 +4059,18 @@ http://secondlife.com/tiki/tiki-index.php?page=RawTerrainFile | |||
3987 | </alert> | 4059 | </alert> |
3988 | <alert name="HelpEstateAllowResident" title="액세스 허용"> | 4060 | <alert name="HelpEstateAllowResident" title="액세스 허용"> |
3989 | <message name="message"> | 4061 | <message name="message"> |
3990 | 사유지 용한은 목록에 있는 | 4062 | 유지 한 입 아 록에 있는 |
3991 | 주민들과 래 목 그룹들로 제한됩니다. (유지를 메랜드 확 있는 경우, | 4063 | 주민들과 그룹들로 제한됩니다. |
3992 | 사용권한은 주 또는 상의 그룹로 될 고, 이러 제어 비화다. | 4064 | 용 이 제 경 |
3993 | '근 거부' 목록만 ) | 4065 | 용 수 다. |
3994 | </message> | 4066 | </message> |
3995 | </alert> | 4067 | </alert> |
3996 | <alert name="HelpEstateAllowGroup" title="그룹 액세스 허용"> | 4068 | <alert name="HelpEstateAllowGroup" title="그룹 액세스 허용"> |
3997 | <message name="message"> | 4069 | <message name="message"> |
3998 | 사유지 용한은 목록의 그들과 | 4070 | 유지 한 입 아 록 있 |
3999 | 에 특히 된 주들로 제한됩니다. (유지를 메랜드 확 있는 경우, | 4071 | 들 선된 그들로 제한됩니다. |
4000 | 사용권한은 주 또는 상의 그룹로 될 고, 이러 제어 비화다. | 4072 | 용 이 제 경 |
4001 | '근 거부' 목록만 ) | 4073 | 용 수 다. |
4002 | </message> | 4074 | </message> |
4003 | </alert> | 4075 | </alert> |
4004 | <alert name="HelpEstateBanResident" title="액세스 거부"> | 4076 | <alert name="HelpEstateBanResident" title="액세스 거부"> |
@@ -4453,6 +4525,17 @@ http://secondlife.com/community/support.php | |||
4453 | 취소 | 4525 | 취소 |
4454 | </option> | 4526 | </option> |
4455 | </alert> | 4527 | </alert> |
4528 | <alert name="ConfirmClearMediaUrlList"> | ||
4529 | <message name="message"> | ||
4530 | 저장된 URL 목록을 삭제하시겠습니까? | ||
4531 | </message> | ||
4532 | <option name="Yes"> | ||
4533 | 예 | ||
4534 | </option> | ||
4535 | <option name="No"> | ||
4536 | 취소 | ||
4537 | </option> | ||
4538 | </alert> | ||
4456 | <alert name="ConfirmEmptyLostAndFound"> | 4539 | <alert name="ConfirmEmptyLostAndFound"> |
4457 | <message name="message"> | 4540 | <message name="message"> |
4458 | 분실물 보관소 폴더의 내용을 | 4541 | 분실물 보관소 폴더의 내용을 |
@@ -4516,6 +4599,360 @@ http://secondlife.com/community/support.php | |||
4516 | 확인 | 4599 | 확인 |
4517 | </option> | 4600 | </option> |
4518 | </alert> | 4601 | </alert> |
4602 | <alert name="GraphicsPreferencesHelp"> | ||
4603 | <message name="message"> | ||
4604 | 이 창은 창 크기와 클라이언트 그래픽의 해상도 및 품질을 제어합니다. 그래픽 환경 설정 인터페이스를 통해 낮음, 중간, 높음, 매우 높음 등 4개의 그래픽 레벨 중에서 원하는 설정을 선택할 수 있습니다. 사용자 지정 확인란을 선택하고 다음의 설정을 조작하여 이러한 그래픽을 원하는 대로 설정할 수 있습니다. | ||
4605 | |||
4606 | 쉐이더: 여러 가지 픽셀 쉐이더 유형을 활성화하거나 비활성화합니다. | ||
4607 | |||
4608 | 반사 디테일: 물에 반사될 수 있는 오브젝트 유형을 설정합니다. | ||
4609 | |||
4610 | 아바타 렌더링: 클라이언트가 아바타를 렌더링하는 방식에 영향을 주는 옵션을 설정합니다. | ||
4611 | |||
4612 | 렌더링 거리 제한: 장면에서 현재 시점의 오브젝트가 렌더링되는 거리를 조절합니다. | ||
4613 | |||
4614 | 최대 파티클 수: 화면에서 한 번에 볼 수 있는 최대 파티클 수를 설정합니다. | ||
4615 | |||
4616 | 빛 처리 품질: 빛이 렌더링되는 해상도를 설정합니다. | ||
4617 | |||
4618 | 메쉬 디테일: 오브젝트를 렌더링하는 디테일을 설정합니다. | ||
4619 | |||
4620 | 조명 세부 사항: 렌더링할 조명 유형을 선택합니다. | ||
4621 | |||
4622 | 지형 세부 사항: 보려는 지형의 디테일을 설정합니다. | ||
4623 | |||
4624 | 스카이 디테일: 하늘 돔의 밀도를 설정합니다. 값이 클수록 렌더링이 더 오래 걸리지만 태양의 모양이 더 둥글게 표현됩니다. | ||
4625 | </message> | ||
4626 | </alert> | ||
4627 | <alert name="WLSavePresetAlert"> | ||
4628 | <message name="message"> | ||
4629 | 저장된 사전 설정을 덮어쓰시겠습니까? | ||
4630 | </message> | ||
4631 | <option name="Save"> | ||
4632 | 예 | ||
4633 | </option> | ||
4634 | <option name="Cancel"> | ||
4635 | 아니오 | ||
4636 | </option> | ||
4637 | </alert> | ||
4638 | <alert name="WLDeletePresetAlert"> | ||
4639 | <message name="message"> | ||
4640 | [SKY]를 삭제하시겠습니까? | ||
4641 | </message> | ||
4642 | <option name="Delete"> | ||
4643 | 예 | ||
4644 | </option> | ||
4645 | <option name="Cancel"> | ||
4646 | 아니오 | ||
4647 | </option> | ||
4648 | </alert> | ||
4649 | <alert name="WLNoEditDefault"> | ||
4650 | <message name="message"> | ||
4651 | 기본 사전 설정은 편집하거나 삭제할 수 없습니다. | ||
4652 | </message> | ||
4653 | </alert> | ||
4654 | <alert name="WLMissingSky"> | ||
4655 | <message name="message"> | ||
4656 | 이 날짜 주기 파일이 누락된 하늘 파일을 참조하고 있습니다: [SKY]. | ||
4657 | </message> | ||
4658 | </alert> | ||
4659 | <alert name="PPSaveEffectAlert"> | ||
4660 | <message name="message"> | ||
4661 | PostProcess 효과가 이미 있습니다. 덮어쓰시겠습니까? | ||
4662 | </message> | ||
4663 | <option name="Save"> | ||
4664 | 예 | ||
4665 | </option> | ||
4666 | <option name="Cancel"> | ||
4667 | 아니오 | ||
4668 | </option> | ||
4669 | </alert> | ||
4670 | <alert name="HelpEditSky"> | ||
4671 | <message name="message"> | ||
4672 | 하늘 세트를 생성하고 저장하려면 윈드라이트 슬라이더를 편집하십시오. | ||
4673 | </message> | ||
4674 | </alert> | ||
4675 | <alert name="HelpEditDayCycle"> | ||
4676 | <message name="message"> | ||
4677 | 하루 동안 변화하는 하늘의 모양을 설정하십시오. | ||
4678 | </message> | ||
4679 | </alert> | ||
4680 | <alert name="EnvSettingsHelpButton"> | ||
4681 | <message name="message"> | ||
4682 | 이러한 설정은 사용자의 컴퓨터에서 환경이 표현되는 방식을 조절합니다. 모든 설정을 이용하려면 사용 중인 그래픽 카드에서 대기 쉐이더를 지원해야 합니다. | ||
4683 | |||
4684 | 세컨드라이프에서 로컬로 날짜 단계를 변경하려면 "시각" 슬라이더를 조절하십시오. | ||
4685 | |||
4686 | 구름이 하늘을 덮고 있는 양을 조절하려면 "구름양" 슬라이더를 조절하십시오. | ||
4687 | |||
4688 | 수면의 색을 변경하려면 "수면색" 색상 선택기에서 원하는 색을 선택하십시오. | ||
4689 | |||
4690 | 수중에서 안개 농도를 조절하려면 "물안개" 슬라이더를 조절하십시오. | ||
4691 | |||
4692 | 해당 지역의 현재 시각을 초기화하고 연결된 상태를 유지하려면 "사유지 시간 사용"을 클릭하십시오. | ||
4693 | |||
4694 | 하늘에 대한 추가의 고급 설정이 지원되는 편집기를 불러오려면 "고급 스카이"를 클릭하십시오. | ||
4695 | |||
4696 | 물에 대한 추가의 고급 설정이 지원되는 편집기를 불러오려면 "고급 워터"를 클릭하십시오. | ||
4697 | </message> | ||
4698 | </alert> | ||
4699 | <alert name="HelpDayCycle"> | ||
4700 | <message name="message"> | ||
4701 | 날짜 주기 편집기는 세컨드라이프의 낮/밤 주기 동안 하늘의 모양을 조절할 수 있는 기능을 제공합니다. 이것은 기본 환경 편집기의 시각 슬라이더에서 사용되는 주기입니다. | ||
4702 | |||
4703 | 날짜 주기 편집기는 키프레임을 설정하는 방식으로 작동합니다. 이러한 키프레임은 관련된 하늘 사전 설정이 포함된 노드(시간 그래프에서 회색 블립으로 나타남)입니다. 시각이 증가함에 따라 이러한 키프레임 사이에 삽입될 때마다 윈드라이트 하늘이 "애니메이션"으로 표시됩니다. | ||
4704 | |||
4705 | 타임라인 위의 노란색 화살표는 시간을 기준으로 한 현재 보기를 나타냅니다. 해당 시각이 애니메이션되는 방식을 보려면 화살표를 클릭해서 드래그하십시오. 타임라인 우측에 있는 키 추가 및 키 삭제 버튼을 눌러 이러한 키 프레임을 추가하거나 삭제할 수 있습니다. | ||
4706 | |||
4707 | 타임라인과 함께 키프레임을 드래그하거나 키프레임 설정 창에서 값을 직접 설정해서 키프레임 시간 위치를 설정할 수 있습니다. 키프레임 설정 창 내에서 키프레임을 해당하는 윈드라이트 사전 설정값에 연결할 수 있습니다. | ||
4708 | |||
4709 | 주기 길이는 "하루"의 전체 길이를 나타냅니다. 이 값을 작게 설정하면(예: 2분) 전체 24시간 타임라인이 실제로 2분만에 움직입니다. 타임라인 및 키프레임 주기를 모두 설정한 후 결과를 미리 보려면 재생 및 중지 버튼을 사용하십시오. 타임라인 위에 있는 노란색 시간 표시기 화살표만을 움직여서만 실제로 시간 주기가 움직이는 것을 확인할 수 있습니다. 사유지 시간 사용 버튼을 누르면 사유지의 날짜 주기로 하루의 길이와 시간이 동기화됩니다. | ||
4710 | |||
4711 | 설정한 날짜 주기가 만족스러우면 테스트 날짜 저장 및 테스트 날짜 로드 버튼을 사용해서 해당 설정을 저장하고 로드할 수 있습니다. 현재까지는 1일 주기만 사용할 수 있다는 점에 유념하십시오. | ||
4712 | </message> | ||
4713 | </alert> | ||
4714 | <alert name="HelpBlueHorizon"> | ||
4715 | <message name="message"> | ||
4716 | 하늘의 색을 조절하려면 RGB(빨강/초록/파랑) 슬라이더를 사용하십시오. 강도(I) 슬라이더를 사용해서 3개의 모든 RGB 슬라이더를 같은 위치로 이동할 수 있습니다. | ||
4717 | </message> | ||
4718 | </alert> | ||
4719 | <alert name="HelpHazeHorizon"> | ||
4720 | <message name="message"> | ||
4721 | 헤이즈 수평선은 장면에서 전체적인 조명 노출을 조절할 때 | ||
4722 | 가장 유용한 매개변수 중 하나로, 이 매개변수는 | ||
4723 | 태양과 암흑, 구름이 자욱한 설정으로부터 화이트아웃과 같이 | ||
4724 | 높은 노출 설정을 시뮬레이트할 때 | ||
4725 | 효과적입니다. | ||
4726 | </message> | ||
4727 | </alert> | ||
4728 | <alert name="HelpBlueDensity"> | ||
4729 | <message name="message"> | ||
4730 | 파란색 농도는 하늘과 안개의 전체 채도에 영향을 줍니다. 강도(I) 슬라이더를 우측으로 옮기면 색상이 더 밝아지고 선명해집니다. 슬라이더를 모두 왼쪽으로 이동하면 색상이 더 흐려지면서 검정색과 흰색으로 점차 사라집니다. 하늘의 색 균형을 미세하게 조절하려는 경우에는 RGB(빨강/초록/파랑) 슬라이더를 사용해서 채도의 개별 요소를 조절할 수 있습니다. | ||
4731 | </message> | ||
4732 | </alert> | ||
4733 | <alert name="HelpHazeDensity"> | ||
4734 | <message name="message"> | ||
4735 | 헤이즈 농도는 대기 중에서 회색빛의 흐린 | ||
4736 | 안개 레벨을 조절합니다. 이 매개변수는 | ||
4737 | 장면에서 높은 수준의 연기와 사람들이 내뿜는 오염 물질을 | ||
4738 | 시뮬레이트할 때 효과적이며 안개나 미스트를 시뮬레이트할 때도 | ||
4739 | 유용합니다. | ||
4740 | </message> | ||
4741 | </alert> | ||
4742 | <alert name="HelpDensityMult"> | ||
4743 | <message name="message"> | ||
4744 | 농도 배율은 전반적인 대기의 농도를 조절하는 데 사용할 수 있습니다. 설정이 낮을수록 "공기층이 옅어지는" 느낌이 나고 값이 높을수록 공기가 더 무겁고 연기가 자욱한 효과가 납니다. | ||
4745 | </message> | ||
4746 | </alert> | ||
4747 | <alert name="HelpDistanceMult"> | ||
4748 | <message name="message"> | ||
4749 | 윈드라이트에서 인식되는 거리를 조절할 수 있습니다. 0(제로) 값은 | ||
4750 | 지형 및 오브젝트에서 윈드라이트의 효과를 해제하는 데 | ||
4751 | 효과적입니다. 1보다 큰 값을 설정하면 보다 두꺼운 공기층에서 | ||
4752 | 거리를 더 멀게 느껴지게 하는 효과를 시뮬레이트할 수 있습니다. | ||
4753 | </message> | ||
4754 | </alert> | ||
4755 | <alert name="HelpMaxAltitude"> | ||
4756 | <message name="message"> | ||
4757 | 최대 고도는 대기 중의 빛을 산출할 때 윈드라이트에서 | ||
4758 | 수행되는 고도 계산을 조절합니다. 하루 중 | ||
4759 | 오후 시간에 일몰이 나타나는 | ||
4760 | "깊이"를 조절하는 데 유용합니다. | ||
4761 | </message> | ||
4762 | </alert> | ||
4763 | <alert name="HelpSunlightColor"> | ||
4764 | <message name="message"> | ||
4765 | 장면에서 직사 광선의 색상과 강도를 조절합니다. | ||
4766 | </message> | ||
4767 | </alert> | ||
4768 | <alert name="HelpSunAmbient"> | ||
4769 | <message name="message"> | ||
4770 | 장면에서 내부 대기 중 빛의 색상과 강도를 조절합니다. | ||
4771 | </message> | ||
4772 | </alert> | ||
4773 | <alert name="HelpSunGlow"> | ||
4774 | <message name="message"> | ||
4775 | 크기 슬라이더를 태양의 크기를 조절하는 데 사용되고 | ||
4776 | 포커스 슬라이더는 공중에서 태양이 번지는 정도를 | ||
4777 | 조절합니다. | ||
4778 | </message> | ||
4779 | </alert> | ||
4780 | <alert name="HelpSceneGamma"> | ||
4781 | <message name="message"> | ||
4782 | 화면에서 빛과 어둠의 분포 상태를 조절합니다. | ||
4783 | </message> | ||
4784 | </alert> | ||
4785 | <alert name="HelpStarBrightness"> | ||
4786 | <message name="message"> | ||
4787 | 공중에서 별의 밝기를 조절합니다. | ||
4788 | </message> | ||
4789 | </alert> | ||
4790 | <alert name="HelpTimeOfDay"> | ||
4791 | <message name="message"> | ||
4792 | 공중에서 태양의 위치를 조절합니다. | ||
4793 | 이 기능은 고도와 유사합니다. | ||
4794 | </message> | ||
4795 | </alert> | ||
4796 | <alert name="HelpEastAngle"> | ||
4797 | <message name="message"> | ||
4798 | 공중에서 태양의 위치를 조절합니다. | ||
4799 | 이 기능은 방위와 유사합니다. | ||
4800 | </message> | ||
4801 | </alert> | ||
4802 | <alert name="HelpCloudColor"> | ||
4803 | <message name="message"> | ||
4804 | 구름의 색상을 편집합니다. 일반적으로 | ||
4805 | 구름을 흰색으로 설정하는 것이 권장되지만 | ||
4806 | 사용자가 원하는 색상으로 자유롭게 설정할 수 있습니다. | ||
4807 | </message> | ||
4808 | </alert> | ||
4809 | <alert name="HelpCloudDetail"> | ||
4810 | <message name="message"> | ||
4811 | 기본 구름 이미지 상단에 겹쳐진 디테일 이미지를 | ||
4812 | 조절합니다. X/Y는 이미지의 | ||
4813 | 위치를 조절하는 데 사용됩니다. D(농도)는 구름이 팽창된 정도 또는 | ||
4814 | 흩어져 있는 정도를 조절합니다. | ||
4815 | </message> | ||
4816 | </alert> | ||
4817 | <alert name="HelpCloudDensity"> | ||
4818 | <message name="message"> | ||
4819 | X 및 Y 슬라이더를 사용해서 구름의 위치를 조절하고 | ||
4820 | D 슬라이더를 사용해서는 구름의 농도를 | ||
4821 | 조절할 수 있습니다. | ||
4822 | </message> | ||
4823 | </alert> | ||
4824 | <alert name="HelpCloudCoverage"> | ||
4825 | <message name="message"> | ||
4826 | 하늘에 구름이 덮인 양을 조절합니다. | ||
4827 | </message> | ||
4828 | </alert> | ||
4829 | <alert name="HelpCloudScale"> | ||
4830 | <message name="message"> | ||
4831 | 하늘 돔에서 구름 이미지의 크기를 조절합니다. | ||
4832 | </message> | ||
4833 | </alert> | ||
4834 | <alert name="HelpCloudScrollX"> | ||
4835 | <message name="message"> | ||
4836 | 구름이 X 방향으로 이동할 때 속도를 조절합니다. | ||
4837 | </message> | ||
4838 | </alert> | ||
4839 | <alert name="HelpCloudScrollY"> | ||
4840 | <message name="message"> | ||
4841 | 구름이 Y 방향으로 이동할 때 속도를 조절합니다. | ||
4842 | </message> | ||
4843 | </alert> | ||
4844 | <alert name="HelpClassicClouds"> | ||
4845 | <message name="message"> | ||
4846 | 윈드라이트 구름 외의 기존의 세컨드라이프 구름을 렌더링하려면 이 옵션을 선택하십시오. | ||
4847 | </message> | ||
4848 | </alert> | ||
4849 | <alert name="HelpWaterFogColor"> | ||
4850 | <message name="message"> | ||
4851 | 수중 안개의 색상을 선택하십시오. | ||
4852 | </message> | ||
4853 | </alert> | ||
4854 | <alert name="HelpWaterFogDensity"> | ||
4855 | <message name="message"> | ||
4856 | 수중 안개의 농도와 수중에서 볼 수 있는 거리를 조절합니다. | ||
4857 | </message> | ||
4858 | </alert> | ||
4859 | <alert name="HelpUnderWaterFogMod"> | ||
4860 | <message name="message"> | ||
4861 | 아바타가 수중에 있을 때 볼 수 있는 시야 거리를 조절하려면 안개 농도 지수 효과를 수정하십시오. | ||
4862 | </message> | ||
4863 | </alert> | ||
4864 | <alert name="HelpWaterGlow"> | ||
4865 | <message name="message"> | ||
4866 | 수면에서 빛이 나는 정도를 조절합니다. | ||
4867 | </message> | ||
4868 | </alert> | ||
4869 | <alert name="HelpWaterNormalScale"> | ||
4870 | <message name="message"> | ||
4871 | 수면의 3가지 잔물결 크기를 조절합니다. | ||
4872 | </message> | ||
4873 | </alert> | ||
4874 | <alert name="HelpWaterFresnelScale"> | ||
4875 | <message name="message"> | ||
4876 | 여러 각도에서 반사되는 빛의 양을 조절합니다. | ||
4877 | </message> | ||
4878 | </alert> | ||
4879 | <alert name="HelpWaterFresnelOffset"> | ||
4880 | <message name="message"> | ||
4881 | 반사되는 빛의 강도를 조절합니다. | ||
4882 | </message> | ||
4883 | </alert> | ||
4884 | <alert name="HelpWaterScaleAbove"> | ||
4885 | <message name="message"> | ||
4886 | 수면 위에서 바라볼 때 굴절되는 빛의 양을 조절합니다. | ||
4887 | </message> | ||
4888 | </alert> | ||
4889 | <alert name="HelpWaterScaleBelow"> | ||
4890 | <message name="message"> | ||
4891 | 수면 아래에서 바라볼 때 굴절되는 빛의 양을 조절합니다. | ||
4892 | </message> | ||
4893 | </alert> | ||
4894 | <alert name="HelpWaterBlurMultiplier"> | ||
4895 | <message name="message"> | ||
4896 | 물결과 반사량이 혼합되는 정도를 조절합니다. | ||
4897 | </message> | ||
4898 | </alert> | ||
4899 | <alert name="HelpWaterNormalMap"> | ||
4900 | <message name="message"> | ||
4901 | 수면에 겹쳐지는 일반 맵을 조절하여 | ||
4902 | 반사/굴절률을 결정합니다. | ||
4903 | </message> | ||
4904 | </alert> | ||
4905 | <alert name="HelpWaterWave1"> | ||
4906 | <message name="message"> | ||
4907 | 일반 맵의 확장된 버전이 X 및 Y 방향으로 이동할 때의 위치와 | ||
4908 | 속도를 조절합니다. | ||
4909 | </message> | ||
4910 | </alert> | ||
4911 | <alert name="HelpWaterWave2"> | ||
4912 | <message name="message"> | ||
4913 | 일반 맵의 축소된 버전이 X 및 Y 방향으로 이동할 때의 위치와 | ||
4914 | 속도를 조절합니다. | ||
4915 | </message> | ||
4916 | </alert> | ||
4917 | <alert name="NewSkyPreset"> | ||
4918 | <message name="message"> | ||
4919 | 새 하늘의 이름을 지정하십시오. | ||
4920 | </message> | ||
4921 | <option name="OK"> | ||
4922 | 확인 | ||
4923 | </option> | ||
4924 | <option name="Cancel"> | ||
4925 | 취소 | ||
4926 | </option> | ||
4927 | 새 사전 설정 | ||
4928 | </alert> | ||
4929 | <alert name="ExistsSkyPresetAlert"> | ||
4930 | <message name="message"> | ||
4931 | 사전 설정이 이미 존재합니다! | ||
4932 | </message> | ||
4933 | </alert> | ||
4934 | <alert name="NewWaterPreset"> | ||
4935 | <message name="message"> | ||
4936 | 새 수면 사전 설정의 이름을 지정하십시오. | ||
4937 | </message> | ||
4938 | <option name="OK"> | ||
4939 | 확인 | ||
4940 | </option> | ||
4941 | <option name="Cancel"> | ||
4942 | 취소 | ||
4943 | </option> | ||
4944 | 새 사전 설정 | ||
4945 | </alert> | ||
4946 | <alert name="ExistsWaterPresetAlert"> | ||
4947 | <message name="message"> | ||
4948 | 사전 설정이 이미 존재합니다! | ||
4949 | </message> | ||
4950 | </alert> | ||
4951 | <alert name="WaterNoEditDefault"> | ||
4952 | <message name="message"> | ||
4953 | 기본 사전 설정은 편집하거나 삭제할 수 없습니다. | ||
4954 | </message> | ||
4955 | </alert> | ||
4519 | <alert name="ChatterBoxSessionStartError"> | 4956 | <alert name="ChatterBoxSessionStartError"> |
4520 | <message name="message"> | 4957 | <message name="message"> |
4521 | [RECIPIENT](과)와의 새 채팅 세션 시작 중 오류가 발생했습니다. | 4958 | [RECIPIENT](과)와의 새 채팅 세션 시작 중 오류가 발생했습니다. |
@@ -4562,6 +4999,9 @@ http://secondlife.com/community/support.php | |||
4562 | </message> | 4999 | </message> |
4563 | </alert> | 5000 | </alert> |
4564 | <alert name="DebitPermissionDetails" title="직불 허용 요청에 관하여"> | 5001 | <alert name="DebitPermissionDetails" title="직불 허용 요청에 관하여"> |
5002 | <message name="message"> | ||
5003 | 이 요청을 수락하면 귀하의 계정에서 린든 달러(L$)를 가져갈 수 있는 지속적인 스크립트 권한을 부여하는 것입니다. 이 권한을 취소하려면 오브젝트 소유자가 해당 오브젝트를 삭제하거나 오브젝트의 스크립트를 초기화해야 합니다. | ||
5004 | </message> | ||
4565 | <option name="OK"> | 5005 | <option name="OK"> |
4566 | 확인 | 5006 | 확인 |
4567 | </option> | 5007 | </option> |
diff --git a/linden/indra/newview/skins/xui/ko/floater_about.xml b/linden/indra/newview/skins/xui/ko/floater_about.xml index f6b0b8f..6f8cca1 100644 --- a/linden/indra/newview/skins/xui/ko/floater_about.xml +++ b/linden/indra/newview/skins/xui/ko/floater_about.xml | |||
@@ -1,11 +1,9 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <floater name="floater_about" title="세컨드라이프 정보"> | 2 | <floater name="floater_about" title="세컨드라이프 정보"> |
3 | <text_editor name="credits_editor"> | 3 | <text_editor name="credits_editor"> |
4 | Second Life 제작자들: Philip, Andrew, Tessa, Cory, Frank, James, Doug, Hunter, Richard, John, Eric, Avi, AaronB, AaronY, Ian, Peter, Mark, Robin, Stephen, Tracy, Ryan, Alberto, Haney, Tanya, JimJ, Dan, Ben, Stephanie, Tim, Evan, Catherine, Colin, Chris, Reuben, Charity, Jeska, James, JonHenry, Kelly, Callum, Char, Daniel, DavidF, Don, Jeff, Lauren, Lee, Michael, Ramzi, Vektor, Steve, TomY, Tess, Kona, Brent, Clarissa, PeterP, Jesse, Annette, Cyn, Blue, Ginsu, Jonathan, Karen, Adam, Nova, Deana, Lizzie, Patsy, DavidK, Isaac, Pathfinder, Monroe, Jill, Benny, Altruima, Rheya, Jennifer, Jack, DaveP, Brad, Mick, Babbage, Elisabeth, Brian, Beth, Data, Ethan, Wendy, Nicole, Sky, Jeffrey, Zero, Coffee, Tesla, Kenny, Makiko, Nigel, Teeple, Lucy, Mia, Dee, Guy, Harry, Liana, Branka, Jimbo, Aura, Vasuda, SarahD, bethanye, Torley, Runitai, MikeS, PaulM, Milo, Hermia, JoeM, Melanie, Rejean, DSmith, SMiller, Susan, Jose, DongYun, Justin, Andrey, Syrah, Donovan, Henrik, Nora, Lexie, AC, Donna, ChrisC, Alex, Leyla, Kyle, Mathew, Devin, Joshua, DanC, Jessica, Harmony, Claudia, Tramel, Glenn, Betsy, Fritz, Jun, Adam, Cassandra, Ken, RyanW, Spike, Tofu, Varas, Andy, Luke, RobLa, Chiyo, JohnZ, Dustin, George, Del, PeterP, Migyeong, Matthew, RMullane, CChampion, JTurbin, JamesC, Viola, Lightfoot, Jacqui, Sturm, Adrian, Buttercup, Alfred, Sunil, Alfred, Noel, Irfan, Jill, Yool, Jane, Yuki, Yoz, Matthew, Arthur, Jennifer, Karl, Brian, Ben, Janine, Christopher, Madhavi, Everett, Anthony, Joon, Jake, sean, Adreanne, Stephany, KellyJo, Jeremy, Pramod, Joshua, Sean, Christopher, Amy, Ceren, Katherine, jon, Sudheendra, James, Stephan, Kari, Kartic, Todd, Thomas, Joki, Rebecca, Belinda, Bert, Roger, Bridie, Kristi, Brian, Maria, John, Aric, Nathanel, Melinda, Darrell, Jennifer, Sandy, Greg, Rob, Brad, Chris, Eric, Palmer, Asi, Katja, Lisa, Minda, Jen, Aaron, Bryan, Mark, Jonathan, Jamie, Laurel, William, Matthew, Steve, David, Remy, James, Tim, Lee, Brian, Ashlei, Sam, Mike, Ethan, Austin, Wanda, Paul, Brian, Rachel, Valentyn, Emma Williams, Autum, Steven, Laley, Charles, Jessica, Sue, Gillian, CG, Kip, Kristen, Shamiran, Blake, Brett, Erica, Kent, Joel, Plexus, Twilight, Joppa, 그 외에 많은 분들이 수고해 주셨습니다. | 4 | Second Life 제작자들: Philip, Andrew, Tessa, Cory, Frank, James, Doug, Hunter, Richard, John, Eric, Avi, AaronB, AaronY, Ian, Peter, Mark, Robin, Stephen, Tracy, Ryan, Alberto, Haney, Tanya, JimJ, Dan, Ben, Stephanie, Tim, Evan, Catherine, Colin, Chris, Reuben, Charity, Jeska, James, JonHenry, Kelly, Callum, Char, Daniel, DavidF, Don, Jeff, Lauren, Lee, Michael, Ramzi, Vektor, Steve, TomY, Tess, Kona, Brent, Clarissa, PeterP, Jesse, Annette, Cyn, Blue, Ginsu, Jonathan, Karen, Adam, Nova, Deana, Lizzie, Patsy, DavidK, Isaac, Pathfinder, Monroe, Jill, Benny, Altruima, Rheya, Jennifer, Jack, DaveP, Brad, Mick, Babbage, Elisabeth, Brian, Beth, Data, Ethan, Wendy, Nicole, Sky, Jeffrey, Zero, Coffee, Tesla, Kenny, Makiko, Nigel, Teeple, Lucy, Mia, Dee, Guy, Harry, Liana, Branka, Jimbo, Aura, Vasuda, SarahD, bethanye, Torley, Runitai, MikeS, PaulM, Milo, Hermia, JoeM, Melanie, Rejean, DSmith, SMiller, Susan, Jose, DongYun, Justin, Andrey, Syrah, Donovan, Henrik, Nora, Lexie, AC, Donna, ChrisC, Alex, Leyla, Kyle, Mathew, Devin, Joshua, DanC, Jessica, Harmony, Claudia, Tramel, Glenn, Betsy, Fritz, Jun, Adam, Cassandra, Ken, RyanW, Spike, Tofu, Varas, Andy, Luke, RobLa, Chiyo, JohnZ, Dustin, George, Del, PeterP, Migyeong, Matthew, RMullane, CChampion, JTurbin, JamesC, Viola, Lightfoot, Jacqui, Sturm, Adrian, Buttercup, Alfred, Sunil, Alfred, Noel, Irfan, Jill, Yool, Jane, Yuki, Yoz, Matthew, Arthur, Jennifer, Karl, Brian, Ben, Janine, Christopher, Madhavi, Everett, Anthony, Joon, Jake, sean, Adreanne, Stephany, KellyJo, Jeremy, Pramod, Joshua, Sean, Christopher, Amy, Ceren, Katherine, jon, Sudheendra, James, Stephan, Kari, Kartic, Todd, Thomas, Joki, Rebecca, Belinda, Bert, Roger, Bridie, Kristi, Brian, Maria, John, Aric, Nathanel, Melinda, Darrell, Jennifer, Sandy, Greg, Rob, Brad, Chris, Eric, Palmer, Asi, Katja, Lisa, Minda, Jen, Aaron, Bryan, Mark, Jonathan, Jamie, Laurel, William, Matthew, Steve, David, Remy, James, Tim, Lee, Brian, Ashlei, Sam, Mike, Ethan, Austin, Wanda, Paul, Brian, Rachel, Valentyn, Emma Williams, Autum, Steven, Laley, Charles, Jessica, Sue, Gillian, CG, Kip, Kristen, Shamiran, Blake, Brett, Erica, Kent, Joel, Plexus, Twilight, Joppa, Enus, Kraft, Naveen, Simon, Q, Ronp, Laurap, Ram, KyleJM, Marty, Kend, Daveh, Prospero, Melissa, Nat, Hamilton, Green, Seraph, Ekim, Miz, Jimmy, Kosmo, Rome, Doris, JT, Benoc, Whump, Mango, Trinity, Patch, TJ, Christy, Bao, Joohwan, Kate, Oreh, Angela, Johan, Cheah, Lan, Matias, Brandy, Cogsworth, Aleks, Mitchell, Space, Einstein, Bambers, Colton, Malbers, Maggie, Umesh, Santosh, Rose, Stash, Rothman, Winnie, Stella, Niall, 그 외에 많은 분들이 수고해 주셨습니다. |
5 | 5 | ||
6 | Jesse Malthus를 기억하며... 그의 목소리를 들었던 모든 사람들에 의해 그는 다정스럽게 기억될 것입니다. | 6 | 현재 버전이 최상의 버전이 될 수 있도록 도와주신 게이머 여러분께 감사드립니다: aaron23 decuir, Abelv Vollmar, Abyssin Otoro, ActingIll Igaly, Adamas Carter, Addy Broome, Adelia Menges, Alexandra Rucker, Alexandrea Fride, Alissa Sabre, Alyx Jonson, Ann Otoole, Anton Fargis, Aradia Dielli, Araina jewell, Arcane Clawtooth, arcangelo vantelli, Are Sperber, Argent Stonecutter, arkady yost, Ashcroft Burnham, Ashen Arida, Auron Forcella, Azadine Umarov, Azildin Furst, Balp Allen, Balpien Hammerer, Barney Boomslang, Barrett Slade, becky pippen, Beeflin Grut, Beer Dailey, Behemoth Greenwood, bigmanu greene, bitova loon, Bonca Chikuwa, Bonnie Bechir, Brandon Catteneo, buttonpusher jones, Carina Raymaker, Ceera Murakami, Celierra Darling, ChatNoir Moonsoo, Cheetah Hammerer, chet neurocam, Cinthya Loveless, Cold Spitteler, Coral Quinnell, Crash Pointe, CrazyTB Oh, Creem Pye, Crom Chaffe, ctrl althouse, dade carver, Dael Ra, dakota schwade, Dale Innis, Damian McLeod, Danger Lytton, danielluh ashton, DanOfWA Flanagan, Davec Horsforth, Davidius Morigi, davie zinner, Day Oh, DBDigital Epsilon, Deany Fall, deBruce Munro, Decaf Coffey, Dedric Mauriac, Deeso Saeed, Dekka Raymaker, dexter eberhart, Dildo Spitz, Dizzy Banjo, djcabello klaar, Dnali Anabuki, Domchi Underwood, Doran Zemlja, Drew Dwi, Duckless Vandyke, Duncan Stenvaag, Dylan Rickenbacker, dzogchen Moody, Dzonatas Sol, Eddy Stryker, Edward Griffith, Edward Pearse, ein duesenburg, Elle Pollack, Elle74 Zaftig, Emileigh Starbrook, Emma Nowhere, ener bing, Erdrick Balbozar, eric domela, Evangeline Biedermann, Excalibur Longstaff, Fake Fitzgerald, Feldspar Millgrove, Feynt Mistral, Fluf Fredriksson, Forbid Utorid, Fortyniner Beck, Francesco Despres, Francisco Koolhoven, Franta Burt, Fury Rosewood, garde Burrel, Garmin Kawaguichi, Gavin Ichigo, Gellan Glenelg, Genie Demina, Gennifer Meredith, Gigs Taggart, Goldie Katsu, Gwyneth Llewelyn, Haravikk Mistral, Harleen Gretzky, Haruki Watanabe, Heather Manatiso, Henri Beauchamp, Honey Fairweather, Hypatia Callisto, Ice Brodie, icktoofay Kamachi, IntLibber Brautigan, Janise Dreamscape, Jay Shinobu, Jenni Ryba, Jeremy Ondricek, JetZep Zabelin, Jims Smythe, Jini Hammerer, Jopy Weber, JustOneMore Loon, Kaluura Boa, Kara Markova, Kevin Susenko, Khyra Ares, Kii Lilliehook, Kitty Barnett, Kris Kuttelwascher, Lanita Wingtips, Laura18 Streeter, Lee Ludd, Lettrius Jewell, Liberty Tesla, LilyAnna Carter, Lindal Kidd, Lisa Lowe, Lisa McConnell, Lola Machin, luca peck, Lupus Clawtooth, M1sha Dallin, Macsima Dagostino, Mana Janus, Mani Canning, Manjusri Binder, marceledward edman, march Korda, marchino villota, Marcus Llewellyn, MartinRJ Fayray, Matthew Dowd, Max Kleiber, mazzy fastback, McCabe Maxsted, Mckailen Kohnke, Meghan Dench, Melvin Starbrook, Mercia Mcmahon, Miakoda Carnell, Michelle2 Zenovka, Michi Lumin, mick parnall, Milla Michinaga, Millie Thompson, miranda Ashby, Mircea Lobo, MIssSara Beck, mouse mimistrobell, Myria Boa, Nanci Barthelmess, Nargus Asturias, Natalya Debevec, Nedrae Messmer, Nexeus Fatale, Niky Zenovka, Nimrod Szondi, Ninane Yoshikawa, Noch Tripsa, nokithecat writer, Nyko Merlin, Onyx Halberd, oryx tempel, Osprey Therian, Pac Hyun, Panagea McMillan, Patrick Ferrentino, PattehPh0x Katsu, ponk bing, Poppy Linden, Prajna Vella, Precious Rhiano, Prokofy Neva, Randall Lovenkraft, Rascal Ratelle, Raydon Writer, Rhaorth Antonelli, Rock Hayek, Ron Crimson, Ron Khondji, Ronald Richez, Rui Clary, Ruud Lathrop, Sakkano Imako, Sam Reinard, Sascha Vandyke, Scrippy Scofield, Sean18 McCarey, Sedona Mills, Sekonda Huet, Seraph Nephilim, Sergei Milos, Shadowquine Maltz, shai khalifa, sheilah flatley, Sheri Underwood, Shuggy Husky, Sierra Janus, Sigma Avro, Simil Miles, simon kline, Simon Nolan, Sindy Tsure, Sparks Keynes, Squirrel Wood, Stahi Columbia, StarSong Bright, Summer Seale, Sunn Thunders, Susan Koltai, Syler Zhora, Synack Fitzgerald, Tayra Dagostino, Tee Cramer, Teravus Ousley, Thomas Shikami, Tia Araw, Tillie Ariantho, Topher Brooks, Torley Linden, Twosteppin Jewell, tx Oh, urantia jewell, vaguegirl Petty, VeC Merlin, venus petrov, vv33d Beck, vynka dean, zann canto, zeebster colasanti, Zi Ree, Zion Tristan, Zorin Frobozz, Zyzzy Zarf |
7 | |||
8 | 현재 버전이 최고 버전이 될 수 있도록 도와주신 주민들께 감사 드립니다: Aces Spade, Adrian Buckler, Adrienne LeShelle, Amanda Ascot, AnnaQuay Heart, Aquamina Khalifa, Arienne Anatine, Aston Hildyard, Ayami Kamachi, Badinage Odets, Biffy Berjis, Bigfox Pye, BigJohn Jade, BigRick Byrd, Brettus Tripsa, Brock Fitzgerald, Broker Allen, Browse by Name, Chiria Celt, Christopher Prudhomme, dale Cao, dale Lynch, Dante Tucker, DaQbet Kish, Dargon Pacer, Darius Antonelli, Deira Llanfair, DeviantBone Xi, Dore Dorado, Englishwob Etchegaray, Enya Masala, Eric Renneville, Fairfax Michinaga, FireFox Bancroft, FOXI Cortes, Frederick Earp, Geo Meek, Gotthilf Fischer, Hallo Loon, Hawk Carter, Hazel Kyrgyz, Hecter Barbosa, Hex Link, Ice Pak, Ideasu Mukerji, Itoku Kamachi, Jared Halleck, Jaykob Carter, Jennifer Drumheller, JensMartin Tomsen, JIAB Boa, Jim Gustafson, JimmyJet Fossett, Joseph Rustamova, Jt Volos, Karilyn Kidomen, Kaysha Sion, Keaton Nacon, Kevin Susenko, Khashai Steinbeck, Kira Cuddihy, Kit Massiel, Kojo Dixon, KUieTSToRm Lightcloud, Kwai Kyong, Kyrtis Daehlie, LazyGunGuy Bartlett, Lewcas Zapedzki, Lioc Cioc, LLIB Utu, Lou Liebknecht, Luca Draken, Maci Homewood, Major Sewell, Mari Todriya, MarieElize Noel, matt27 Churchill, Maverick Miasma, maydaysos Young, Mediaho Ball, Mikayla Gillespie, Mike Faulkland, Modfire Milland, MollyBrown Foxley, Mosley Jewell, Nuahs Zapedzki, Nyx Divine, Panther Farber, Paul Bumi, Preciousse Moody, PrincessNina Prefect, Prio Serpentine, Rainbow Drake, Randall Rall, Randy Kazan, Reinhart Mokeev, Rhyph Somme, Rico Roizman, Ruge Dryke, Ryan Orbit, Safira Rosher, Samantha Bainbridge, Sammy Foxley, Sash Furst, Saturn Ariantho, Sienna Summers, Skye Enoch, Sofie Kanno, Solar Legion, Sonic Oki, Sunra Saenz, Taina Heart, Taryn Sprawl, tenerife Wei, TomDragon Nilsson, Trebla Reve, Trouble Carnell, user1cat Orbit, Vance Merlin, Veritas Variscan, Web Page, Wi3g3ht3s Ihnen, WinDrftr DeFarge, Yuu Nakamichi, Zac Delec, Zed Fairweather, Zimmo Hallard 등. | ||
9 | 7 | ||
10 | APR Copyright (C) 2000-2004 The Apache Software Foundation | 8 | APR Copyright (C) 2000-2004 The Apache Software Foundation |
11 | cURL Copyright (C) 1996-2002, Daniel Stenberg, (daniel@haxx.se) | 9 | cURL Copyright (C) 1996-2002, Daniel Stenberg, (daniel@haxx.se) |
@@ -22,12 +20,12 @@ SSLeay Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | |||
22 | xmlrpc-epi Copyright (C) 2000 Epinions, Inc. | 20 | xmlrpc-epi Copyright (C) 2000 Epinions, Inc. |
23 | zlib Copyright (C) 1995-2002 Jean-loup Gailly and Mark Adler. | 21 | zlib Copyright (C) 1995-2002 Jean-loup Gailly and Mark Adler. |
24 | 22 | ||
25 | 저작권 보유됨. 자세한 내용은 licenses.txt를 참조하십시오. | 23 | 저작권 보유. 자세한 내용은 licenses.txt를 참조하십시오. |
26 | 24 | ||
27 | 음성 채팅 오디오 코딩: Polycom(R) Siren14(TM) (ITU-T Rec. G.722.1 Annex C) | 25 | 음성 채팅 오디오 코딩: Polycom(R) Siren14(TM) (ITU-T Rec. G.722.1 Annex C) |
28 | 26 | ||
29 | 27 | ||
30 | 와씨, . 고 군요. | 28 | 복이 근한 강 한리. -- Charles M. Schulz |
31 | </text_editor> | 29 | </text_editor> |
32 | <text name="you_are_at"> | 30 | <text name="you_are_at"> |
33 | [POSITION]에 있습니다. | 31 | [POSITION]에 있습니다. |
diff --git a/linden/indra/newview/skins/xui/ko/floater_about_land.xml b/linden/indra/newview/skins/xui/ko/floater_about_land.xml index aabaffa..772b2eb 100644 --- a/linden/indra/newview/skins/xui/ko/floater_about_land.xml +++ b/linden/indra/newview/skins/xui/ko/floater_about_land.xml | |||
@@ -75,8 +75,7 @@ | |||
75 | name="Abandon Land..." /> | 75 | name="Abandon Land..." /> |
76 | <button label="토지 재청구" label_selected="토지 재청구" | 76 | <button label="토지 재청구" label_selected="토지 재청구" |
77 | name="Reclaim Land..." /> | 77 | name="Reclaim Land..." /> |
78 | <button label="린든 판매" label_selected="린든 판매" | 78 | <button label="린든 판매" label_selected="린든 판매" name="Linden Sale..." |
79 | name="Linden Sale..." | ||
80 | tool_tip="토지는 소유 상태여야 하며, 컨탠츠가 설정되어야 하며, 비경매상태 이어야 합니다." /> | 79 | tool_tip="토지는 소유 상태여야 하며, 컨탠츠가 설정되어야 하며, 비경매상태 이어야 합니다." /> |
81 | <text name="new users only"> | 80 | <text name="new users only"> |
82 | 새로운 사용자에 한 함 | 81 | 새로운 사용자에 한 함 |
@@ -359,13 +358,58 @@ | |||
359 | </text> | 358 | </text> |
360 | </panel> | 359 | </panel> |
361 | <panel label="미디어" name="land_media_panel"> | 360 | <panel label="미디어" name="land_media_panel"> |
361 | <text name="at URL:"> | ||
362 | 미디어 URL: | ||
363 | </text> | ||
364 | <button label="설정..." label_selected="설정..." name="set_media_url" /> | ||
365 | <text name="with media:"> | ||
366 | 미디어 유형: | ||
367 | </text> | ||
368 | <combo_box name="media type" | ||
369 | tool_tip="URL이 동영상, 웹페이지 또는 다른 미디어 유형인지 여부를 지정하십시오." /> | ||
370 | <text name="Description:"> | ||
371 | 설명: | ||
372 | </text> | ||
373 | <line_editor name="url_description" | ||
374 | tool_tip="재생/로드 버튼 옆에 표시된 텍스트" /> | ||
375 | <text name="replace_texture_help"> | ||
376 | (재생 화살표를 클릭하면 이 텍스처를 사용하는 오브젝트에서 | ||
377 | 동영상 또는 웹페이지가 표시됩니다.) | ||
378 | </text> | ||
379 | <text name="Options:"> | ||
380 | 미디어 | ||
381 | 옵션: | ||
382 | </text> | ||
383 | <check_box label="미디어 반복" name="media_loop" | ||
384 | tool_tip="미디어를 반복해서 재생합니다. 미디어 재생이 완료되면 처음부터 다시 재생을 시작합니다." /> | ||
385 | <check_box label="미디어 URL 숨기기" name="hide_media_url" | ||
386 | tool_tip="이 옵션을 선택하면 이 구획 정보에 대해 승인되지 않은 사용자에게 미디어 URL이 숨겨집니다. 이 옵션은 HTML 형식에 대해 사용할 수 없습니다." /> | ||
387 | <check_box label="음악 URL 숨기기" name="hide_music_url" | ||
388 | tool_tip="이 옵션을 선택하면 이 구획 정보에 대해 승인되지 않은 사용자에게 음악 URL이 숨겨집니다." /> | ||
389 | <text name="media_size" | ||
390 | tool_tip="웹 미디어를 렌더링할 크기이며 기본값은 레벨 0입니다."> | ||
391 | 미디어 크기: | ||
392 | </text> | ||
393 | <spinner name="media_size_width" | ||
394 | tool_tip="웹 미디어를 렌더링할 크기이며 기본값은 레벨 0입니다." /> | ||
395 | <spinner name="media_size_height" | ||
396 | tool_tip="웹 미디어를 렌더링할 크기이며 기본값은 레벨 0입니다." /> | ||
397 | <text name="pixels"> | ||
398 | 픽셀 | ||
399 | </text> | ||
400 | <text name="MusicURL:"> | ||
401 | 음악 URL: | ||
402 | </text> | ||
403 | <text name="Sound:"> | ||
404 | 소리: | ||
405 | </text> | ||
362 | <check_box label="소리를 이 구획으로 한정" name="check sound local" /> | 406 | <check_box label="소리를 이 구획으로 한정" name="check sound local" /> |
363 | <text type="string" length="1" name="Music URL:"> | 407 | <text type="string" length="1" name="Music URL:"> |
364 | 음악 URL: | 408 | 음악 URL: |
365 | </text> | 409 | </text> |
366 | <text type="string" length="1" name="Media texture:"> | 410 | <text type="string" length="1" name="Media texture:"> |
367 | 드 | 411 | 대 |
368 | : | 412 | 텍: |
369 | </text> | 413 | </text> |
370 | <text type="string" length="1" name="Replace this texture:"> | 414 | <text type="string" length="1" name="Replace this texture:"> |
371 | 이 텍스처를 교체함: | 415 | 이 텍스처를 교체함: |
@@ -375,12 +419,10 @@ | |||
375 | <text type="string" length="1" name="with content from this URL:"> | 419 | <text type="string" length="1" name="with content from this URL:"> |
376 | 다음 URL의 컨텐츠로 교체: | 420 | 다음 URL의 컨텐츠로 교체: |
377 | </text> | 421 | </text> |
378 | <check_box label="컨텐츠 자동 크기 조절 (속도 및 시각 품질 저하)" | 422 | <check_box label="자동 크기 조절" name="media_auto_scale" |
379 | name="media_auto_scale" | ||
380 | tool_tip="이 옵션을 선택하면 이 구획의 컨텐츠의 크기가 자동으로 조절됩니다. 속도 및 시각 품질이 약간 떨어질 수 있지만 추가적인 텍스처 크기 조절이나 정렬이 필요 없습니다." /> | 423 | tool_tip="이 옵션을 선택하면 이 구획의 컨텐츠의 크기가 자동으로 조절됩니다. 속도 및 시각 품질이 약간 떨어질 수 있지만 추가적인 텍스처 크기 조절이나 정렬이 필요 없습니다." /> |
381 | <text name="Voice settings:"> | 424 | <text name="Voice settings:"> |
382 | 음성 | 425 | 음성: |
383 | 설정: | ||
384 | </text> | 426 | </text> |
385 | <radio_group name="parcel_voice_channel"> | 427 | <radio_group name="parcel_voice_channel"> |
386 | <radio_item name="Estate"> | 428 | <radio_item name="Estate"> |
@@ -421,6 +463,9 @@ | |||
421 | 그룹 | 463 | 그룹 |
422 | </combo_item> | 464 | </combo_item> |
423 | </combo_box> | 465 | </combo_box> |
466 | <text label="항상 허용" name="AllowedText"> | ||
467 | 허용된 주민 | ||
468 | </text> | ||
424 | <button label="추가" label_selected="추가" name="add_allowed" /> | 469 | <button label="추가" label_selected="추가" name="add_allowed" /> |
425 | <button label="제거" label_selected="제거" name="remove_allowed" /> | 470 | <button label="제거" label_selected="제거" name="remove_allowed" /> |
426 | <check_box label="차단" name="AccessCheck"> | 471 | <check_box label="차단" name="AccessCheck"> |
@@ -435,6 +480,9 @@ | |||
435 | tool_tip="이 구획에 대한 임시 통행권 부여" /> | 480 | tool_tip="이 구획에 대한 임시 통행권 부여" /> |
436 | <spinner label="가격 (L$):" name="PriceSpin" /> | 481 | <spinner label="가격 (L$):" name="PriceSpin" /> |
437 | <spinner label="사용시간:" name="HoursSpin" /> | 482 | <spinner label="사용시간:" name="HoursSpin" /> |
483 | <text label="차단" name="BannedText"> | ||
484 | 출입금지된 주민 | ||
485 | </text> | ||
438 | <name_list name="BannedList" tool_tip="([LISTED] 목록에 있음, [MAX] 최대)" /> | 486 | <name_list name="BannedList" tool_tip="([LISTED] 목록에 있음, [MAX] 최대)" /> |
439 | <button label="추가" label_selected="추가" name="add_banned" /> | 487 | <button label="추가" label_selected="추가" name="add_banned" /> |
440 | <button label="제거" label_selected="제거" name="remove_banned" /> | 488 | <button label="제거" label_selected="제거" name="remove_banned" /> |
diff --git a/linden/indra/newview/skins/xui/ko/floater_buy_object.xml b/linden/indra/newview/skins/xui/ko/floater_buy_object.xml index 3e6ee75..da3df23 100644 --- a/linden/indra/newview/skins/xui/ko/floater_buy_object.xml +++ b/linden/indra/newview/skins/xui/ko/floater_buy_object.xml | |||
@@ -9,8 +9,11 @@ | |||
9 | <button label="취소" label_selected="취소" name="cancel_btn" /> | 9 | <button label="취소" label_selected="취소" name="cancel_btn" /> |
10 | <button label="구매" label_selected="구매" name="buy_btn" /> | 10 | <button label="구매" label_selected="구매" name="buy_btn" /> |
11 | <text name="title_buy_text"> | 11 | <text name="title_buy_text"> |
12 | [NAME]약 | 12 | 구매 |
13 | </text> | 13 | </text> |
14 | <string name="title_buy_copy_text"> | ||
15 | 복사본 구매 | ||
16 | </string> | ||
14 | <text name="no_copy_text"> | 17 | <text name="no_copy_text"> |
15 | (복사 안 함) | 18 | (복사 안 함) |
16 | </text> | 19 | </text> |
diff --git a/linden/indra/newview/skins/xui/ko/floater_day_cycle_options.xml b/linden/indra/newview/skins/xui/ko/floater_day_cycle_options.xml new file mode 100644 index 0000000..9f4d72c --- /dev/null +++ b/linden/indra/newview/skins/xui/ko/floater_day_cycle_options.xml | |||
@@ -0,0 +1,97 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | ||
2 | <floater name="Day Cycle Floater" title="날짜 주기 편집기"> | ||
3 | <tab_container name="Day Cycle Tabs"> | ||
4 | <panel label="날짜 주기" name="Day Cycle"> | ||
5 | <button label="?" name="WLDayCycleHelp" /> | ||
6 | <text name="WL12am"> | ||
7 | 12am | ||
8 | </text> | ||
9 | <text name="WL3am"> | ||
10 | 3am | ||
11 | </text> | ||
12 | <text name="WL6am"> | ||
13 | 6am | ||
14 | </text> | ||
15 | <text name="WL9amHash"> | ||
16 | 9am | ||
17 | </text> | ||
18 | <text name="WL12pmHash"> | ||
19 | 12pm | ||
20 | </text> | ||
21 | <text name="WL3pm"> | ||
22 | 3pm | ||
23 | </text> | ||
24 | <text name="WL6pm"> | ||
25 | 6pm | ||
26 | </text> | ||
27 | <text name="WL9pm"> | ||
28 | 9pm | ||
29 | </text> | ||
30 | <text name="WL12am2"> | ||
31 | 12am | ||
32 | </text> | ||
33 | <text name="WL12amHash"> | ||
34 | | | ||
35 | </text> | ||
36 | <text name="WL3amHash"> | ||
37 | I | ||
38 | </text> | ||
39 | <text name="WL6amHash"> | ||
40 | | | ||
41 | </text> | ||
42 | <text name="WL9amHash2"> | ||
43 | I | ||
44 | </text> | ||
45 | <text name="WL12pmHash2"> | ||
46 | | | ||
47 | </text> | ||
48 | <text name="WL3pmHash"> | ||
49 | I | ||
50 | </text> | ||
51 | <text name="WL6pmHash"> | ||
52 | | | ||
53 | </text> | ||
54 | <text name="WL9pmHash"> | ||
55 | I | ||
56 | </text> | ||
57 | <text name="WL12amHash2"> | ||
58 | | | ||
59 | </text> | ||
60 | <button label="키 추가" label_selected="키 추가" name="WLAddKey" /> | ||
61 | <button label="키 삭제" label_selected="키 삭제" name="WLDeleteKey" /> | ||
62 | <text name="WLCurKeyFrameText"> | ||
63 | 키프레임 설정: | ||
64 | </text> | ||
65 | <text name="WLCurKeyTimeText"> | ||
66 | 키 시간: | ||
67 | </text> | ||
68 | <spinner label="시" name="WLCurKeyHour" /> | ||
69 | <spinner label="분" name="WLCurKeyMin" /> | ||
70 | <text name="WLCurKeyTimeText2"> | ||
71 | 키 사전 설정: | ||
72 | </text> | ||
73 | <combo_box label="사전 설정" name="WLKeyPresets" /> | ||
74 | <text name="DayCycleText"> | ||
75 | 스냅: | ||
76 | </text> | ||
77 | <combo_box label="5분" name="WLSnapOptions" /> | ||
78 | <text name="DayCycleText2"> | ||
79 | 주기 길이: | ||
80 | </text> | ||
81 | <spinner label="시" name="WLLengthOfDayHour" /> | ||
82 | <spinner label="분" name="WLLengthOfDayMin" /> | ||
83 | <spinner label="초" name="WLLengthOfDaySec" /> | ||
84 | <text name="DayCycleText3"> | ||
85 | 미리보기: | ||
86 | </text> | ||
87 | <button label="재생" label_selected="재생" name="WLAnimSky" /> | ||
88 | <button label="중지!" label_selected="중지" name="WLStopAnimSky" /> | ||
89 | <button label="사유지 시간 사용" label_selected="사유지 시간으로 이동" | ||
90 | name="WLUseLindenTime" /> | ||
91 | <button label="테스트 날짜 저장" label_selected="테스트 날짜 저장" | ||
92 | name="WLSaveDayCycle" /> | ||
93 | <button label="테스트 날짜 로드" label_selected="테스트 날짜 로드" | ||
94 | name="WLLoadDayCycle" /> | ||
95 | </panel> | ||
96 | </tab_container> | ||
97 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/ko/floater_env_settings.xml b/linden/indra/newview/skins/xui/ko/floater_env_settings.xml new file mode 100644 index 0000000..1f00608 --- /dev/null +++ b/linden/indra/newview/skins/xui/ko/floater_env_settings.xml | |||
@@ -0,0 +1,24 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | ||
2 | <floater name="Environment Editor Floater" title="환경 편집기"> | ||
3 | <text name="EnvTimeText"> | ||
4 | 시각 | ||
5 | </text> | ||
6 | <text name="EnvTimeText2"> | ||
7 | 12:00 PM | ||
8 | </text> | ||
9 | <text name="EnvCloudText"> | ||
10 | 구름양 | ||
11 | </text> | ||
12 | <text name="EnvWaterColorText"> | ||
13 | 수면색 | ||
14 | </text> | ||
15 | <color_swatch name="EnvWaterColor" | ||
16 | tool_tip="색상 선택기를 열려면 클릭하십시오." /> | ||
17 | <text name="EnvWaterFogText"> | ||
18 | 물안개 | ||
19 | </text> | ||
20 | <button label="사유지 시간 사용" name="EnvUseEstateTimeButton" /> | ||
21 | <button label=" 하늘 디테일" name="EnvAdvancedSkyButton" /> | ||
22 | <button label="수면 디테일" name="EnvAdvancedWaterButton" /> | ||
23 | <button label="?" name="EnvSettingsHelpButton" /> | ||
24 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/ko/floater_hardware_settings.xml b/linden/indra/newview/skins/xui/ko/floater_hardware_settings.xml new file mode 100644 index 0000000..14c1de3 --- /dev/null +++ b/linden/indra/newview/skins/xui/ko/floater_hardware_settings.xml | |||
@@ -0,0 +1,20 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | ||
2 | <floater name="Hardware Settings Floater" title="하드웨어 설정"> | ||
3 | <text name="Filtering:"> | ||
4 | 필터링: | ||
5 | </text> | ||
6 | <check_box label="Anisotropic 필터링(사용시 느려짐)" name="ani" /> | ||
7 | <spinner label="감마:" name="gamma" /> | ||
8 | <text name="(brightness, lower is brighter)"> | ||
9 | (밝기, 낮을 수록 밝음, 기본 설정값 0) | ||
10 | </text> | ||
11 | <text name="Enable VBO:"> | ||
12 | VBO 사용: | ||
13 | </text> | ||
14 | <check_box label="OpenGL 버텍스 버퍼 오브젝트 사용" name="vbo" | ||
15 | tool_tip="최신 하드웨어에서 이 옵션을 사용하면 성능상의 이점을 얻을 수 있습니다. 그러나 간혹 구형 하드웨어에는 성능이 낮은 VBO가 구현되어 있기 때문에 이 옵션을 사용할 때 충돌이 발생할 수 있습니다." /> | ||
16 | <slider label="텍스처 메모리(MB):" name="GrapicsCardTextureMemory" | ||
17 | tool_tip="텍스처에 할당할 메모리 크기로, 기본값은 비디오 카드 메모리입니다. 이 값을 낮추면 성능이 개선될 수 있지만 텍스처가 불확실하게 표시될 수 있습니다." /> | ||
18 | <spinner label="안개 농도:" name="fog" /> | ||
19 | <button label="확인" label_selected="확인" name="OK" /> | ||
20 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/ko/floater_instant_message.xml b/linden/indra/newview/skins/xui/ko/floater_instant_message.xml index c038555..881c04d 100644 --- a/linden/indra/newview/skins/xui/ko/floater_instant_message.xml +++ b/linden/indra/newview/skins/xui/ko/floater_instant_message.xml | |||
@@ -15,6 +15,9 @@ | |||
15 | <string name="voice_icon"> | 15 | <string name="voice_icon"> |
16 | icn_voice-pvtfocus.tga | 16 | icn_voice-pvtfocus.tga |
17 | </string> | 17 | </string> |
18 | <string name="default_text_label"> | ||
19 | 메신저를 사용하려면 여기를 클릭하십시오. | ||
20 | </string> | ||
18 | <button label="프로필¡¦}" name="profile_callee_btn" /> | 21 | <button label="프로필¡¦}" name="profile_callee_btn" /> |
19 | <button label="전화" name="start_call_btn" /> | 22 | <button label="전화" name="start_call_btn" /> |
20 | <button label="전화 종료" name="end_call_btn" /> | 23 | <button label="전화 종료" name="end_call_btn" /> |
diff --git a/linden/indra/newview/skins/xui/ko/floater_instant_message_ad_hoc.xml b/linden/indra/newview/skins/xui/ko/floater_instant_message_ad_hoc.xml index 6f51f83..5a13aea 100644 --- a/linden/indra/newview/skins/xui/ko/floater_instant_message_ad_hoc.xml +++ b/linden/indra/newview/skins/xui/ko/floater_instant_message_ad_hoc.xml | |||
@@ -38,6 +38,9 @@ | |||
38 | <string name="voice_icon"> | 38 | <string name="voice_icon"> |
39 | icn_voice-groupfocus.tga | 39 | icn_voice-groupfocus.tga |
40 | </string> | 40 | </string> |
41 | <string name="default_text_label"> | ||
42 | 메신저를 사용하려면 여기를 클릭하십시오. | ||
43 | </string> | ||
41 | <text name="live_help_dialog"> | 44 | <text name="live_help_dialog"> |
42 | *** 도움말 요청에 오신 것을 환영합니다 *** | 45 | *** 도움말 요청에 오신 것을 환영합니다 *** |
43 | 먼저, F1을 누르거나 지식창고(http://secondlife.com/ support/)에서 SL 도움말 페이지를 확인하십시오. | 46 | 먼저, F1을 누르거나 지식창고(http://secondlife.com/ support/)에서 SL 도움말 페이지를 확인하십시오. |
diff --git a/linden/indra/newview/skins/xui/ko/floater_live_lsleditor.xml b/linden/indra/newview/skins/xui/ko/floater_live_lsleditor.xml index 539818b..f4b5464 100644 --- a/linden/indra/newview/skins/xui/ko/floater_live_lsleditor.xml +++ b/linden/indra/newview/skins/xui/ko/floater_live_lsleditor.xml | |||
@@ -5,4 +5,7 @@ | |||
5 | <text name="not_allowed"> | 5 | <text name="not_allowed"> |
6 | 이 스크립트를 볼 수 없습니다. | 6 | 이 스크립트를 볼 수 없습니다. |
7 | </text> | 7 | </text> |
8 | <string name="script_running"> | ||
9 | 실행 중 | ||
10 | </string> | ||
8 | </floater> | 11 | </floater> |
diff --git a/linden/indra/newview/skins/xui/ko/floater_media_browser.xml b/linden/indra/newview/skins/xui/ko/floater_media_browser.xml new file mode 100644 index 0000000..c506ce9 --- /dev/null +++ b/linden/indra/newview/skins/xui/ko/floater_media_browser.xml | |||
@@ -0,0 +1,19 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | ||
2 | <floater name="floater_about" title="미디어 브라우저"> | ||
3 | <layout_stack name="stack1"> | ||
4 | <layout_panel name="nav_controls"> | ||
5 | <button label="뒤로" name="back" /> | ||
6 | <button label="앞으로" name="forward" /> | ||
7 | <button label="다시 로드" name="reload" /> | ||
8 | <button label="이동" name="go" /> | ||
9 | </layout_panel> | ||
10 | <layout_panel name="parcel_owner_controls"> | ||
11 | <button label="현재 URL을 구획으로 보내기" name="assign" /> | ||
12 | </layout_panel> | ||
13 | <layout_panel name="external_controls"> | ||
14 | <button label="내 웹 브라우저에서 열기" name="open_browser" /> | ||
15 | <check_box label="항상 내 웹 브라우저에서 열기" name="open_always" /> | ||
16 | <button label="닫기" name="close" /> | ||
17 | </layout_panel> | ||
18 | </layout_stack> | ||
19 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/ko/floater_post_process.xml b/linden/indra/newview/skins/xui/ko/floater_post_process.xml new file mode 100644 index 0000000..74b6946 --- /dev/null +++ b/linden/indra/newview/skins/xui/ko/floater_post_process.xml | |||
@@ -0,0 +1,53 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | ||
2 | <floater name="Post-Process Floater" title="사후 처리 설정"> | ||
3 | <tab_container name="Post-Process Tabs"> | ||
4 | <panel label="색상 필터" name="wmiColorFilterPanel"> | ||
5 | <check_box label="사용" name="wmiColorFilterToggle" /> | ||
6 | <text name="wmiColorFilterBrightnessText"> | ||
7 | 밝기 | ||
8 | </text> | ||
9 | <text name="wmiColorFilterSaturationText"> | ||
10 | 채도 | ||
11 | </text> | ||
12 | <text name="wmiColorFilterContrastText"> | ||
13 | 명암 | ||
14 | </text> | ||
15 | <text name="wmiColorFilterBaseText"> | ||
16 | 명암 기본 색상 | ||
17 | </text> | ||
18 | <slider label="R" name="wmiColorFilterBaseR" /> | ||
19 | <slider label="G" name="wmiColorFilterBaseG" /> | ||
20 | <slider label="B" name="wmiColorFilterBaseB" /> | ||
21 | <slider label="I" name="wmiColorFilterBaseI" /> | ||
22 | </panel> | ||
23 | <panel label="나이트 비전" name="wmiNightVisionPanel"> | ||
24 | <check_box label="사용" name="wmiNightVisionToggle" /> | ||
25 | <text name="wmiNightVisionBrightMultText"> | ||
26 | 빛 증폭 | ||
27 | </text> | ||
28 | <text name="wmiNightVisionNoiseSizeText"> | ||
29 | 노이즈 크기 | ||
30 | </text> | ||
31 | <text name="wmiNightVisionNoiseStrengthText"> | ||
32 | 노이즈 강도 | ||
33 | </text> | ||
34 | </panel> | ||
35 | <panel label="흐림" name="wmiBloomPanel"> | ||
36 | <check_box label="사용" name="wmiBloomToggle" /> | ||
37 | <text name="wmiBloomExtractText"> | ||
38 | 광도 추출 | ||
39 | </text> | ||
40 | <text name="wmiBloomSizeText"> | ||
41 | 흐림 범위 | ||
42 | </text> | ||
43 | <text name="wmiBloomStrengthText"> | ||
44 | 흐림 강도 | ||
45 | </text> | ||
46 | </panel> | ||
47 | <panel label="특수" name="Extras"> | ||
48 | <button label="효과 로드" label_selected="효과 로드" name="PPLoadEffect" /> | ||
49 | <button label="효과 저장" label_selected="효과 저장" name="PPSaveEffect" /> | ||
50 | <line_editor label="효과 이름" name="PPEffectNameEditor" /> | ||
51 | </panel> | ||
52 | </tab_container> | ||
53 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/ko/floater_snapshot.xml b/linden/indra/newview/skins/xui/ko/floater_snapshot.xml index 4e34f73..0087f15 100644 --- a/linden/indra/newview/skins/xui/ko/floater_snapshot.xml +++ b/linden/indra/newview/skins/xui/ko/floater_snapshot.xml | |||
@@ -14,6 +14,8 @@ | |||
14 | 하드 드라이브에 저장하기 | 14 | 하드 드라이브에 저장하기 |
15 | </radio_item> | 15 | </radio_item> |
16 | </radio_group> | 16 | </radio_group> |
17 | <button label="자세히 >>" name="more_btn" tool_tip="고급 옵션" /> | ||
18 | <button label="<< 축소" name="less_btn" tool_tip="고급 옵션" /> | ||
17 | <text name="type_label2"> | 19 | <text name="type_label2"> |
18 | 이미지 크기 | 20 | 이미지 크기 |
19 | </text> | 21 | </text> |
@@ -95,7 +97,7 @@ | |||
95 | </combo_item> | 97 | </combo_item> |
96 | </combo_box> | 98 | </combo_box> |
97 | <text name="file_size_label"> | 99 | <text name="file_size_label"> |
98 | 파일 크기: [SIZE] 바이트 | 100 | 파일 크기: [SIZE] KB |
99 | </text> | 101 | </text> |
100 | <check_box label="메뉴 보이기" name="ui_check" /> | 102 | <check_box label="메뉴 보이기" name="ui_check" /> |
101 | <check_box label="HUD 보이기" name="hud_check" /> | 103 | <check_box label="HUD 보이기" name="hud_check" /> |
diff --git a/linden/indra/newview/skins/xui/ko/floater_test.xml b/linden/indra/newview/skins/xui/ko/floater_test.xml index dc30bd8..05b4f7a 100644 --- a/linden/indra/newview/skins/xui/ko/floater_test.xml +++ b/linden/indra/newview/skins/xui/ko/floater_test.xml | |||
@@ -1,15 +1,2 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <floater name="avatarpicker" title="주민 선택"> | 2 | <floater name="Test" title="테스트" /> |
3 | <text name="Type part of the resident's name:"> | ||
4 | 주민 이름의 일부를 입력하십시오: | ||
5 | </text> | ||
6 | <button label="찾기" label_selected="찾기" name="Find" /> | ||
7 | <text name="Or select their calling card:"> | ||
8 | 또는 프로필 선택: | ||
9 | </text> | ||
10 | <button label="선택" label_selected="선택" name="Select" /> | ||
11 | <button label="닫기" label_selected="닫기" name="Close" /> | ||
12 | <text name="NotFound"> | ||
13 | '[TEXT]'을(를) 찾을 수 없습니다. | ||
14 | </text> | ||
15 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/ko/floater_tools.xml b/linden/indra/newview/skins/xui/ko/floater_tools.xml index c1f1b49..b8be6ae 100644 --- a/linden/indra/newview/skins/xui/ko/floater_tools.xml +++ b/linden/indra/newview/skins/xui/ko/floater_tools.xml | |||
@@ -187,6 +187,12 @@ | |||
187 | <combo_item name="Open"> | 187 | <combo_item name="Open"> |
188 | 열기 | 188 | 열기 |
189 | </combo_item> | 189 | </combo_item> |
190 | <combo_item name="Play"> | ||
191 | 구획 미디어 재생 | ||
192 | </combo_item> | ||
193 | <combo_item name="Opemmedia"> | ||
194 | 구획 미디어 열기 | ||
195 | </combo_item> | ||
190 | </combo_box> | 196 | </combo_box> |
191 | <text name="B:"> | 197 | <text name="B:"> |
192 | B: | 198 | B: |
@@ -433,6 +439,9 @@ | |||
433 | <text name="color trans"> | 439 | <text name="color trans"> |
434 | 투명도 % | 440 | 투명도 % |
435 | </text> | 441 | </text> |
442 | <text name="glow label"> | ||
443 | 밝기 | ||
444 | </text> | ||
436 | <check_box label="최대 밝기" name="checkbox fullbright" /> | 445 | <check_box label="최대 밝기" name="checkbox fullbright" /> |
437 | <text name="tex gen"> | 446 | <text name="tex gen"> |
438 | 매핑 | 447 | 매핑 |
diff --git a/linden/indra/newview/skins/xui/ko/floater_url_entry.xml b/linden/indra/newview/skins/xui/ko/floater_url_entry.xml new file mode 100644 index 0000000..54406f2 --- /dev/null +++ b/linden/indra/newview/skins/xui/ko/floater_url_entry.xml | |||
@@ -0,0 +1,13 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | ||
2 | <floater name="url_entry"> | ||
3 | <text name="media_label"> | ||
4 | 미디어 URL: | ||
5 | </text> | ||
6 | <button label="확인" name="ok_btn" /> | ||
7 | <button label="취소" name="cancel_btn" /> | ||
8 | <button label="취소" name="cancel_btn2" /> | ||
9 | <button label="취소" name="clear_btn" /> | ||
10 | <text name="loading_label"> | ||
11 | 로딩 중... | ||
12 | </text> | ||
13 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/ko/floater_water.xml b/linden/indra/newview/skins/xui/ko/floater_water.xml new file mode 100644 index 0000000..aae1931 --- /dev/null +++ b/linden/indra/newview/skins/xui/ko/floater_water.xml | |||
@@ -0,0 +1,89 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | ||
2 | <floater name="Water Floater" title=" 수면 세부 편집기"> | ||
3 | <text name="KeyFramePresetsText"> | ||
4 | 수면 사전 설정: | ||
5 | </text> | ||
6 | <button label="신규" label_selected="신규" name="WaterNewPreset" /> | ||
7 | <button label="저장" label_selected="저장" name="WaterSavePreset" /> | ||
8 | <button label="삭제" label_selected="삭제" name="WaterDeletePreset" /> | ||
9 | <tab_container name="Water Tabs"> | ||
10 | <panel label="설정" name="Settings"> | ||
11 | <text name="BHText"> | ||
12 | 물안개 색상 | ||
13 | </text> | ||
14 | <button label="?" name="WaterFogColorHelp" /> | ||
15 | <color_swatch name="WaterFogColor" | ||
16 | tool_tip="색상 선택기를 열려면 클릭하십시오." /> | ||
17 | <text name="WaterFogDensText"> | ||
18 | 안개 농도 지수 | ||
19 | </text> | ||
20 | <button label="?" name="WaterFogDensityHelp" /> | ||
21 | <text name="WaterUnderWaterFogModText"> | ||
22 | 수중 안개 수정기 | ||
23 | </text> | ||
24 | <button label="?" name="WaterUnderWaterFogModHelp" /> | ||
25 | <text name="BDensText"> | ||
26 | 반사 잔물결 크기 | ||
27 | </text> | ||
28 | <button label="?" name="WaterNormalScaleHelp" /> | ||
29 | <text name="BHText2"> | ||
30 | 1 | ||
31 | </text> | ||
32 | <text name="BHText3"> | ||
33 | 2 | ||
34 | </text> | ||
35 | <text name="BHText4"> | ||
36 | 3 | ||
37 | </text> | ||
38 | <text name="HDText"> | ||
39 | 진동 크기 | ||
40 | </text> | ||
41 | <button label="?" name="WaterFresnelScaleHelp" /> | ||
42 | <text name="FresnelOffsetText"> | ||
43 | 진동 상쇄 | ||
44 | </text> | ||
45 | <button label="?" name="WaterFresnelOffsetHelp" /> | ||
46 | <text name="DensMultText"> | ||
47 | 다음 크기 이상으로 굴절 | ||
48 | </text> | ||
49 | <button label="?" name="WaterScaleAboveHelp" /> | ||
50 | <text name="WaterScaleBelowText"> | ||
51 | 다음 크기 미만으로 굴절 | ||
52 | </text> | ||
53 | <button label="?" name="WaterScaleBelowHelp" /> | ||
54 | <text name="MaxAltText"> | ||
55 | 흐림 강도 | ||
56 | </text> | ||
57 | <button label="?" name="WaterBlurMultiplierHelp" /> | ||
58 | </panel> | ||
59 | <panel label="이미지" name="Waves"> | ||
60 | <text name="BHText"> | ||
61 | 큰 물결 방향 | ||
62 | </text> | ||
63 | <button label="?" name="WaterWave1Help" /> | ||
64 | <text name="WaterWave1DirXText"> | ||
65 | X | ||
66 | </text> | ||
67 | <text name="WaterWave1DirYText"> | ||
68 | Y | ||
69 | </text> | ||
70 | <text name="BHText2"> | ||
71 | 작은 물결 방향 | ||
72 | </text> | ||
73 | <button label="?" name="WaterWave2Help" /> | ||
74 | <text name="WaterWave2DirXText"> | ||
75 | X | ||
76 | </text> | ||
77 | <text name="WaterWave2DirYText"> | ||
78 | Y | ||
79 | </text> | ||
80 | <text name="BHText3"> | ||
81 | 일반 맵 | ||
82 | </text> | ||
83 | <button label="?" name="WaterNormalMapHelp" /> | ||
84 | </panel> | ||
85 | </tab_container> | ||
86 | <string name="WLDefaultWaterNames"> | ||
87 | Default:Glassy:Pond:Murky:Second Plague:SNAKE!!!:Valdez | ||
88 | </string> | ||
89 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/ko/floater_windlight_options.xml b/linden/indra/newview/skins/xui/ko/floater_windlight_options.xml new file mode 100644 index 0000000..d999c3e --- /dev/null +++ b/linden/indra/newview/skins/xui/ko/floater_windlight_options.xml | |||
@@ -0,0 +1,190 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | ||
2 | <floater name="WindLight floater" title=" 하늘 세부 편집기"> | ||
3 | <text name="KeyFramePresetsText"> | ||
4 | 하늘 사전 설정: | ||
5 | </text> | ||
6 | <button label="신규" label_selected="신규" name="WLNewPreset" /> | ||
7 | <button label="저장" label_selected="저장" name="WLSavePreset" /> | ||
8 | <button label="삭제" label_selected="삭제" name="WLDeletePreset" /> | ||
9 | <button label="날짜 주기 편집기" label_selected="날짜 주기 편집기" | ||
10 | name="WLDayCycleMenuButton" /> | ||
11 | <tab_container name="WindLight Tabs"> | ||
12 | <panel label="대기" name="Atmosphere"> | ||
13 | <text name="BHText"> | ||
14 | 파란 수평선 | ||
15 | </text> | ||
16 | <button label="?" name="WLBlueHorizonHelp" /> | ||
17 | <text name="BHText2"> | ||
18 | R | ||
19 | </text> | ||
20 | <text name="BHText3"> | ||
21 | G | ||
22 | </text> | ||
23 | <text name="BHText4"> | ||
24 | B | ||
25 | </text> | ||
26 | <text name="BHText5"> | ||
27 | I | ||
28 | </text> | ||
29 | <text name="BDensText"> | ||
30 | 헤이즈 수평선 | ||
31 | </text> | ||
32 | <button label="?" name="WLHazeHorizonHelp" /> | ||
33 | <text name="BDensText2"> | ||
34 | 파란색 농도 | ||
35 | </text> | ||
36 | <button label="?" name="WLBlueDensityHelp" /> | ||
37 | <text name="BHText6"> | ||
38 | R | ||
39 | </text> | ||
40 | <text name="BHText7"> | ||
41 | G | ||
42 | </text> | ||
43 | <text name="BHText8"> | ||
44 | B | ||
45 | </text> | ||
46 | <text name="BHText9"> | ||
47 | I | ||
48 | </text> | ||
49 | <text name="HDText"> | ||
50 | 헤이즈 농도 | ||
51 | </text> | ||
52 | <button label="?" name="WLHazeDensityHelp" /> | ||
53 | <text name="DensMultText"> | ||
54 | 농도 배율 | ||
55 | </text> | ||
56 | <button label="?" name="WLDensityMultHelp" /> | ||
57 | <text name="WLDistanceMultText"> | ||
58 | 거리 배율 | ||
59 | </text> | ||
60 | <button label="?" name="WLDistanceMultHelp" /> | ||
61 | <text name="MaxAltText"> | ||
62 | 최대 고도 | ||
63 | </text> | ||
64 | <button label="?" name="WLMaxAltitudeHelp" /> | ||
65 | </panel> | ||
66 | <panel label="조명" name="Lighting"> | ||
67 | <text name="SLCText"> | ||
68 | 태양/달 색상 | ||
69 | </text> | ||
70 | <button label="?" name="WLSunlightColorHelp" /> | ||
71 | <text name="BHText"> | ||
72 | R | ||
73 | </text> | ||
74 | <text name="BHText2"> | ||
75 | G | ||
76 | </text> | ||
77 | <text name="BHText3"> | ||
78 | B | ||
79 | </text> | ||
80 | <text name="BHText4"> | ||
81 | I | ||
82 | </text> | ||
83 | <text name="TODText"> | ||
84 | 태양/달 위치 | ||
85 | </text> | ||
86 | <button label="?" name="WLTimeOfDayHelp" /> | ||
87 | <text name="WLAmbientText"> | ||
88 | 주변 | ||
89 | </text> | ||
90 | <button label="?" name="WLAmbientHelp" /> | ||
91 | <text name="BHText5"> | ||
92 | R | ||
93 | </text> | ||
94 | <text name="BHText6"> | ||
95 | G | ||
96 | </text> | ||
97 | <text name="BHText7"> | ||
98 | B | ||
99 | </text> | ||
100 | <text name="BHText8"> | ||
101 | I | ||
102 | </text> | ||
103 | <text name="WLEastAngleText"> | ||
104 | 동쪽 각도 | ||
105 | </text> | ||
106 | <button label="?" name="WLEastAngleHelp" /> | ||
107 | <text name="SunGlowText"> | ||
108 | 태양 밝기 | ||
109 | </text> | ||
110 | <button label="?" name="WLSunGlowHelp" /> | ||
111 | <slider label="보기 " name="WLGlowB" /> | ||
112 | <slider label="크기 " name="WLGlowR" /> | ||
113 | <text name="SceneGammaText"> | ||
114 | 장면 감마 | ||
115 | </text> | ||
116 | <button label="?" name="WLSceneGammaHelp" /> | ||
117 | <text name="WLStarText"> | ||
118 | 별 밝기 | ||
119 | </text> | ||
120 | <button label="?" name="WLStarBrightnessHelp" /> | ||
121 | </panel> | ||
122 | <panel label="구름" name="Clouds"> | ||
123 | <text name="WLCloudColorText"> | ||
124 | 구름 색상 | ||
125 | </text> | ||
126 | <button label="?" name="WLCloudColorHelp" /> | ||
127 | <text name="BHText"> | ||
128 | R | ||
129 | </text> | ||
130 | <text name="BHText2"> | ||
131 | G | ||
132 | </text> | ||
133 | <text name="BHText3"> | ||
134 | B | ||
135 | </text> | ||
136 | <text name="BHText4"> | ||
137 | I | ||
138 | </text> | ||
139 | <text name="WLCloudColorText2"> | ||
140 | 구름 XY/농도 | ||
141 | </text> | ||
142 | <button label="?" name="WLCloudDensityHelp" /> | ||
143 | <text name="BHText5"> | ||
144 | X | ||
145 | </text> | ||
146 | <text name="BHText6"> | ||
147 | Y | ||
148 | </text> | ||
149 | <text name="BHText7"> | ||
150 | D | ||
151 | </text> | ||
152 | <text name="WLCloudCoverageText"> | ||
153 | 구름 범위 | ||
154 | </text> | ||
155 | <button label="?" name="WLCloudCoverageHelp" /> | ||
156 | <text name="WLCloudScaleText"> | ||
157 | 구름 크기 | ||
158 | </text> | ||
159 | <button label="?" name="WLCloudScaleHelp" /> | ||
160 | <text name="WLCloudDetailText"> | ||
161 | 구름 디테일(XY/농도) | ||
162 | </text> | ||
163 | <button label="?" name="WLCloudDetailHelp" /> | ||
164 | <text name="BHText8"> | ||
165 | X | ||
166 | </text> | ||
167 | <text name="BHText9"> | ||
168 | Y | ||
169 | </text> | ||
170 | <text name="BHText10"> | ||
171 | D | ||
172 | </text> | ||
173 | <text name="WLCloudScrollXText"> | ||
174 | 구름 스크롤 X | ||
175 | </text> | ||
176 | <button label="?" name="WLCloudScrollXHelp" /> | ||
177 | <check_box label="잠금" name="WLCloudLockX" /> | ||
178 | <text name="WLCloudScrollYText"> | ||
179 | 구름 스크롤 Y | ||
180 | </text> | ||
181 | <button label="?" name="WLCloudScrollYHelp" /> | ||
182 | <check_box label="잠금" name="WLCloudLockY" /> | ||
183 | <check_box label="일반 구름 그리기" name="DrawClassicClouds" /> | ||
184 | <button label="?" name="WLClassicCloudsHelp" /> | ||
185 | </panel> | ||
186 | </tab_container> | ||
187 | <string name="WLDefaultSkyNames"> | ||
188 | A-12AM:A-12PM:A-3AM:A-3PM:A-4.30PM:A-6AM:A-6PM:A-9AM:A-9PM:Barcelona:Blizzard:Blue Midday:Coastal Afternoon:Coastal Sunset:Default:Desert Sunset:Fine Day:Fluffy Big Clouds:Foggy:Funky Funky:Funky Funky Funky:Gelatto:Ghost:Incongruent Truths:Midday 1:Midday 2:Midday 3:Midday 4:Night:Pirate:Purple:Sailor's Delight:Sheer Sensuality | ||
189 | </string> | ||
190 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/ko/menu_viewer.xml b/linden/indra/newview/skins/xui/ko/menu_viewer.xml index 518d88c..5303388 100644 --- a/linden/indra/newview/skins/xui/ko/menu_viewer.xml +++ b/linden/indra/newview/skins/xui/ko/menu_viewer.xml | |||
@@ -76,7 +76,7 @@ | |||
76 | <menu_item_separator label="-----------" name="separator" /> | 76 | <menu_item_separator label="-----------" name="separator" /> |
77 | <menu_item_check label="툴바" name="Toolbar" /> | 77 | <menu_item_check label="툴바" name="Toolbar" /> |
78 | <menu_item_check label="채팅 기록" name="Chat History" /> | 78 | <menu_item_check label="채팅 기록" name="Chat History" /> |
79 | <menu_item_check label="메" name="Instant Message" /> | 79 | <menu_item_check label="뮤이트" name="Instant Message" /> |
80 | <menu_item_call label="인벤토리" name="Inventory" /> | 80 | <menu_item_call label="인벤토리" name="Inventory" /> |
81 | <menu_item_check label="액티브 스피커" name="Active Speakers" /> | 81 | <menu_item_check label="액티브 스피커" name="Active Speakers" /> |
82 | <menu_item_check label="차단 목록" name="Mute List" /> | 82 | <menu_item_check label="차단 목록" name="Mute List" /> |
@@ -109,7 +109,15 @@ | |||
109 | <menu_item_check label="하이라이트 보기" name="Render Highlights" /> | 109 | <menu_item_check label="하이라이트 보기" name="Render Highlights" /> |
110 | <menu_item_check label="표시 보기" name="Render Beacons" /> | 110 | <menu_item_check label="표시 보기" name="Render Beacons" /> |
111 | <menu_item_separator label="-----------" name="separator" /> | 111 | <menu_item_separator label="-----------" name="separator" /> |
112 | <menu_item_separator label="-----------" name="separator2" /> | ||
112 | <menu_item_check label="파티클 숨기기" name="Hide Particles" /> | 113 | <menu_item_check label="파티클 숨기기" name="Hide Particles" /> |
114 | <menu_item_separator label="-----------" name="separator3" /> | ||
115 | <menu label="표시 간격" name="Beacon Width"> | ||
116 | <menu_item_call label="1" name="Beacon Width 1" /> | ||
117 | <menu_item_call label="4" name="Beacon Width 4" /> | ||
118 | <menu_item_call label="16" name="Beacon Width 16" /> | ||
119 | <menu_item_call label="32" name="Beacon Width 32" /> | ||
120 | </menu> | ||
113 | </menu> | 121 | </menu> |
114 | <menu_item_check label="착용 HUD 보기" name="Show HUD Attachments" /> | 122 | <menu_item_check label="착용 HUD 보기" name="Show HUD Attachments" /> |
115 | <menu_item_separator label="-----------" name="separator5" /> | 123 | <menu_item_separator label="-----------" name="separator5" /> |
@@ -151,6 +159,15 @@ | |||
151 | <menu_item_separator label="-----------" name="separator" /> | 159 | <menu_item_separator label="-----------" name="separator" /> |
152 | <menu_item_call label="지역 기본 설정으로 되돌리기" name="Revert to Region Default" /> | 160 | <menu_item_call label="지역 기본 설정으로 되돌리기" name="Revert to Region Default" /> |
153 | </menu> | 161 | </menu> |
162 | <menu label="환경 설정" name="Environment Settings"> | ||
163 | <menu_item_call label="일출" name="Sunrise" /> | ||
164 | <menu_item_call label="정오" name="Noon" /> | ||
165 | <menu_item_call label="일몰" name="Sunset" /> | ||
166 | <menu_item_call label="자정" name="Midnight" /> | ||
167 | <menu_item_call label="지역 기본 설정으로 되돌리기" name="Revert to Region Default" /> | ||
168 | <menu_item_separator label="-----------" name="separator" /> | ||
169 | <menu_item_call label="환경 편집기" name="Environment Editor" /> | ||
170 | </menu> | ||
154 | </menu> | 171 | </menu> |
155 | <menu label="도구" name="Tools"> | 172 | <menu label="도구" name="Tools"> |
156 | <menu_item_check label="연결된 부분 편집" name="Edit Linked Parts" /> | 173 | <menu_item_check label="연결된 부분 편집" name="Edit Linked Parts" /> |
@@ -210,6 +227,7 @@ | |||
210 | <menu_item_call label="보안 문제" name="Security Issues..." /> | 227 | <menu_item_call label="보안 문제" name="Security Issues..." /> |
211 | <menu_item_call label="QA 위키" name="QA Wiki..." /> | 228 | <menu_item_call label="QA 위키" name="QA Wiki..." /> |
212 | <menu_item_separator label="-----------" name="separator7" /> | 229 | <menu_item_separator label="-----------" name="separator7" /> |
230 | <menu_item_separator label="-----------" name="separator72" /> | ||
213 | <menu_item_call label="버그 신고" name="Report Bug..." /> | 231 | <menu_item_call label="버그 신고" name="Report Bug..." /> |
214 | </menu> | 232 | </menu> |
215 | </menu> | 233 | </menu> |
diff --git a/linden/indra/newview/skins/xui/ko/need_to_long.xml b/linden/indra/newview/skins/xui/ko/need_to_long.xml index 3e584c6..5fa3d4d 100644 --- a/linden/indra/newview/skins/xui/ko/need_to_long.xml +++ b/linden/indra/newview/skins/xui/ko/need_to_long.xml | |||
@@ -1,5 +1,238 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | 2 | ||
3 | <strings> | 3 | <strings> |
4 | <string><a_file>alerts.xml</a_file> | ||
5 | <b_path>//GraphicsPreferencesHelp/message</b_path> | ||
6 | <c_attribute></c_attribute> | ||
7 | <d_old></d_old> | ||
8 | <e_new> | ||
9 | This panel controls window size and resolution and the quality of the client's graphics. The graphics preferences interface allows you to choose between four graphics levels: Low, Mid, High, and Ultra. One may customize their graphics settings by checking the Custom checkbox and manipulating the following settings: | ||
4 | 10 | ||
11 | Shaders: Enable or disable various types of pixel shaders. | ||
12 | |||
13 | Reflection Detail: Sets the types of objects that water can reflect. | ||
14 | |||
15 | Avatar Rendering: Sets options that affect how the client renders avatars. | ||
16 | |||
17 | Draw Distance: Affects how far out from your viewpoint objects will be rendered in the scene. | ||
18 | |||
19 | Max Particle Count: Sets the maximum number of particles you are able to see on your screen at once. | ||
20 | |||
21 | Post Process Quality: Sets the resolution with which Glow is rendered. | ||
22 | |||
23 | Mesh Detail: Sets the amout of detail used in rendering certain objects. | ||
24 | |||
25 | Lighting Detail: Selects what types of lights you would like to render. | ||
26 | |||
27 | Terrain Detail: Sets the amount of terrain detail you would like to see. | ||
28 | |||
29 | Sky Detail: Sets the amount of tesselation of the sky dome. A higher value takes longer to render, but makes the sun look more rounded. | ||
30 | </e_new> | ||
31 | <f_translation> | ||
32 | 이 창은 창 크기와 클라이언트 그래픽의 해상도 및 품질을 제어합니다. 그래픽 환경 설정 인터페이스를 통해 낮음, 중간, 높음, 매우 높음 등 4개의 그래픽 레벨 중에서 원하는 설정을 선택할 수 있습니다. 사용자 지정 확인란을 선택하고 다음의 설정을 조작하여 이러한 그래픽을 원하는 대로 설정할 수 있습니다. | ||
33 | |||
34 | 쉐이더: 여러 가지 픽셀 쉐이더 유형을 활성화하거나 비활성화합니다. | ||
35 | |||
36 | 반사 디테일: 물에 반사될 수 있는 오브젝트 유형을 설정합니다. | ||
37 | |||
38 | 아바타 렌더링: 클라이언트가 아바타를 렌더링하는 방식에 영향을 주는 옵션을 설정합니다. | ||
39 | |||
40 | 렌더링 거리 제한: 장면에서 현재 시점의 오브젝트가 렌더링되는 거리를 조절합니다. | ||
41 | |||
42 | 최대 파티클 수: 화면에서 한 번에 볼 수 있는 최대 파티클 수를 설정합니다. | ||
43 | |||
44 | 빛 처리 품질: 빛이 렌더링되는 해상도를 설정합니다. | ||
45 | |||
46 | 메쉬 디테일: 오브젝트를 렌더링하는 디테일을 설정합니다. | ||
47 | |||
48 | 조명 세부 사항: 렌더링할 조명 유형을 선택합니다. | ||
49 | |||
50 | 지형 세부 사항: 보려는 지형의 디테일을 설정합니다. | ||
51 | |||
52 | 스카이 디테일: 하늘 돔의 밀도를 설정합니다. 값이 클수록 렌더링이 더 오래 걸리지만 태양의 모양이 더 둥글게 표현됩니다. | ||
53 | </f_translation> | ||
54 | </string><string><a_file>alerts.xml</a_file> | ||
55 | <b_path>//EnvSettingsHelpButton/message</b_path> | ||
56 | <c_attribute></c_attribute> | ||
57 | <d_old></d_old> | ||
58 | <e_new> | ||
59 | These settings adjust the way the environment looks locally on your computer. Your graphics card needs to support atmospheric shaders in order to have access to all of the settings. | ||
60 | |||
61 | Adjust the "Time of Day" slider to change the day's phase locally on the viewer. | ||
62 | |||
63 | Adjust the "Cloud Cover" slider to control how much the clouds cover the sky. | ||
64 | |||
65 | Pick a color in the "Water Color" color picker to change the color of the water. | ||
66 | |||
67 | Adjust the "Water Fog" slider to control how dense the fog is underwater. | ||
68 | |||
69 | Click "Use Estate Time" to reset the time of day to the region's current time of day and remain linked to it. | ||
70 | |||
71 | Click "Advanced Sky" to bring up an editor with more advanced settings for the sky. | ||
72 | |||
73 | Click "Advanced Water" to bring up an editor with more advanced settings for the water. | ||
74 | </e_new> | ||
75 | <f_translation> | ||
76 | 이러한 설정은 사용자의 컴퓨터에서 환경이 표현되는 방식을 조절합니다. 모든 설정을 이용하려면 사용 중인 그래픽 카드에서 대기 쉐이더를 지원해야 합니다. | ||
77 | |||
78 | 세컨드라이프에서 로컬로 날짜 단계를 변경하려면 "시각" 슬라이더를 조절하십시오. | ||
79 | |||
80 | 구름이 하늘을 덮고 있는 양을 조절하려면 "구름양" 슬라이더를 조절하십시오. | ||
81 | |||
82 | 수면의 색을 변경하려면 "수면색" 색상 선택기에서 원하는 색을 선택하십시오. | ||
83 | |||
84 | 수중에서 안개 농도를 조절하려면 "물안개" 슬라이더를 조절하십시오. | ||
85 | |||
86 | 해당 지역의 현재 시각을 초기화하고 연결된 상태를 유지하려면 "사유지 시간 사용"을 클릭하십시오. | ||
87 | |||
88 | 하늘에 대한 추가의 고급 설정이 지원되는 편집기를 불러오려면 "고급 스카이"를 클릭하십시오. | ||
89 | |||
90 | 물에 대한 추가의 고급 설정이 지원되는 편집기를 불러오려면 "고급 워터"를 클릭하십시오. | ||
91 | </f_translation> | ||
92 | </string><string><a_file>alerts.xml</a_file> | ||
93 | <b_path>//HelpDayCycle/message</b_path> | ||
94 | <c_attribute></c_attribute> | ||
95 | <d_old></d_old> | ||
96 | <e_new> | ||
97 | The Day Cycle Editor gives you control over the sky during Second Life's day/night cycle. This is the cycle that is used by the Basic Environment Editor's Time of Day slider. | ||
98 | |||
99 | The Day Cycle Editor works by setting keyframes. These are nodes (represented by the gray blips on the time graph) that have Sky Presets associated with them. As the Time of Day progresses, the WindLight sky "animates" as it interpolates between these keyframes. | ||
100 | |||
101 | The yellow arrow above the timeline represents your current view, based on Time of Day. Click and drag it to see how your day will animate. You may add or delete keyframes by pressing the Add Key and Delete Key buttons to the right of the timeline. | ||
102 | |||
103 | You can set the time position of a keyframe by either dragging it along the timeline, or by setting its value manually in the Key Frame Settings frame. Within the Key Frame Settings frame, you'll be able to associate the keyframe with its respective WindLight preset. | ||
104 | |||
105 | Length of Cycle dictates the overall duration of a "day". Setting this to a low value (for instance, 2 min.) will mean your entire 24-hour timeline will animate in only two real minutes! Once you are satisfied with your timeline and keyframe cycle, use the Play and Stop buttons to preview the results. Remember- you can also move the yellow time-indicator arrow above the timeline to see the cycle animate interactively. Using the Use Estate Time button will synchronize your day length and time of day with the Estate's day cycle. | ||
106 | |||
107 | Once you are pleased with your Day Cycle, you can save and load it with the Save Test Day and Load Test Day buttons. Note that, for now, we only allow one Day Cycle. | ||
108 | </e_new> | ||
109 | <f_translation> | ||
110 | 날짜 주기 편집기는 세컨드라이프의 낮/밤 주기 동안 하늘의 모양을 조절할 수 있는 기능을 제공합니다. 이것은 기본 환경 편집기의 시각 슬라이더에서 사용되는 주기입니다. | ||
111 | |||
112 | 날짜 주기 편집기는 키프레임을 설정하는 방식으로 작동합니다. 이러한 키프레임은 관련된 하늘 사전 설정이 포함된 노드(시간 그래프에서 회색 블립으로 나타남)입니다. 시각이 증가함에 따라 이러한 키프레임 사이에 삽입될 때마다 윈드라이트 하늘이 "애니메이션"으로 표시됩니다. | ||
113 | |||
114 | 타임라인 위의 노란색 화살표는 시간을 기준으로 한 현재 보기를 나타냅니다. 해당 시각이 애니메이션되는 방식을 보려면 화살표를 클릭해서 드래그하십시오. 타임라인 우측에 있는 키 추가 및 키 삭제 버튼을 눌러 이러한 키 프레임을 추가하거나 삭제할 수 있습니다. | ||
115 | |||
116 | 타임라인과 함께 키프레임을 드래그하거나 키프레임 설정 창에서 값을 직접 설정해서 키프레임 시간 위치를 설정할 수 있습니다. 키프레임 설정 창 내에서 키프레임을 해당하는 윈드라이트 사전 설정값에 연결할 수 있습니다. | ||
117 | |||
118 | 주기 길이는 "하루"의 전체 길이를 나타냅니다. 이 값을 작게 설정하면(예: 2분) 전체 24시간 타임라인이 실제로 2분만에 움직입니다. 타임라인 및 키프레임 주기를 모두 설정한 후 결과를 미리 보려면 재생 및 중지 버튼을 사용하십시오. 타임라인 위에 있는 노란색 시간 표시기 화살표만을 움직여서만 실제로 시간 주기가 움직이는 것을 확인할 수 있습니다. 사유지 시간 사용 버튼을 누르면 사유지의 날짜 주기로 하루의 길이와 시간이 동기화됩니다. | ||
119 | |||
120 | 설정한 날짜 주기가 만족스러우면 테스트 날짜 저장 및 테스트 날짜 로드 버튼을 사용해서 해당 설정을 저장하고 로드할 수 있습니다. 현재까지는 1일 주기만 사용할 수 있다는 점에 유념하십시오. | ||
121 | </f_translation> | ||
122 | </string><string><a_file>floater_about.xml</a_file> | ||
123 | <b_path>/floater_about/credits_editor</b_path> | ||
124 | <c_attribute></c_attribute> | ||
125 | <d_old> | ||
126 | Second Life is brought to you by Philip, Andrew, Tessa, Cory, Frank, James, Doug, Hunter, Richard, John, Eric, Avi, AaronB, AaronY, Ian, Peter, Mark, Robin, Stephen, Tracy, Ryan, Alberto, Haney, Tanya, JimJ, Dan, Ben, Stephanie, Tim, Evan, Catherine, Colin, Chris, Reuben, Charity, Jeska, James, JonHenry, Kelly, Callum, Char, Daniel, DavidF, Don, Jeff, Lauren, Lee, Michael, Ramzi, Vektor, Steve, TomY, Tess, Kona, Brent, Clarissa, PeterP, Jesse, Annette, Cyn, Blue, Ginsu, Jonathan, Karen, Adam, Nova, Deana, Lizzie, Patsy, DavidK, Isaac, Pathfinder, Monroe, Jill, Benny, Altruima, Rheya, Jennifer, Jack, DaveP, Brad, Mick, Babbage, Elisabeth, Brian, Beth, Data, Ethan, Wendy, Nicole, Sky, Jeffrey, Zero, Coffee, Tesla, Kenny, Makiko, Nigel, Teeple, Lucy, Mia, Dee, Guy, Harry, Liana, Branka, Jimbo, Aura, Vasuda, SarahD, bethanye, Torley, Runitai, MikeS, PaulM, Milo, Hermia, JoeM, Melanie, Rejean, DSmith, SMiller, Susan, Jose, DongYun, Justin, Andrey, Syrah, Donovan, Henrik, Nora, Lexie, AC, Donna, ChrisC, Alex, Leyla, Kyle, Mathew, Devin, Joshua, DanC, Jessica, Harmony, Claudia, Tramel, Glenn, Betsy, Fritz, Jun, Adam, Cassandra, Ken, RyanW, Spike, Tofu, Varas, Andy, Luke, RobLa, Chiyo, JohnZ, Dustin, George, Del, PeterP, Migyeong, Matthew, RMullane, CChampion, JTurbin, JamesC, Viola, Lightfoot, Jacqui, Sturm, Adrian, Buttercup, Alfred, Sunil, Alfred, Noel, Irfan, Jill, Yool, Jane, Yuki, Yoz, Matthew, Arthur, Jennifer, Karl, Brian, Ben, Janine, Christopher, Madhavi, Everett, Anthony, Joon, Jake, sean, Adreanne, Stephany, KellyJo, Jeremy, Pramod, Joshua, Sean, Christopher, Amy, Ceren, Katherine, jon, Sudheendra, James, Stephan, Kari, Kartic, Todd, Thomas, Joki, Rebecca, Belinda, Bert, Roger, Bridie, Kristi, Brian, Maria, John, Aric, Nathanel, Melinda, Darrell, Jennifer, Sandy, Greg, Rob, Brad, Chris, Eric, Palmer, Asi, Katja, Lisa, Minda, Jen, Aaron, Bryan, Mark, Jonathan, Jamie, Laurel, William, Matthew, Steve, David, Remy, James, Tim, Lee, Brian, Ashlei, Sam, Mike, Ethan, Austin, Wanda, Paul, Brian, Rachel, Valentyn, Emma Williams, Autum, Steven, Laley, Charles, Jessica, Sue, Gillian, CG, Kip, Kristen, Shamiran, Blake, Brett, Erica, Kent, Joel, Plexus, Twilight, Joppa and many others. | ||
127 | |||
128 | In Memory of Jesse Malthus, you will be fondly remembered by all who heard your voice. | ||
129 | |||
130 | Thank you to the following residents for helping to ensure that this is the best version yet: Aces Spade, Adrian Buckler, Adrienne LeShelle, Amanda Ascot, AnnaQuay Heart, Aquamina Khalifa, Arienne Anatine, Aston Hildyard, Ayami Kamachi, Badinage Odets, Biffy Berjis, Bigfox Pye, BigJohn Jade, BigRick Byrd, Brettus Tripsa, Brock Fitzgerald, Broker Allen, Browse by Name, Chiria Celt, Christopher Prudhomme, dale Cao, dale Lynch, Dante Tucker, DaQbet Kish, Dargon Pacer, Darius Antonelli, Deira Llanfair, DeviantBone Xi, Dore Dorado, Englishwob Etchegaray, Enya Masala, Eric Renneville, Fairfax Michinaga, FireFox Bancroft, FOXI Cortes, Frederick Earp, Geo Meek, Gotthilf Fischer, Hallo Loon, Hawk Carter, Hazel Kyrgyz, Hecter Barbosa, Hex Link, Ice Pak, Ideasu Mukerji, Itoku Kamachi, Jared Halleck, Jaykob Carter, Jennifer Drumheller, JensMartin Tomsen, JIAB Boa, Jim Gustafson, JimmyJet Fossett, Joseph Rustamova, Jt Volos, Karilyn Kidomen, Kaysha Sion, Keaton Nacon, Kevin Susenko, Khashai Steinbeck, Kira Cuddihy, Kit Massiel, Kojo Dixon, KUieTSToRm Lightcloud, Kwai Kyong, Kyrtis Daehlie, LazyGunGuy Bartlett, Lewcas Zapedzki, Lioc Cioc, LLIB Utu, Lou Liebknecht, Luca Draken, Maci Homewood, Major Sewell, Mari Todriya, MarieElize Noel, matt27 Churchill, Maverick Miasma, maydaysos Young, Mediaho Ball, Mikayla Gillespie, Mike Faulkland, Modfire Milland, MollyBrown Foxley, Mosley Jewell, Nuahs Zapedzki, Nyx Divine, Panther Farber, Paul Bumi, Preciousse Moody, PrincessNina Prefect, Prio Serpentine, Rainbow Drake, Randall Rall, Randy Kazan, Reinhart Mokeev, Rhyph Somme, Rico Roizman, Ruge Dryke, Ryan Orbit, Safira Rosher, Samantha Bainbridge, Sammy Foxley, Sash Furst, Saturn Ariantho, Sienna Summers, Skye Enoch, Sofie Kanno, Solar Legion, Sonic Oki, Sunra Saenz, Taina Heart, Taryn Sprawl, tenerife Wei, TomDragon Nilsson, Trebla Reve, Trouble Carnell, user1cat Orbit, Vance Merlin, Veritas Variscan, Web Page, Wi3g3ht3s Ihnen, WinDrftr DeFarge, Yuu Nakamichi, Zac Delec, Zed Fairweather, Zimmo Hallard. | ||
131 | |||
132 | APR Copyright (C) 2000-2004 The Apache Software Foundation | ||
133 | cURL Copyright (C) 1996-2002, Daniel Stenberg, (daniel@haxx.se) | ||
134 | expat Copyright (C) 1998, 1999, 2000 Thai Open Source Software Center Ltd. | ||
135 | FreeType Copyright (C) 1996-2002, The FreeType Project (www.freetype.org). | ||
136 | GL Copyright (C) 1999-2004 Brian Paul. | ||
137 | Havok.com(TM) Copyright (C) 1999-2001, Telekinesys Research Limited. | ||
138 | jpeg2000 Copyright (C) 2001, David Taubman, The University of New South Wales (UNSW) | ||
139 | jpeglib Copyright (C) 1991-1998, Thomas G. Lane. | ||
140 | ogg/vorbis Copyright (C) 2001, Xiphophorus | ||
141 | OpenSSL Copyright (C) 1998-2002 The OpenSSL Project. | ||
142 | SDL Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002 Sam Lantinga | ||
143 | SSLeay Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | ||
144 | xmlrpc-epi Copyright (C) 2000 Epinions, Inc. | ||
145 | zlib Copyright (C) 1995-2002 Jean-loup Gailly and Mark Adler. | ||
146 | |||
147 | All rights reserved. See licenses.txt for details. | ||
148 | |||
149 | Voice chat Audio coding: Polycom(R) Siren14(TM) (ITU-T Rec. G.722.1 Annex C) | ||
150 | |||
151 | |||
152 | Mr. Watson -- come here -- I want to see you. | ||
153 | </d_old> | ||
154 | <e_new> | ||
155 | Second Life is brought to you by Philip, Andrew, Tessa, Cory, Frank, James, Doug, Hunter, Richard, John, Eric, Avi, AaronB, AaronY, Ian, Peter, Mark, Robin, Stephen, Tracy, Ryan, Alberto, Haney, Tanya, JimJ, Dan, Ben, Stephanie, Tim, Evan, Catherine, Colin, Chris, Reuben, Charity, Jeska, James, JonHenry, Kelly, Callum, Char, Daniel, DavidF, Don, Jeff, Lauren, Lee, Michael, Ramzi, Vektor, Steve, TomY, Tess, Kona, Brent, Clarissa, PeterP, Jesse, Annette, Cyn, Blue, Ginsu, Jonathan, Karen, Adam, Nova, Deana, Lizzie, Patsy, DavidK, Isaac, Pathfinder, Monroe, Jill, Benny, Altruima, Rheya, Jennifer, Jack, DaveP, Brad, Mick, Babbage, Elisabeth, Brian, Beth, Data, Ethan, Wendy, Nicole, Sky, Jeffrey, Zero, Coffee, Tesla, Kenny, Makiko, Nigel, Teeple, Lucy, Mia, Dee, Guy, Harry, Liana, Branka, Jimbo, Aura, Vasuda, SarahD, bethanye, Torley, Runitai, MikeS, PaulM, Milo, Hermia, JoeM, Melanie, Rejean, DSmith, SMiller, Susan, Jose, DongYun, Justin, Andrey, Syrah, Donovan, Henrik, Nora, Lexie, AC, Donna, ChrisC, Alex, Leyla, Kyle, Mathew, Devin, Joshua, DanC, Jessica, Harmony, Claudia, Tramel, Glenn, Betsy, Fritz, Jun, Adam, Cassandra, Ken, RyanW, Spike, Tofu, Varas, Andy, Luke, RobLa, Chiyo, JohnZ, Dustin, George, Del, PeterP, Migyeong, Matthew, RMullane, CChampion, JTurbin, JamesC, Viola, Lightfoot, Jacqui, Sturm, Adrian, Buttercup, Alfred, Sunil, Alfred, Noel, Irfan, Jill, Yool, Jane, Yuki, Yoz, Matthew, Arthur, Jennifer, Karl, Brian, Ben, Janine, Christopher, Madhavi, Everett, Anthony, Joon, Jake, sean, Adreanne, Stephany, KellyJo, Jeremy, Pramod, Joshua, Sean, Christopher, Amy, Ceren, Katherine, jon, Sudheendra, James, Stephan, Kari, Kartic, Todd, Thomas, Joki, Rebecca, Belinda, Bert, Roger, Bridie, Kristi, Brian, Maria, John, Aric, Nathanel, Melinda, Darrell, Jennifer, Sandy, Greg, Rob, Brad, Chris, Eric, Palmer, Asi, Katja, Lisa, Minda, Jen, Aaron, Bryan, Mark, Jonathan, Jamie, Laurel, William, Matthew, Steve, David, Remy, James, Tim, Lee, Brian, Ashlei, Sam, Mike, Ethan, Austin, Wanda, Paul, Brian, Rachel, Valentyn, Emma Williams, Autum, Steven, Laley, Charles, Jessica, Sue, Gillian, CG, Kip, Kristen, Shamiran, Blake, Brett, Erica, Kent, Joel, Plexus, Twilight, Joppa, Enus, Kraft, Naveen, Simon, Q, Ronp, Laurap, Ram, KyleJM, Marty, Kend, Daveh, Prospero, Melissa, Nat, Hamilton, Green, Seraph, Ekim, Miz, Jimmy, Kosmo, Rome, Doris, JT, Benoc, Whump, Mango, Trinity, Patch, TJ, Christy, Bao, Joohwan, Kate, Oreh, Angela, Johan, Cheah, Lan, Matias, Brandy, Cogsworth, Aleks, Mitchell, Space, Einstein, Bambers, Colton, Malbers, Maggie, Umesh, Santosh, Rose, Stash, Rothman, Winnie, Stella, Niall and many others. | ||
156 | |||
157 | Thank you to the following residents for helping to ensure that this is the best version yet: aaron23 decuir, Abelv Vollmar, Abyssin Otoro, ActingIll Igaly, Adamas Carter, Addy Broome, Adelia Menges, Alexandra Rucker, Alexandrea Fride, Alissa Sabre, Alyx Jonson, Ann Otoole, Anton Fargis, Aradia Dielli, Araina jewell, Arcane Clawtooth, arcangelo vantelli, Are Sperber, Argent Stonecutter, arkady yost, Ashcroft Burnham, Ashen Arida, Auron Forcella, Azadine Umarov, Azildin Furst, Balp Allen, Balpien Hammerer, Barney Boomslang, Barrett Slade, becky pippen, Beeflin Grut, Beer Dailey, Behemoth Greenwood, bigmanu greene, bitova loon, Bonca Chikuwa, Bonnie Bechir, Brandon Catteneo, buttonpusher jones, Carina Raymaker, Ceera Murakami, Celierra Darling, ChatNoir Moonsoo, Cheetah Hammerer, chet neurocam, Cinthya Loveless, Cold Spitteler, Coral Quinnell, Crash Pointe, CrazyTB Oh, Creem Pye, Crom Chaffe, ctrl althouse, dade carver, Dael Ra, dakota schwade, Dale Innis, Damian McLeod, Danger Lytton, danielluh ashton, DanOfWA Flanagan, Davec Horsforth, Davidius Morigi, davie zinner, Day Oh, DBDigital Epsilon, Deany Fall, deBruce Munro, Decaf Coffey, Dedric Mauriac, Deeso Saeed, Dekka Raymaker, dexter eberhart, Dildo Spitz, Dizzy Banjo, djcabello klaar, Dnali Anabuki, Domchi Underwood, Doran Zemlja, Drew Dwi, Duckless Vandyke, Duncan Stenvaag, Dylan Rickenbacker, dzogchen Moody, Dzonatas Sol, Eddy Stryker, Edward Griffith, Edward Pearse, ein duesenburg, Elle Pollack, Elle74 Zaftig, Emileigh Starbrook, Emma Nowhere, ener bing, Erdrick Balbozar, eric domela, Evangeline Biedermann, Excalibur Longstaff, Fake Fitzgerald, Feldspar Millgrove, Feynt Mistral, Fluf Fredriksson, Forbid Utorid, Fortyniner Beck, Francesco Despres, Francisco Koolhoven, Franta Burt, Fury Rosewood, garde Burrel, Garmin Kawaguichi, Gavin Ichigo, Gellan Glenelg, Genie Demina, Gennifer Meredith, Gigs Taggart, Goldie Katsu, Gwyneth Llewelyn, Haravikk Mistral, Harleen Gretzky, Haruki Watanabe, Heather Manatiso, Henri Beauchamp, Honey Fairweather, Hypatia Callisto, Ice Brodie, icktoofay Kamachi, IntLibber Brautigan, Janise Dreamscape, Jay Shinobu, Jenni Ryba, Jeremy Ondricek, JetZep Zabelin, Jims Smythe, Jini Hammerer, Jopy Weber, JustOneMore Loon, Kaluura Boa, Kara Markova, Kevin Susenko, Khyra Ares, Kii Lilliehook, Kitty Barnett, Kris Kuttelwascher, Lanita Wingtips, Laura18 Streeter, Lee Ludd, Lettrius Jewell, Liberty Tesla, LilyAnna Carter, Lindal Kidd, Lisa Lowe, Lisa McConnell, Lola Machin, luca peck, Lupus Clawtooth, M1sha Dallin, Macsima Dagostino, Mana Janus, Mani Canning, Manjusri Binder, marceledward edman, march Korda, marchino villota, Marcus Llewellyn, MartinRJ Fayray, Matthew Dowd, Max Kleiber, mazzy fastback, McCabe Maxsted, Mckailen Kohnke, Meghan Dench, Melvin Starbrook, Mercia Mcmahon, Miakoda Carnell, Michelle2 Zenovka, Michi Lumin, mick parnall, Milla Michinaga, Millie Thompson, miranda Ashby, Mircea Lobo, MIssSara Beck, mouse mimistrobell, Myria Boa, Nanci Barthelmess, Nargus Asturias, Natalya Debevec, Nedrae Messmer, Nexeus Fatale, Niky Zenovka, Nimrod Szondi, Ninane Yoshikawa, Noch Tripsa, nokithecat writer, Nyko Merlin, Onyx Halberd, oryx tempel, Osprey Therian, Pac Hyun, Panagea McMillan, Patrick Ferrentino, PattehPh0x Katsu, ponk bing, Poppy Linden, Prajna Vella, Precious Rhiano, Prokofy Neva, Randall Lovenkraft, Rascal Ratelle, Raydon Writer, Rhaorth Antonelli, Rock Hayek, Ron Crimson, Ron Khondji, Ronald Richez, Rui Clary, Ruud Lathrop, Sakkano Imako, Sam Reinard, Sascha Vandyke, Scrippy Scofield, Sean18 McCarey, Sedona Mills, Sekonda Huet, Seraph Nephilim, Sergei Milos, Shadowquine Maltz, shai khalifa, sheilah flatley, Sheri Underwood, Shuggy Husky, Sierra Janus, Sigma Avro, Simil Miles, simon kline, Simon Nolan, Sindy Tsure, Sparks Keynes, Squirrel Wood, Stahi Columbia, StarSong Bright, Summer Seale, Sunn Thunders, Susan Koltai, Syler Zhora, Synack Fitzgerald, Tayra Dagostino, Tee Cramer, Teravus Ousley, Thomas Shikami, Tia Araw, Tillie Ariantho, Topher Brooks, Torley Linden, Twosteppin Jewell, tx Oh, urantia jewell, vaguegirl Petty, VeC Merlin, venus petrov, vv33d Beck, vynka dean, zann canto, zeebster colasanti, Zi Ree, Zion Tristan, Zorin Frobozz, Zyzzy Zarf | ||
158 | |||
159 | APR Copyright (C) 2000-2004 The Apache Software Foundation | ||
160 | cURL Copyright (C) 1996-2002, Daniel Stenberg, (daniel@haxx.se) | ||
161 | expat Copyright (C) 1998, 1999, 2000 Thai Open Source Software Center Ltd. | ||
162 | FreeType Copyright (C) 1996-2002, The FreeType Project (www.freetype.org). | ||
163 | GL Copyright (C) 1999-2004 Brian Paul. | ||
164 | Havok.com(TM) Copyright (C) 1999-2001, Telekinesys Research Limited. | ||
165 | jpeg2000 Copyright (C) 2001, David Taubman, The University of New South Wales (UNSW) | ||
166 | jpeglib Copyright (C) 1991-1998, Thomas G. Lane. | ||
167 | ogg/vorbis Copyright (C) 2001, Xiphophorus | ||
168 | OpenSSL Copyright (C) 1998-2002 The OpenSSL Project. | ||
169 | SDL Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002 Sam Lantinga | ||
170 | SSLeay Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | ||
171 | xmlrpc-epi Copyright (C) 2000 Epinions, Inc. | ||
172 | zlib Copyright (C) 1995-2002 Jean-loup Gailly and Mark Adler. | ||
173 | |||
174 | All rights reserved. See licenses.txt for details. | ||
175 | |||
176 | Voice chat Audio coding: Polycom(R) Siren14(TM) (ITU-T Rec. G.722.1 Annex C) | ||
177 | |||
178 | |||
179 | Happiness is a warm puppy. -- Charles M. Schulz | ||
180 | </e_new> | ||
181 | <f_translation> | ||
182 | Second Life 제작자들: Philip, Andrew, Tessa, Cory, Frank, James, Doug, Hunter, Richard, John, Eric, Avi, AaronB, AaronY, Ian, Peter, Mark, Robin, Stephen, Tracy, Ryan, Alberto, Haney, Tanya, JimJ, Dan, Ben, Stephanie, Tim, Evan, Catherine, Colin, Chris, Reuben, Charity, Jeska, James, JonHenry, Kelly, Callum, Char, Daniel, DavidF, Don, Jeff, Lauren, Lee, Michael, Ramzi, Vektor, Steve, TomY, Tess, Kona, Brent, Clarissa, PeterP, Jesse, Annette, Cyn, Blue, Ginsu, Jonathan, Karen, Adam, Nova, Deana, Lizzie, Patsy, DavidK, Isaac, Pathfinder, Monroe, Jill, Benny, Altruima, Rheya, Jennifer, Jack, DaveP, Brad, Mick, Babbage, Elisabeth, Brian, Beth, Data, Ethan, Wendy, Nicole, Sky, Jeffrey, Zero, Coffee, Tesla, Kenny, Makiko, Nigel, Teeple, Lucy, Mia, Dee, Guy, Harry, Liana, Branka, Jimbo, Aura, Vasuda, SarahD, bethanye, Torley, Runitai, MikeS, PaulM, Milo, Hermia, JoeM, Melanie, Rejean, DSmith, SMiller, Susan, Jose, DongYun, Justin, Andrey, Syrah, Donovan, Henrik, Nora, Lexie, AC, Donna, ChrisC, Alex, Leyla, Kyle, Mathew, Devin, Joshua, DanC, Jessica, Harmony, Claudia, Tramel, Glenn, Betsy, Fritz, Jun, Adam, Cassandra, Ken, RyanW, Spike, Tofu, Varas, Andy, Luke, RobLa, Chiyo, JohnZ, Dustin, George, Del, PeterP, Migyeong, Matthew, RMullane, CChampion, JTurbin, JamesC, Viola, Lightfoot, Jacqui, Sturm, Adrian, Buttercup, Alfred, Sunil, Alfred, Noel, Irfan, Jill, Yool, Jane, Yuki, Yoz, Matthew, Arthur, Jennifer, Karl, Brian, Ben, Janine, Christopher, Madhavi, Everett, Anthony, Joon, Jake, sean, Adreanne, Stephany, KellyJo, Jeremy, Pramod, Joshua, Sean, Christopher, Amy, Ceren, Katherine, jon, Sudheendra, James, Stephan, Kari, Kartic, Todd, Thomas, Joki, Rebecca, Belinda, Bert, Roger, Bridie, Kristi, Brian, Maria, John, Aric, Nathanel, Melinda, Darrell, Jennifer, Sandy, Greg, Rob, Brad, Chris, Eric, Palmer, Asi, Katja, Lisa, Minda, Jen, Aaron, Bryan, Mark, Jonathan, Jamie, Laurel, William, Matthew, Steve, David, Remy, James, Tim, Lee, Brian, Ashlei, Sam, Mike, Ethan, Austin, Wanda, Paul, Brian, Rachel, Valentyn, Emma Williams, Autum, Steven, Laley, Charles, Jessica, Sue, Gillian, CG, Kip, Kristen, Shamiran, Blake, Brett, Erica, Kent, Joel, Plexus, Twilight, Joppa, Enus, Kraft, Naveen, Simon, Q, Ronp, Laurap, Ram, KyleJM, Marty, Kend, Daveh, Prospero, Melissa, Nat, Hamilton, Green, Seraph, Ekim, Miz, Jimmy, Kosmo, Rome, Doris, JT, Benoc, Whump, Mango, Trinity, Patch, TJ, Christy, Bao, Joohwan, Kate, Oreh, Angela, Johan, Cheah, Lan, Matias, Brandy, Cogsworth, Aleks, Mitchell, Space, Einstein, Bambers, Colton, Malbers, Maggie, Umesh, Santosh, Rose, Stash, Rothman, Winnie, Stella, Niall, 그 외에 많은 분들이 수고해 주셨습니다. | ||
183 | |||
184 | 현재 버전이 최상의 버전이 될 수 있도록 도와주신 게이머 여러분께 감사드립니다: aaron23 decuir, Abelv Vollmar, Abyssin Otoro, ActingIll Igaly, Adamas Carter, Addy Broome, Adelia Menges, Alexandra Rucker, Alexandrea Fride, Alissa Sabre, Alyx Jonson, Ann Otoole, Anton Fargis, Aradia Dielli, Araina jewell, Arcane Clawtooth, arcangelo vantelli, Are Sperber, Argent Stonecutter, arkady yost, Ashcroft Burnham, Ashen Arida, Auron Forcella, Azadine Umarov, Azildin Furst, Balp Allen, Balpien Hammerer, Barney Boomslang, Barrett Slade, becky pippen, Beeflin Grut, Beer Dailey, Behemoth Greenwood, bigmanu greene, bitova loon, Bonca Chikuwa, Bonnie Bechir, Brandon Catteneo, buttonpusher jones, Carina Raymaker, Ceera Murakami, Celierra Darling, ChatNoir Moonsoo, Cheetah Hammerer, chet neurocam, Cinthya Loveless, Cold Spitteler, Coral Quinnell, Crash Pointe, CrazyTB Oh, Creem Pye, Crom Chaffe, ctrl althouse, dade carver, Dael Ra, dakota schwade, Dale Innis, Damian McLeod, Danger Lytton, danielluh ashton, DanOfWA Flanagan, Davec Horsforth, Davidius Morigi, davie zinner, Day Oh, DBDigital Epsilon, Deany Fall, deBruce Munro, Decaf Coffey, Dedric Mauriac, Deeso Saeed, Dekka Raymaker, dexter eberhart, Dildo Spitz, Dizzy Banjo, djcabello klaar, Dnali Anabuki, Domchi Underwood, Doran Zemlja, Drew Dwi, Duckless Vandyke, Duncan Stenvaag, Dylan Rickenbacker, dzogchen Moody, Dzonatas Sol, Eddy Stryker, Edward Griffith, Edward Pearse, ein duesenburg, Elle Pollack, Elle74 Zaftig, Emileigh Starbrook, Emma Nowhere, ener bing, Erdrick Balbozar, eric domela, Evangeline Biedermann, Excalibur Longstaff, Fake Fitzgerald, Feldspar Millgrove, Feynt Mistral, Fluf Fredriksson, Forbid Utorid, Fortyniner Beck, Francesco Despres, Francisco Koolhoven, Franta Burt, Fury Rosewood, garde Burrel, Garmin Kawaguichi, Gavin Ichigo, Gellan Glenelg, Genie Demina, Gennifer Meredith, Gigs Taggart, Goldie Katsu, Gwyneth Llewelyn, Haravikk Mistral, Harleen Gretzky, Haruki Watanabe, Heather Manatiso, Henri Beauchamp, Honey Fairweather, Hypatia Callisto, Ice Brodie, icktoofay Kamachi, IntLibber Brautigan, Janise Dreamscape, Jay Shinobu, Jenni Ryba, Jeremy Ondricek, JetZep Zabelin, Jims Smythe, Jini Hammerer, Jopy Weber, JustOneMore Loon, Kaluura Boa, Kara Markova, Kevin Susenko, Khyra Ares, Kii Lilliehook, Kitty Barnett, Kris Kuttelwascher, Lanita Wingtips, Laura18 Streeter, Lee Ludd, Lettrius Jewell, Liberty Tesla, LilyAnna Carter, Lindal Kidd, Lisa Lowe, Lisa McConnell, Lola Machin, luca peck, Lupus Clawtooth, M1sha Dallin, Macsima Dagostino, Mana Janus, Mani Canning, Manjusri Binder, marceledward edman, march Korda, marchino villota, Marcus Llewellyn, MartinRJ Fayray, Matthew Dowd, Max Kleiber, mazzy fastback, McCabe Maxsted, Mckailen Kohnke, Meghan Dench, Melvin Starbrook, Mercia Mcmahon, Miakoda Carnell, Michelle2 Zenovka, Michi Lumin, mick parnall, Milla Michinaga, Millie Thompson, miranda Ashby, Mircea Lobo, MIssSara Beck, mouse mimistrobell, Myria Boa, Nanci Barthelmess, Nargus Asturias, Natalya Debevec, Nedrae Messmer, Nexeus Fatale, Niky Zenovka, Nimrod Szondi, Ninane Yoshikawa, Noch Tripsa, nokithecat writer, Nyko Merlin, Onyx Halberd, oryx tempel, Osprey Therian, Pac Hyun, Panagea McMillan, Patrick Ferrentino, PattehPh0x Katsu, ponk bing, Poppy Linden, Prajna Vella, Precious Rhiano, Prokofy Neva, Randall Lovenkraft, Rascal Ratelle, Raydon Writer, Rhaorth Antonelli, Rock Hayek, Ron Crimson, Ron Khondji, Ronald Richez, Rui Clary, Ruud Lathrop, Sakkano Imako, Sam Reinard, Sascha Vandyke, Scrippy Scofield, Sean18 McCarey, Sedona Mills, Sekonda Huet, Seraph Nephilim, Sergei Milos, Shadowquine Maltz, shai khalifa, sheilah flatley, Sheri Underwood, Shuggy Husky, Sierra Janus, Sigma Avro, Simil Miles, simon kline, Simon Nolan, Sindy Tsure, Sparks Keynes, Squirrel Wood, Stahi Columbia, StarSong Bright, Summer Seale, Sunn Thunders, Susan Koltai, Syler Zhora, Synack Fitzgerald, Tayra Dagostino, Tee Cramer, Teravus Ousley, Thomas Shikami, Tia Araw, Tillie Ariantho, Topher Brooks, Torley Linden, Twosteppin Jewell, tx Oh, urantia jewell, vaguegirl Petty, VeC Merlin, venus petrov, vv33d Beck, vynka dean, zann canto, zeebster colasanti, Zi Ree, Zion Tristan, Zorin Frobozz, Zyzzy Zarf | ||
185 | |||
186 | APR Copyright (C) 2000-2004 The Apache Software Foundation | ||
187 | cURL Copyright (C) 1996-2002, Daniel Stenberg, (daniel@haxx.se) | ||
188 | expat Copyright (C) 1998, 1999, 2000 Thai Open Source Software Center Ltd. | ||
189 | FreeType Copyright (C) 1996-2002, The FreeType Project (www.freetype.org). | ||
190 | GL Copyright (C) 1999-2004 Brian Paul. | ||
191 | Havok.com(TM) Copyright (C) 1999-2001, Telekinesys Research Limited. | ||
192 | jpeg2000 Copyright (C) 2001, David Taubman, The University of New South Wales (UNSW) | ||
193 | jpeglib Copyright (C) 1991-1998, Thomas G. Lane. | ||
194 | ogg/vorbis Copyright (C) 2001, Xiphophorus | ||
195 | OpenSSL Copyright (C) 1998-2002 The OpenSSL Project. | ||
196 | SDL Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002 Sam Lantinga | ||
197 | SSLeay Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | ||
198 | xmlrpc-epi Copyright (C) 2000 Epinions, Inc. | ||
199 | zlib Copyright (C) 1995-2002 Jean-loup Gailly and Mark Adler. | ||
200 | |||
201 | 저작권 보유. 자세한 내용은 licenses.txt를 참조하십시오. | ||
202 | |||
203 | 음성 채팅 오디오 코딩: Polycom(R) Siren14(TM) (ITU-T Rec. G.722.1 Annex C) | ||
204 | |||
205 | |||
206 | 행복이란 포근한 강아지 한마리다. -- Charles M. Schulz | ||
207 | </f_translation> | ||
208 | <f_old_trans> | ||
209 | Second Life 제작자들: Philip, Andrew, Tessa, Cory, Frank, James, Doug, Hunter, Richard, John, Eric, Avi, AaronB, AaronY, Ian, Peter, Mark, Robin, Stephen, Tracy, Ryan, Alberto, Haney, Tanya, JimJ, Dan, Ben, Stephanie, Tim, Evan, Catherine, Colin, Chris, Reuben, Charity, Jeska, James, JonHenry, Kelly, Callum, Char, Daniel, DavidF, Don, Jeff, Lauren, Lee, Michael, Ramzi, Vektor, Steve, TomY, Tess, Kona, Brent, Clarissa, PeterP, Jesse, Annette, Cyn, Blue, Ginsu, Jonathan, Karen, Adam, Nova, Deana, Lizzie, Patsy, DavidK, Isaac, Pathfinder, Monroe, Jill, Benny, Altruima, Rheya, Jennifer, Jack, DaveP, Brad, Mick, Babbage, Elisabeth, Brian, Beth, Data, Ethan, Wendy, Nicole, Sky, Jeffrey, Zero, Coffee, Tesla, Kenny, Makiko, Nigel, Teeple, Lucy, Mia, Dee, Guy, Harry, Liana, Branka, Jimbo, Aura, Vasuda, SarahD, bethanye, Torley, Runitai, MikeS, PaulM, Milo, Hermia, JoeM, Melanie, Rejean, DSmith, SMiller, Susan, Jose, DongYun, Justin, Andrey, Syrah, Donovan, Henrik, Nora, Lexie, AC, Donna, ChrisC, Alex, Leyla, Kyle, Mathew, Devin, Joshua, DanC, Jessica, Harmony, Claudia, Tramel, Glenn, Betsy, Fritz, Jun, Adam, Cassandra, Ken, RyanW, Spike, Tofu, Varas, Andy, Luke, RobLa, Chiyo, JohnZ, Dustin, George, Del, PeterP, Migyeong, Matthew, RMullane, CChampion, JTurbin, JamesC, Viola, Lightfoot, Jacqui, Sturm, Adrian, Buttercup, Alfred, Sunil, Alfred, Noel, Irfan, Jill, Yool, Jane, Yuki, Yoz, Matthew, Arthur, Jennifer, Karl, Brian, Ben, Janine, Christopher, Madhavi, Everett, Anthony, Joon, Jake, sean, Adreanne, Stephany, KellyJo, Jeremy, Pramod, Joshua, Sean, Christopher, Amy, Ceren, Katherine, jon, Sudheendra, James, Stephan, Kari, Kartic, Todd, Thomas, Joki, Rebecca, Belinda, Bert, Roger, Bridie, Kristi, Brian, Maria, John, Aric, Nathanel, Melinda, Darrell, Jennifer, Sandy, Greg, Rob, Brad, Chris, Eric, Palmer, Asi, Katja, Lisa, Minda, Jen, Aaron, Bryan, Mark, Jonathan, Jamie, Laurel, William, Matthew, Steve, David, Remy, James, Tim, Lee, Brian, Ashlei, Sam, Mike, Ethan, Austin, Wanda, Paul, Brian, Rachel, Valentyn, Emma Williams, Autum, Steven, Laley, Charles, Jessica, Sue, Gillian, CG, Kip, Kristen, Shamiran, Blake, Brett, Erica, Kent, Joel, Plexus, Twilight, Joppa, 그 외에 많은 분들이 수고해 주셨습니다. | ||
210 | |||
211 | Jesse Malthus를 기억하며... 그의 목소리를 들었던 모든 사람들에 의해 그는 다정스럽게 기억될 것입니다. | ||
212 | |||
213 | 현재 버전이 최고 버전이 될 수 있도록 도와주신 주민들께 감사 드립니다: Aces Spade, Adrian Buckler, Adrienne LeShelle, Amanda Ascot, AnnaQuay Heart, Aquamina Khalifa, Arienne Anatine, Aston Hildyard, Ayami Kamachi, Badinage Odets, Biffy Berjis, Bigfox Pye, BigJohn Jade, BigRick Byrd, Brettus Tripsa, Brock Fitzgerald, Broker Allen, Browse by Name, Chiria Celt, Christopher Prudhomme, dale Cao, dale Lynch, Dante Tucker, DaQbet Kish, Dargon Pacer, Darius Antonelli, Deira Llanfair, DeviantBone Xi, Dore Dorado, Englishwob Etchegaray, Enya Masala, Eric Renneville, Fairfax Michinaga, FireFox Bancroft, FOXI Cortes, Frederick Earp, Geo Meek, Gotthilf Fischer, Hallo Loon, Hawk Carter, Hazel Kyrgyz, Hecter Barbosa, Hex Link, Ice Pak, Ideasu Mukerji, Itoku Kamachi, Jared Halleck, Jaykob Carter, Jennifer Drumheller, JensMartin Tomsen, JIAB Boa, Jim Gustafson, JimmyJet Fossett, Joseph Rustamova, Jt Volos, Karilyn Kidomen, Kaysha Sion, Keaton Nacon, Kevin Susenko, Khashai Steinbeck, Kira Cuddihy, Kit Massiel, Kojo Dixon, KUieTSToRm Lightcloud, Kwai Kyong, Kyrtis Daehlie, LazyGunGuy Bartlett, Lewcas Zapedzki, Lioc Cioc, LLIB Utu, Lou Liebknecht, Luca Draken, Maci Homewood, Major Sewell, Mari Todriya, MarieElize Noel, matt27 Churchill, Maverick Miasma, maydaysos Young, Mediaho Ball, Mikayla Gillespie, Mike Faulkland, Modfire Milland, MollyBrown Foxley, Mosley Jewell, Nuahs Zapedzki, Nyx Divine, Panther Farber, Paul Bumi, Preciousse Moody, PrincessNina Prefect, Prio Serpentine, Rainbow Drake, Randall Rall, Randy Kazan, Reinhart Mokeev, Rhyph Somme, Rico Roizman, Ruge Dryke, Ryan Orbit, Safira Rosher, Samantha Bainbridge, Sammy Foxley, Sash Furst, Saturn Ariantho, Sienna Summers, Skye Enoch, Sofie Kanno, Solar Legion, Sonic Oki, Sunra Saenz, Taina Heart, Taryn Sprawl, tenerife Wei, TomDragon Nilsson, Trebla Reve, Trouble Carnell, user1cat Orbit, Vance Merlin, Veritas Variscan, Web Page, Wi3g3ht3s Ihnen, WinDrftr DeFarge, Yuu Nakamichi, Zac Delec, Zed Fairweather, Zimmo Hallard 등. | ||
214 | |||
215 | APR Copyright (C) 2000-2004 The Apache Software Foundation | ||
216 | cURL Copyright (C) 1996-2002, Daniel Stenberg, (daniel@haxx.se) | ||
217 | expat Copyright (C) 1998, 1999, 2000 Thai Open Source Software Center Ltd. | ||
218 | FreeType Copyright (C) 1996-2002, The FreeType Project (www.freetype.org). | ||
219 | GL Copyright (C) 1999-2004 Brian Paul. | ||
220 | Havok.com(TM) Copyright (C) 1999-2001, Telekinesys Research Limited. | ||
221 | jpeg2000 Copyright (C) 2001, David Taubman, The University of New South Wales (UNSW) | ||
222 | jpeglib Copyright (C) 1991-1998, Thomas G. Lane. | ||
223 | ogg/vorbis Copyright (C) 2001, Xiphophorus | ||
224 | OpenSSL Copyright (C) 1998-2002 The OpenSSL Project. | ||
225 | SDL Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002 Sam Lantinga | ||
226 | SSLeay Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | ||
227 | xmlrpc-epi Copyright (C) 2000 Epinions, Inc. | ||
228 | zlib Copyright (C) 1995-2002 Jean-loup Gailly and Mark Adler. | ||
229 | |||
230 | 저작권 보유됨. 자세한 내용은 licenses.txt를 참조하십시오. | ||
231 | |||
232 | 음성 채팅 오디오 코딩: Polycom(R) Siren14(TM) (ITU-T Rec. G.722.1 Annex C) | ||
233 | |||
234 | |||
235 | 와트슨씨, 이리 오세요. 보고 싶군요. | ||
236 | </f_old_trans> | ||
237 | </string> | ||
5 | </strings> | 238 | </strings> |
diff --git a/linden/indra/newview/skins/xui/ko/need_to_translate.xml b/linden/indra/newview/skins/xui/ko/need_to_translate.xml index e00cbbd..baf8577 100644 --- a/linden/indra/newview/skins/xui/ko/need_to_translate.xml +++ b/linden/indra/newview/skins/xui/ko/need_to_translate.xml | |||
@@ -1,27 +1,1163 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | 2 | ||
3 | <strings> | 3 | <strings> |
4 | <string><a_file>floater_about_land.xml</a_file> | 4 | <string><a_file>alerts.xml</a_file> |
5 | <b_path>/floaterland/landtab/land_objects_panel/owner list/</b_path> | 5 | <b_path>//UnsupportedGLRequirements/message</b_path> |
6 | <c_attribute></c_attribute> | ||
7 | <d_old></d_old> | ||
8 | <e_new> | ||
9 | You do not appear to have the proper hardware requirements for Second Life. Second Life requires an OpenGL graphics card that has multitexture support. If this is the case, you may want to make sure that you have the latest drivers for your graphics card, and service packs and patches for your operating system. | ||
10 | |||
11 | If you continue to have problems, please visit: http://www.secondlife.com/support | ||
12 | </e_new> | ||
13 | <f_old_trans></f_old_trans> | ||
14 | <f_translation> | ||
15 | 세컨드라이프를 실행하는 데 필요한 하드웨어 요구 사항이 충족되지 않았습니다. 세컨드라이프를 이용하려면 멀티텍스처를 지원하는 OpenGL 그래픽 카드가 필요합니다. 적절한 그래픽 카드가 있는 경우 해당 그래픽 카드에 대한 최신 드라이버와 운영 체제에 맞는 서비스 팩과 패치가 설치되어 있는지 확인하십시오. | ||
16 | |||
17 | 그래도 문제가 지속되면 다음 사이트를 방문해 보십시오: http://www.secondlife.com/support | ||
18 | </f_translation> | ||
19 | </string><string><a_file>alerts.xml</a_file> | ||
20 | <b_path>//UnsupportedHardware/message</b_path> | ||
21 | <c_attribute></c_attribute> | ||
22 | <d_old></d_old> | ||
23 | <e_new> | ||
24 | Warning: Your system does not meet Second Life's minimum system requirements. If you continue using Second Life, you may experience poor performance. Unfortunately, we cannot provide technical support for unsupported system configurations. | ||
25 | |||
26 | MINSPECS | ||
27 | Do you wish to visit [_URL] for more information? | ||
28 | </e_new> | ||
29 | <f_old_trans></f_old_trans> | ||
30 | <f_translation> | ||
31 | 경고: 시스템이 세컨드라이프의 최소 시스템 요구 사항을 충족하지 않습니다. 계속해서 세컨드라이프를 사용하면 컴퓨터의 성능 저하가 발생할 수 있습니다. 지원되지 않는 시스템 구성에 대한 기술적인 지원은 제공되지 않습니다. | ||
32 | |||
33 | 최소 사양 | ||
34 | [_URL]을 방문하여 추가 정보를 확인 하시겠습니까? | ||
35 | </f_translation> | ||
36 | </string><string><a_file>alerts.xml</a_file> | ||
37 | <b_path>//UnsupportedHardware/Yes</b_path> | ||
38 | <c_attribute></c_attribute> | ||
39 | <d_old></d_old> | ||
40 | <e_new> | ||
41 | Yes | ||
42 | </e_new> | ||
43 | <f_old_trans></f_old_trans> | ||
44 | <f_translation> | ||
45 | 예 | ||
46 | </f_translation> | ||
47 | </string><string><a_file>alerts.xml</a_file> | ||
48 | <b_path>//UnsupportedHardware/No</b_path> | ||
49 | <c_attribute></c_attribute> | ||
50 | <d_old></d_old> | ||
51 | <e_new> | ||
52 | No | ||
53 | </e_new> | ||
54 | <f_old_trans></f_old_trans> | ||
55 | <f_translation> | ||
56 | 아니오 | ||
57 | </f_translation> | ||
58 | </string><string><a_file>alerts.xml</a_file> | ||
59 | <b_path>//UnsupportedGPU/message</b_path> | ||
60 | <c_attribute></c_attribute> | ||
61 | <d_old></d_old> | ||
62 | <e_new> | ||
63 | - Your graphics card does not meet the minimum requirements. | ||
64 | </e_new> | ||
65 | <f_old_trans></f_old_trans> | ||
66 | <f_translation> | ||
67 | - 사용 중인 그래픽 카드가 최소 요구 사항을 충족하지 않습니다. | ||
68 | </f_translation> | ||
69 | </string><string><a_file>alerts.xml</a_file> | ||
70 | <b_path>//UnsupportedCPU/message</b_path> | ||
71 | <c_attribute></c_attribute> | ||
72 | <d_old></d_old> | ||
73 | <e_new> | ||
74 | - Your CPU speed does not meet the minimum requirements. | ||
75 | </e_new> | ||
76 | <f_old_trans></f_old_trans> | ||
77 | <f_translation> | ||
78 | - 사용 중인 CPU 속도가 최소 요구 사항을 충족하지 않습니다. | ||
79 | </f_translation> | ||
80 | </string><string><a_file>alerts.xml</a_file> | ||
81 | <b_path>//UnsupportedCPUAmount/message</b_path> | ||
82 | <c_attribute></c_attribute> | ||
83 | <d_old></d_old> | ||
84 | <e_new> | ||
85 | 796 | ||
86 | </e_new> | ||
87 | <f_old_trans></f_old_trans> | ||
88 | <f_translation> | ||
89 | 796 | ||
90 | </f_translation> | ||
91 | </string><string><a_file>alerts.xml</a_file> | ||
92 | <b_path>//UnsupportedRAM/message</b_path> | ||
93 | <c_attribute></c_attribute> | ||
94 | <d_old></d_old> | ||
95 | <e_new> | ||
96 | - Your system memory does not meet the minimum requirements. | ||
97 | </e_new> | ||
98 | <f_old_trans></f_old_trans> | ||
99 | <f_translation> | ||
100 | - 사용 중인 시스템 메모리가 카드가 최소 요구 사항을 충족하지 않습니다. | ||
101 | </f_translation> | ||
102 | </string><string><a_file>alerts.xml</a_file> | ||
103 | <b_path>//UnsupportedRAMAmount/message</b_path> | ||
104 | <c_attribute></c_attribute> | ||
105 | <d_old></d_old> | ||
106 | <e_new> | ||
107 | 510 | ||
108 | </e_new> | ||
109 | <f_old_trans></f_old_trans> | ||
110 | <f_translation> | ||
111 | 510 | ||
112 | </f_translation> | ||
113 | </string><string><a_file>alerts.xml</a_file> | ||
114 | <b_path>//HelpEstateAbuseEmailAddress</b_path> | ||
115 | <c_attribute>title</c_attribute> | ||
116 | <d_old></d_old> | ||
117 | <e_new>Abuse Email Address</e_new> | ||
118 | <f_old_trans></f_old_trans> | ||
119 | <f_translation>악용 신고 이메일 주소</f_translation> | ||
120 | </string><string><a_file>alerts.xml</a_file> | ||
121 | <b_path>//HelpEstateAbuseEmailAddress/message</b_path> | ||
122 | <c_attribute></c_attribute> | ||
123 | <d_old></d_old> | ||
124 | <e_new> | ||
125 | Setting this to a valid email address will cause | ||
126 | abuse reports on this estate to be sent to that address. | ||
127 | Setting it blank will cause abuse reports to be sent | ||
128 | only to Linden Lab. | ||
129 | </e_new> | ||
130 | <f_old_trans></f_old_trans> | ||
131 | <f_translation> | ||
132 | 유효한 이메일 주소로 이 옵션을 설정하면 | ||
133 | 이 사유지에 대한 악용 신고가 해당 주소로 전송됩니다. | ||
134 | 이 옵션을 공란으로 비워두면 악용 신고 내용이 | ||
135 | 린든랩으로만 전송됩니다. | ||
136 | </f_translation> | ||
137 | </string><string><a_file>alerts.xml</a_file> | ||
138 | <b_path>//RetryFetchInventoryDescendents/message</b_path> | ||
139 | <c_attribute></c_attribute> | ||
140 | <d_old></d_old> | ||
141 | <e_new> | ||
142 | Inventory fetch from server timed out. Retry? | ||
143 | </e_new> | ||
144 | <f_old_trans></f_old_trans> | ||
145 | <f_translation> | ||
146 | 서버에서 인벤토리를 가져오는 중 시간이 초과되었습니다. 다시 시도하시겠습니까? | ||
147 | </f_translation> | ||
148 | </string><string><a_file>alerts.xml</a_file> | ||
149 | <b_path>//RetryFetchInventoryDescendents/ignore</b_path> | ||
150 | <c_attribute></c_attribute> | ||
151 | <d_old></d_old> | ||
152 | <e_new> | ||
153 | Retry Fetch Inventory Descendents | ||
154 | </e_new> | ||
155 | <f_old_trans></f_old_trans> | ||
156 | <f_translation> | ||
157 | 인벤토리 가져오기 다시 시도 | ||
158 | </f_translation> | ||
159 | </string><string><a_file>alerts.xml</a_file> | ||
160 | <b_path>//RetryFetchInventoryDescendents/Retry</b_path> | ||
161 | <c_attribute></c_attribute> | ||
162 | <d_old></d_old> | ||
163 | <e_new> | ||
164 | Retry | ||
165 | </e_new> | ||
166 | <f_old_trans></f_old_trans> | ||
167 | <f_translation> | ||
168 | 다시 시도 | ||
169 | </f_translation> | ||
170 | </string><string><a_file>alerts.xml</a_file> | ||
171 | <b_path>//RetryFetchInventoryDescendents/Cancel</b_path> | ||
172 | <c_attribute></c_attribute> | ||
173 | <d_old></d_old> | ||
174 | <e_new> | ||
175 | Cancel | ||
176 | </e_new> | ||
177 | <f_old_trans></f_old_trans> | ||
178 | <f_translation> | ||
179 | 취소 | ||
180 | </f_translation> | ||
181 | </string><string><a_file>alerts.xml</a_file> | ||
182 | <b_path>//ConfirmClearMediaUrlList/message</b_path> | ||
183 | <c_attribute></c_attribute> | ||
184 | <d_old></d_old> | ||
185 | <e_new> | ||
186 | Are you sure you want to clear your list of saved URLs? | ||
187 | </e_new> | ||
188 | <f_old_trans></f_old_trans> | ||
189 | <f_translation> | ||
190 | 저장된 URL 목록을 삭제하시겠습니까? | ||
191 | </f_translation> | ||
192 | </string><string><a_file>alerts.xml</a_file> | ||
193 | <b_path>//ConfirmClearMediaUrlList/Yes</b_path> | ||
194 | <c_attribute></c_attribute> | ||
195 | <d_old></d_old> | ||
196 | <e_new> | ||
197 | Yes | ||
198 | </e_new> | ||
199 | <f_old_trans></f_old_trans> | ||
200 | <f_translation> | ||
201 | 예 | ||
202 | </f_translation> | ||
203 | </string><string><a_file>alerts.xml</a_file> | ||
204 | <b_path>//ConfirmClearMediaUrlList/No</b_path> | ||
205 | <c_attribute></c_attribute> | ||
206 | <d_old></d_old> | ||
207 | <e_new> | ||
208 | Cancel | ||
209 | </e_new> | ||
210 | <f_old_trans></f_old_trans> | ||
211 | <f_translation> | ||
212 | 취소 | ||
213 | </f_translation> | ||
214 | </string><string><a_file>alerts.xml</a_file> | ||
215 | <b_path>//WLSavePresetAlert/message</b_path> | ||
216 | <c_attribute></c_attribute> | ||
217 | <d_old></d_old> | ||
218 | <e_new> | ||
219 | Do you wish to overwrite the saved preset? | ||
220 | </e_new> | ||
221 | <f_old_trans></f_old_trans> | ||
222 | <f_translation> | ||
223 | 저장된 사전 설정을 덮어쓰시겠습니까? | ||
224 | </f_translation> | ||
225 | <f_old_trans></f_old_trans> | ||
226 | </string><string><a_file>alerts.xml</a_file> | ||
227 | <b_path>//WLSavePresetAlert/Save</b_path> | ||
228 | <c_attribute></c_attribute> | ||
229 | <d_old></d_old> | ||
230 | <e_new> | ||
231 | Yes | ||
232 | </e_new> | ||
233 | <f_old_trans></f_old_trans> | ||
234 | <f_translation> | ||
235 | 예 | ||
236 | </f_translation> | ||
237 | </string><string><a_file>alerts.xml</a_file> | ||
238 | <b_path>//WLSavePresetAlert/Cancel</b_path> | ||
239 | <c_attribute></c_attribute> | ||
240 | <d_old></d_old> | ||
241 | <e_new> | ||
242 | No | ||
243 | </e_new> | ||
244 | <f_old_trans></f_old_trans> | ||
245 | <f_translation> | ||
246 | 아니오 | ||
247 | </f_translation> | ||
248 | </string><string><a_file>alerts.xml</a_file> | ||
249 | <b_path>//WLDeletePresetAlert/message</b_path> | ||
250 | <c_attribute></c_attribute> | ||
251 | <d_old></d_old> | ||
252 | <e_new> | ||
253 | Do you wish to delete [SKY]? | ||
254 | </e_new> | ||
255 | <f_old_trans></f_old_trans> | ||
256 | <f_translation> | ||
257 | [SKY]를 삭제하시겠습니까? | ||
258 | </f_translation> | ||
259 | </string><string><a_file>alerts.xml</a_file> | ||
260 | <b_path>//WLDeletePresetAlert/Delete</b_path> | ||
261 | <c_attribute></c_attribute> | ||
262 | <d_old></d_old> | ||
263 | <e_new> | ||
264 | Yes | ||
265 | </e_new> | ||
266 | <f_old_trans></f_old_trans> | ||
267 | <f_translation> | ||
268 | 예 | ||
269 | </f_translation> | ||
270 | </string><string><a_file>alerts.xml</a_file> | ||
271 | <b_path>//WLDeletePresetAlert/Cancel</b_path> | ||
272 | <c_attribute></c_attribute> | ||
273 | <d_old></d_old> | ||
274 | <e_new> | ||
275 | No | ||
276 | </e_new> | ||
277 | <f_old_trans></f_old_trans> | ||
278 | <f_translation> | ||
279 | 아니오 | ||
280 | </f_translation> | ||
281 | </string><string><a_file>alerts.xml</a_file> | ||
282 | <b_path>//WLNoEditDefault/message</b_path> | ||
283 | <c_attribute></c_attribute> | ||
284 | <d_old></d_old> | ||
285 | <e_new> | ||
286 | You cannot edit or delete a default preset. | ||
287 | </e_new> | ||
288 | <f_old_trans></f_old_trans> | ||
289 | <f_translation> | ||
290 | 기본 사전 설정은 편집하거나 삭제할 수 없습니다. | ||
291 | </f_translation> | ||
292 | </string><string><a_file>alerts.xml</a_file> | ||
293 | <b_path>//WLMissingSky/message</b_path> | ||
294 | <c_attribute></c_attribute> | ||
295 | <d_old></d_old> | ||
296 | <e_new> | ||
297 | This day cycle file references a missing sky file: [SKY]. | ||
298 | </e_new> | ||
299 | <f_old_trans></f_old_trans> | ||
300 | <f_translation> | ||
301 | 이 날짜 주기 파일이 누락된 하늘 파일을 참조하고 있습니다: [SKY]. | ||
302 | </f_translation> | ||
303 | </string><string><a_file>alerts.xml</a_file> | ||
304 | <b_path>//PPSaveEffectAlert/message</b_path> | ||
305 | <c_attribute></c_attribute> | ||
306 | <d_old></d_old> | ||
307 | <e_new> | ||
308 | PostProcess Effect exists. Do you still wish overwrite it? | ||
309 | </e_new> | ||
310 | <f_old_trans></f_old_trans> | ||
311 | <f_translation> | ||
312 | PostProcess 효과가 이미 있습니다. 덮어쓰시겠습니까? | ||
313 | </f_translation> | ||
314 | </string><string><a_file>alerts.xml</a_file> | ||
315 | <b_path>//PPSaveEffectAlert/Save</b_path> | ||
316 | <c_attribute></c_attribute> | ||
317 | <d_old></d_old> | ||
318 | <e_new> | ||
319 | Yes | ||
320 | </e_new> | ||
321 | <f_old_trans></f_old_trans> | ||
322 | <f_translation> | ||
323 | 예 | ||
324 | </f_translation> | ||
325 | </string><string><a_file>alerts.xml</a_file> | ||
326 | <b_path>//PPSaveEffectAlert/Cancel</b_path> | ||
327 | <c_attribute></c_attribute> | ||
328 | <d_old></d_old> | ||
329 | <e_new> | ||
330 | No | ||
331 | </e_new> | ||
332 | <f_old_trans></f_old_trans> | ||
333 | <f_translation> | ||
334 | 아니오 | ||
335 | </f_translation> | ||
336 | </string><string><a_file>alerts.xml</a_file> | ||
337 | <b_path>//HelpEditSky/message</b_path> | ||
338 | <c_attribute></c_attribute> | ||
339 | <d_old></d_old> | ||
340 | <e_new> | ||
341 | Edit the WindLight sliders to create and save a set of skies. | ||
342 | </e_new> | ||
343 | <f_old_trans></f_old_trans> | ||
344 | <f_translation> | ||
345 | 하늘 세트를 생성하고 저장하려면 윈드라이트 슬라이더를 편집하십시오. | ||
346 | </f_translation> | ||
347 | </string><string><a_file>alerts.xml</a_file> | ||
348 | <b_path>//HelpEditDayCycle/message</b_path> | ||
349 | <c_attribute></c_attribute> | ||
350 | <d_old></d_old> | ||
351 | <e_new> | ||
352 | Set which skies to turn to throughout the day. | ||
353 | </e_new> | ||
354 | <f_old_trans></f_old_trans> | ||
355 | <f_translation> | ||
356 | 하루 동안 변화하는 하늘의 모양을 설정하십시오. | ||
357 | </f_translation> | ||
358 | </string><string><a_file>alerts.xml</a_file> | ||
359 | <b_path>//HelpBlueHorizon/message</b_path> | ||
360 | <c_attribute></c_attribute> | ||
361 | <d_old></d_old> | ||
362 | <e_new> | ||
363 | Use the Red/Green/Blue (RGB) sliders to adjust the color of the sky. You can use the Intensity (I) slider to move all three RGB sliders in unison. | ||
364 | </e_new> | ||
365 | <f_old_trans></f_old_trans> | ||
366 | <f_translation> | ||
367 | 하늘의 색을 조절하려면 RGB(빨강/초록/파랑) 슬라이더를 사용하십시오. 강도(I) 슬라이더를 사용해서 3개의 모든 RGB 슬라이더를 같은 위치로 이동할 수 있습니다. | ||
368 | </f_translation> | ||
369 | </string><string><a_file>alerts.xml</a_file> | ||
370 | <b_path>//HelpHazeHorizon/message</b_path> | ||
371 | <c_attribute></c_attribute> | ||
372 | <d_old></d_old> | ||
373 | <e_new> | ||
374 | Haze Horizon is one of the most useful parameters for | ||
375 | adjusting overall light exposure in the scene. It is | ||
376 | effective for simulating many exposure settings, | ||
377 | such as white-outs from the sun and darker, | ||
378 | closed-iris settings. | ||
379 | </e_new> | ||
380 | <f_old_trans></f_old_trans> | ||
381 | <f_translation> | ||
382 | 헤이즈 수평선은 장면에서 전체적인 조명 노출을 조절할 때 | ||
383 | 가장 유용한 매개변수 중 하나로, 이 매개변수는 | ||
384 | 태양과 암흑, 구름이 자욱한 설정으로부터 화이트아웃과 같이 | ||
385 | 높은 노출 설정을 시뮬레이트할 때 | ||
386 | 효과적입니다. | ||
387 | </f_translation> | ||
388 | </string><string><a_file>alerts.xml</a_file> | ||
389 | <b_path>//HelpBlueDensity/message</b_path> | ||
390 | <c_attribute></c_attribute> | ||
391 | <d_old></d_old> | ||
392 | <e_new> | ||
393 | Blue Density affects the overall color saturation of the sky and fog. If you move the Intensity (I) slider to the right, colors will become brighter and more vibrant. If you move it all the way to the left, the colors will become duller, eventually fading to black and white. If you want to fine-tune the sky's color balance, you can control individual elements of saturation by using the Red/Green/Blue (RGB) sliders. | ||
394 | </e_new> | ||
395 | <f_old_trans></f_old_trans> | ||
396 | <f_translation> | ||
397 | 파란색 농도는 하늘과 안개의 전체 채도에 영향을 줍니다. 강도(I) 슬라이더를 우측으로 옮기면 색상이 더 밝아지고 선명해집니다. 슬라이더를 모두 왼쪽으로 이동하면 색상이 더 흐려지면서 검정색과 흰색으로 점차 사라집니다. 하늘의 색 균형을 미세하게 조절하려는 경우에는 RGB(빨강/초록/파랑) 슬라이더를 사용해서 채도의 개별 요소를 조절할 수 있습니다. | ||
398 | </f_translation> | ||
399 | </string><string><a_file>alerts.xml</a_file> | ||
400 | <b_path>//HelpHazeDensity/message</b_path> | ||
401 | <c_attribute></c_attribute> | ||
402 | <d_old></d_old> | ||
403 | <e_new> | ||
404 | Haze Density controls the level of dull, gray | ||
405 | haze in the atmosphere. It is effective for | ||
406 | simulating scenes with high levels of smoke | ||
407 | and man-made pollutants. It is also effective | ||
408 | for simulating fog and mist. | ||
409 | </e_new> | ||
410 | <f_old_trans></f_old_trans> | ||
411 | <f_translation> | ||
412 | 헤이즈 농도는 대기 중에서 회색빛의 흐린 | ||
413 | 안개 레벨을 조절합니다. 이 매개변수는 | ||
414 | 장면에서 높은 수준의 연기와 사람들이 내뿜는 오염 물질을 | ||
415 | 시뮬레이트할 때 효과적이며 안개나 미스트를 시뮬레이트할 때도 | ||
416 | 유용합니다. | ||
417 | </f_translation> | ||
418 | </string><string><a_file>alerts.xml</a_file> | ||
419 | <b_path>//HelpDensityMult/message</b_path> | ||
420 | <c_attribute></c_attribute> | ||
421 | <d_old></d_old> | ||
422 | <e_new> | ||
423 | The Density Multiplier can be used to affect the overall atmospheric density. At lower settings, it creates a feeling of "thin air", and at higher settings, it creates a very heavy, smoggy effect. | ||
424 | </e_new> | ||
425 | <f_old_trans></f_old_trans> | ||
426 | <f_translation> | ||
427 | 농도 배율은 전반적인 대기의 농도를 조절하는 데 사용할 수 있습니다. 설정이 낮을수록 "공기층이 옅어지는" 느낌이 나고 값이 높을수록 공기가 더 무겁고 연기가 자욱한 효과가 납니다. | ||
428 | </f_translation> | ||
429 | </string><string><a_file>alerts.xml</a_file> | ||
430 | <b_path>//HelpDistanceMult/message</b_path> | ||
431 | <c_attribute></c_attribute> | ||
432 | <d_old></d_old> | ||
433 | <e_new> | ||
434 | Adjusts WindLight's perceived distance. A value of | ||
435 | zero effectively turns off WindLight's influence | ||
436 | on terrain and objects. Values greater than 1 simulate | ||
437 | greater distances for thicker atmospheric effects. | ||
438 | </e_new> | ||
439 | <f_old_trans></f_old_trans> | ||
440 | <f_translation> | ||
441 | 윈드라이트에서 인식되는 거리를 조절할 수 있습니다. 0(제로) 값은 | ||
442 | 지형 및 오브젝트에서 윈드라이트의 효과를 해제하는 데 | ||
443 | 효과적입니다. 1보다 큰 값을 설정하면 보다 두꺼운 공기층에서 | ||
444 | 거리를 더 멀게 느껴지게 하는 효과를 시뮬레이트할 수 있습니다. | ||
445 | </f_translation> | ||
446 | </string><string><a_file>alerts.xml</a_file> | ||
447 | <b_path>//HelpMaxAltitude/message</b_path> | ||
448 | <c_attribute></c_attribute> | ||
449 | <d_old></d_old> | ||
450 | <e_new> | ||
451 | Max Altitude adjusts the altitude calculations WindLight | ||
452 | performs when computing its atmospheric lighting. At | ||
453 | later times of day, it is useful for adjusting how | ||
454 | "deep" the sunset appears. | ||
455 | </e_new> | ||
456 | <f_old_trans></f_old_trans> | ||
457 | <f_translation> | ||
458 | 최대 고도는 대기 중의 빛을 산출할 때 윈드라이트에서 | ||
459 | 수행되는 고도 계산을 조절합니다. 하루 중 | ||
460 | 오후 시간에 일몰이 나타나는 | ||
461 | "깊이"를 조절하는 데 유용합니다. | ||
462 | </f_translation> | ||
463 | </string><string><a_file>alerts.xml</a_file> | ||
464 | <b_path>//HelpSunlightColor/message</b_path> | ||
465 | <c_attribute></c_attribute> | ||
466 | <d_old></d_old> | ||
467 | <e_new> | ||
468 | Adjusts the color and intensity of the direct light in the scene. | ||
469 | </e_new> | ||
470 | <f_old_trans></f_old_trans> | ||
471 | <f_translation> | ||
472 | 장면에서 직사 광선의 색상과 강도를 조절합니다. | ||
473 | </f_translation> | ||
474 | </string><string><a_file>alerts.xml</a_file> | ||
475 | <b_path>//HelpSunAmbient/message</b_path> | ||
476 | <c_attribute></c_attribute> | ||
477 | <d_old></d_old> | ||
478 | <e_new> | ||
479 | Adjusts the color and intensity of ambient atmospheric light in the scene. | ||
480 | </e_new> | ||
481 | <f_old_trans></f_old_trans> | ||
482 | <f_translation> | ||
483 | 장면에서 내부 대기 중 빛의 색상과 강도를 조절합니다. | ||
484 | </f_translation> | ||
485 | </string><string><a_file>alerts.xml</a_file> | ||
486 | <b_path>//HelpSunGlow/message</b_path> | ||
487 | <c_attribute></c_attribute> | ||
488 | <d_old></d_old> | ||
489 | <e_new> | ||
490 | The Size slider controls the size of the sun. | ||
491 | The Focus slider controls how blurred the sun | ||
492 | is over the sky. | ||
493 | </e_new> | ||
494 | <f_old_trans></f_old_trans> | ||
495 | <f_translation> | ||
496 | 크기 슬라이더를 태양의 크기를 조절하는 데 사용되고 | ||
497 | 포커스 슬라이더는 공중에서 태양이 번지는 정도를 | ||
498 | 조절합니다. | ||
499 | </f_translation> | ||
500 | </string><string><a_file>alerts.xml</a_file> | ||
501 | <b_path>//HelpSceneGamma/message</b_path> | ||
502 | <c_attribute></c_attribute> | ||
503 | <d_old></d_old> | ||
504 | <e_new> | ||
505 | Adjust the screen's distribution of light and dark. | ||
506 | </e_new> | ||
507 | <f_old_trans></f_old_trans> | ||
508 | <f_translation> | ||
509 | 화면에서 빛과 어둠의 분포 상태를 조절합니다. | ||
510 | </f_translation> | ||
511 | </string><string><a_file>alerts.xml</a_file> | ||
512 | <b_path>//HelpStarBrightness/message</b_path> | ||
513 | <c_attribute></c_attribute> | ||
514 | <d_old></d_old> | ||
515 | <e_new> | ||
516 | Adjusts the brightness of the stars in the sky. | ||
517 | </e_new> | ||
518 | <f_old_trans></f_old_trans> | ||
519 | <f_translation> | ||
520 | 공중에서 별의 밝기를 조절합니다. | ||
521 | </f_translation> | ||
522 | </string><string><a_file>alerts.xml</a_file> | ||
523 | <b_path>//HelpTimeOfDay/message</b_path> | ||
524 | <c_attribute></c_attribute> | ||
525 | <d_old></d_old> | ||
526 | <e_new> | ||
527 | Controls the location of the sun in the sky. | ||
528 | Similar to elevation. | ||
529 | </e_new> | ||
530 | <f_old_trans></f_old_trans> | ||
531 | <f_translation> | ||
532 | 공중에서 태양의 위치를 조절합니다. | ||
533 | 이 기능은 고도와 유사합니다. | ||
534 | </f_translation> | ||
535 | </string><string><a_file>alerts.xml</a_file> | ||
536 | <b_path>//HelpEastAngle/message</b_path> | ||
537 | <c_attribute></c_attribute> | ||
538 | <d_old></d_old> | ||
539 | <e_new> | ||
540 | Controls the location of the sun in the sky. | ||
541 | Similar to azimuth. | ||
542 | </e_new> | ||
543 | <f_old_trans></f_old_trans> | ||
544 | <f_translation> | ||
545 | 공중에서 태양의 위치를 조절합니다. | ||
546 | 이 기능은 방위와 유사합니다. | ||
547 | </f_translation> | ||
548 | </string><string><a_file>alerts.xml</a_file> | ||
549 | <b_path>//HelpCloudColor/message</b_path> | ||
550 | <c_attribute></c_attribute> | ||
551 | <d_old></d_old> | ||
552 | <e_new> | ||
553 | Edits the color of the clouds. It is generally | ||
554 | recommended to keep it whitish, | ||
555 | but hey, have fun if you want. | ||
556 | </e_new> | ||
557 | <f_old_trans></f_old_trans> | ||
558 | <f_translation> | ||
559 | 구름의 색상을 편집합니다. 일반적으로 | ||
560 | 구름을 흰색으로 설정하는 것이 권장되지만 | ||
561 | 사용자가 원하는 색상으로 자유롭게 설정할 수 있습니다. | ||
562 | </f_translation> | ||
563 | </string><string><a_file>alerts.xml</a_file> | ||
564 | <b_path>//HelpCloudDetail/message</b_path> | ||
565 | <c_attribute></c_attribute> | ||
566 | <d_old></d_old> | ||
567 | <e_new> | ||
568 | Controls the detail image layered on top | ||
569 | of the main cloud image. X and Y control | ||
570 | its position. D (Density) controls how puffy or | ||
571 | fractured the clouds appear. | ||
572 | </e_new> | ||
573 | <f_old_trans></f_old_trans> | ||
574 | <f_translation> | ||
575 | 기본 구름 이미지 상단에 겹쳐진 디테일 이미지를 | ||
576 | 조절합니다. X/Y는 이미지의 | ||
577 | 위치를 조절하는 데 사용됩니다. D(농도)는 구름이 팽창된 정도 또는 | ||
578 | 흩어져 있는 정도를 조절합니다. | ||
579 | </f_translation> | ||
580 | </string><string><a_file>alerts.xml</a_file> | ||
581 | <b_path>//HelpCloudDensity/message</b_path> | ||
582 | <c_attribute></c_attribute> | ||
583 | <d_old></d_old> | ||
584 | <e_new> | ||
585 | Allows you to control the position of the clouds | ||
586 | with the X and Y sliders and how dense they are | ||
587 | with the the D slider. | ||
588 | </e_new> | ||
589 | <f_old_trans></f_old_trans> | ||
590 | <f_translation> | ||
591 | X 및 Y 슬라이더를 사용해서 구름의 위치를 조절하고 | ||
592 | D 슬라이더를 사용해서는 구름의 농도를 | ||
593 | 조절할 수 있습니다. | ||
594 | </f_translation> | ||
595 | </string><string><a_file>alerts.xml</a_file> | ||
596 | <b_path>//HelpCloudCoverage/message</b_path> | ||
597 | <c_attribute></c_attribute> | ||
598 | <d_old></d_old> | ||
599 | <e_new> | ||
600 | Controls how much the clouds cover the sky. | ||
601 | </e_new> | ||
602 | <f_old_trans></f_old_trans> | ||
603 | <f_translation> | ||
604 | 하늘에 구름이 덮인 양을 조절합니다. | ||
605 | </f_translation> | ||
606 | </string><string><a_file>alerts.xml</a_file> | ||
607 | <b_path>//HelpCloudScale/message</b_path> | ||
608 | <c_attribute></c_attribute> | ||
609 | <d_old></d_old> | ||
610 | <e_new> | ||
611 | Controls the scaling of the cloud image on the sky dome. | ||
612 | </e_new> | ||
613 | <f_old_trans></f_old_trans> | ||
614 | <f_translation> | ||
615 | 하늘 돔에서 구름 이미지의 크기를 조절합니다. | ||
616 | </f_translation> | ||
617 | </string><string><a_file>alerts.xml</a_file> | ||
618 | <b_path>//HelpCloudScrollX/message</b_path> | ||
619 | <c_attribute></c_attribute> | ||
620 | <d_old></d_old> | ||
621 | <e_new> | ||
622 | Controls the speed of the clouds as they move in the X direction. | ||
623 | </e_new> | ||
624 | <f_old_trans></f_old_trans> | ||
625 | <f_translation> | ||
626 | 구름이 X 방향으로 이동할 때 속도를 조절합니다. | ||
627 | </f_translation> | ||
628 | </string><string><a_file>alerts.xml</a_file> | ||
629 | <b_path>//HelpCloudScrollY/message</b_path> | ||
630 | <c_attribute></c_attribute> | ||
631 | <d_old></d_old> | ||
632 | <e_new> | ||
633 | Controls the speed of the clouds as they move in the Y direction. | ||
634 | </e_new> | ||
635 | <f_old_trans></f_old_trans> | ||
636 | <f_translation> | ||
637 | 구름이 Y 방향으로 이동할 때 속도를 조절합니다. | ||
638 | </f_translation> | ||
639 | </string><string><a_file>alerts.xml</a_file> | ||
640 | <b_path>//HelpClassicClouds/message</b_path> | ||
641 | <c_attribute></c_attribute> | ||
642 | <d_old></d_old> | ||
643 | <e_new> | ||
644 | Check this box to enable rendering of Second Life's older classic clouds in addition to WindLight's clouds. | ||
645 | </e_new> | ||
646 | <f_old_trans></f_old_trans> | ||
647 | <f_translation> | ||
648 | 윈드라이트 구름 외의 기존의 세컨드라이프 구름을 렌더링하려면 이 옵션을 선택하십시오. | ||
649 | </f_translation> | ||
650 | </string><string><a_file>alerts.xml</a_file> | ||
651 | <b_path>//HelpWaterFogColor/message</b_path> | ||
652 | <c_attribute></c_attribute> | ||
653 | <d_old></d_old> | ||
654 | <e_new> | ||
655 | Chooses the color of the underwater fog. | ||
656 | </e_new> | ||
657 | <f_old_trans></f_old_trans> | ||
658 | <f_translation> | ||
659 | 수중 안개의 색상을 선택하십시오. | ||
660 | </f_translation> | ||
661 | </string><string><a_file>alerts.xml</a_file> | ||
662 | <b_path>//HelpWaterFogDensity/message</b_path> | ||
663 | <c_attribute></c_attribute> | ||
664 | <d_old></d_old> | ||
665 | <e_new> | ||
666 | Controls how dense the water fog is and how far you can see underwater. | ||
667 | </e_new> | ||
668 | <f_old_trans></f_old_trans> | ||
669 | <f_translation> | ||
670 | 수중 안개의 농도와 수중에서 볼 수 있는 거리를 조절합니다. | ||
671 | </f_translation> | ||
672 | </string><string><a_file>alerts.xml</a_file> | ||
673 | <b_path>//HelpUnderWaterFogMod/message</b_path> | ||
674 | <c_attribute></c_attribute> | ||
675 | <d_old></d_old> | ||
676 | <e_new> | ||
677 | Modifies the effect of the Fog Density Exponent to control how far you can see when your avatar is underwater. | ||
678 | </e_new> | ||
679 | <f_old_trans></f_old_trans> | ||
680 | <f_translation> | ||
681 | 아바타가 수중에 있을 때 볼 수 있는 시야 거리를 조절하려면 안개 농도 지수 효과를 수정하십시오. | ||
682 | </f_translation> | ||
683 | </string><string><a_file>alerts.xml</a_file> | ||
684 | <b_path>//HelpWaterGlow/message</b_path> | ||
685 | <c_attribute></c_attribute> | ||
686 | <d_old></d_old> | ||
687 | <e_new> | ||
688 | Controls how much the surface of the water glows. | ||
689 | </e_new> | ||
690 | <f_old_trans></f_old_trans> | ||
691 | <f_translation> | ||
692 | 수면에서 빛이 나는 정도를 조절합니다. | ||
693 | </f_translation> | ||
694 | </string><string><a_file>alerts.xml</a_file> | ||
695 | <b_path>//HelpWaterNormalScale/message</b_path> | ||
696 | <c_attribute></c_attribute> | ||
697 | <d_old></d_old> | ||
698 | <e_new> | ||
699 | Controls the scaling of the three wavelets that make up the water. | ||
700 | </e_new> | ||
701 | <f_old_trans></f_old_trans> | ||
702 | <f_translation> | ||
703 | 수면의 3가지 잔물결 크기를 조절합니다. | ||
704 | </f_translation> | ||
705 | </string><string><a_file>alerts.xml</a_file> | ||
706 | <b_path>//HelpWaterFresnelScale/message</b_path> | ||
707 | <c_attribute></c_attribute> | ||
708 | <d_old></d_old> | ||
709 | <e_new> | ||
710 | Controls how much light is reflected at different angles. | ||
711 | </e_new> | ||
712 | <f_old_trans></f_old_trans> | ||
713 | <f_translation> | ||
714 | 여러 각도에서 반사되는 빛의 양을 조절합니다. | ||
715 | </f_translation> | ||
716 | </string><string><a_file>alerts.xml</a_file> | ||
717 | <b_path>//HelpWaterFresnelOffset/message</b_path> | ||
718 | <c_attribute></c_attribute> | ||
719 | <d_old></d_old> | ||
720 | <e_new> | ||
721 | Controls how much light intensity is reflected. | ||
722 | </e_new> | ||
723 | <f_old_trans></f_old_trans> | ||
724 | <f_translation> | ||
725 | 반사되는 빛의 강도를 조절합니다. | ||
726 | </f_translation> | ||
727 | </string><string><a_file>alerts.xml</a_file> | ||
728 | <b_path>//HelpWaterScaleAbove/message</b_path> | ||
729 | <c_attribute></c_attribute> | ||
730 | <d_old></d_old> | ||
731 | <e_new> | ||
732 | Controls how much light is refracted from looking above the surface of the water. | ||
733 | </e_new> | ||
734 | <f_old_trans></f_old_trans> | ||
735 | <f_translation> | ||
736 | 수면 위에서 바라볼 때 굴절되는 빛의 양을 조절합니다. | ||
737 | </f_translation> | ||
738 | </string><string><a_file>alerts.xml</a_file> | ||
739 | <b_path>//HelpWaterScaleBelow/message</b_path> | ||
740 | <c_attribute></c_attribute> | ||
741 | <d_old></d_old> | ||
742 | <e_new> | ||
743 | Controls how much light is refracted from looking from below the surface of the water. | ||
744 | </e_new> | ||
745 | <f_old_trans></f_old_trans> | ||
746 | <f_translation> | ||
747 | 수면 아래에서 바라볼 때 굴절되는 빛의 양을 조절합니다. | ||
748 | </f_translation> | ||
749 | </string><string><a_file>alerts.xml</a_file> | ||
750 | <b_path>//HelpWaterBlurMultiplier/message</b_path> | ||
751 | <c_attribute></c_attribute> | ||
752 | <d_old></d_old> | ||
753 | <e_new> | ||
754 | Controls how waves and reflections are mixed. | ||
755 | </e_new> | ||
756 | <f_old_trans></f_old_trans> | ||
757 | <f_translation> | ||
758 | 물결과 반사량이 혼합되는 정도를 조절합니다. | ||
759 | </f_translation> | ||
760 | </string><string><a_file>alerts.xml</a_file> | ||
761 | <b_path>//HelpWaterNormalMap/message</b_path> | ||
762 | <c_attribute></c_attribute> | ||
763 | <d_old></d_old> | ||
764 | <e_new> | ||
765 | Controls what normal map is layered across the water | ||
766 | to determine reflections/refractions. | ||
767 | </e_new> | ||
768 | <f_old_trans></f_old_trans> | ||
769 | <f_translation> | ||
770 | 수면에 겹쳐지는 일반 맵을 조절하여 | ||
771 | 반사/굴절률을 결정합니다. | ||
772 | </f_translation> | ||
773 | </string><string><a_file>alerts.xml</a_file> | ||
774 | <b_path>//HelpWaterWave1/message</b_path> | ||
775 | <c_attribute></c_attribute> | ||
776 | <d_old></d_old> | ||
777 | <e_new> | ||
778 | Controls where and how fast the large scaled version of the normal | ||
779 | map moves in the X and Y direction. | ||
780 | </e_new> | ||
781 | <f_old_trans></f_old_trans> | ||
782 | <f_translation> | ||
783 | 일반 맵의 확장된 버전이 X 및 Y 방향으로 이동할 때의 위치와 | ||
784 | 속도를 조절합니다. | ||
785 | </f_translation> | ||
786 | </string><string><a_file>alerts.xml</a_file> | ||
787 | <b_path>//HelpWaterWave2/message</b_path> | ||
788 | <c_attribute></c_attribute> | ||
789 | <d_old></d_old> | ||
790 | <e_new> | ||
791 | Controls where and how fast the the small scaled version of the | ||
792 | normal map moves in the X and Y direction. | ||
793 | </e_new> | ||
794 | <f_old_trans></f_old_trans> | ||
795 | <f_translation> | ||
796 | 일반 맵의 축소된 버전이 X 및 Y 방향으로 이동할 때의 위치와 | ||
797 | 속도를 조절합니다. | ||
798 | </f_translation> | ||
799 | </string><string><a_file>alerts.xml</a_file> | ||
800 | <b_path>//NewSkyPreset/message</b_path> | ||
801 | <c_attribute></c_attribute> | ||
802 | <d_old></d_old> | ||
803 | <e_new> | ||
804 | Give me a name for the new sky. | ||
805 | </e_new> | ||
806 | <f_old_trans></f_old_trans> | ||
807 | <f_translation> | ||
808 | 새 하늘의 이름을 지정하십시오. | ||
809 | </f_translation> | ||
810 | </string><string><a_file>alerts.xml</a_file> | ||
811 | <b_path>//NewSkyPreset/</b_path> | ||
812 | <c_attribute></c_attribute> | ||
813 | <d_old></d_old> | ||
814 | <e_new> | ||
815 | New Preset | ||
816 | </e_new> | ||
817 | <f_old_trans></f_old_trans> | ||
818 | <f_translation> | ||
819 | 새 사전 설정 | ||
820 | </f_translation> | ||
821 | </string><string><a_file>alerts.xml</a_file> | ||
822 | <b_path>//NewSkyPreset/OK</b_path> | ||
823 | <c_attribute></c_attribute> | ||
824 | <d_old></d_old> | ||
825 | <e_new> | ||
826 | OK | ||
827 | </e_new> | ||
828 | <f_old_trans></f_old_trans> | ||
829 | <f_translation> | ||
830 | 확인 | ||
831 | </f_translation> | ||
832 | </string><string><a_file>alerts.xml</a_file> | ||
833 | <b_path>//NewSkyPreset/Cancel</b_path> | ||
834 | <c_attribute></c_attribute> | ||
835 | <d_old></d_old> | ||
836 | <e_new> | ||
837 | Cancel | ||
838 | </e_new> | ||
839 | <f_old_trans></f_old_trans> | ||
840 | <f_translation> | ||
841 | 취소 | ||
842 | </f_translation> | ||
843 | </string><string><a_file>alerts.xml</a_file> | ||
844 | <b_path>//ExistsSkyPresetAlert/message</b_path> | ||
845 | <c_attribute></c_attribute> | ||
846 | <d_old></d_old> | ||
847 | <e_new> | ||
848 | Preset already exists! | ||
849 | </e_new> | ||
850 | <f_old_trans></f_old_trans> | ||
851 | <f_translation> | ||
852 | 사전 설정이 이미 존재합니다! | ||
853 | </f_translation> | ||
854 | </string><string><a_file>alerts.xml</a_file> | ||
855 | <b_path>//NewWaterPreset/message</b_path> | ||
856 | <c_attribute></c_attribute> | ||
857 | <d_old></d_old> | ||
858 | <e_new> | ||
859 | Give me a name for the new water preset. | ||
860 | </e_new> | ||
861 | <f_old_trans></f_old_trans> | ||
862 | <f_translation> | ||
863 | 새 수면 사전 설정의 이름을 지정하십시오. | ||
864 | </f_translation> | ||
865 | </string><string><a_file>alerts.xml</a_file> | ||
866 | <b_path>//NewWaterPreset/</b_path> | ||
867 | <c_attribute></c_attribute> | ||
868 | <d_old></d_old> | ||
869 | <e_new> | ||
870 | New Preset | ||
871 | </e_new> | ||
872 | <f_old_trans></f_old_trans> | ||
873 | <f_translation> | ||
874 | 새 사전 설정 | ||
875 | </f_translation> | ||
876 | </string><string><a_file>alerts.xml</a_file> | ||
877 | <b_path>//NewWaterPreset/OK</b_path> | ||
878 | <c_attribute></c_attribute> | ||
879 | <d_old></d_old> | ||
880 | <e_new> | ||
881 | OK | ||
882 | </e_new> | ||
883 | <f_old_trans></f_old_trans> | ||
884 | <f_translation> | ||
885 | 확인 | ||
886 | </f_translation> | ||
887 | </string><string><a_file>alerts.xml</a_file> | ||
888 | <b_path>//NewWaterPreset/Cancel</b_path> | ||
889 | <c_attribute></c_attribute> | ||
890 | <d_old></d_old> | ||
891 | <e_new> | ||
892 | Cancel | ||
893 | </e_new> | ||
894 | <f_old_trans></f_old_trans> | ||
895 | <f_translation> | ||
896 | 취소 | ||
897 | </f_translation> | ||
898 | </string><string><a_file>alerts.xml</a_file> | ||
899 | <b_path>//ExistsWaterPresetAlert/message</b_path> | ||
900 | <c_attribute></c_attribute> | ||
901 | <d_old></d_old> | ||
902 | <e_new> | ||
903 | Preset already exists! | ||
904 | </e_new> | ||
905 | <f_old_trans></f_old_trans> | ||
906 | <f_translation> | ||
907 | 사전 설정이 이미 존재합니다! | ||
908 | </f_translation> | ||
909 | </string><string><a_file>alerts.xml</a_file> | ||
910 | <b_path>//WaterNoEditDefault/message</b_path> | ||
911 | <c_attribute></c_attribute> | ||
912 | <d_old></d_old> | ||
913 | <e_new> | ||
914 | You cannot edit or delete a default preset. | ||
915 | </e_new> | ||
916 | <f_old_trans></f_old_trans> | ||
917 | <f_translation> | ||
918 | 기본 사전 설정은 편집하거나 삭제할 수 없습니다. | ||
919 | </f_translation> | ||
920 | </string><string><a_file>alerts.xml</a_file> | ||
921 | <b_path>//DebitPermissionDetails/message</b_path> | ||
922 | <c_attribute></c_attribute> | ||
923 | <d_old></d_old> | ||
924 | <e_new> | ||
925 | Granting this request gives a script ongoing permission to take Linden dollars (L$) from your account. To revoke this permission, the object owner must delete the object or reset the scripts in the object. | ||
926 | </e_new> | ||
927 | <f_old_trans></f_old_trans> | ||
928 | <f_translation> | ||
929 | 이 요청을 수락하면 귀하의 계정에서 린든 달러(L$)를 가져갈 수 있는 지속적인 스크립트 권한을 부여하는 것입니다. 이 권한을 취소하려면 오브젝트 소유자가 해당 오브젝트를 삭제하거나 오브젝트의 스크립트를 초기화해야 합니다. | ||
930 | </f_translation> | ||
931 | </string><string><a_file>floater_about_land.xml</a_file> | ||
932 | <b_path>/floaterland/landtab/land_media_panel/with media:</b_path> | ||
933 | <c_attribute></c_attribute> | ||
934 | <d_old></d_old> | ||
935 | <e_new> | ||
936 | Media Type: | ||
937 | </e_new> | ||
938 | <f_old_trans></f_old_trans> | ||
939 | <f_translation> | ||
940 | 미디어 유형: | ||
941 | </f_translation> | ||
942 | </string><string><a_file>floater_about_land.xml</a_file> | ||
943 | <b_path>/floaterland/landtab/land_media_panel/media type</b_path> | ||
944 | <c_attribute>tool_tip</c_attribute> | ||
945 | <d_old></d_old> | ||
946 | <e_new>Specify if the URL is a movie, web page, or other media</e_new> | ||
947 | <f_old_trans></f_old_trans> | ||
948 | <f_translation>URL이 동영상, 웹페이지 또는 다른 미디어 유형인지 여부를 지정하십시오.</f_translation> | ||
949 | </string><string><a_file>floater_about_land.xml</a_file> | ||
950 | <b_path>/floaterland/landtab/land_media_panel/at URL:</b_path> | ||
951 | <c_attribute></c_attribute> | ||
952 | <d_old></d_old> | ||
953 | <e_new> | ||
954 | Media URL: | ||
955 | </e_new> | ||
956 | <f_old_trans></f_old_trans> | ||
957 | <f_translation> | ||
958 | 미디어 URL: | ||
959 | </f_translation> | ||
960 | </string><string><a_file>floater_about_land.xml</a_file> | ||
961 | <b_path>/floaterland/landtab/land_media_panel/set_media_url</b_path> | ||
6 | <c_attribute>label</c_attribute> | 962 | <c_attribute>label</c_attribute> |
7 | <d_old></d_old> | 963 | <d_old></d_old> |
8 | <e_new>Type</e_new> | 964 | <e_new>Set...</e_new> |
965 | <f_old_trans></f_old_trans> | ||
966 | <f_translation>설정...</f_translation> | ||
967 | </string><string><a_file>floater_about_land.xml</a_file> | ||
968 | <b_path>/floaterland/landtab/land_media_panel/set_media_url</b_path> | ||
969 | <c_attribute>label_selected</c_attribute> | ||
970 | <d_old></d_old> | ||
971 | <e_new>Set...</e_new> | ||
9 | <f_old_trans></f_old_trans> | 972 | <f_old_trans></f_old_trans> |
10 | <f_translation></f_translation> | 973 | <f_translation>...</f_translation> |
11 | </string><string><a_file>floater_about_land.xml</a_file> | 974 | </string><string><a_file>floater_about_land.xml</a_file> |
12 | <b_path>/floaterland/landtab/land_objects_panel/owner list/</b_path> | 975 | <b_path>/floaterland/landtab/land_media_panel/Description:</b_path> |
976 | <c_attribute></c_attribute> | ||
977 | <d_old></d_old> | ||
978 | <e_new> | ||
979 | Description: | ||
980 | </e_new> | ||
981 | <f_old_trans></f_old_trans> | ||
982 | <f_translation> | ||
983 | 설명: | ||
984 | </f_translation> | ||
985 | </string><string><a_file>floater_about_land.xml</a_file> | ||
986 | <b_path>/floaterland/landtab/land_media_panel/url_description</b_path> | ||
987 | <c_attribute>tool_tip</c_attribute> | ||
988 | <d_old></d_old> | ||
989 | <e_new>Text displayed next to play/load button</e_new> | ||
990 | <f_old_trans></f_old_trans> | ||
991 | <f_translation>재생/로드 버튼 옆에 표시된 텍스트</f_translation> | ||
992 | </string><string><a_file>floater_about_land.xml</a_file> | ||
993 | <b_path>/floaterland/landtab/land_media_panel/replace_texture_help</b_path> | ||
994 | <c_attribute></c_attribute> | ||
995 | <d_old></d_old> | ||
996 | <e_new> | ||
997 | (Objects using this texture will show the movie or | ||
998 | web page after you click the play arrow.) | ||
999 | </e_new> | ||
1000 | <f_old_trans></f_old_trans> | ||
1001 | <f_translation> | ||
1002 | (재생 화살표를 클릭하면 이 텍스처를 사용하는 오브젝트에서 | ||
1003 | 동영상 또는 웹페이지가 표시됩니다.) | ||
1004 | </f_translation> | ||
1005 | </string><string><a_file>floater_about_land.xml</a_file> | ||
1006 | <b_path>/floaterland/landtab/land_media_panel/Options:</b_path> | ||
1007 | <c_attribute></c_attribute> | ||
1008 | <d_old></d_old> | ||
1009 | <e_new> | ||
1010 | Media | ||
1011 | Options: | ||
1012 | </e_new> | ||
1013 | <f_old_trans></f_old_trans> | ||
1014 | <f_translation> | ||
1015 | 미디어 | ||
1016 | 옵션: | ||
1017 | </f_translation> | ||
1018 | </string><string><a_file>floater_about_land.xml</a_file> | ||
1019 | <b_path>/floaterland/landtab/land_media_panel/media_loop</b_path> | ||
1020 | <c_attribute>label</c_attribute> | ||
1021 | <d_old></d_old> | ||
1022 | <e_new>Loop Media</e_new> | ||
1023 | <f_old_trans></f_old_trans> | ||
1024 | <f_translation>미디어 반복</f_translation> | ||
1025 | </string><string><a_file>floater_about_land.xml</a_file> | ||
1026 | <b_path>/floaterland/landtab/land_media_panel/media_loop</b_path> | ||
1027 | <c_attribute>tool_tip</c_attribute> | ||
1028 | <d_old></d_old> | ||
1029 | <e_new>Play media in a loop. When the media has finished playing, it will restart from the beginning.</e_new> | ||
1030 | <f_old_trans></f_old_trans> | ||
1031 | <f_translation>미디어를 반복해서 재생합니다. 미디어 재생이 완료되면 처음부터 다시 재생을 시작합니다.</f_translation> | ||
1032 | </string><string><a_file>floater_about_land.xml</a_file> | ||
1033 | <b_path>/floaterland/landtab/land_media_panel/hide_media_url</b_path> | ||
13 | <c_attribute>label</c_attribute> | 1034 | <c_attribute>label</c_attribute> |
14 | <d_old></d_old> | 1035 | <d_old></d_old> |
15 | <e_new>Name</e_new> | 1036 | <e_new>Hide Media URL</e_new> |
16 | <f_old_trans></f_old_trans> | 1037 | <f_old_trans></f_old_trans> |
17 | <f_translation>름</f_translation> | 1038 | <f_translation>미디 URL 숨기기</f_translation> |
18 | </string><string><a_file>floater_about_land.xml</a_file> | 1039 | </string><string><a_file>floater_about_land.xml</a_file> |
19 | <b_path>/floaterland/landtab/land_objects_panel/owner list/</b_path> | 1040 | <b_path>/floaterland/landtab/land_media_panel/hide_media_url</b_path> |
1041 | <c_attribute>tool_tip</c_attribute> | ||
1042 | <d_old></d_old> | ||
1043 | <e_new>Checking this option will hide the media url to any non-authorized viewers of this parcel information. Note this is not available for HTML types.</e_new> | ||
1044 | <f_old_trans></f_old_trans> | ||
1045 | <f_translation>이 옵션을 선택하면 이 구획 정보에 대해 승인되지 않은 사용자에게 미디어 URL이 숨겨집니다. 이 옵션은 HTML 형식에 대해 사용할 수 없습니다.</f_translation> | ||
1046 | </string><string><a_file>floater_about_land.xml</a_file> | ||
1047 | <b_path>/floaterland/landtab/land_media_panel/hide_music_url</b_path> | ||
20 | <c_attribute>label</c_attribute> | 1048 | <c_attribute>label</c_attribute> |
21 | <d_old></d_old> | 1049 | <d_old></d_old> |
22 | <e_new>Count</e_new> | 1050 | <e_new>Hide Music URL</e_new> |
1051 | <f_old_trans></f_old_trans> | ||
1052 | <f_translation>음악 URL 숨기기</f_translation> | ||
1053 | </string><string><a_file>floater_about_land.xml</a_file> | ||
1054 | <b_path>/floaterland/landtab/land_media_panel/hide_music_url</b_path> | ||
1055 | <c_attribute>tool_tip</c_attribute> | ||
1056 | <d_old></d_old> | ||
1057 | <e_new>Checking this option will hide the music url to any non-authorized viewers of this parcel information</e_new> | ||
1058 | <f_old_trans></f_old_trans> | ||
1059 | <f_translation>이 옵션을 선택하면 이 구획 정보에 대해 승인되지 않은 사용자에게 음악 URL이 숨겨집니다.</f_translation> | ||
1060 | </string><string><a_file>floater_about_land.xml</a_file> | ||
1061 | <b_path>/floaterland/landtab/land_media_panel/media_size</b_path> | ||
1062 | <c_attribute>tool_tip</c_attribute> | ||
1063 | <d_old></d_old> | ||
1064 | <e_new>Size to render Web media, leave 0 for default.</e_new> | ||
23 | <f_old_trans></f_old_trans> | 1065 | <f_old_trans></f_old_trans> |
24 | <f_translation>개수</f_translation> | 1066 | <f_translation>웹 미디어를 렌더링할 크기이며 기본값은 레벨 0입니다.</f_translation> |
1067 | </string><string><a_file>floater_about_land.xml</a_file> | ||
1068 | <b_path>/floaterland/landtab/land_media_panel/media_size</b_path> | ||
1069 | <c_attribute></c_attribute> | ||
1070 | <d_old></d_old> | ||
1071 | <e_new> | ||
1072 | Media size: | ||
1073 | </e_new> | ||
1074 | <f_old_trans></f_old_trans> | ||
1075 | <f_translation> | ||
1076 | 미디어 크기: | ||
1077 | </f_translation> | ||
1078 | </string><string><a_file>floater_about_land.xml</a_file> | ||
1079 | <b_path>/floaterland/landtab/land_media_panel/media_size_width</b_path> | ||
1080 | <c_attribute>tool_tip</c_attribute> | ||
1081 | <d_old></d_old> | ||
1082 | <e_new>Size to render Web media, leave 0 for default.</e_new> | ||
1083 | <f_old_trans></f_old_trans> | ||
1084 | <f_translation>웹 미디어를 렌더링할 크기이며 기본값은 레벨 0입니다.</f_translation> | ||
1085 | </string><string><a_file>floater_about_land.xml</a_file> | ||
1086 | <b_path>/floaterland/landtab/land_media_panel/media_size_height</b_path> | ||
1087 | <c_attribute>tool_tip</c_attribute> | ||
1088 | <d_old></d_old> | ||
1089 | <e_new>Size to render Web media, leave 0 for default.</e_new> | ||
1090 | <f_old_trans></f_old_trans> | ||
1091 | <f_translation>웹 미디어를 렌더링할 크기이며 기본값은 레벨 0입니다.</f_translation> | ||
1092 | </string><string><a_file>floater_about_land.xml</a_file> | ||
1093 | <b_path>/floaterland/landtab/land_media_panel/pixels</b_path> | ||
1094 | <c_attribute></c_attribute> | ||
1095 | <d_old></d_old> | ||
1096 | <e_new> | ||
1097 | pixels | ||
1098 | </e_new> | ||
1099 | <f_old_trans></f_old_trans> | ||
1100 | <f_translation> | ||
1101 | 픽셀 | ||
1102 | </f_translation> | ||
1103 | </string><string><a_file>floater_about_land.xml</a_file> | ||
1104 | <b_path>/floaterland/landtab/land_media_panel/MusicURL:</b_path> | ||
1105 | <c_attribute></c_attribute> | ||
1106 | <d_old></d_old> | ||
1107 | <e_new> | ||
1108 | Music URL: | ||
1109 | </e_new> | ||
1110 | <f_old_trans></f_old_trans> | ||
1111 | <f_translation> | ||
1112 | 음악 URL: | ||
1113 | </f_translation> | ||
1114 | </string><string><a_file>floater_about_land.xml</a_file> | ||
1115 | <b_path>/floaterland/landtab/land_media_panel/Sound:</b_path> | ||
1116 | <c_attribute></c_attribute> | ||
1117 | <d_old></d_old> | ||
1118 | <e_new> | ||
1119 | Sound: | ||
1120 | </e_new> | ||
1121 | <f_old_trans></f_old_trans> | ||
1122 | <f_translation> | ||
1123 | 소리: | ||
1124 | </f_translation> | ||
1125 | </string><string><a_file>floater_about_land.xml</a_file> | ||
1126 | <b_path>/floaterland/landtab/land_access_panel/AllowedText</b_path> | ||
1127 | <c_attribute>label</c_attribute> | ||
1128 | <d_old></d_old> | ||
1129 | <e_new>Always Allow</e_new> | ||
1130 | <f_old_trans></f_old_trans> | ||
1131 | <f_translation>항상 허용</f_translation> | ||
1132 | </string><string><a_file>floater_about_land.xml</a_file> | ||
1133 | <b_path>/floaterland/landtab/land_access_panel/AllowedText</b_path> | ||
1134 | <c_attribute></c_attribute> | ||
1135 | <d_old></d_old> | ||
1136 | <e_new> | ||
1137 | Allowed Residents | ||
1138 | </e_new> | ||
1139 | <f_old_trans></f_old_trans> | ||
1140 | <f_translation> | ||
1141 | 허용된 주민 | ||
1142 | </f_translation> | ||
1143 | </string><string><a_file>floater_about_land.xml</a_file> | ||
1144 | <b_path>/floaterland/landtab/land_access_panel/BannedText</b_path> | ||
1145 | <c_attribute>label</c_attribute> | ||
1146 | <d_old></d_old> | ||
1147 | <e_new>Ban</e_new> | ||
1148 | <f_old_trans></f_old_trans> | ||
1149 | <f_translation>차단</f_translation> | ||
1150 | </string><string><a_file>floater_about_land.xml</a_file> | ||
1151 | <b_path>/floaterland/landtab/land_access_panel/BannedText</b_path> | ||
1152 | <c_attribute></c_attribute> | ||
1153 | <d_old></d_old> | ||
1154 | <e_new> | ||
1155 | Banned Residents | ||
1156 | </e_new> | ||
1157 | <f_old_trans></f_old_trans> | ||
1158 | <f_translation> | ||
1159 | 출입금지된 주민 | ||
1160 | </f_translation> | ||
25 | </string><string><a_file>floater_active_speakers.xml</a_file> | 1161 | </string><string><a_file>floater_active_speakers.xml</a_file> |
26 | <b_path>/active_speakers/active_speakers_panel/speakers_list/speaking_status</b_path> | 1162 | <b_path>/active_speakers/active_speakers_panel/speakers_list/speaking_status</b_path> |
27 | <c_attribute>label</c_attribute> | 1163 | <c_attribute>label</c_attribute> |
@@ -29,6 +1165,17 @@ | |||
29 | <e_new></e_new> | 1165 | <e_new></e_new> |
30 | <f_old_trans></f_old_trans> | 1166 | <f_old_trans></f_old_trans> |
31 | <f_translation></f_translation> | 1167 | <f_translation></f_translation> |
1168 | </string><string><a_file>floater_buy_object.xml</a_file> | ||
1169 | <b_path>/contents/title_buy_copy_text</b_path> | ||
1170 | <c_attribute></c_attribute> | ||
1171 | <d_old></d_old> | ||
1172 | <e_new> | ||
1173 | Buy a copy of | ||
1174 | </e_new> | ||
1175 | <f_old_trans></f_old_trans> | ||
1176 | <f_translation> | ||
1177 | 복사본 구매 | ||
1178 | </f_translation> | ||
32 | </string><string><a_file>floater_chatterbox.xml</a_file> | 1179 | </string><string><a_file>floater_chatterbox.xml</a_file> |
33 | <b_path>/floater_chatterbox</b_path> | 1180 | <b_path>/floater_chatterbox</b_path> |
34 | <c_attribute>title</c_attribute> | 1181 | <c_attribute>title</c_attribute> |
@@ -36,139 +1183,459 @@ | |||
36 | <e_new>Communicate</e_new> | 1183 | <e_new>Communicate</e_new> |
37 | <f_old_trans></f_old_trans> | 1184 | <f_old_trans></f_old_trans> |
38 | <f_translation>커뮤니케이트</f_translation> | 1185 | <f_translation>커뮤니케이트</f_translation> |
39 | </string><string><a_file>floater_device_settings.xml</a_file> | 1186 | </string><string><a_file>floater_day_cycle_options.xml</a_file> |
40 | <b_path>/floater_device_settings</b_path> | 1187 | <b_path>/Day Cycle Floater</b_path> |
41 | <c_attribute>title</c_attribute> | 1188 | <c_attribute>title</c_attribute> |
42 | <d_old></d_old> | 1189 | <d_old></d_old> |
43 | <e_new>Voice Chat Device Settings</e_new> | 1190 | <e_new>Day Cycle Editor</e_new> |
44 | <f_old_trans></f_old_trans> | 1191 | <f_old_trans></f_old_trans> |
45 | <f_translation>음성 채팅 장치 설정</f_translation> | 1192 | <f_translation>날짜 주기 편집기</f_translation> |
46 | </string><string><a_file>floater_directory.xml</a_file> | 1193 | </string><string><a_file>floater_day_cycle_options.xml</a_file> |
47 | <b_path>/directory/Directory Tabs/find_all_panel/searching_text</b_path> | 1194 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle</b_path> |
1195 | <c_attribute>label</c_attribute> | ||
1196 | <d_old></d_old> | ||
1197 | <e_new>Day Cycle</e_new> | ||
1198 | <f_old_trans></f_old_trans> | ||
1199 | <f_translation>날짜 주기</f_translation> | ||
1200 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1201 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WLDayCycleHelp</b_path> | ||
1202 | <c_attribute>label</c_attribute> | ||
1203 | <d_old></d_old> | ||
1204 | <e_new>?</e_new> | ||
1205 | <f_old_trans></f_old_trans> | ||
1206 | <f_translation>?</f_translation> | ||
1207 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1208 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WLTimeSlider</b_path> | ||
1209 | <c_attribute>label</c_attribute> | ||
1210 | <d_old></d_old> | ||
1211 | <e_new></e_new> | ||
1212 | <f_old_trans></f_old_trans> | ||
1213 | <f_translation></f_translation> | ||
1214 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1215 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WLDayCycleKeys</b_path> | ||
1216 | <c_attribute>label</c_attribute> | ||
1217 | <d_old></d_old> | ||
1218 | <e_new></e_new> | ||
1219 | <f_old_trans></f_old_trans> | ||
1220 | <f_translation></f_translation> | ||
1221 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1222 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WL12am</b_path> | ||
48 | <c_attribute></c_attribute> | 1223 | <c_attribute></c_attribute> |
49 | <d_old></d_old> | 1224 | <d_old></d_old> |
50 | <e_new>Searching...</e_new> | 1225 | <e_new> |
1226 | 12am | ||
1227 | </e_new> | ||
51 | <f_old_trans></f_old_trans> | 1228 | <f_old_trans></f_old_trans> |
52 | <f_translation>검색...</f_translation> | 1229 | <f_translation> |
53 | </string><string><a_file>floater_directory.xml</a_file> | 1230 | 12am |
54 | <b_path>/directory/Directory Tabs/find_all_panel/not_found_text</b_path> | 1231 | </f_translation> |
1232 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1233 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WL3am</b_path> | ||
55 | <c_attribute></c_attribute> | 1234 | <c_attribute></c_attribute> |
56 | <d_old></d_old> | 1235 | <d_old></d_old> |
57 | <e_new>None Found.</e_new> | 1236 | <e_new> |
1237 | 3am | ||
1238 | </e_new> | ||
58 | <f_old_trans></f_old_trans> | 1239 | <f_old_trans></f_old_trans> |
59 | <f_translation>발견되지 않음.</f_translation> | 1240 | <f_translation> |
60 | </string><string><a_file>floater_directory.xml</a_file> | 1241 | 3am |
61 | <b_path>/directory/Directory Tabs/classified_panel/searching_text</b_path> | 1242 | </f_translation> |
1243 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1244 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WL6am</b_path> | ||
62 | <c_attribute></c_attribute> | 1245 | <c_attribute></c_attribute> |
63 | <d_old></d_old> | 1246 | <d_old></d_old> |
64 | <e_new>Searching...</e_new> | 1247 | <e_new> |
1248 | 6am | ||
1249 | </e_new> | ||
65 | <f_old_trans></f_old_trans> | 1250 | <f_old_trans></f_old_trans> |
66 | <f_translation>검색...</f_translation> | 1251 | <f_translation> |
67 | </string><string><a_file>floater_directory.xml</a_file> | 1252 | 6am |
68 | <b_path>/directory/Directory Tabs/classified_panel/not_found_text</b_path> | 1253 | </f_translation> |
1254 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1255 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WL9amHash</b_path> | ||
69 | <c_attribute></c_attribute> | 1256 | <c_attribute></c_attribute> |
70 | <d_old></d_old> | 1257 | <d_old></d_old> |
71 | <e_new>None Found.</e_new> | 1258 | <e_new> |
1259 | 9am | ||
1260 | </e_new> | ||
72 | <f_old_trans></f_old_trans> | 1261 | <f_old_trans></f_old_trans> |
73 | <f_translation>발견되지 않음.</f_translation> | 1262 | <f_translation> |
74 | </string><string><a_file>floater_directory.xml</a_file> | 1263 | 9am |
75 | <b_path>/directory/Directory Tabs/events_panel/searching_text</b_path> | 1264 | </f_translation> |
1265 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1266 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WL12pmHash</b_path> | ||
76 | <c_attribute></c_attribute> | 1267 | <c_attribute></c_attribute> |
77 | <d_old></d_old> | 1268 | <d_old></d_old> |
78 | <e_new>Searching...</e_new> | 1269 | <e_new> |
1270 | 12pm | ||
1271 | </e_new> | ||
79 | <f_old_trans></f_old_trans> | 1272 | <f_old_trans></f_old_trans> |
80 | <f_translation>검색...</f_translation> | 1273 | <f_translation> |
81 | </string><string><a_file>floater_directory.xml</a_file> | 1274 | 12pm |
82 | <b_path>/directory/Directory Tabs/events_panel/not_found_text</b_path> | 1275 | </f_translation> |
1276 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1277 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WL3pm</b_path> | ||
83 | <c_attribute></c_attribute> | 1278 | <c_attribute></c_attribute> |
84 | <d_old></d_old> | 1279 | <d_old></d_old> |
85 | <e_new>None Found.</e_new> | 1280 | <e_new> |
1281 | 3pm | ||
1282 | </e_new> | ||
86 | <f_old_trans></f_old_trans> | 1283 | <f_old_trans></f_old_trans> |
87 | <f_translation>발견되지 않음.</f_translation> | 1284 | <f_translation> |
88 | </string><string><a_file>floater_directory.xml</a_file> | 1285 | 3pm |
89 | <b_path>/directory/Directory Tabs/popular_panel/searching_text</b_path> | 1286 | </f_translation> |
1287 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1288 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WL6pm</b_path> | ||
90 | <c_attribute></c_attribute> | 1289 | <c_attribute></c_attribute> |
91 | <d_old></d_old> | 1290 | <d_old></d_old> |
92 | <e_new>Searching...</e_new> | 1291 | <e_new> |
1292 | 6pm | ||
1293 | </e_new> | ||
93 | <f_old_trans></f_old_trans> | 1294 | <f_old_trans></f_old_trans> |
94 | <f_translation>검색...</f_translation> | 1295 | <f_translation> |
95 | </string><string><a_file>floater_directory.xml</a_file> | 1296 | 6pm |
96 | <b_path>/directory/Directory Tabs/popular_panel/not_found_text</b_path> | 1297 | </f_translation> |
1298 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1299 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WL9pm</b_path> | ||
97 | <c_attribute></c_attribute> | 1300 | <c_attribute></c_attribute> |
98 | <d_old></d_old> | 1301 | <d_old></d_old> |
99 | <e_new>None Found.</e_new> | 1302 | <e_new> |
1303 | 9pm | ||
1304 | </e_new> | ||
100 | <f_old_trans></f_old_trans> | 1305 | <f_old_trans></f_old_trans> |
101 | <f_translation>발견되지 않음.</f_translation> | 1306 | <f_translation> |
102 | </string><string><a_file>floater_directory.xml</a_file> | 1307 | 9pm |
103 | <b_path>/directory/Directory Tabs/land_sales_panel/searching_text</b_path> | 1308 | </f_translation> |
1309 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1310 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WL12am2</b_path> | ||
104 | <c_attribute></c_attribute> | 1311 | <c_attribute></c_attribute> |
105 | <d_old></d_old> | 1312 | <d_old></d_old> |
106 | <e_new>Searching...</e_new> | 1313 | <e_new> |
1314 | 12am | ||
1315 | </e_new> | ||
107 | <f_old_trans></f_old_trans> | 1316 | <f_old_trans></f_old_trans> |
108 | <f_translation>검색...</f_translation> | 1317 | <f_translation> |
109 | </string><string><a_file>floater_directory.xml</a_file> | 1318 | 12am |
110 | <b_path>/directory/Directory Tabs/land_sales_panel/not_found_text</b_path> | 1319 | </f_translation> |
1320 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1321 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WL12amHash</b_path> | ||
111 | <c_attribute></c_attribute> | 1322 | <c_attribute></c_attribute> |
112 | <d_old></d_old> | 1323 | <d_old></d_old> |
113 | <e_new>None Found.</e_new> | 1324 | <e_new> |
1325 | | | ||
1326 | </e_new> | ||
114 | <f_old_trans></f_old_trans> | 1327 | <f_old_trans></f_old_trans> |
115 | <f_translation>발견되지 않음.</f_translation> | 1328 | <f_translation> |
116 | </string><string><a_file>floater_directory.xml</a_file> | 1329 | | |
117 | <b_path>/directory/Directory Tabs/places_panel/searching_text</b_path> | 1330 | </f_translation> |
1331 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1332 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WL3amHash</b_path> | ||
118 | <c_attribute></c_attribute> | 1333 | <c_attribute></c_attribute> |
119 | <d_old></d_old> | 1334 | <d_old></d_old> |
120 | <e_new>Searching...</e_new> | 1335 | <e_new> |
1336 | I | ||
1337 | </e_new> | ||
121 | <f_old_trans></f_old_trans> | 1338 | <f_old_trans></f_old_trans> |
122 | <f_translation>검색...</f_translation> | 1339 | <f_translation> |
123 | </string><string><a_file>floater_directory.xml</a_file> | 1340 | I |
124 | <b_path>/directory/Directory Tabs/places_panel/not_found_text</b_path> | 1341 | </f_translation> |
1342 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1343 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WL6amHash</b_path> | ||
1344 | <c_attribute></c_attribute> | ||
1345 | <d_old></d_old> | ||
1346 | <e_new> | ||
1347 | | | ||
1348 | </e_new> | ||
1349 | <f_old_trans></f_old_trans> | ||
1350 | <f_translation> | ||
1351 | | | ||
1352 | </f_translation> | ||
1353 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1354 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WL9amHash2</b_path> | ||
125 | <c_attribute></c_attribute> | 1355 | <c_attribute></c_attribute> |
126 | <d_old></d_old> | 1356 | <d_old></d_old> |
127 | <e_new>None Found.</e_new> | 1357 | <e_new> |
1358 | I | ||
1359 | </e_new> | ||
128 | <f_old_trans></f_old_trans> | 1360 | <f_old_trans></f_old_trans> |
129 | <f_translation>발견되지 않음.</f_translation> | 1361 | <f_translation> |
130 | </string><string><a_file>floater_directory.xml</a_file> | 1362 | I |
131 | <b_path>/directory/Directory Tabs/people_panel/searching_text</b_path> | 1363 | </f_translation> |
1364 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1365 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WL12pmHash2</b_path> | ||
132 | <c_attribute></c_attribute> | 1366 | <c_attribute></c_attribute> |
133 | <d_old></d_old> | 1367 | <d_old></d_old> |
134 | <e_new>Searching...</e_new> | 1368 | <e_new> |
1369 | | | ||
1370 | </e_new> | ||
135 | <f_old_trans></f_old_trans> | 1371 | <f_old_trans></f_old_trans> |
136 | <f_translation>검색...</f_translation> | 1372 | <f_translation> |
137 | </string><string><a_file>floater_directory.xml</a_file> | 1373 | | |
138 | <b_path>/directory/Directory Tabs/people_panel/not_found_text</b_path> | 1374 | </f_translation> |
1375 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1376 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WL3pmHash</b_path> | ||
139 | <c_attribute></c_attribute> | 1377 | <c_attribute></c_attribute> |
140 | <d_old></d_old> | 1378 | <d_old></d_old> |
141 | <e_new>None Found.</e_new> | 1379 | <e_new> |
1380 | I | ||
1381 | </e_new> | ||
142 | <f_old_trans></f_old_trans> | 1382 | <f_old_trans></f_old_trans> |
143 | <f_translation>발견되지 않음.</f_translation> | 1383 | <f_translation> |
144 | </string><string><a_file>floater_directory.xml</a_file> | 1384 | I |
145 | <b_path>/directory/Directory Tabs/groups_panel/searching_text</b_path> | 1385 | </f_translation> |
1386 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1387 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WL6pmHash</b_path> | ||
146 | <c_attribute></c_attribute> | 1388 | <c_attribute></c_attribute> |
147 | <d_old></d_old> | 1389 | <d_old></d_old> |
148 | <e_new>Searching...</e_new> | 1390 | <e_new> |
1391 | | | ||
1392 | </e_new> | ||
149 | <f_old_trans></f_old_trans> | 1393 | <f_old_trans></f_old_trans> |
150 | <f_translation>검색...</f_translation> | 1394 | <f_translation> |
151 | </string><string><a_file>floater_directory.xml</a_file> | 1395 | | |
152 | <b_path>/directory/Directory Tabs/groups_panel/not_found_text</b_path> | 1396 | </f_translation> |
1397 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1398 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WL9pmHash</b_path> | ||
153 | <c_attribute></c_attribute> | 1399 | <c_attribute></c_attribute> |
154 | <d_old></d_old> | 1400 | <d_old></d_old> |
155 | <e_new>None Found.</e_new> | 1401 | <e_new> |
1402 | I | ||
1403 | </e_new> | ||
156 | <f_old_trans></f_old_trans> | 1404 | <f_old_trans></f_old_trans> |
157 | <f_translation>발견되지 않음.</f_translation> | 1405 | <f_translation> |
158 | </string><string><a_file>floater_directory.xml</a_file> | 1406 | I |
159 | <b_path>/directory/Directory Tabs/find_all_old_panel/searching_text</b_path> | 1407 | </f_translation> |
1408 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1409 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WL12amHash2</b_path> | ||
160 | <c_attribute></c_attribute> | 1410 | <c_attribute></c_attribute> |
161 | <d_old></d_old> | 1411 | <d_old></d_old> |
162 | <e_new>Searching...</e_new> | 1412 | <e_new> |
1413 | | | ||
1414 | </e_new> | ||
163 | <f_old_trans></f_old_trans> | 1415 | <f_old_trans></f_old_trans> |
164 | <f_translation>검색...</f_translation> | 1416 | <f_translation> |
165 | </string><string><a_file>floater_directory.xml</a_file> | 1417 | | |
166 | <b_path>/directory/Directory Tabs/find_all_old_panel/not_found_text</b_path> | 1418 | </f_translation> |
1419 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1420 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WLAddKey</b_path> | ||
1421 | <c_attribute>label</c_attribute> | ||
1422 | <d_old></d_old> | ||
1423 | <e_new>Add Key</e_new> | ||
1424 | <f_old_trans></f_old_trans> | ||
1425 | <f_translation>키 추가</f_translation> | ||
1426 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1427 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WLAddKey</b_path> | ||
1428 | <c_attribute>label_selected</c_attribute> | ||
1429 | <d_old></d_old> | ||
1430 | <e_new>Add Key</e_new> | ||
1431 | <f_old_trans></f_old_trans> | ||
1432 | <f_translation>키 추가</f_translation> | ||
1433 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1434 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WLDeleteKey</b_path> | ||
1435 | <c_attribute>label</c_attribute> | ||
1436 | <d_old></d_old> | ||
1437 | <e_new>Delete Key</e_new> | ||
1438 | <f_old_trans></f_old_trans> | ||
1439 | <f_translation>키 삭제</f_translation> | ||
1440 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1441 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WLDeleteKey</b_path> | ||
1442 | <c_attribute>label_selected</c_attribute> | ||
1443 | <d_old></d_old> | ||
1444 | <e_new>Delete Key</e_new> | ||
1445 | <f_old_trans></f_old_trans> | ||
1446 | <f_translation>키 삭제</f_translation> | ||
1447 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1448 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WLCurKeyFrameText</b_path> | ||
1449 | <c_attribute></c_attribute> | ||
1450 | <d_old></d_old> | ||
1451 | <e_new> | ||
1452 | Key Frame Settings: | ||
1453 | </e_new> | ||
1454 | <f_old_trans></f_old_trans> | ||
1455 | <f_translation> | ||
1456 | 키프레임 설정: | ||
1457 | </f_translation> | ||
1458 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1459 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WLCurKeyTimeText</b_path> | ||
167 | <c_attribute></c_attribute> | 1460 | <c_attribute></c_attribute> |
168 | <d_old></d_old> | 1461 | <d_old></d_old> |
169 | <e_new>None Found.</e_new> | 1462 | <e_new> |
1463 | Key Time: | ||
1464 | </e_new> | ||
1465 | <f_old_trans></f_old_trans> | ||
1466 | <f_translation> | ||
1467 | 키 시간: | ||
1468 | </f_translation> | ||
1469 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1470 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WLCurKeyHour</b_path> | ||
1471 | <c_attribute>label</c_attribute> | ||
1472 | <d_old></d_old> | ||
1473 | <e_new>Hour</e_new> | ||
1474 | <f_old_trans></f_old_trans> | ||
1475 | <f_translation>시</f_translation> | ||
1476 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1477 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WLCurKeyMin</b_path> | ||
1478 | <c_attribute>label</c_attribute> | ||
1479 | <d_old></d_old> | ||
1480 | <e_new>Min</e_new> | ||
1481 | <f_old_trans></f_old_trans> | ||
1482 | <f_translation>분</f_translation> | ||
1483 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1484 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WLCurKeyTimeText2</b_path> | ||
1485 | <c_attribute></c_attribute> | ||
1486 | <d_old></d_old> | ||
1487 | <e_new> | ||
1488 | Key Preset: | ||
1489 | </e_new> | ||
1490 | <f_old_trans></f_old_trans> | ||
1491 | <f_translation> | ||
1492 | 키 사전 설정: | ||
1493 | </f_translation> | ||
1494 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1495 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WLKeyPresets</b_path> | ||
1496 | <c_attribute>label</c_attribute> | ||
1497 | <d_old></d_old> | ||
1498 | <e_new>Preset</e_new> | ||
1499 | <f_old_trans></f_old_trans> | ||
1500 | <f_translation>사전 설정</f_translation> | ||
1501 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1502 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/DayCycleText</b_path> | ||
1503 | <c_attribute></c_attribute> | ||
1504 | <d_old></d_old> | ||
1505 | <e_new> | ||
1506 | Snap: | ||
1507 | </e_new> | ||
1508 | <f_old_trans></f_old_trans> | ||
1509 | <f_translation> | ||
1510 | 스냅: | ||
1511 | </f_translation> | ||
1512 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1513 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WLSnapOptions</b_path> | ||
1514 | <c_attribute>label</c_attribute> | ||
1515 | <d_old></d_old> | ||
1516 | <e_new>5 min</e_new> | ||
1517 | <f_old_trans></f_old_trans> | ||
1518 | <f_translation>5분</f_translation> | ||
1519 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1520 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/DayCycleText2</b_path> | ||
1521 | <c_attribute></c_attribute> | ||
1522 | <d_old></d_old> | ||
1523 | <e_new> | ||
1524 | Length of Cycle: | ||
1525 | </e_new> | ||
1526 | <f_old_trans></f_old_trans> | ||
1527 | <f_translation> | ||
1528 | 주기 길이: | ||
1529 | </f_translation> | ||
1530 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1531 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WLLengthOfDayHour</b_path> | ||
1532 | <c_attribute>label</c_attribute> | ||
1533 | <d_old></d_old> | ||
1534 | <e_new>Hour</e_new> | ||
1535 | <f_old_trans></f_old_trans> | ||
1536 | <f_translation>시</f_translation> | ||
1537 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1538 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WLLengthOfDayMin</b_path> | ||
1539 | <c_attribute>label</c_attribute> | ||
1540 | <d_old></d_old> | ||
1541 | <e_new>Min</e_new> | ||
1542 | <f_old_trans></f_old_trans> | ||
1543 | <f_translation>분</f_translation> | ||
1544 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1545 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WLLengthOfDaySec</b_path> | ||
1546 | <c_attribute>label</c_attribute> | ||
1547 | <d_old></d_old> | ||
1548 | <e_new>Sec</e_new> | ||
170 | <f_old_trans></f_old_trans> | 1549 | <f_old_trans></f_old_trans> |
171 | <f_translation>발견되지 않음.</f_translation> | 1550 | <f_translation>초</f_translation> |
1551 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1552 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/DayCycleText3</b_path> | ||
1553 | <c_attribute></c_attribute> | ||
1554 | <d_old></d_old> | ||
1555 | <e_new> | ||
1556 | Preview: | ||
1557 | </e_new> | ||
1558 | <f_old_trans></f_old_trans> | ||
1559 | <f_translation> | ||
1560 | 미리보기: | ||
1561 | </f_translation> | ||
1562 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1563 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WLAnimSky</b_path> | ||
1564 | <c_attribute>label</c_attribute> | ||
1565 | <d_old></d_old> | ||
1566 | <e_new>Play</e_new> | ||
1567 | <f_old_trans></f_old_trans> | ||
1568 | <f_translation>재생</f_translation> | ||
1569 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1570 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WLAnimSky</b_path> | ||
1571 | <c_attribute>label_selected</c_attribute> | ||
1572 | <d_old></d_old> | ||
1573 | <e_new>Play</e_new> | ||
1574 | <f_old_trans></f_old_trans> | ||
1575 | <f_translation>재생</f_translation> | ||
1576 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1577 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WLStopAnimSky</b_path> | ||
1578 | <c_attribute>label</c_attribute> | ||
1579 | <d_old></d_old> | ||
1580 | <e_new>Stop!</e_new> | ||
1581 | <f_old_trans></f_old_trans> | ||
1582 | <f_translation>중지!</f_translation> | ||
1583 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1584 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WLStopAnimSky</b_path> | ||
1585 | <c_attribute>label_selected</c_attribute> | ||
1586 | <d_old></d_old> | ||
1587 | <e_new>Stop</e_new> | ||
1588 | <f_old_trans></f_old_trans> | ||
1589 | <f_translation>중지</f_translation> | ||
1590 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1591 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WLUseLindenTime</b_path> | ||
1592 | <c_attribute>label</c_attribute> | ||
1593 | <d_old></d_old> | ||
1594 | <e_new>Use Estate Time</e_new> | ||
1595 | <f_old_trans></f_old_trans> | ||
1596 | <f_translation>사유지 시간 사용</f_translation> | ||
1597 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1598 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WLUseLindenTime</b_path> | ||
1599 | <c_attribute>label_selected</c_attribute> | ||
1600 | <d_old></d_old> | ||
1601 | <e_new>Go to Estate Time</e_new> | ||
1602 | <f_old_trans></f_old_trans> | ||
1603 | <f_translation>사유지 시간으로 이동</f_translation> | ||
1604 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1605 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WLSaveDayCycle</b_path> | ||
1606 | <c_attribute>label</c_attribute> | ||
1607 | <d_old></d_old> | ||
1608 | <e_new>Save Test Day</e_new> | ||
1609 | <f_old_trans></f_old_trans> | ||
1610 | <f_translation>테스트 날짜 저장</f_translation> | ||
1611 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1612 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WLSaveDayCycle</b_path> | ||
1613 | <c_attribute>label_selected</c_attribute> | ||
1614 | <d_old></d_old> | ||
1615 | <e_new>Save Test Day</e_new> | ||
1616 | <f_old_trans></f_old_trans> | ||
1617 | <f_translation>테스트 날짜 저장</f_translation> | ||
1618 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1619 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WLLoadDayCycle</b_path> | ||
1620 | <c_attribute>label</c_attribute> | ||
1621 | <d_old></d_old> | ||
1622 | <e_new>Load Test Day</e_new> | ||
1623 | <f_old_trans></f_old_trans> | ||
1624 | <f_translation>테스트 날짜 로드</f_translation> | ||
1625 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
1626 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WLLoadDayCycle</b_path> | ||
1627 | <c_attribute>label_selected</c_attribute> | ||
1628 | <d_old></d_old> | ||
1629 | <e_new>Load Test Day</e_new> | ||
1630 | <f_old_trans></f_old_trans> | ||
1631 | <f_translation>테스트 날짜 로드</f_translation> | ||
1632 | </string><string><a_file>floater_device_settings.xml</a_file> | ||
1633 | <b_path>/floater_device_settings</b_path> | ||
1634 | <c_attribute>title</c_attribute> | ||
1635 | <d_old></d_old> | ||
1636 | <e_new>Voice Chat Device Settings</e_new> | ||
1637 | <f_old_trans></f_old_trans> | ||
1638 | <f_translation>음성 채팅 장치 설정</f_translation> | ||
172 | </string><string><a_file>floater_directory.xml</a_file> | 1639 | </string><string><a_file>floater_directory.xml</a_file> |
173 | <b_path>/directory/Directory Tabs/find_all_old_panel/results/icon</b_path> | 1640 | <b_path>/directory/Directory Tabs/find_all_old_panel/results/icon</b_path> |
174 | <c_attribute>label</c_attribute> | 1641 | <c_attribute>label</c_attribute> |
@@ -176,6 +1643,132 @@ | |||
176 | <e_new></e_new> | 1643 | <e_new></e_new> |
177 | <f_old_trans></f_old_trans> | 1644 | <f_old_trans></f_old_trans> |
178 | <f_translation></f_translation> | 1645 | <f_translation></f_translation> |
1646 | </string><string><a_file>floater_env_settings.xml</a_file> | ||
1647 | <b_path>/Environment Editor Floater</b_path> | ||
1648 | <c_attribute>title</c_attribute> | ||
1649 | <d_old></d_old> | ||
1650 | <e_new>Environment Editor</e_new> | ||
1651 | <f_old_trans></f_old_trans> | ||
1652 | <f_translation>환경 편집기</f_translation> | ||
1653 | </string><string><a_file>floater_env_settings.xml</a_file> | ||
1654 | <b_path>/Environment Editor Floater/EnvTimeText</b_path> | ||
1655 | <c_attribute></c_attribute> | ||
1656 | <d_old></d_old> | ||
1657 | <e_new> | ||
1658 | Time of Day | ||
1659 | </e_new> | ||
1660 | <f_old_trans></f_old_trans> | ||
1661 | <f_translation> | ||
1662 | 시각 | ||
1663 | </f_translation> | ||
1664 | </string><string><a_file>floater_env_settings.xml</a_file> | ||
1665 | <b_path>/Environment Editor Floater/EnvTimeText2</b_path> | ||
1666 | <c_attribute></c_attribute> | ||
1667 | <d_old></d_old> | ||
1668 | <e_new> | ||
1669 | 12:00 PM | ||
1670 | </e_new> | ||
1671 | <f_old_trans></f_old_trans> | ||
1672 | <f_translation> | ||
1673 | 12:00 PM | ||
1674 | </f_translation> | ||
1675 | </string><string><a_file>floater_env_settings.xml</a_file> | ||
1676 | <b_path>/Environment Editor Floater/EnvTimeSlider</b_path> | ||
1677 | <c_attribute>label</c_attribute> | ||
1678 | <d_old></d_old> | ||
1679 | <e_new></e_new> | ||
1680 | <f_old_trans></f_old_trans> | ||
1681 | <f_translation></f_translation> | ||
1682 | </string><string><a_file>floater_env_settings.xml</a_file> | ||
1683 | <b_path>/Environment Editor Floater/EnvCloudText</b_path> | ||
1684 | <c_attribute></c_attribute> | ||
1685 | <d_old></d_old> | ||
1686 | <e_new> | ||
1687 | Cloud Cover | ||
1688 | </e_new> | ||
1689 | <f_old_trans></f_old_trans> | ||
1690 | <f_translation> | ||
1691 | 구름양 | ||
1692 | </f_translation> | ||
1693 | <f_old_trans></f_old_trans> | ||
1694 | </string><string><a_file>floater_env_settings.xml</a_file> | ||
1695 | <b_path>/Environment Editor Floater/EnvCloudSlider</b_path> | ||
1696 | <c_attribute>label</c_attribute> | ||
1697 | <d_old></d_old> | ||
1698 | <e_new></e_new> | ||
1699 | <f_old_trans></f_old_trans> | ||
1700 | <f_translation></f_translation> | ||
1701 | </string><string><a_file>floater_env_settings.xml</a_file> | ||
1702 | <b_path>/Environment Editor Floater/EnvWaterColorText</b_path> | ||
1703 | <c_attribute></c_attribute> | ||
1704 | <d_old></d_old> | ||
1705 | <e_new> | ||
1706 | Water Color | ||
1707 | </e_new> | ||
1708 | <f_old_trans></f_old_trans> | ||
1709 | <f_translation> | ||
1710 | 수면색 | ||
1711 | </f_translation> | ||
1712 | </string><string><a_file>floater_env_settings.xml</a_file> | ||
1713 | <b_path>/Environment Editor Floater/EnvWaterColor</b_path> | ||
1714 | <c_attribute>label</c_attribute> | ||
1715 | <d_old></d_old> | ||
1716 | <e_new></e_new> | ||
1717 | <f_old_trans></f_old_trans> | ||
1718 | <f_translation></f_translation> | ||
1719 | </string><string><a_file>floater_env_settings.xml</a_file> | ||
1720 | <b_path>/Environment Editor Floater/EnvWaterColor</b_path> | ||
1721 | <c_attribute>tool_tip</c_attribute> | ||
1722 | <d_old></d_old> | ||
1723 | <e_new>Click to open Color Picker</e_new> | ||
1724 | <f_old_trans></f_old_trans> | ||
1725 | <f_translation>색상 선택기를 열려면 클릭하십시오.</f_translation> | ||
1726 | </string><string><a_file>floater_env_settings.xml</a_file> | ||
1727 | <b_path>/Environment Editor Floater/EnvWaterFogText</b_path> | ||
1728 | <c_attribute></c_attribute> | ||
1729 | <d_old></d_old> | ||
1730 | <e_new> | ||
1731 | Water Fog | ||
1732 | </e_new> | ||
1733 | <f_old_trans></f_old_trans> | ||
1734 | <f_translation> | ||
1735 | 물안개 | ||
1736 | </f_translation> | ||
1737 | </string><string><a_file>floater_env_settings.xml</a_file> | ||
1738 | <b_path>/Environment Editor Floater/EnvWaterFogSlider</b_path> | ||
1739 | <c_attribute>label</c_attribute> | ||
1740 | <d_old></d_old> | ||
1741 | <e_new></e_new> | ||
1742 | <f_old_trans></f_old_trans> | ||
1743 | <f_translation></f_translation> | ||
1744 | </string><string><a_file>floater_env_settings.xml</a_file> | ||
1745 | <b_path>/Environment Editor Floater/EnvUseEstateTimeButton</b_path> | ||
1746 | <c_attribute>label</c_attribute> | ||
1747 | <d_old></d_old> | ||
1748 | <e_new>Use Estate Time</e_new> | ||
1749 | <f_old_trans></f_old_trans> | ||
1750 | <f_translation>사유지 시간 사용</f_translation> | ||
1751 | </string><string><a_file>floater_env_settings.xml</a_file> | ||
1752 | <b_path>/Environment Editor Floater/EnvAdvancedSkyButton</b_path> | ||
1753 | <c_attribute>label</c_attribute> | ||
1754 | <d_old></d_old> | ||
1755 | <e_new>Advanced Sky</e_new> | ||
1756 | <f_old_trans></f_old_trans> | ||
1757 | <f_translation> 하늘 디테일</f_translation> | ||
1758 | </string><string><a_file>floater_env_settings.xml</a_file> | ||
1759 | <b_path>/Environment Editor Floater/EnvAdvancedWaterButton</b_path> | ||
1760 | <c_attribute>label</c_attribute> | ||
1761 | <d_old></d_old> | ||
1762 | <e_new>Advanced Water</e_new> | ||
1763 | <f_old_trans></f_old_trans> | ||
1764 | <f_translation>수면 디테일</f_translation> | ||
1765 | </string><string><a_file>floater_env_settings.xml</a_file> | ||
1766 | <b_path>/Environment Editor Floater/EnvSettingsHelpButton</b_path> | ||
1767 | <c_attribute>label</c_attribute> | ||
1768 | <d_old></d_old> | ||
1769 | <e_new>?</e_new> | ||
1770 | <f_old_trans></f_old_trans> | ||
1771 | <f_translation>?</f_translation> | ||
179 | </string><string><a_file>floater_groups.xml</a_file> | 1772 | </string><string><a_file>floater_groups.xml</a_file> |
180 | <b_path>/groups/group list/name</b_path> | 1773 | <b_path>/groups/group list/name</b_path> |
181 | <c_attribute>label</c_attribute> | 1774 | <c_attribute>label</c_attribute> |
@@ -183,50 +1776,497 @@ | |||
183 | <e_new></e_new> | 1776 | <e_new></e_new> |
184 | <f_old_trans></f_old_trans> | 1777 | <f_old_trans></f_old_trans> |
185 | <f_translation></f_translation> | 1778 | <f_translation></f_translation> |
186 | </string><string><a_file>floater_im.xml</a_file> | 1779 | </string><string><a_file>floater_hardware_settings.xml</a_file> |
187 | <b_path>/im_floater/no_ability_error</b_path> | 1780 | <b_path>/Hardware Settings Floater</b_path> |
1781 | <c_attribute>title</c_attribute> | ||
1782 | <d_old></d_old> | ||
1783 | <e_new>Hardware Settings</e_new> | ||
1784 | <f_old_trans></f_old_trans> | ||
1785 | <f_translation>하드웨어 설정</f_translation> | ||
1786 | </string><string><a_file>floater_hardware_settings.xml</a_file> | ||
1787 | <b_path>/Hardware Settings Floater/Filtering:</b_path> | ||
188 | <c_attribute></c_attribute> | 1788 | <c_attribute></c_attribute> |
189 | <d_old></d_old> | 1789 | <d_old></d_old> |
190 | <e_new> | 1790 | <e_new> |
191 | You do not have that ability. | 1791 | Filtering: |
192 | </e_new> | 1792 | </e_new> |
193 | <f_old_trans></f_old_trans> | 1793 | <f_old_trans></f_old_trans> |
194 | <f_translation> | 1794 | <f_translation> |
195 | 해당 권이 없습다. | 1795 | 터: |
196 | </f_translation> | 1796 | </f_translation> |
197 | </string><string><a_file>floater_im.xml</a_file> | 1797 | </string><string><a_file>floater_hardware_settings.xml</a_file> |
198 | <b_path>/im_floater/not_a_mod_error</b_path> | 1798 | <b_path>/Hardware Settings Floater/ani</b_path> |
1799 | <c_attribute>label</c_attribute> | ||
1800 | <d_old></d_old> | ||
1801 | <e_new>Anisotropic Filtering (slower when enabled)</e_new> | ||
1802 | <f_old_trans></f_old_trans> | ||
1803 | <f_translation>Anisotropic 필터링(사용시 느려짐)</f_translation> | ||
1804 | </string><string><a_file>floater_hardware_settings.xml</a_file> | ||
1805 | <b_path>/Hardware Settings Floater/gamma</b_path> | ||
1806 | <c_attribute>label</c_attribute> | ||
1807 | <d_old></d_old> | ||
1808 | <e_new>Gamma:</e_new> | ||
1809 | <f_old_trans></f_old_trans> | ||
1810 | <f_translation>감마:</f_translation> | ||
1811 | </string><string><a_file>floater_hardware_settings.xml</a_file> | ||
1812 | <b_path>/Hardware Settings Floater/(brightness, lower is brighter)</b_path> | ||
199 | <c_attribute></c_attribute> | 1813 | <c_attribute></c_attribute> |
200 | <d_old></d_old> | 1814 | <d_old></d_old> |
201 | <e_new> | 1815 | <e_new> |
202 | You are not a session moderator. | 1816 | (brightness, lower is brighter, 0=use default) |
203 | </e_new> | 1817 | </e_new> |
204 | <f_old_trans></f_old_trans> | 1818 | <f_old_trans></f_old_trans> |
205 | <f_translation> | 1819 | <f_translation> |
206 | 귀하는 현재 행자 닙니. | 1820 | (밝기, 낮 록 밝, 본 설정값 0) |
207 | </f_translation> | 1821 | </f_translation> |
208 | </string><string><a_file>floater_im.xml</a_file> | 1822 | </string><string><a_file>floater_hardware_settings.xml</a_file> |
209 | <b_path>/im_floater/muted_error</b_path> | 1823 | <b_path>/Hardware Settings Floater/Enable VBO:</b_path> |
1824 | <c_attribute></c_attribute> | ||
1825 | <d_old></d_old> | ||
1826 | <e_new> | ||
1827 | Enable VBO: | ||
1828 | </e_new> | ||
1829 | <f_old_trans></f_old_trans> | ||
1830 | <f_translation> | ||
1831 | VBO 사용: | ||
1832 | </f_translation> | ||
1833 | </string><string><a_file>floater_hardware_settings.xml</a_file> | ||
1834 | <b_path>/Hardware Settings Floater/vbo</b_path> | ||
1835 | <c_attribute>label</c_attribute> | ||
1836 | <d_old></d_old> | ||
1837 | <e_new>Enable OpenGL Vertex Buffer Objects</e_new> | ||
1838 | <f_old_trans></f_old_trans> | ||
1839 | <f_translation>OpenGL 버텍스 버퍼 오브젝트 사용</f_translation> | ||
1840 | </string><string><a_file>floater_hardware_settings.xml</a_file> | ||
1841 | <b_path>/Hardware Settings Floater/vbo</b_path> | ||
1842 | <c_attribute>tool_tip</c_attribute> | ||
1843 | <d_old></d_old> | ||
1844 | <e_new>Enabling this on modern hardware gives a performance gain. However, older hardware often has poor implementations of VBOs and you may get crashes when this is enabled.</e_new> | ||
1845 | <f_old_trans></f_old_trans> | ||
1846 | <f_translation>최신 하드웨어에서 이 옵션을 사용하면 성능상의 이점을 얻을 수 있습니다. 그러나 간혹 구형 하드웨어에는 성능이 낮은 VBO가 구현되어 있기 때문에 이 옵션을 사용할 때 충돌이 발생할 수 있습니다.</f_translation> | ||
1847 | </string><string><a_file>floater_hardware_settings.xml</a_file> | ||
1848 | <b_path>/Hardware Settings Floater/GrapicsCardTextureMemory</b_path> | ||
1849 | <c_attribute>label</c_attribute> | ||
1850 | <d_old></d_old> | ||
1851 | <e_new>Texture Memory (MB):</e_new> | ||
1852 | <f_old_trans></f_old_trans> | ||
1853 | <f_translation>텍스처 메모리(MB):</f_translation> | ||
1854 | </string><string><a_file>floater_hardware_settings.xml</a_file> | ||
1855 | <b_path>/Hardware Settings Floater/GrapicsCardTextureMemory</b_path> | ||
1856 | <c_attribute>tool_tip</c_attribute> | ||
1857 | <d_old></d_old> | ||
1858 | <e_new>Amount of memory to allocate for textures. Defaults to Video Card Memory. Reducing this may improve performance but may also make textures blurry.</e_new> | ||
1859 | <f_old_trans></f_old_trans> | ||
1860 | <f_translation>텍스처에 할당할 메모리 크기로, 기본값은 비디오 카드 메모리입니다. 이 값을 낮추면 성능이 개선될 수 있지만 텍스처가 불확실하게 표시될 수 있습니다.</f_translation> | ||
1861 | </string><string><a_file>floater_hardware_settings.xml</a_file> | ||
1862 | <b_path>/Hardware Settings Floater/fog</b_path> | ||
1863 | <c_attribute>label</c_attribute> | ||
1864 | <d_old></d_old> | ||
1865 | <e_new>Fog Distance Ratio:</e_new> | ||
1866 | <f_old_trans></f_old_trans> | ||
1867 | <f_translation>안개 농도:</f_translation> | ||
1868 | </string><string><a_file>floater_hardware_settings.xml</a_file> | ||
1869 | <b_path>/Hardware Settings Floater/OK</b_path> | ||
1870 | <c_attribute>label</c_attribute> | ||
1871 | <d_old></d_old> | ||
1872 | <e_new>OK</e_new> | ||
1873 | <f_old_trans></f_old_trans> | ||
1874 | <f_translation>확인</f_translation> | ||
1875 | </string><string><a_file>floater_hardware_settings.xml</a_file> | ||
1876 | <b_path>/Hardware Settings Floater/OK</b_path> | ||
1877 | <c_attribute>label_selected</c_attribute> | ||
1878 | <d_old></d_old> | ||
1879 | <e_new>OK</e_new> | ||
1880 | <f_old_trans></f_old_trans> | ||
1881 | <f_translation>확인</f_translation> | ||
1882 | </string><string><a_file>floater_instant_message.xml</a_file> | ||
1883 | <b_path>/im_floater/default_text_label</b_path> | ||
210 | <c_attribute></c_attribute> | 1884 | <c_attribute></c_attribute> |
211 | <d_old></d_old> | 1885 | <d_old></d_old> |
212 | <e_new> | 1886 | <e_new> |
213 | You have been muted. | 1887 | Click here to instant message. |
214 | </e_new> | 1888 | </e_new> |
215 | <f_old_trans></f_old_trans> | 1889 | <f_old_trans></f_old_trans> |
216 | <f_translation> | 1890 | <f_translation> |
217 | 하 소 . | 1891 | 메신를 사용하면 릭. |
218 | </f_translation> | 1892 | </f_translation> |
219 | </string><string><a_file>floater_im.xml</a_file> | 1893 | </string><string><a_file>floater_instant_message_ad_hoc.xml</a_file> |
220 | <b_path>/im_floater/mute_agent_event</b_path> | 1894 | <b_path>/im_floater/default_text_label</b_path> |
221 | <c_attribute></c_attribute> | 1895 | <c_attribute></c_attribute> |
222 | <d_old></d_old> | 1896 | <d_old></d_old> |
223 | <e_new> | 1897 | <e_new> |
224 | muting agent in | 1898 | Click here to instant message. |
225 | </e_new> | 1899 | </e_new> |
226 | <f_old_trans></f_old_trans> | 1900 | <f_old_trans></f_old_trans> |
227 | <f_translation> | 1901 | <f_translation> |
228 | 트 | 1902 | 메를 하려면 여를 클릭하십시오. |
229 | </f_translation> | 1903 | </f_translation> |
1904 | </string><string><a_file>floater_live_lsleditor.xml</a_file> | ||
1905 | <b_path>/script ed float/script_running</b_path> | ||
1906 | <c_attribute></c_attribute> | ||
1907 | <d_old></d_old> | ||
1908 | <e_new> | ||
1909 | Running | ||
1910 | </e_new> | ||
1911 | <f_old_trans></f_old_trans> | ||
1912 | <f_translation> | ||
1913 | 실행 중 | ||
1914 | </f_translation> | ||
1915 | </string><string><a_file>floater_media_browser.xml</a_file> | ||
1916 | <b_path>/floater_about</b_path> | ||
1917 | <c_attribute>title</c_attribute> | ||
1918 | <d_old></d_old> | ||
1919 | <e_new>Media Browser</e_new> | ||
1920 | <f_old_trans></f_old_trans> | ||
1921 | <f_translation>미디어 브라우저</f_translation> | ||
1922 | </string><string><a_file>floater_media_browser.xml</a_file> | ||
1923 | <b_path>/floater_about///back</b_path> | ||
1924 | <c_attribute>label</c_attribute> | ||
1925 | <d_old></d_old> | ||
1926 | <e_new>Back</e_new> | ||
1927 | <f_old_trans></f_old_trans> | ||
1928 | <f_translation>뒤로</f_translation> | ||
1929 | </string><string><a_file>floater_media_browser.xml</a_file> | ||
1930 | <b_path>/floater_about///forward</b_path> | ||
1931 | <c_attribute>label</c_attribute> | ||
1932 | <d_old></d_old> | ||
1933 | <e_new>Forward</e_new> | ||
1934 | <f_old_trans></f_old_trans> | ||
1935 | <f_translation>앞으로</f_translation> | ||
1936 | </string><string><a_file>floater_media_browser.xml</a_file> | ||
1937 | <b_path>/floater_about///reload</b_path> | ||
1938 | <c_attribute>label</c_attribute> | ||
1939 | <d_old></d_old> | ||
1940 | <e_new>Reload</e_new> | ||
1941 | <f_old_trans></f_old_trans> | ||
1942 | <f_translation>다시 로드</f_translation> | ||
1943 | </string><string><a_file>floater_media_browser.xml</a_file> | ||
1944 | <b_path>/floater_about///go</b_path> | ||
1945 | <c_attribute>label</c_attribute> | ||
1946 | <d_old></d_old> | ||
1947 | <e_new>Go</e_new> | ||
1948 | <f_old_trans></f_old_trans> | ||
1949 | <f_translation>이동</f_translation> | ||
1950 | </string><string><a_file>floater_media_browser.xml</a_file> | ||
1951 | <b_path>/floater_about//parcel_owner_controls/assign</b_path> | ||
1952 | <c_attribute>label</c_attribute> | ||
1953 | <d_old></d_old> | ||
1954 | <e_new>Send Current URL to Parcel</e_new> | ||
1955 | <f_old_trans></f_old_trans> | ||
1956 | <f_translation>현재 URL을 구획으로 보내기</f_translation> | ||
1957 | </string><string><a_file>floater_media_browser.xml</a_file> | ||
1958 | <b_path>/floater_about///open_browser</b_path> | ||
1959 | <c_attribute>label</c_attribute> | ||
1960 | <d_old></d_old> | ||
1961 | <e_new>Open in My Web Browser</e_new> | ||
1962 | <f_old_trans></f_old_trans> | ||
1963 | <f_translation>내 웹 브라우저에서 열기</f_translation> | ||
1964 | </string><string><a_file>floater_media_browser.xml</a_file> | ||
1965 | <b_path>/floater_about///open_always</b_path> | ||
1966 | <c_attribute>label</c_attribute> | ||
1967 | <d_old></d_old> | ||
1968 | <e_new>Always open in my web browser</e_new> | ||
1969 | <f_old_trans></f_old_trans> | ||
1970 | <f_translation>항상 내 웹 브라우저에서 열기</f_translation> | ||
1971 | </string><string><a_file>floater_media_browser.xml</a_file> | ||
1972 | <b_path>/floater_about///close</b_path> | ||
1973 | <c_attribute>label</c_attribute> | ||
1974 | <d_old></d_old> | ||
1975 | <e_new>Close</e_new> | ||
1976 | <f_old_trans></f_old_trans> | ||
1977 | <f_translation>닫기</f_translation> | ||
1978 | </string><string><a_file>floater_post_process.xml</a_file> | ||
1979 | <b_path>/Post-Process Floater</b_path> | ||
1980 | <c_attribute>title</c_attribute> | ||
1981 | <d_old></d_old> | ||
1982 | <e_new>Post-Process Settings</e_new> | ||
1983 | <f_old_trans></f_old_trans> | ||
1984 | <f_translation>사후 처리 설정</f_translation> | ||
1985 | </string><string><a_file>floater_post_process.xml</a_file> | ||
1986 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiColorFilterPanel</b_path> | ||
1987 | <c_attribute>label</c_attribute> | ||
1988 | <d_old></d_old> | ||
1989 | <e_new>Color Filter</e_new> | ||
1990 | <f_old_trans></f_old_trans> | ||
1991 | <f_translation>색상 필터</f_translation> | ||
1992 | </string><string><a_file>floater_post_process.xml</a_file> | ||
1993 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiColorFilterPanel/wmiColorFilterToggle</b_path> | ||
1994 | <c_attribute>label</c_attribute> | ||
1995 | <d_old></d_old> | ||
1996 | <e_new>Enable</e_new> | ||
1997 | <f_old_trans></f_old_trans> | ||
1998 | <f_translation>사용</f_translation> | ||
1999 | </string><string><a_file>floater_post_process.xml</a_file> | ||
2000 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiColorFilterPanel/wmiColorFilterBrightnessText</b_path> | ||
2001 | <c_attribute></c_attribute> | ||
2002 | <d_old></d_old> | ||
2003 | <e_new> | ||
2004 | Brightness | ||
2005 | </e_new> | ||
2006 | <f_old_trans></f_old_trans> | ||
2007 | <f_translation> | ||
2008 | 밝기 | ||
2009 | </f_translation> | ||
2010 | </string><string><a_file>floater_post_process.xml</a_file> | ||
2011 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiColorFilterPanel/wmiColorFilterBrightness</b_path> | ||
2012 | <c_attribute>label</c_attribute> | ||
2013 | <d_old></d_old> | ||
2014 | <e_new></e_new> | ||
2015 | <f_old_trans></f_old_trans> | ||
2016 | <f_translation></f_translation> | ||
2017 | </string><string><a_file>floater_post_process.xml</a_file> | ||
2018 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiColorFilterPanel/wmiColorFilterSaturationText</b_path> | ||
2019 | <c_attribute></c_attribute> | ||
2020 | <d_old></d_old> | ||
2021 | <e_new> | ||
2022 | Saturation | ||
2023 | </e_new> | ||
2024 | <f_old_trans></f_old_trans> | ||
2025 | <f_translation> | ||
2026 | 채도 | ||
2027 | </f_translation> | ||
2028 | </string><string><a_file>floater_post_process.xml</a_file> | ||
2029 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiColorFilterPanel/wmiColorFilterSaturation</b_path> | ||
2030 | <c_attribute>label</c_attribute> | ||
2031 | <d_old></d_old> | ||
2032 | <e_new></e_new> | ||
2033 | <f_old_trans></f_old_trans> | ||
2034 | <f_translation></f_translation> | ||
2035 | </string><string><a_file>floater_post_process.xml</a_file> | ||
2036 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiColorFilterPanel/wmiColorFilterContrastText</b_path> | ||
2037 | <c_attribute></c_attribute> | ||
2038 | <d_old></d_old> | ||
2039 | <e_new> | ||
2040 | Contrast | ||
2041 | </e_new> | ||
2042 | <f_old_trans></f_old_trans> | ||
2043 | <f_translation> | ||
2044 | 명암 | ||
2045 | </f_translation> | ||
2046 | </string><string><a_file>floater_post_process.xml</a_file> | ||
2047 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiColorFilterPanel/wmiColorFilterContrast</b_path> | ||
2048 | <c_attribute>label</c_attribute> | ||
2049 | <d_old></d_old> | ||
2050 | <e_new></e_new> | ||
2051 | <f_old_trans></f_old_trans> | ||
2052 | <f_translation></f_translation> | ||
2053 | </string><string><a_file>floater_post_process.xml</a_file> | ||
2054 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiColorFilterPanel/wmiColorFilterBaseText</b_path> | ||
2055 | <c_attribute></c_attribute> | ||
2056 | <d_old></d_old> | ||
2057 | <e_new> | ||
2058 | Contrast Base Color | ||
2059 | </e_new> | ||
2060 | <f_old_trans></f_old_trans> | ||
2061 | <f_translation> | ||
2062 | 명암 기본 색상 | ||
2063 | </f_translation> | ||
2064 | </string><string><a_file>floater_post_process.xml</a_file> | ||
2065 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiColorFilterPanel/wmiColorFilterBaseR</b_path> | ||
2066 | <c_attribute>label</c_attribute> | ||
2067 | <d_old></d_old> | ||
2068 | <e_new>R</e_new> | ||
2069 | <f_old_trans></f_old_trans> | ||
2070 | <f_translation>R</f_translation> | ||
2071 | </string><string><a_file>floater_post_process.xml</a_file> | ||
2072 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiColorFilterPanel/wmiColorFilterBaseG</b_path> | ||
2073 | <c_attribute>label</c_attribute> | ||
2074 | <d_old></d_old> | ||
2075 | <e_new>G</e_new> | ||
2076 | <f_old_trans></f_old_trans> | ||
2077 | <f_translation>G</f_translation> | ||
2078 | </string><string><a_file>floater_post_process.xml</a_file> | ||
2079 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiColorFilterPanel/wmiColorFilterBaseB</b_path> | ||
2080 | <c_attribute>label</c_attribute> | ||
2081 | <d_old></d_old> | ||
2082 | <e_new>B</e_new> | ||
2083 | <f_old_trans></f_old_trans> | ||
2084 | <f_translation>B</f_translation> | ||
2085 | </string><string><a_file>floater_post_process.xml</a_file> | ||
2086 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiColorFilterPanel/wmiColorFilterBaseI</b_path> | ||
2087 | <c_attribute>label</c_attribute> | ||
2088 | <d_old></d_old> | ||
2089 | <e_new>I</e_new> | ||
2090 | <f_old_trans></f_old_trans> | ||
2091 | <f_translation>I</f_translation> | ||
2092 | </string><string><a_file>floater_post_process.xml</a_file> | ||
2093 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiNightVisionPanel</b_path> | ||
2094 | <c_attribute>label</c_attribute> | ||
2095 | <d_old></d_old> | ||
2096 | <e_new>Night Vision</e_new> | ||
2097 | <f_old_trans></f_old_trans> | ||
2098 | <f_translation>나이트 비전</f_translation> | ||
2099 | </string><string><a_file>floater_post_process.xml</a_file> | ||
2100 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiNightVisionPanel/wmiNightVisionToggle</b_path> | ||
2101 | <c_attribute>label</c_attribute> | ||
2102 | <d_old></d_old> | ||
2103 | <e_new>Enable</e_new> | ||
2104 | <f_old_trans></f_old_trans> | ||
2105 | <f_translation>사용</f_translation> | ||
2106 | </string><string><a_file>floater_post_process.xml</a_file> | ||
2107 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiNightVisionPanel/wmiNightVisionBrightMultText</b_path> | ||
2108 | <c_attribute></c_attribute> | ||
2109 | <d_old></d_old> | ||
2110 | <e_new> | ||
2111 | Light Amplification Multiple | ||
2112 | </e_new> | ||
2113 | <f_old_trans></f_old_trans> | ||
2114 | <f_translation> | ||
2115 | 빛 증폭 | ||
2116 | </f_translation> | ||
2117 | </string><string><a_file>floater_post_process.xml</a_file> | ||
2118 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiNightVisionPanel/wmiNightVisionBrightMult</b_path> | ||
2119 | <c_attribute>label</c_attribute> | ||
2120 | <d_old></d_old> | ||
2121 | <e_new></e_new> | ||
2122 | <f_old_trans></f_old_trans> | ||
2123 | <f_translation></f_translation> | ||
2124 | </string><string><a_file>floater_post_process.xml</a_file> | ||
2125 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiNightVisionPanel/wmiNightVisionNoiseSizeText</b_path> | ||
2126 | <c_attribute></c_attribute> | ||
2127 | <d_old></d_old> | ||
2128 | <e_new> | ||
2129 | Noise Size | ||
2130 | </e_new> | ||
2131 | <f_old_trans></f_old_trans> | ||
2132 | <f_translation> | ||
2133 | 노이즈 크기 | ||
2134 | </f_translation> | ||
2135 | </string><string><a_file>floater_post_process.xml</a_file> | ||
2136 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiNightVisionPanel/wmiNightVisionNoiseSize</b_path> | ||
2137 | <c_attribute>label</c_attribute> | ||
2138 | <d_old></d_old> | ||
2139 | <e_new></e_new> | ||
2140 | <f_old_trans></f_old_trans> | ||
2141 | <f_translation></f_translation> | ||
2142 | </string><string><a_file>floater_post_process.xml</a_file> | ||
2143 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiNightVisionPanel/wmiNightVisionNoiseStrengthText</b_path> | ||
2144 | <c_attribute></c_attribute> | ||
2145 | <d_old></d_old> | ||
2146 | <e_new> | ||
2147 | Noise Strength | ||
2148 | </e_new> | ||
2149 | <f_old_trans></f_old_trans> | ||
2150 | <f_translation> | ||
2151 | 노이즈 강도 | ||
2152 | </f_translation> | ||
2153 | </string><string><a_file>floater_post_process.xml</a_file> | ||
2154 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiNightVisionPanel/wmiNightVisionNoiseStrength</b_path> | ||
2155 | <c_attribute>label</c_attribute> | ||
2156 | <d_old></d_old> | ||
2157 | <e_new></e_new> | ||
2158 | <f_old_trans></f_old_trans> | ||
2159 | <f_translation></f_translation> | ||
2160 | </string><string><a_file>floater_post_process.xml</a_file> | ||
2161 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiBloomPanel</b_path> | ||
2162 | <c_attribute>label</c_attribute> | ||
2163 | <d_old></d_old> | ||
2164 | <e_new>Bloom</e_new> | ||
2165 | <f_old_trans></f_old_trans> | ||
2166 | <f_translation>흐림</f_translation> | ||
2167 | </string><string><a_file>floater_post_process.xml</a_file> | ||
2168 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiBloomPanel/wmiBloomToggle</b_path> | ||
2169 | <c_attribute>label</c_attribute> | ||
2170 | <d_old></d_old> | ||
2171 | <e_new>Enable</e_new> | ||
2172 | <f_old_trans></f_old_trans> | ||
2173 | <f_translation>사용</f_translation> | ||
2174 | </string><string><a_file>floater_post_process.xml</a_file> | ||
2175 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiBloomPanel/wmiBloomExtractText</b_path> | ||
2176 | <c_attribute></c_attribute> | ||
2177 | <d_old></d_old> | ||
2178 | <e_new> | ||
2179 | Luminosity Extraction | ||
2180 | </e_new> | ||
2181 | <f_old_trans></f_old_trans> | ||
2182 | <f_translation> | ||
2183 | 광도 추출 | ||
2184 | </f_translation> | ||
2185 | </string><string><a_file>floater_post_process.xml</a_file> | ||
2186 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiBloomPanel/wmiBloomExtract</b_path> | ||
2187 | <c_attribute>label</c_attribute> | ||
2188 | <d_old></d_old> | ||
2189 | <e_new></e_new> | ||
2190 | <f_old_trans></f_old_trans> | ||
2191 | <f_translation></f_translation> | ||
2192 | </string><string><a_file>floater_post_process.xml</a_file> | ||
2193 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiBloomPanel/wmiBloomSizeText</b_path> | ||
2194 | <c_attribute></c_attribute> | ||
2195 | <d_old></d_old> | ||
2196 | <e_new> | ||
2197 | Bloom Size | ||
2198 | </e_new> | ||
2199 | <f_old_trans></f_old_trans> | ||
2200 | <f_translation> | ||
2201 | 흐림 범위 | ||
2202 | </f_translation> | ||
2203 | </string><string><a_file>floater_post_process.xml</a_file> | ||
2204 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiBloomPanel/wmiBloomSize</b_path> | ||
2205 | <c_attribute>label</c_attribute> | ||
2206 | <d_old></d_old> | ||
2207 | <e_new></e_new> | ||
2208 | <f_old_trans></f_old_trans> | ||
2209 | <f_translation></f_translation> | ||
2210 | </string><string><a_file>floater_post_process.xml</a_file> | ||
2211 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiBloomPanel/wmiBloomStrengthText</b_path> | ||
2212 | <c_attribute></c_attribute> | ||
2213 | <d_old></d_old> | ||
2214 | <e_new> | ||
2215 | Bloom Strength | ||
2216 | </e_new> | ||
2217 | <f_old_trans></f_old_trans> | ||
2218 | <f_translation> | ||
2219 | 흐림 강도 | ||
2220 | </f_translation> | ||
2221 | </string><string><a_file>floater_post_process.xml</a_file> | ||
2222 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiBloomPanel/wmiBloomStrength</b_path> | ||
2223 | <c_attribute>label</c_attribute> | ||
2224 | <d_old></d_old> | ||
2225 | <e_new></e_new> | ||
2226 | <f_old_trans></f_old_trans> | ||
2227 | <f_translation></f_translation> | ||
2228 | </string><string><a_file>floater_post_process.xml</a_file> | ||
2229 | <b_path>/Post-Process Floater/Post-Process Tabs/Extras</b_path> | ||
2230 | <c_attribute>label</c_attribute> | ||
2231 | <d_old></d_old> | ||
2232 | <e_new>Extras</e_new> | ||
2233 | <f_old_trans></f_old_trans> | ||
2234 | <f_translation>특수</f_translation> | ||
2235 | </string><string><a_file>floater_post_process.xml</a_file> | ||
2236 | <b_path>/Post-Process Floater/Post-Process Tabs/Extras/PPLoadEffect</b_path> | ||
2237 | <c_attribute>label</c_attribute> | ||
2238 | <d_old></d_old> | ||
2239 | <e_new>LoadEffect</e_new> | ||
2240 | <f_old_trans></f_old_trans> | ||
2241 | <f_translation>효과 로드</f_translation> | ||
2242 | </string><string><a_file>floater_post_process.xml</a_file> | ||
2243 | <b_path>/Post-Process Floater/Post-Process Tabs/Extras/PPLoadEffect</b_path> | ||
2244 | <c_attribute>label_selected</c_attribute> | ||
2245 | <d_old></d_old> | ||
2246 | <e_new>LoadEffect</e_new> | ||
2247 | <f_old_trans></f_old_trans> | ||
2248 | <f_translation>효과 로드</f_translation> | ||
2249 | </string><string><a_file>floater_post_process.xml</a_file> | ||
2250 | <b_path>/Post-Process Floater/Post-Process Tabs/Extras/PPSaveEffect</b_path> | ||
2251 | <c_attribute>label</c_attribute> | ||
2252 | <d_old></d_old> | ||
2253 | <e_new>SaveEffect</e_new> | ||
2254 | <f_old_trans></f_old_trans> | ||
2255 | <f_translation>효과 저장</f_translation> | ||
2256 | </string><string><a_file>floater_post_process.xml</a_file> | ||
2257 | <b_path>/Post-Process Floater/Post-Process Tabs/Extras/PPSaveEffect</b_path> | ||
2258 | <c_attribute>label_selected</c_attribute> | ||
2259 | <d_old></d_old> | ||
2260 | <e_new>SaveEffect</e_new> | ||
2261 | <f_old_trans></f_old_trans> | ||
2262 | <f_translation>효과 저장</f_translation> | ||
2263 | </string><string><a_file>floater_post_process.xml</a_file> | ||
2264 | <b_path>/Post-Process Floater/Post-Process Tabs/Extras/PPEffectNameEditor</b_path> | ||
2265 | <c_attribute>label</c_attribute> | ||
2266 | <d_old></d_old> | ||
2267 | <e_new>Effect Name</e_new> | ||
2268 | <f_old_trans></f_old_trans> | ||
2269 | <f_translation>효과 이름</f_translation> | ||
230 | </string><string><a_file>floater_preview_classified.xml</a_file> | 2270 | </string><string><a_file>floater_preview_classified.xml</a_file> |
231 | <b_path>/classified_preview</b_path> | 2271 | <b_path>/classified_preview</b_path> |
232 | <c_attribute>title</c_attribute> | 2272 | <c_attribute>title</c_attribute> |
@@ -255,15 +2295,1842 @@ | |||
255 | <e_new>Region/Estate</e_new> | 2295 | <e_new>Region/Estate</e_new> |
256 | <f_old_trans></f_old_trans> | 2296 | <f_old_trans></f_old_trans> |
257 | <f_translation>지역/사유지</f_translation> | 2297 | <f_translation>지역/사유지</f_translation> |
258 | </string><string><a_file>floater_select_key.xml</a_file> | 2298 | </string><string><a_file>floater_snapshot.xml</a_file> |
259 | <b_path>/modal container</b_path> | 2299 | <b_path>/Snapshot/more_btn</b_path> |
2300 | <c_attribute>label</c_attribute> | ||
2301 | <d_old></d_old> | ||
2302 | <e_new>More >></e_new> | ||
2303 | <f_old_trans></f_old_trans> | ||
2304 | <f_translation>자세히 >></f_translation> | ||
2305 | </string><string><a_file>floater_snapshot.xml</a_file> | ||
2306 | <b_path>/Snapshot/more_btn</b_path> | ||
2307 | <c_attribute>tool_tip</c_attribute> | ||
2308 | <d_old></d_old> | ||
2309 | <e_new>Advanced Options</e_new> | ||
2310 | <f_old_trans></f_old_trans> | ||
2311 | <f_translation>고급 옵션</f_translation> | ||
2312 | </string><string><a_file>floater_snapshot.xml</a_file> | ||
2313 | <b_path>/Snapshot/less_btn</b_path> | ||
2314 | <c_attribute>label</c_attribute> | ||
2315 | <d_old></d_old> | ||
2316 | <e_new><< Less</e_new> | ||
2317 | <f_old_trans></f_old_trans> | ||
2318 | <f_translation><< 축소</f_translation> | ||
2319 | </string><string><a_file>floater_snapshot.xml</a_file> | ||
2320 | <b_path>/Snapshot/less_btn</b_path> | ||
2321 | <c_attribute>tool_tip</c_attribute> | ||
2322 | <d_old></d_old> | ||
2323 | <e_new>Advanced Options</e_new> | ||
2324 | <f_old_trans></f_old_trans> | ||
2325 | <f_translation>고급 옵션</f_translation> | ||
2326 | </string><string><a_file>floater_tools.xml</a_file> | ||
2327 | <b_path>/toolbox floater/Object Info Tabs/General/clickaction/Play</b_path> | ||
2328 | <c_attribute></c_attribute> | ||
2329 | <d_old></d_old> | ||
2330 | <e_new> | ||
2331 | Play parcel media | ||
2332 | </e_new> | ||
2333 | <f_old_trans></f_old_trans> | ||
2334 | <f_translation> | ||
2335 | 구획 미디어 재생 | ||
2336 | </f_translation> | ||
2337 | </string><string><a_file>floater_tools.xml</a_file> | ||
2338 | <b_path>/toolbox floater/Object Info Tabs/General/clickaction/Opemmedia</b_path> | ||
2339 | <c_attribute></c_attribute> | ||
2340 | <d_old></d_old> | ||
2341 | <e_new> | ||
2342 | Open parcel media | ||
2343 | </e_new> | ||
2344 | <f_old_trans></f_old_trans> | ||
2345 | <f_translation> | ||
2346 | 구획 미디어 열기 | ||
2347 | </f_translation> | ||
2348 | </string><string><a_file>floater_tools.xml</a_file> | ||
2349 | <b_path>/toolbox floater/Object Info Tabs/Texture/glow label</b_path> | ||
2350 | <c_attribute></c_attribute> | ||
2351 | <d_old></d_old> | ||
2352 | <e_new> | ||
2353 | Glow | ||
2354 | </e_new> | ||
2355 | <f_old_trans></f_old_trans> | ||
2356 | <f_translation> | ||
2357 | 밝기 | ||
2358 | </f_translation> | ||
2359 | </string><string><a_file>floater_url_entry.xml</a_file> | ||
2360 | <b_path>/url_entry</b_path> | ||
2361 | <c_attribute>title</c_attribute> | ||
2362 | <d_old></d_old> | ||
2363 | <e_new></e_new> | ||
2364 | <f_old_trans></f_old_trans> | ||
2365 | <f_translation></f_translation> | ||
2366 | </string><string><a_file>floater_url_entry.xml</a_file> | ||
2367 | <b_path>/url_entry/media_label</b_path> | ||
2368 | <c_attribute></c_attribute> | ||
2369 | <d_old></d_old> | ||
2370 | <e_new> | ||
2371 | Media URL: | ||
2372 | </e_new> | ||
2373 | <f_old_trans></f_old_trans> | ||
2374 | <f_translation> | ||
2375 | 미디어 URL: | ||
2376 | </f_translation> | ||
2377 | </string><string><a_file>floater_url_entry.xml</a_file> | ||
2378 | <b_path>/url_entry/ok_btn</b_path> | ||
2379 | <c_attribute>label</c_attribute> | ||
2380 | <d_old></d_old> | ||
2381 | <e_new>OK</e_new> | ||
2382 | <f_old_trans></f_old_trans> | ||
2383 | <f_translation>확인</f_translation> | ||
2384 | </string><string><a_file>floater_url_entry.xml</a_file> | ||
2385 | <b_path>/url_entry/cancel_btn</b_path> | ||
2386 | <c_attribute>label</c_attribute> | ||
2387 | <d_old></d_old> | ||
2388 | <e_new>Cancel</e_new> | ||
2389 | <f_old_trans></f_old_trans> | ||
2390 | <f_translation>취소</f_translation> | ||
2391 | </string><string><a_file>floater_url_entry.xml</a_file> | ||
2392 | <b_path>/url_entry/cancel_btn2</b_path> | ||
2393 | <c_attribute>label</c_attribute> | ||
2394 | <d_old></d_old> | ||
2395 | <e_new>Cancel</e_new> | ||
2396 | <f_old_trans></f_old_trans> | ||
2397 | <f_translation>취소</f_translation> | ||
2398 | </string><string><a_file>floater_url_entry.xml</a_file> | ||
2399 | <b_path>/url_entry/clear_btn</b_path> | ||
2400 | <c_attribute>label</c_attribute> | ||
2401 | <d_old></d_old> | ||
2402 | <e_new>Clear</e_new> | ||
2403 | <f_old_trans></f_old_trans> | ||
2404 | <f_translation>취소</f_translation> | ||
2405 | </string><string><a_file>floater_url_entry.xml</a_file> | ||
2406 | <b_path>/url_entry/loading_label</b_path> | ||
2407 | <c_attribute></c_attribute> | ||
2408 | <d_old></d_old> | ||
2409 | <e_new> | ||
2410 | Loading... | ||
2411 | </e_new> | ||
2412 | <f_old_trans></f_old_trans> | ||
2413 | <f_translation> | ||
2414 | 로딩 중... | ||
2415 | </f_translation> | ||
2416 | </string><string><a_file>floater_water.xml</a_file> | ||
2417 | <b_path>/Water Floater</b_path> | ||
2418 | <c_attribute>title</c_attribute> | ||
2419 | <d_old></d_old> | ||
2420 | <e_new>Advanced Water Editor</e_new> | ||
2421 | <f_old_trans></f_old_trans> | ||
2422 | <f_translation> 수면 세부 편집기</f_translation> | ||
2423 | </string><string><a_file>floater_water.xml</a_file> | ||
2424 | <b_path>/Water Floater/KeyFramePresetsText</b_path> | ||
2425 | <c_attribute></c_attribute> | ||
2426 | <d_old></d_old> | ||
2427 | <e_new> | ||
2428 | Water Presets: | ||
2429 | </e_new> | ||
2430 | <f_old_trans></f_old_trans> | ||
2431 | <f_translation> | ||
2432 | 수면 사전 설정: | ||
2433 | </f_translation> | ||
2434 | </string><string><a_file>floater_water.xml</a_file> | ||
2435 | <b_path>/Water Floater/WaterNewPreset</b_path> | ||
2436 | <c_attribute>label</c_attribute> | ||
2437 | <d_old></d_old> | ||
2438 | <e_new>New</e_new> | ||
2439 | <f_old_trans></f_old_trans> | ||
2440 | <f_translation>신규</f_translation> | ||
2441 | </string><string><a_file>floater_water.xml</a_file> | ||
2442 | <b_path>/Water Floater/WaterNewPreset</b_path> | ||
2443 | <c_attribute>label_selected</c_attribute> | ||
2444 | <d_old></d_old> | ||
2445 | <e_new>New</e_new> | ||
2446 | <f_old_trans></f_old_trans> | ||
2447 | <f_translation>신규</f_translation> | ||
2448 | </string><string><a_file>floater_water.xml</a_file> | ||
2449 | <b_path>/Water Floater/WaterSavePreset</b_path> | ||
2450 | <c_attribute>label</c_attribute> | ||
2451 | <d_old></d_old> | ||
2452 | <e_new>Save</e_new> | ||
2453 | <f_old_trans></f_old_trans> | ||
2454 | <f_translation>저장</f_translation> | ||
2455 | </string><string><a_file>floater_water.xml</a_file> | ||
2456 | <b_path>/Water Floater/WaterSavePreset</b_path> | ||
2457 | <c_attribute>label_selected</c_attribute> | ||
2458 | <d_old></d_old> | ||
2459 | <e_new>Save</e_new> | ||
2460 | <f_old_trans></f_old_trans> | ||
2461 | <f_translation>저장</f_translation> | ||
2462 | </string><string><a_file>floater_water.xml</a_file> | ||
2463 | <b_path>/Water Floater/WaterDeletePreset</b_path> | ||
2464 | <c_attribute>label</c_attribute> | ||
2465 | <d_old></d_old> | ||
2466 | <e_new>Delete</e_new> | ||
2467 | <f_old_trans></f_old_trans> | ||
2468 | <f_translation>삭제</f_translation> | ||
2469 | </string><string><a_file>floater_water.xml</a_file> | ||
2470 | <b_path>/Water Floater/WaterDeletePreset</b_path> | ||
2471 | <c_attribute>label_selected</c_attribute> | ||
2472 | <d_old></d_old> | ||
2473 | <e_new>Delete</e_new> | ||
2474 | <f_old_trans></f_old_trans> | ||
2475 | <f_translation>삭제</f_translation> | ||
2476 | </string><string><a_file>floater_water.xml</a_file> | ||
2477 | <b_path>/Water Floater/Water Tabs/Settings</b_path> | ||
2478 | <c_attribute>label</c_attribute> | ||
2479 | <d_old></d_old> | ||
2480 | <e_new>Settings</e_new> | ||
2481 | <f_old_trans></f_old_trans> | ||
2482 | <f_translation>설정</f_translation> | ||
2483 | </string><string><a_file>floater_water.xml</a_file> | ||
2484 | <b_path>/Water Floater/Water Tabs/Settings/BHText</b_path> | ||
2485 | <c_attribute></c_attribute> | ||
2486 | <d_old></d_old> | ||
2487 | <e_new> | ||
2488 | Water Fog Color | ||
2489 | </e_new> | ||
2490 | <f_old_trans></f_old_trans> | ||
2491 | <f_translation> | ||
2492 | 물안개 색상 | ||
2493 | </f_translation> | ||
2494 | </string><string><a_file>floater_water.xml</a_file> | ||
2495 | <b_path>/Water Floater/Water Tabs/Settings/WaterFogColorHelp</b_path> | ||
2496 | <c_attribute>label</c_attribute> | ||
2497 | <d_old></d_old> | ||
2498 | <e_new>?</e_new> | ||
2499 | <f_old_trans></f_old_trans> | ||
2500 | <f_translation>?</f_translation> | ||
2501 | </string><string><a_file>floater_water.xml</a_file> | ||
2502 | <b_path>/Water Floater/Water Tabs/Settings/WaterFogColor</b_path> | ||
2503 | <c_attribute>label</c_attribute> | ||
2504 | <d_old></d_old> | ||
2505 | <e_new></e_new> | ||
2506 | <f_old_trans></f_old_trans> | ||
2507 | <f_translation></f_translation> | ||
2508 | </string><string><a_file>floater_water.xml</a_file> | ||
2509 | <b_path>/Water Floater/Water Tabs/Settings/WaterFogColor</b_path> | ||
2510 | <c_attribute>tool_tip</c_attribute> | ||
2511 | <d_old></d_old> | ||
2512 | <e_new>Click to open Color Picker</e_new> | ||
2513 | <f_old_trans></f_old_trans> | ||
2514 | <f_translation>색상 선택기를 열려면 클릭하십시오.</f_translation> | ||
2515 | </string><string><a_file>floater_water.xml</a_file> | ||
2516 | <b_path>/Water Floater/Water Tabs/Settings/WaterFogDensText</b_path> | ||
2517 | <c_attribute></c_attribute> | ||
2518 | <d_old></d_old> | ||
2519 | <e_new> | ||
2520 | Fog Density Exponent | ||
2521 | </e_new> | ||
2522 | <f_old_trans></f_old_trans> | ||
2523 | <f_translation> | ||
2524 | 안개 농도 지수 | ||
2525 | </f_translation> | ||
2526 | </string><string><a_file>floater_water.xml</a_file> | ||
2527 | <b_path>/Water Floater/Water Tabs/Settings/WaterFogDensityHelp</b_path> | ||
2528 | <c_attribute>label</c_attribute> | ||
2529 | <d_old></d_old> | ||
2530 | <e_new>?</e_new> | ||
2531 | <f_old_trans></f_old_trans> | ||
2532 | <f_translation>?</f_translation> | ||
2533 | </string><string><a_file>floater_water.xml</a_file> | ||
2534 | <b_path>/Water Floater/Water Tabs/Settings/WaterFogDensity</b_path> | ||
2535 | <c_attribute>label</c_attribute> | ||
2536 | <d_old></d_old> | ||
2537 | <e_new></e_new> | ||
2538 | <f_old_trans></f_old_trans> | ||
2539 | <f_translation></f_translation> | ||
2540 | </string><string><a_file>floater_water.xml</a_file> | ||
2541 | <b_path>/Water Floater/Water Tabs/Settings/WaterUnderWaterFogModText</b_path> | ||
2542 | <c_attribute></c_attribute> | ||
2543 | <d_old></d_old> | ||
2544 | <e_new> | ||
2545 | Underwater Fog Modifier | ||
2546 | </e_new> | ||
2547 | <f_old_trans></f_old_trans> | ||
2548 | <f_translation> | ||
2549 | 수중 안개 수정기 | ||
2550 | </f_translation> | ||
2551 | </string><string><a_file>floater_water.xml</a_file> | ||
2552 | <b_path>/Water Floater/Water Tabs/Settings/WaterUnderWaterFogModHelp</b_path> | ||
2553 | <c_attribute>label</c_attribute> | ||
2554 | <d_old></d_old> | ||
2555 | <e_new>?</e_new> | ||
2556 | <f_old_trans></f_old_trans> | ||
2557 | <f_translation>?</f_translation> | ||
2558 | </string><string><a_file>floater_water.xml</a_file> | ||
2559 | <b_path>/Water Floater/Water Tabs/Settings/WaterUnderWaterFogMod</b_path> | ||
2560 | <c_attribute>label</c_attribute> | ||
2561 | <d_old></d_old> | ||
2562 | <e_new></e_new> | ||
2563 | <f_old_trans></f_old_trans> | ||
2564 | <f_translation></f_translation> | ||
2565 | </string><string><a_file>floater_water.xml</a_file> | ||
2566 | <b_path>/Water Floater/Water Tabs/Settings/BDensText</b_path> | ||
2567 | <c_attribute></c_attribute> | ||
2568 | <d_old></d_old> | ||
2569 | <e_new> | ||
2570 | Reflection Wavelet Scale | ||
2571 | </e_new> | ||
2572 | <f_old_trans></f_old_trans> | ||
2573 | <f_translation> | ||
2574 | 반사 잔물결 크기 | ||
2575 | </f_translation> | ||
2576 | </string><string><a_file>floater_water.xml</a_file> | ||
2577 | <b_path>/Water Floater/Water Tabs/Settings/WaterNormalScaleHelp</b_path> | ||
2578 | <c_attribute>label</c_attribute> | ||
2579 | <d_old></d_old> | ||
2580 | <e_new>?</e_new> | ||
2581 | <f_old_trans></f_old_trans> | ||
2582 | <f_translation>?</f_translation> | ||
2583 | </string><string><a_file>floater_water.xml</a_file> | ||
2584 | <b_path>/Water Floater/Water Tabs/Settings/BHText2</b_path> | ||
2585 | <c_attribute></c_attribute> | ||
2586 | <d_old></d_old> | ||
2587 | <e_new> | ||
2588 | 1 | ||
2589 | </e_new> | ||
2590 | <f_old_trans></f_old_trans> | ||
2591 | <f_translation> | ||
2592 | 1 | ||
2593 | </f_translation> | ||
2594 | </string><string><a_file>floater_water.xml</a_file> | ||
2595 | <b_path>/Water Floater/Water Tabs/Settings/BHText3</b_path> | ||
2596 | <c_attribute></c_attribute> | ||
2597 | <d_old></d_old> | ||
2598 | <e_new> | ||
2599 | 2 | ||
2600 | </e_new> | ||
2601 | <f_old_trans></f_old_trans> | ||
2602 | <f_translation> | ||
2603 | 2 | ||
2604 | </f_translation> | ||
2605 | </string><string><a_file>floater_water.xml</a_file> | ||
2606 | <b_path>/Water Floater/Water Tabs/Settings/BHText4</b_path> | ||
2607 | <c_attribute></c_attribute> | ||
2608 | <d_old></d_old> | ||
2609 | <e_new> | ||
2610 | 3 | ||
2611 | </e_new> | ||
2612 | <f_old_trans></f_old_trans> | ||
2613 | <f_translation> | ||
2614 | 3 | ||
2615 | </f_translation> | ||
2616 | </string><string><a_file>floater_water.xml</a_file> | ||
2617 | <b_path>/Water Floater/Water Tabs/Settings/WaterNormalScaleX</b_path> | ||
2618 | <c_attribute>label</c_attribute> | ||
2619 | <d_old></d_old> | ||
2620 | <e_new></e_new> | ||
2621 | <f_old_trans></f_old_trans> | ||
2622 | <f_translation></f_translation> | ||
2623 | </string><string><a_file>floater_water.xml</a_file> | ||
2624 | <b_path>/Water Floater/Water Tabs/Settings/WaterNormalScaleY</b_path> | ||
2625 | <c_attribute>label</c_attribute> | ||
2626 | <d_old></d_old> | ||
2627 | <e_new></e_new> | ||
2628 | <f_old_trans></f_old_trans> | ||
2629 | <f_translation></f_translation> | ||
2630 | </string><string><a_file>floater_water.xml</a_file> | ||
2631 | <b_path>/Water Floater/Water Tabs/Settings/WaterNormalScaleZ</b_path> | ||
2632 | <c_attribute>label</c_attribute> | ||
2633 | <d_old></d_old> | ||
2634 | <e_new></e_new> | ||
2635 | <f_old_trans></f_old_trans> | ||
2636 | <f_translation></f_translation> | ||
2637 | </string><string><a_file>floater_water.xml</a_file> | ||
2638 | <b_path>/Water Floater/Water Tabs/Settings/HDText</b_path> | ||
2639 | <c_attribute></c_attribute> | ||
2640 | <d_old></d_old> | ||
2641 | <e_new> | ||
2642 | Fresnel Scale | ||
2643 | </e_new> | ||
2644 | <f_old_trans></f_old_trans> | ||
2645 | <f_translation> | ||
2646 | 진동 크기 | ||
2647 | </f_translation> | ||
2648 | </string><string><a_file>floater_water.xml</a_file> | ||
2649 | <b_path>/Water Floater/Water Tabs/Settings/WaterFresnelScaleHelp</b_path> | ||
2650 | <c_attribute>label</c_attribute> | ||
2651 | <d_old></d_old> | ||
2652 | <e_new>?</e_new> | ||
2653 | <f_old_trans></f_old_trans> | ||
2654 | <f_translation>?</f_translation> | ||
2655 | </string><string><a_file>floater_water.xml</a_file> | ||
2656 | <b_path>/Water Floater/Water Tabs/Settings/WaterFresnelScale</b_path> | ||
2657 | <c_attribute>label</c_attribute> | ||
2658 | <d_old></d_old> | ||
2659 | <e_new></e_new> | ||
2660 | <f_old_trans></f_old_trans> | ||
2661 | <f_translation></f_translation> | ||
2662 | </string><string><a_file>floater_water.xml</a_file> | ||
2663 | <b_path>/Water Floater/Water Tabs/Settings/FresnelOffsetText</b_path> | ||
2664 | <c_attribute></c_attribute> | ||
2665 | <d_old></d_old> | ||
2666 | <e_new> | ||
2667 | Fresnel Offset | ||
2668 | </e_new> | ||
2669 | <f_old_trans></f_old_trans> | ||
2670 | <f_translation> | ||
2671 | 진동 상쇄 | ||
2672 | </f_translation> | ||
2673 | </string><string><a_file>floater_water.xml</a_file> | ||
2674 | <b_path>/Water Floater/Water Tabs/Settings/WaterFresnelOffsetHelp</b_path> | ||
2675 | <c_attribute>label</c_attribute> | ||
2676 | <d_old></d_old> | ||
2677 | <e_new>?</e_new> | ||
2678 | <f_old_trans></f_old_trans> | ||
2679 | <f_translation>?</f_translation> | ||
2680 | </string><string><a_file>floater_water.xml</a_file> | ||
2681 | <b_path>/Water Floater/Water Tabs/Settings/WaterFresnelOffset</b_path> | ||
2682 | <c_attribute>label</c_attribute> | ||
2683 | <d_old></d_old> | ||
2684 | <e_new></e_new> | ||
2685 | <f_old_trans></f_old_trans> | ||
2686 | <f_translation></f_translation> | ||
2687 | </string><string><a_file>floater_water.xml</a_file> | ||
2688 | <b_path>/Water Floater/Water Tabs/Settings/DensMultText</b_path> | ||
2689 | <c_attribute></c_attribute> | ||
2690 | <d_old></d_old> | ||
2691 | <e_new> | ||
2692 | Refract Scale Above | ||
2693 | </e_new> | ||
2694 | <f_old_trans></f_old_trans> | ||
2695 | <f_translation> | ||
2696 | 다음 크기 이상으로 굴절 | ||
2697 | </f_translation> | ||
2698 | </string><string><a_file>floater_water.xml</a_file> | ||
2699 | <b_path>/Water Floater/Water Tabs/Settings/WaterScaleAboveHelp</b_path> | ||
2700 | <c_attribute>label</c_attribute> | ||
2701 | <d_old></d_old> | ||
2702 | <e_new>?</e_new> | ||
2703 | <f_old_trans></f_old_trans> | ||
2704 | <f_translation>?</f_translation> | ||
2705 | </string><string><a_file>floater_water.xml</a_file> | ||
2706 | <b_path>/Water Floater/Water Tabs/Settings/WaterScaleAbove</b_path> | ||
2707 | <c_attribute>label</c_attribute> | ||
2708 | <d_old></d_old> | ||
2709 | <e_new></e_new> | ||
2710 | <f_old_trans></f_old_trans> | ||
2711 | <f_translation></f_translation> | ||
2712 | </string><string><a_file>floater_water.xml</a_file> | ||
2713 | <b_path>/Water Floater/Water Tabs/Settings/WaterScaleBelowText</b_path> | ||
2714 | <c_attribute></c_attribute> | ||
2715 | <d_old></d_old> | ||
2716 | <e_new> | ||
2717 | Refract Scale Below | ||
2718 | </e_new> | ||
2719 | <f_old_trans></f_old_trans> | ||
2720 | <f_translation> | ||
2721 | 다음 크기 미만으로 굴절 | ||
2722 | </f_translation> | ||
2723 | </string><string><a_file>floater_water.xml</a_file> | ||
2724 | <b_path>/Water Floater/Water Tabs/Settings/WaterScaleBelowHelp</b_path> | ||
2725 | <c_attribute>label</c_attribute> | ||
2726 | <d_old></d_old> | ||
2727 | <e_new>?</e_new> | ||
2728 | <f_old_trans></f_old_trans> | ||
2729 | <f_translation>?</f_translation> | ||
2730 | </string><string><a_file>floater_water.xml</a_file> | ||
2731 | <b_path>/Water Floater/Water Tabs/Settings/WaterScaleBelow</b_path> | ||
2732 | <c_attribute>label</c_attribute> | ||
2733 | <d_old></d_old> | ||
2734 | <e_new></e_new> | ||
2735 | <f_old_trans></f_old_trans> | ||
2736 | <f_translation></f_translation> | ||
2737 | </string><string><a_file>floater_water.xml</a_file> | ||
2738 | <b_path>/Water Floater/Water Tabs/Settings/MaxAltText</b_path> | ||
2739 | <c_attribute></c_attribute> | ||
2740 | <d_old></d_old> | ||
2741 | <e_new> | ||
2742 | Blur Multiplier | ||
2743 | </e_new> | ||
2744 | <f_old_trans></f_old_trans> | ||
2745 | <f_translation> | ||
2746 | 흐림 강도 | ||
2747 | </f_translation> | ||
2748 | </string><string><a_file>floater_water.xml</a_file> | ||
2749 | <b_path>/Water Floater/Water Tabs/Settings/WaterBlurMultiplierHelp</b_path> | ||
2750 | <c_attribute>label</c_attribute> | ||
2751 | <d_old></d_old> | ||
2752 | <e_new>?</e_new> | ||
2753 | <f_old_trans></f_old_trans> | ||
2754 | <f_translation>?</f_translation> | ||
2755 | </string><string><a_file>floater_water.xml</a_file> | ||
2756 | <b_path>/Water Floater/Water Tabs/Settings/WaterBlurMult</b_path> | ||
2757 | <c_attribute>label</c_attribute> | ||
2758 | <d_old></d_old> | ||
2759 | <e_new></e_new> | ||
2760 | <f_old_trans></f_old_trans> | ||
2761 | <f_translation></f_translation> | ||
2762 | </string><string><a_file>floater_water.xml</a_file> | ||
2763 | <b_path>/Water Floater/Water Tabs/Waves</b_path> | ||
2764 | <c_attribute>label</c_attribute> | ||
2765 | <d_old></d_old> | ||
2766 | <e_new>Image</e_new> | ||
2767 | <f_old_trans></f_old_trans> | ||
2768 | <f_translation>이미지</f_translation> | ||
2769 | </string><string><a_file>floater_water.xml</a_file> | ||
2770 | <b_path>/Water Floater/Water Tabs/Waves/BHText</b_path> | ||
2771 | <c_attribute></c_attribute> | ||
2772 | <d_old></d_old> | ||
2773 | <e_new> | ||
2774 | Big Wave Direction | ||
2775 | </e_new> | ||
2776 | <f_old_trans></f_old_trans> | ||
2777 | <f_translation> | ||
2778 | 큰 물결 방향 | ||
2779 | </f_translation> | ||
2780 | </string><string><a_file>floater_water.xml</a_file> | ||
2781 | <b_path>/Water Floater/Water Tabs/Waves/WaterWave1Help</b_path> | ||
2782 | <c_attribute>label</c_attribute> | ||
2783 | <d_old></d_old> | ||
2784 | <e_new>?</e_new> | ||
2785 | <f_old_trans></f_old_trans> | ||
2786 | <f_translation>?</f_translation> | ||
2787 | </string><string><a_file>floater_water.xml</a_file> | ||
2788 | <b_path>/Water Floater/Water Tabs/Waves/WaterWave1DirXText</b_path> | ||
2789 | <c_attribute></c_attribute> | ||
2790 | <d_old></d_old> | ||
2791 | <e_new> | ||
2792 | X | ||
2793 | </e_new> | ||
2794 | <f_old_trans></f_old_trans> | ||
2795 | <f_translation> | ||
2796 | X | ||
2797 | </f_translation> | ||
2798 | </string><string><a_file>floater_water.xml</a_file> | ||
2799 | <b_path>/Water Floater/Water Tabs/Waves/WaterWave1DirYText</b_path> | ||
2800 | <c_attribute></c_attribute> | ||
2801 | <d_old></d_old> | ||
2802 | <e_new> | ||
2803 | Y | ||
2804 | </e_new> | ||
2805 | <f_old_trans></f_old_trans> | ||
2806 | <f_translation> | ||
2807 | Y | ||
2808 | </f_translation> | ||
2809 | </string><string><a_file>floater_water.xml</a_file> | ||
2810 | <b_path>/Water Floater/Water Tabs/Waves/WaterWave1DirX</b_path> | ||
2811 | <c_attribute>label</c_attribute> | ||
2812 | <d_old></d_old> | ||
2813 | <e_new></e_new> | ||
2814 | <f_old_trans></f_old_trans> | ||
2815 | <f_translation></f_translation> | ||
2816 | </string><string><a_file>floater_water.xml</a_file> | ||
2817 | <b_path>/Water Floater/Water Tabs/Waves/WaterWave1DirY</b_path> | ||
2818 | <c_attribute>label</c_attribute> | ||
2819 | <d_old></d_old> | ||
2820 | <e_new></e_new> | ||
2821 | <f_old_trans></f_old_trans> | ||
2822 | <f_translation></f_translation> | ||
2823 | </string><string><a_file>floater_water.xml</a_file> | ||
2824 | <b_path>/Water Floater/Water Tabs/Waves/BHText2</b_path> | ||
2825 | <c_attribute></c_attribute> | ||
2826 | <d_old></d_old> | ||
2827 | <e_new> | ||
2828 | Little Wave Direction | ||
2829 | </e_new> | ||
2830 | <f_old_trans></f_old_trans> | ||
2831 | <f_translation> | ||
2832 | 작은 물결 방향 | ||
2833 | </f_translation> | ||
2834 | </string><string><a_file>floater_water.xml</a_file> | ||
2835 | <b_path>/Water Floater/Water Tabs/Waves/WaterWave2Help</b_path> | ||
2836 | <c_attribute>label</c_attribute> | ||
2837 | <d_old></d_old> | ||
2838 | <e_new>?</e_new> | ||
2839 | <f_old_trans></f_old_trans> | ||
2840 | <f_translation>?</f_translation> | ||
2841 | </string><string><a_file>floater_water.xml</a_file> | ||
2842 | <b_path>/Water Floater/Water Tabs/Waves/WaterWave2DirXText</b_path> | ||
2843 | <c_attribute></c_attribute> | ||
2844 | <d_old></d_old> | ||
2845 | <e_new> | ||
2846 | X | ||
2847 | </e_new> | ||
2848 | <f_old_trans></f_old_trans> | ||
2849 | <f_translation> | ||
2850 | X | ||
2851 | </f_translation> | ||
2852 | </string><string><a_file>floater_water.xml</a_file> | ||
2853 | <b_path>/Water Floater/Water Tabs/Waves/WaterWave2DirYText</b_path> | ||
2854 | <c_attribute></c_attribute> | ||
2855 | <d_old></d_old> | ||
2856 | <e_new> | ||
2857 | Y | ||
2858 | </e_new> | ||
2859 | <f_old_trans></f_old_trans> | ||
2860 | <f_translation> | ||
2861 | Y | ||
2862 | </f_translation> | ||
2863 | </string><string><a_file>floater_water.xml</a_file> | ||
2864 | <b_path>/Water Floater/Water Tabs/Waves/WaterWave2DirX</b_path> | ||
2865 | <c_attribute>label</c_attribute> | ||
2866 | <d_old></d_old> | ||
2867 | <e_new></e_new> | ||
2868 | <f_old_trans></f_old_trans> | ||
2869 | <f_translation></f_translation> | ||
2870 | </string><string><a_file>floater_water.xml</a_file> | ||
2871 | <b_path>/Water Floater/Water Tabs/Waves/WaterWave2DirY</b_path> | ||
2872 | <c_attribute>label</c_attribute> | ||
2873 | <d_old></d_old> | ||
2874 | <e_new></e_new> | ||
2875 | <f_old_trans></f_old_trans> | ||
2876 | <f_translation></f_translation> | ||
2877 | </string><string><a_file>floater_water.xml</a_file> | ||
2878 | <b_path>/Water Floater/Water Tabs/Waves/BHText3</b_path> | ||
2879 | <c_attribute></c_attribute> | ||
2880 | <d_old></d_old> | ||
2881 | <e_new> | ||
2882 | Normal Map | ||
2883 | </e_new> | ||
2884 | <f_old_trans></f_old_trans> | ||
2885 | <f_translation> | ||
2886 | 일반 맵 | ||
2887 | </f_translation> | ||
2888 | </string><string><a_file>floater_water.xml</a_file> | ||
2889 | <b_path>/Water Floater/Water Tabs/Waves/WaterNormalMapHelp</b_path> | ||
2890 | <c_attribute>label</c_attribute> | ||
2891 | <d_old></d_old> | ||
2892 | <e_new>?</e_new> | ||
2893 | <f_old_trans></f_old_trans> | ||
2894 | <f_translation>?</f_translation> | ||
2895 | </string><string><a_file>floater_water.xml</a_file> | ||
2896 | <b_path>/Water Floater/Water Tabs/Waves/WaterNormalMap</b_path> | ||
2897 | <c_attribute>label</c_attribute> | ||
2898 | <d_old></d_old> | ||
2899 | <e_new></e_new> | ||
2900 | <f_old_trans></f_old_trans> | ||
2901 | <f_translation></f_translation> | ||
2902 | </string><string><a_file>floater_water.xml</a_file> | ||
2903 | <b_path>/Water Floater/WLDefaultWaterNames</b_path> | ||
2904 | <c_attribute></c_attribute> | ||
2905 | <d_old></d_old> | ||
2906 | <e_new> | ||
2907 | Default:Glassy:Pond:Murky:Second Plague:SNAKE!!!:Valdez | ||
2908 | </e_new> | ||
2909 | <f_old_trans></f_old_trans> | ||
2910 | <f_translation> | ||
2911 | Default:Glassy:Pond:Murky:Second Plague:SNAKE!!!:Valdez | ||
2912 | </f_translation> | ||
2913 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
2914 | <b_path>/WindLight floater</b_path> | ||
260 | <c_attribute>title</c_attribute> | 2915 | <c_attribute>title</c_attribute> |
261 | <d_old></d_old> | 2916 | <d_old></d_old> |
262 | <e_new> </e_new> | 2917 | <e_new>Advanced Sky Editor</e_new> |
2918 | <f_old_trans></f_old_trans> | ||
2919 | <f_translation> 하늘 세부 편집기</f_translation> | ||
2920 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
2921 | <b_path>/WindLight floater/KeyFramePresetsText</b_path> | ||
2922 | <c_attribute></c_attribute> | ||
2923 | <d_old></d_old> | ||
2924 | <e_new> | ||
2925 | Sky Presets: | ||
2926 | </e_new> | ||
2927 | <f_old_trans></f_old_trans> | ||
2928 | <f_translation> | ||
2929 | 하늘 사전 설정: | ||
2930 | </f_translation> | ||
2931 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
2932 | <b_path>/WindLight floater/WLNewPreset</b_path> | ||
2933 | <c_attribute>label</c_attribute> | ||
2934 | <d_old></d_old> | ||
2935 | <e_new>New</e_new> | ||
2936 | <f_old_trans></f_old_trans> | ||
2937 | <f_translation>신규</f_translation> | ||
2938 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
2939 | <b_path>/WindLight floater/WLNewPreset</b_path> | ||
2940 | <c_attribute>label_selected</c_attribute> | ||
2941 | <d_old></d_old> | ||
2942 | <e_new>New</e_new> | ||
2943 | <f_old_trans></f_old_trans> | ||
2944 | <f_translation>신규</f_translation> | ||
2945 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
2946 | <b_path>/WindLight floater/WLSavePreset</b_path> | ||
2947 | <c_attribute>label</c_attribute> | ||
2948 | <d_old></d_old> | ||
2949 | <e_new>Save</e_new> | ||
2950 | <f_old_trans></f_old_trans> | ||
2951 | <f_translation>저장</f_translation> | ||
2952 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
2953 | <b_path>/WindLight floater/WLSavePreset</b_path> | ||
2954 | <c_attribute>label_selected</c_attribute> | ||
2955 | <d_old></d_old> | ||
2956 | <e_new>Save</e_new> | ||
2957 | <f_old_trans></f_old_trans> | ||
2958 | <f_translation>저장</f_translation> | ||
2959 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
2960 | <b_path>/WindLight floater/WLDeletePreset</b_path> | ||
2961 | <c_attribute>label</c_attribute> | ||
2962 | <d_old></d_old> | ||
2963 | <e_new>Delete</e_new> | ||
2964 | <f_old_trans></f_old_trans> | ||
2965 | <f_translation>삭제</f_translation> | ||
2966 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
2967 | <b_path>/WindLight floater/WLDeletePreset</b_path> | ||
2968 | <c_attribute>label_selected</c_attribute> | ||
2969 | <d_old></d_old> | ||
2970 | <e_new>Delete</e_new> | ||
2971 | <f_old_trans></f_old_trans> | ||
2972 | <f_translation>삭제</f_translation> | ||
2973 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
2974 | <b_path>/WindLight floater/WLDayCycleMenuButton</b_path> | ||
2975 | <c_attribute>label</c_attribute> | ||
2976 | <d_old></d_old> | ||
2977 | <e_new>Day Cycle Editor</e_new> | ||
2978 | <f_old_trans></f_old_trans> | ||
2979 | <f_translation>날짜 주기 편집기</f_translation> | ||
2980 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
2981 | <b_path>/WindLight floater/WLDayCycleMenuButton</b_path> | ||
2982 | <c_attribute>label_selected</c_attribute> | ||
2983 | <d_old></d_old> | ||
2984 | <e_new>Day Cycle Editor</e_new> | ||
2985 | <f_old_trans></f_old_trans> | ||
2986 | <f_translation>날짜 주기 편집기</f_translation> | ||
2987 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
2988 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere</b_path> | ||
2989 | <c_attribute>label</c_attribute> | ||
2990 | <d_old></d_old> | ||
2991 | <e_new>Atmosphere</e_new> | ||
2992 | <f_old_trans></f_old_trans> | ||
2993 | <f_translation>대기</f_translation> | ||
2994 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
2995 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/BHText</b_path> | ||
2996 | <c_attribute></c_attribute> | ||
2997 | <d_old></d_old> | ||
2998 | <e_new> | ||
2999 | Blue Horizon | ||
3000 | </e_new> | ||
3001 | <f_old_trans></f_old_trans> | ||
3002 | <f_translation> | ||
3003 | 파란 수평선 | ||
3004 | </f_translation> | ||
3005 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3006 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/WLBlueHorizonHelp</b_path> | ||
3007 | <c_attribute>label</c_attribute> | ||
3008 | <d_old></d_old> | ||
3009 | <e_new>?</e_new> | ||
3010 | <f_old_trans></f_old_trans> | ||
3011 | <f_translation>?</f_translation> | ||
3012 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3013 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/BHText2</b_path> | ||
3014 | <c_attribute></c_attribute> | ||
3015 | <d_old></d_old> | ||
3016 | <e_new> | ||
3017 | R | ||
3018 | </e_new> | ||
3019 | <f_old_trans></f_old_trans> | ||
3020 | <f_translation> | ||
3021 | R | ||
3022 | </f_translation> | ||
3023 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3024 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/BHText3</b_path> | ||
3025 | <c_attribute></c_attribute> | ||
3026 | <d_old></d_old> | ||
3027 | <e_new> | ||
3028 | G | ||
3029 | </e_new> | ||
3030 | <f_old_trans></f_old_trans> | ||
3031 | <f_translation> | ||
3032 | G | ||
3033 | </f_translation> | ||
3034 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3035 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/BHText4</b_path> | ||
3036 | <c_attribute></c_attribute> | ||
3037 | <d_old></d_old> | ||
3038 | <e_new> | ||
3039 | B | ||
3040 | </e_new> | ||
3041 | <f_old_trans></f_old_trans> | ||
3042 | <f_translation> | ||
3043 | B | ||
3044 | </f_translation> | ||
3045 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3046 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/BHText5</b_path> | ||
3047 | <c_attribute></c_attribute> | ||
3048 | <d_old></d_old> | ||
3049 | <e_new> | ||
3050 | I | ||
3051 | </e_new> | ||
3052 | <f_old_trans></f_old_trans> | ||
3053 | <f_translation> | ||
3054 | I | ||
3055 | </f_translation> | ||
3056 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3057 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/WLBlueHorizonR</b_path> | ||
3058 | <c_attribute>label</c_attribute> | ||
3059 | <d_old></d_old> | ||
3060 | <e_new></e_new> | ||
3061 | <f_old_trans></f_old_trans> | ||
3062 | <f_translation></f_translation> | ||
3063 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3064 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/WLBlueHorizonG</b_path> | ||
3065 | <c_attribute>label</c_attribute> | ||
3066 | <d_old></d_old> | ||
3067 | <e_new></e_new> | ||
3068 | <f_old_trans></f_old_trans> | ||
3069 | <f_translation></f_translation> | ||
3070 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3071 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/WLBlueHorizonB</b_path> | ||
3072 | <c_attribute>label</c_attribute> | ||
3073 | <d_old></d_old> | ||
3074 | <e_new></e_new> | ||
3075 | <f_old_trans></f_old_trans> | ||
3076 | <f_translation></f_translation> | ||
3077 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3078 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/WLBlueHorizonI</b_path> | ||
3079 | <c_attribute>label</c_attribute> | ||
3080 | <d_old></d_old> | ||
3081 | <e_new></e_new> | ||
3082 | <f_old_trans></f_old_trans> | ||
3083 | <f_translation></f_translation> | ||
3084 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3085 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/BDensText</b_path> | ||
3086 | <c_attribute></c_attribute> | ||
3087 | <d_old></d_old> | ||
3088 | <e_new> | ||
3089 | Haze Horizon | ||
3090 | </e_new> | ||
3091 | <f_old_trans></f_old_trans> | ||
3092 | <f_translation> | ||
3093 | 헤이즈 수평선 | ||
3094 | </f_translation> | ||
3095 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3096 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/WLHazeHorizonHelp</b_path> | ||
3097 | <c_attribute>label</c_attribute> | ||
3098 | <d_old></d_old> | ||
3099 | <e_new>?</e_new> | ||
3100 | <f_old_trans></f_old_trans> | ||
3101 | <f_translation>?</f_translation> | ||
3102 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3103 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/WLHazeHorizon</b_path> | ||
3104 | <c_attribute>label</c_attribute> | ||
3105 | <d_old></d_old> | ||
3106 | <e_new></e_new> | ||
3107 | <f_old_trans></f_old_trans> | ||
3108 | <f_translation></f_translation> | ||
3109 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3110 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/BDensText2</b_path> | ||
3111 | <c_attribute></c_attribute> | ||
3112 | <d_old></d_old> | ||
3113 | <e_new> | ||
3114 | Blue Density | ||
3115 | </e_new> | ||
3116 | <f_old_trans></f_old_trans> | ||
3117 | <f_translation> | ||
3118 | 파란색 농도 | ||
3119 | </f_translation> | ||
3120 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3121 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/WLBlueDensityHelp</b_path> | ||
3122 | <c_attribute>label</c_attribute> | ||
3123 | <d_old></d_old> | ||
3124 | <e_new>?</e_new> | ||
3125 | <f_old_trans></f_old_trans> | ||
3126 | <f_translation>?</f_translation> | ||
3127 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3128 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/BHText6</b_path> | ||
3129 | <c_attribute></c_attribute> | ||
3130 | <d_old></d_old> | ||
3131 | <e_new> | ||
3132 | R | ||
3133 | </e_new> | ||
3134 | <f_old_trans></f_old_trans> | ||
3135 | <f_translation> | ||
3136 | R | ||
3137 | </f_translation> | ||
3138 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3139 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/BHText7</b_path> | ||
3140 | <c_attribute></c_attribute> | ||
3141 | <d_old></d_old> | ||
3142 | <e_new> | ||
3143 | G | ||
3144 | </e_new> | ||
3145 | <f_old_trans></f_old_trans> | ||
3146 | <f_translation> | ||
3147 | G | ||
3148 | </f_translation> | ||
3149 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3150 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/BHText8</b_path> | ||
3151 | <c_attribute></c_attribute> | ||
3152 | <d_old></d_old> | ||
3153 | <e_new> | ||
3154 | B | ||
3155 | </e_new> | ||
3156 | <f_old_trans></f_old_trans> | ||
3157 | <f_translation> | ||
3158 | B | ||
3159 | </f_translation> | ||
3160 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3161 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/BHText9</b_path> | ||
3162 | <c_attribute></c_attribute> | ||
3163 | <d_old></d_old> | ||
3164 | <e_new> | ||
3165 | I | ||
3166 | </e_new> | ||
3167 | <f_old_trans></f_old_trans> | ||
3168 | <f_translation> | ||
3169 | I | ||
3170 | </f_translation> | ||
3171 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3172 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/WLBlueDensityR</b_path> | ||
3173 | <c_attribute>label</c_attribute> | ||
3174 | <d_old></d_old> | ||
3175 | <e_new></e_new> | ||
3176 | <f_old_trans></f_old_trans> | ||
3177 | <f_translation></f_translation> | ||
3178 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3179 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/WLBlueDensityG</b_path> | ||
3180 | <c_attribute>label</c_attribute> | ||
3181 | <d_old></d_old> | ||
3182 | <e_new></e_new> | ||
3183 | <f_old_trans></f_old_trans> | ||
3184 | <f_translation></f_translation> | ||
3185 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3186 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/WLBlueDensityB</b_path> | ||
3187 | <c_attribute>label</c_attribute> | ||
3188 | <d_old></d_old> | ||
3189 | <e_new></e_new> | ||
3190 | <f_old_trans></f_old_trans> | ||
3191 | <f_translation></f_translation> | ||
3192 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3193 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/WLBlueDensityI</b_path> | ||
3194 | <c_attribute>label</c_attribute> | ||
3195 | <d_old></d_old> | ||
3196 | <e_new></e_new> | ||
3197 | <f_old_trans></f_old_trans> | ||
3198 | <f_translation></f_translation> | ||
3199 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3200 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/HDText</b_path> | ||
3201 | <c_attribute></c_attribute> | ||
3202 | <d_old></d_old> | ||
3203 | <e_new> | ||
3204 | Haze Density | ||
3205 | </e_new> | ||
3206 | <f_old_trans></f_old_trans> | ||
3207 | <f_translation> | ||
3208 | 헤이즈 농도 | ||
3209 | </f_translation> | ||
3210 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3211 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/WLHazeDensityHelp</b_path> | ||
3212 | <c_attribute>label</c_attribute> | ||
3213 | <d_old></d_old> | ||
3214 | <e_new>?</e_new> | ||
3215 | <f_old_trans></f_old_trans> | ||
3216 | <f_translation>?</f_translation> | ||
3217 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3218 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/WLHazeDensity</b_path> | ||
3219 | <c_attribute>label</c_attribute> | ||
3220 | <d_old></d_old> | ||
3221 | <e_new></e_new> | ||
3222 | <f_old_trans></f_old_trans> | ||
3223 | <f_translation></f_translation> | ||
3224 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3225 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/DensMultText</b_path> | ||
3226 | <c_attribute></c_attribute> | ||
3227 | <d_old></d_old> | ||
3228 | <e_new> | ||
3229 | Density Multiplier | ||
3230 | </e_new> | ||
3231 | <f_old_trans></f_old_trans> | ||
3232 | <f_translation> | ||
3233 | 농도 배율 | ||
3234 | </f_translation> | ||
3235 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3236 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/WLDensityMultHelp</b_path> | ||
3237 | <c_attribute>label</c_attribute> | ||
3238 | <d_old></d_old> | ||
3239 | <e_new>?</e_new> | ||
3240 | <f_old_trans></f_old_trans> | ||
3241 | <f_translation>?</f_translation> | ||
3242 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3243 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/WLDensityMult</b_path> | ||
3244 | <c_attribute>label</c_attribute> | ||
3245 | <d_old></d_old> | ||
3246 | <e_new></e_new> | ||
3247 | <f_old_trans></f_old_trans> | ||
3248 | <f_translation></f_translation> | ||
3249 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3250 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/WLDistanceMultText</b_path> | ||
3251 | <c_attribute></c_attribute> | ||
3252 | <d_old></d_old> | ||
3253 | <e_new> | ||
3254 | Distance Multiplier | ||
3255 | </e_new> | ||
3256 | <f_old_trans></f_old_trans> | ||
3257 | <f_translation> | ||
3258 | 거리 배율 | ||
3259 | </f_translation> | ||
3260 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3261 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/WLDistanceMultHelp</b_path> | ||
3262 | <c_attribute>label</c_attribute> | ||
3263 | <d_old></d_old> | ||
3264 | <e_new>?</e_new> | ||
3265 | <f_old_trans></f_old_trans> | ||
3266 | <f_translation>?</f_translation> | ||
3267 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3268 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/WLDistanceMult</b_path> | ||
3269 | <c_attribute>label</c_attribute> | ||
3270 | <d_old></d_old> | ||
3271 | <e_new></e_new> | ||
3272 | <f_old_trans></f_old_trans> | ||
3273 | <f_translation></f_translation> | ||
3274 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3275 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/MaxAltText</b_path> | ||
3276 | <c_attribute></c_attribute> | ||
3277 | <d_old></d_old> | ||
3278 | <e_new> | ||
3279 | Max Altitude | ||
3280 | </e_new> | ||
3281 | <f_old_trans></f_old_trans> | ||
3282 | <f_translation> | ||
3283 | 최대 고도 | ||
3284 | </f_translation> | ||
3285 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3286 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/WLMaxAltitudeHelp</b_path> | ||
3287 | <c_attribute>label</c_attribute> | ||
3288 | <d_old></d_old> | ||
3289 | <e_new>?</e_new> | ||
3290 | <f_old_trans></f_old_trans> | ||
3291 | <f_translation>?</f_translation> | ||
3292 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3293 | <b_path>/WindLight floater/WindLight Tabs/Atmosphere/WLMaxAltitude</b_path> | ||
3294 | <c_attribute>label</c_attribute> | ||
3295 | <d_old></d_old> | ||
3296 | <e_new></e_new> | ||
3297 | <f_old_trans></f_old_trans> | ||
3298 | <f_translation></f_translation> | ||
3299 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3300 | <b_path>/WindLight floater/WindLight Tabs/Lighting</b_path> | ||
3301 | <c_attribute>label</c_attribute> | ||
3302 | <d_old></d_old> | ||
3303 | <e_new>Lighting</e_new> | ||
3304 | <f_old_trans></f_old_trans> | ||
3305 | <f_translation>조명</f_translation> | ||
3306 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3307 | <b_path>/WindLight floater/WindLight Tabs/Lighting/SLCText</b_path> | ||
3308 | <c_attribute></c_attribute> | ||
3309 | <d_old></d_old> | ||
3310 | <e_new> | ||
3311 | Sun/Moon Color | ||
3312 | </e_new> | ||
3313 | <f_old_trans></f_old_trans> | ||
3314 | <f_translation> | ||
3315 | 태양/달 색상 | ||
3316 | </f_translation> | ||
3317 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3318 | <b_path>/WindLight floater/WindLight Tabs/Lighting/WLSunlightColorHelp</b_path> | ||
3319 | <c_attribute>label</c_attribute> | ||
3320 | <d_old></d_old> | ||
3321 | <e_new>?</e_new> | ||
3322 | <f_old_trans></f_old_trans> | ||
3323 | <f_translation>?</f_translation> | ||
3324 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3325 | <b_path>/WindLight floater/WindLight Tabs/Lighting/BHText</b_path> | ||
3326 | <c_attribute></c_attribute> | ||
3327 | <d_old></d_old> | ||
3328 | <e_new> | ||
3329 | R | ||
3330 | </e_new> | ||
3331 | <f_old_trans></f_old_trans> | ||
3332 | <f_translation> | ||
3333 | R | ||
3334 | </f_translation> | ||
3335 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3336 | <b_path>/WindLight floater/WindLight Tabs/Lighting/BHText2</b_path> | ||
3337 | <c_attribute></c_attribute> | ||
3338 | <d_old></d_old> | ||
3339 | <e_new> | ||
3340 | G | ||
3341 | </e_new> | ||
3342 | <f_old_trans></f_old_trans> | ||
3343 | <f_translation> | ||
3344 | G | ||
3345 | </f_translation> | ||
3346 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3347 | <b_path>/WindLight floater/WindLight Tabs/Lighting/BHText3</b_path> | ||
3348 | <c_attribute></c_attribute> | ||
3349 | <d_old></d_old> | ||
3350 | <e_new> | ||
3351 | B | ||
3352 | </e_new> | ||
3353 | <f_old_trans></f_old_trans> | ||
3354 | <f_translation> | ||
3355 | B | ||
3356 | </f_translation> | ||
3357 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3358 | <b_path>/WindLight floater/WindLight Tabs/Lighting/BHText4</b_path> | ||
3359 | <c_attribute></c_attribute> | ||
3360 | <d_old></d_old> | ||
3361 | <e_new> | ||
3362 | I | ||
3363 | </e_new> | ||
3364 | <f_old_trans></f_old_trans> | ||
3365 | <f_translation> | ||
3366 | I | ||
3367 | </f_translation> | ||
3368 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3369 | <b_path>/WindLight floater/WindLight Tabs/Lighting/WLSunlightR</b_path> | ||
3370 | <c_attribute>label</c_attribute> | ||
3371 | <d_old></d_old> | ||
3372 | <e_new></e_new> | ||
3373 | <f_old_trans></f_old_trans> | ||
3374 | <f_translation></f_translation> | ||
3375 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3376 | <b_path>/WindLight floater/WindLight Tabs/Lighting/WLSunlightG</b_path> | ||
3377 | <c_attribute>label</c_attribute> | ||
3378 | <d_old></d_old> | ||
3379 | <e_new></e_new> | ||
3380 | <f_old_trans></f_old_trans> | ||
3381 | <f_translation></f_translation> | ||
3382 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3383 | <b_path>/WindLight floater/WindLight Tabs/Lighting/WLSunlightB</b_path> | ||
3384 | <c_attribute>label</c_attribute> | ||
3385 | <d_old></d_old> | ||
3386 | <e_new></e_new> | ||
3387 | <f_old_trans></f_old_trans> | ||
3388 | <f_translation></f_translation> | ||
3389 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3390 | <b_path>/WindLight floater/WindLight Tabs/Lighting/WLSunlightI</b_path> | ||
3391 | <c_attribute>label</c_attribute> | ||
3392 | <d_old></d_old> | ||
3393 | <e_new></e_new> | ||
3394 | <f_old_trans></f_old_trans> | ||
3395 | <f_translation></f_translation> | ||
3396 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3397 | <b_path>/WindLight floater/WindLight Tabs/Lighting/TODText</b_path> | ||
3398 | <c_attribute></c_attribute> | ||
3399 | <d_old></d_old> | ||
3400 | <e_new> | ||
3401 | Sun/Moon Position | ||
3402 | </e_new> | ||
3403 | <f_old_trans></f_old_trans> | ||
3404 | <f_translation> | ||
3405 | 태양/달 위치 | ||
3406 | </f_translation> | ||
3407 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3408 | <b_path>/WindLight floater/WindLight Tabs/Lighting/WLTimeOfDayHelp</b_path> | ||
3409 | <c_attribute>label</c_attribute> | ||
3410 | <d_old></d_old> | ||
3411 | <e_new>?</e_new> | ||
3412 | <f_old_trans></f_old_trans> | ||
3413 | <f_translation>?</f_translation> | ||
3414 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3415 | <b_path>/WindLight floater/WindLight Tabs/Lighting/WLSunAngle</b_path> | ||
3416 | <c_attribute>label</c_attribute> | ||
3417 | <d_old></d_old> | ||
3418 | <e_new></e_new> | ||
3419 | <f_old_trans></f_old_trans> | ||
3420 | <f_translation></f_translation> | ||
3421 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3422 | <b_path>/WindLight floater/WindLight Tabs/Lighting/WLAmbientText</b_path> | ||
3423 | <c_attribute></c_attribute> | ||
3424 | <d_old></d_old> | ||
3425 | <e_new> | ||
3426 | Ambient | ||
3427 | </e_new> | ||
3428 | <f_old_trans></f_old_trans> | ||
3429 | <f_translation> | ||
3430 | 주변 | ||
3431 | </f_translation> | ||
3432 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3433 | <b_path>/WindLight floater/WindLight Tabs/Lighting/WLAmbientHelp</b_path> | ||
3434 | <c_attribute>label</c_attribute> | ||
3435 | <d_old></d_old> | ||
3436 | <e_new>?</e_new> | ||
3437 | <f_old_trans></f_old_trans> | ||
3438 | <f_translation>?</f_translation> | ||
3439 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3440 | <b_path>/WindLight floater/WindLight Tabs/Lighting/BHText5</b_path> | ||
3441 | <c_attribute></c_attribute> | ||
3442 | <d_old></d_old> | ||
3443 | <e_new> | ||
3444 | R | ||
3445 | </e_new> | ||
3446 | <f_old_trans></f_old_trans> | ||
3447 | <f_translation> | ||
3448 | R | ||
3449 | </f_translation> | ||
3450 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3451 | <b_path>/WindLight floater/WindLight Tabs/Lighting/BHText6</b_path> | ||
3452 | <c_attribute></c_attribute> | ||
3453 | <d_old></d_old> | ||
3454 | <e_new> | ||
3455 | G | ||
3456 | </e_new> | ||
3457 | <f_old_trans></f_old_trans> | ||
3458 | <f_translation> | ||
3459 | G | ||
3460 | </f_translation> | ||
3461 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3462 | <b_path>/WindLight floater/WindLight Tabs/Lighting/BHText7</b_path> | ||
3463 | <c_attribute></c_attribute> | ||
3464 | <d_old></d_old> | ||
3465 | <e_new> | ||
3466 | B | ||
3467 | </e_new> | ||
3468 | <f_old_trans></f_old_trans> | ||
3469 | <f_translation> | ||
3470 | B | ||
3471 | </f_translation> | ||
3472 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3473 | <b_path>/WindLight floater/WindLight Tabs/Lighting/BHText8</b_path> | ||
3474 | <c_attribute></c_attribute> | ||
3475 | <d_old></d_old> | ||
3476 | <e_new> | ||
3477 | I | ||
3478 | </e_new> | ||
3479 | <f_old_trans></f_old_trans> | ||
3480 | <f_translation> | ||
3481 | I | ||
3482 | </f_translation> | ||
3483 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3484 | <b_path>/WindLight floater/WindLight Tabs/Lighting/WLAmbientR</b_path> | ||
3485 | <c_attribute>label</c_attribute> | ||
3486 | <d_old></d_old> | ||
3487 | <e_new></e_new> | ||
3488 | <f_old_trans></f_old_trans> | ||
3489 | <f_translation></f_translation> | ||
3490 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3491 | <b_path>/WindLight floater/WindLight Tabs/Lighting/WLAmbientG</b_path> | ||
3492 | <c_attribute>label</c_attribute> | ||
3493 | <d_old></d_old> | ||
3494 | <e_new></e_new> | ||
3495 | <f_old_trans></f_old_trans> | ||
3496 | <f_translation></f_translation> | ||
3497 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3498 | <b_path>/WindLight floater/WindLight Tabs/Lighting/WLAmbientB</b_path> | ||
3499 | <c_attribute>label</c_attribute> | ||
3500 | <d_old></d_old> | ||
3501 | <e_new></e_new> | ||
3502 | <f_old_trans></f_old_trans> | ||
3503 | <f_translation></f_translation> | ||
3504 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3505 | <b_path>/WindLight floater/WindLight Tabs/Lighting/WLAmbientI</b_path> | ||
3506 | <c_attribute>label</c_attribute> | ||
3507 | <d_old></d_old> | ||
3508 | <e_new></e_new> | ||
3509 | <f_old_trans></f_old_trans> | ||
3510 | <f_translation></f_translation> | ||
3511 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3512 | <b_path>/WindLight floater/WindLight Tabs/Lighting/WLEastAngleText</b_path> | ||
3513 | <c_attribute></c_attribute> | ||
3514 | <d_old></d_old> | ||
3515 | <e_new> | ||
3516 | East Angle | ||
3517 | </e_new> | ||
3518 | <f_old_trans></f_old_trans> | ||
3519 | <f_translation> | ||
3520 | 동쪽 각도 | ||
3521 | </f_translation> | ||
3522 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3523 | <b_path>/WindLight floater/WindLight Tabs/Lighting/WLEastAngleHelp</b_path> | ||
3524 | <c_attribute>label</c_attribute> | ||
3525 | <d_old></d_old> | ||
3526 | <e_new>?</e_new> | ||
3527 | <f_old_trans></f_old_trans> | ||
3528 | <f_translation>?</f_translation> | ||
3529 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3530 | <b_path>/WindLight floater/WindLight Tabs/Lighting/WLEastAngle</b_path> | ||
3531 | <c_attribute>label</c_attribute> | ||
3532 | <d_old></d_old> | ||
3533 | <e_new></e_new> | ||
3534 | <f_old_trans></f_old_trans> | ||
3535 | <f_translation></f_translation> | ||
3536 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3537 | <b_path>/WindLight floater/WindLight Tabs/Lighting/SunGlowText</b_path> | ||
3538 | <c_attribute></c_attribute> | ||
3539 | <d_old></d_old> | ||
3540 | <e_new> | ||
3541 | Sun Glow | ||
3542 | </e_new> | ||
3543 | <f_old_trans></f_old_trans> | ||
3544 | <f_translation> | ||
3545 | 태양 밝기 | ||
3546 | </f_translation> | ||
3547 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3548 | <b_path>/WindLight floater/WindLight Tabs/Lighting/WLSunGlowHelp</b_path> | ||
3549 | <c_attribute>label</c_attribute> | ||
3550 | <d_old></d_old> | ||
3551 | <e_new>?</e_new> | ||
3552 | <f_old_trans></f_old_trans> | ||
3553 | <f_translation>?</f_translation> | ||
3554 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3555 | <b_path>/WindLight floater/WindLight Tabs/Lighting/WLGlowB</b_path> | ||
3556 | <c_attribute>label</c_attribute> | ||
3557 | <d_old></d_old> | ||
3558 | <e_new>Focus </e_new> | ||
3559 | <f_old_trans></f_old_trans> | ||
3560 | <f_translation>보기 </f_translation> | ||
3561 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3562 | <b_path>/WindLight floater/WindLight Tabs/Lighting/WLGlowR</b_path> | ||
3563 | <c_attribute>label</c_attribute> | ||
3564 | <d_old></d_old> | ||
3565 | <e_new>Size </e_new> | ||
3566 | <f_old_trans></f_old_trans> | ||
3567 | <f_translation>크기 </f_translation> | ||
3568 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3569 | <b_path>/WindLight floater/WindLight Tabs/Lighting/SceneGammaText</b_path> | ||
3570 | <c_attribute></c_attribute> | ||
3571 | <d_old></d_old> | ||
3572 | <e_new> | ||
3573 | Scene Gamma | ||
3574 | </e_new> | ||
3575 | <f_old_trans></f_old_trans> | ||
3576 | <f_translation> | ||
3577 | 장면 감마 | ||
3578 | </f_translation> | ||
3579 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3580 | <b_path>/WindLight floater/WindLight Tabs/Lighting/WLSceneGammaHelp</b_path> | ||
3581 | <c_attribute>label</c_attribute> | ||
3582 | <d_old></d_old> | ||
3583 | <e_new>?</e_new> | ||
3584 | <f_old_trans></f_old_trans> | ||
3585 | <f_translation>?</f_translation> | ||
3586 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3587 | <b_path>/WindLight floater/WindLight Tabs/Lighting/WLGamma</b_path> | ||
3588 | <c_attribute>label</c_attribute> | ||
3589 | <d_old></d_old> | ||
3590 | <e_new></e_new> | ||
3591 | <f_old_trans></f_old_trans> | ||
3592 | <f_translation></f_translation> | ||
3593 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3594 | <b_path>/WindLight floater/WindLight Tabs/Lighting/WLStarText</b_path> | ||
3595 | <c_attribute></c_attribute> | ||
3596 | <d_old></d_old> | ||
3597 | <e_new> | ||
3598 | Star Brightness | ||
3599 | </e_new> | ||
3600 | <f_old_trans></f_old_trans> | ||
3601 | <f_translation> | ||
3602 | 별 밝기 | ||
3603 | </f_translation> | ||
3604 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3605 | <b_path>/WindLight floater/WindLight Tabs/Lighting/WLStarBrightnessHelp</b_path> | ||
3606 | <c_attribute>label</c_attribute> | ||
3607 | <d_old></d_old> | ||
3608 | <e_new>?</e_new> | ||
3609 | <f_old_trans></f_old_trans> | ||
3610 | <f_translation>?</f_translation> | ||
3611 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3612 | <b_path>/WindLight floater/WindLight Tabs/Lighting/WLStarAlpha</b_path> | ||
3613 | <c_attribute>label</c_attribute> | ||
3614 | <d_old></d_old> | ||
3615 | <e_new></e_new> | ||
3616 | <f_old_trans></f_old_trans> | ||
3617 | <f_translation></f_translation> | ||
3618 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3619 | <b_path>/WindLight floater/WindLight Tabs/Clouds</b_path> | ||
3620 | <c_attribute>label</c_attribute> | ||
3621 | <d_old></d_old> | ||
3622 | <e_new>Clouds</e_new> | ||
3623 | <f_old_trans></f_old_trans> | ||
3624 | <f_translation>구름</f_translation> | ||
3625 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3626 | <b_path>/WindLight floater/WindLight Tabs/Clouds/WLCloudColorText</b_path> | ||
3627 | <c_attribute></c_attribute> | ||
3628 | <d_old></d_old> | ||
3629 | <e_new> | ||
3630 | Cloud Color | ||
3631 | </e_new> | ||
3632 | <f_old_trans></f_old_trans> | ||
3633 | <f_translation> | ||
3634 | 구름 색상 | ||
3635 | </f_translation> | ||
3636 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3637 | <b_path>/WindLight floater/WindLight Tabs/Clouds/WLCloudColorHelp</b_path> | ||
3638 | <c_attribute>label</c_attribute> | ||
3639 | <d_old></d_old> | ||
3640 | <e_new>?</e_new> | ||
3641 | <f_old_trans></f_old_trans> | ||
3642 | <f_translation>?</f_translation> | ||
3643 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3644 | <b_path>/WindLight floater/WindLight Tabs/Clouds/BHText</b_path> | ||
3645 | <c_attribute></c_attribute> | ||
3646 | <d_old></d_old> | ||
3647 | <e_new> | ||
3648 | R | ||
3649 | </e_new> | ||
3650 | <f_old_trans></f_old_trans> | ||
3651 | <f_translation> | ||
3652 | R | ||
3653 | </f_translation> | ||
3654 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3655 | <b_path>/WindLight floater/WindLight Tabs/Clouds/BHText2</b_path> | ||
3656 | <c_attribute></c_attribute> | ||
3657 | <d_old></d_old> | ||
3658 | <e_new> | ||
3659 | G | ||
3660 | </e_new> | ||
3661 | <f_old_trans></f_old_trans> | ||
3662 | <f_translation> | ||
3663 | G | ||
3664 | </f_translation> | ||
3665 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3666 | <b_path>/WindLight floater/WindLight Tabs/Clouds/BHText3</b_path> | ||
3667 | <c_attribute></c_attribute> | ||
3668 | <d_old></d_old> | ||
3669 | <e_new> | ||
3670 | B | ||
3671 | </e_new> | ||
3672 | <f_old_trans></f_old_trans> | ||
3673 | <f_translation> | ||
3674 | B | ||
3675 | </f_translation> | ||
3676 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3677 | <b_path>/WindLight floater/WindLight Tabs/Clouds/BHText4</b_path> | ||
3678 | <c_attribute></c_attribute> | ||
3679 | <d_old></d_old> | ||
3680 | <e_new> | ||
3681 | I | ||
3682 | </e_new> | ||
3683 | <f_old_trans></f_old_trans> | ||
3684 | <f_translation> | ||
3685 | I | ||
3686 | </f_translation> | ||
3687 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3688 | <b_path>/WindLight floater/WindLight Tabs/Clouds/WLCloudColorR</b_path> | ||
3689 | <c_attribute>label</c_attribute> | ||
3690 | <d_old></d_old> | ||
3691 | <e_new></e_new> | ||
3692 | <f_old_trans></f_old_trans> | ||
3693 | <f_translation></f_translation> | ||
3694 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3695 | <b_path>/WindLight floater/WindLight Tabs/Clouds/WLCloudColorG</b_path> | ||
3696 | <c_attribute>label</c_attribute> | ||
3697 | <d_old></d_old> | ||
3698 | <e_new></e_new> | ||
3699 | <f_old_trans></f_old_trans> | ||
3700 | <f_translation></f_translation> | ||
3701 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3702 | <b_path>/WindLight floater/WindLight Tabs/Clouds/WLCloudColorB</b_path> | ||
3703 | <c_attribute>label</c_attribute> | ||
3704 | <d_old></d_old> | ||
3705 | <e_new></e_new> | ||
3706 | <f_old_trans></f_old_trans> | ||
3707 | <f_translation></f_translation> | ||
3708 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3709 | <b_path>/WindLight floater/WindLight Tabs/Clouds/WLCloudColorI</b_path> | ||
3710 | <c_attribute>label</c_attribute> | ||
3711 | <d_old></d_old> | ||
3712 | <e_new></e_new> | ||
3713 | <f_old_trans></f_old_trans> | ||
3714 | <f_translation></f_translation> | ||
3715 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3716 | <b_path>/WindLight floater/WindLight Tabs/Clouds/WLCloudColorText2</b_path> | ||
3717 | <c_attribute></c_attribute> | ||
3718 | <d_old></d_old> | ||
3719 | <e_new> | ||
3720 | Cloud XY/Density | ||
3721 | </e_new> | ||
3722 | <f_old_trans></f_old_trans> | ||
3723 | <f_translation> | ||
3724 | 구름 XY/농도 | ||
3725 | </f_translation> | ||
3726 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3727 | <b_path>/WindLight floater/WindLight Tabs/Clouds/WLCloudDensityHelp</b_path> | ||
3728 | <c_attribute>label</c_attribute> | ||
3729 | <d_old></d_old> | ||
3730 | <e_new>?</e_new> | ||
3731 | <f_old_trans></f_old_trans> | ||
3732 | <f_translation>?</f_translation> | ||
3733 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3734 | <b_path>/WindLight floater/WindLight Tabs/Clouds/BHText5</b_path> | ||
3735 | <c_attribute></c_attribute> | ||
3736 | <d_old></d_old> | ||
3737 | <e_new> | ||
3738 | X | ||
3739 | </e_new> | ||
3740 | <f_old_trans></f_old_trans> | ||
3741 | <f_translation> | ||
3742 | X | ||
3743 | </f_translation> | ||
3744 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3745 | <b_path>/WindLight floater/WindLight Tabs/Clouds/BHText6</b_path> | ||
3746 | <c_attribute></c_attribute> | ||
3747 | <d_old></d_old> | ||
3748 | <e_new> | ||
3749 | Y | ||
3750 | </e_new> | ||
3751 | <f_old_trans></f_old_trans> | ||
3752 | <f_translation> | ||
3753 | Y | ||
3754 | </f_translation> | ||
3755 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3756 | <b_path>/WindLight floater/WindLight Tabs/Clouds/BHText7</b_path> | ||
3757 | <c_attribute></c_attribute> | ||
3758 | <d_old></d_old> | ||
3759 | <e_new> | ||
3760 | D | ||
3761 | </e_new> | ||
3762 | <f_old_trans></f_old_trans> | ||
3763 | <f_translation> | ||
3764 | D | ||
3765 | </f_translation> | ||
3766 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3767 | <b_path>/WindLight floater/WindLight Tabs/Clouds/WLCloudX</b_path> | ||
3768 | <c_attribute>label</c_attribute> | ||
3769 | <d_old></d_old> | ||
3770 | <e_new></e_new> | ||
3771 | <f_old_trans></f_old_trans> | ||
3772 | <f_translation></f_translation> | ||
3773 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3774 | <b_path>/WindLight floater/WindLight Tabs/Clouds/WLCloudY</b_path> | ||
3775 | <c_attribute>label</c_attribute> | ||
3776 | <d_old></d_old> | ||
3777 | <e_new></e_new> | ||
3778 | <f_old_trans></f_old_trans> | ||
3779 | <f_translation></f_translation> | ||
3780 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3781 | <b_path>/WindLight floater/WindLight Tabs/Clouds/WLCloudDensity</b_path> | ||
3782 | <c_attribute>label</c_attribute> | ||
3783 | <d_old></d_old> | ||
3784 | <e_new></e_new> | ||
3785 | <f_old_trans></f_old_trans> | ||
3786 | <f_translation></f_translation> | ||
3787 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3788 | <b_path>/WindLight floater/WindLight Tabs/Clouds/WLCloudCoverageText</b_path> | ||
3789 | <c_attribute></c_attribute> | ||
3790 | <d_old></d_old> | ||
3791 | <e_new> | ||
3792 | Cloud Coverage | ||
3793 | </e_new> | ||
3794 | <f_old_trans></f_old_trans> | ||
3795 | <f_translation> | ||
3796 | 구름 범위 | ||
3797 | </f_translation> | ||
3798 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3799 | <b_path>/WindLight floater/WindLight Tabs/Clouds/WLCloudCoverageHelp</b_path> | ||
3800 | <c_attribute>label</c_attribute> | ||
3801 | <d_old></d_old> | ||
3802 | <e_new>?</e_new> | ||
3803 | <f_old_trans></f_old_trans> | ||
3804 | <f_translation>?</f_translation> | ||
3805 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3806 | <b_path>/WindLight floater/WindLight Tabs/Clouds/WLCloudCoverage</b_path> | ||
3807 | <c_attribute>label</c_attribute> | ||
3808 | <d_old></d_old> | ||
3809 | <e_new></e_new> | ||
3810 | <f_old_trans></f_old_trans> | ||
3811 | <f_translation></f_translation> | ||
3812 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3813 | <b_path>/WindLight floater/WindLight Tabs/Clouds/WLCloudScaleText</b_path> | ||
3814 | <c_attribute></c_attribute> | ||
3815 | <d_old></d_old> | ||
3816 | <e_new> | ||
3817 | Cloud Scale | ||
3818 | </e_new> | ||
3819 | <f_old_trans></f_old_trans> | ||
3820 | <f_translation> | ||
3821 | 구름 크기 | ||
3822 | </f_translation> | ||
3823 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3824 | <b_path>/WindLight floater/WindLight Tabs/Clouds/WLCloudScaleHelp</b_path> | ||
3825 | <c_attribute>label</c_attribute> | ||
3826 | <d_old></d_old> | ||
3827 | <e_new>?</e_new> | ||
3828 | <f_old_trans></f_old_trans> | ||
3829 | <f_translation>?</f_translation> | ||
3830 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3831 | <b_path>/WindLight floater/WindLight Tabs/Clouds/WLCloudScale</b_path> | ||
3832 | <c_attribute>label</c_attribute> | ||
3833 | <d_old></d_old> | ||
3834 | <e_new></e_new> | ||
3835 | <f_old_trans></f_old_trans> | ||
3836 | <f_translation></f_translation> | ||
3837 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3838 | <b_path>/WindLight floater/WindLight Tabs/Clouds/WLCloudDetailText</b_path> | ||
3839 | <c_attribute></c_attribute> | ||
3840 | <d_old></d_old> | ||
3841 | <e_new> | ||
3842 | Cloud Detail (XY/Density) | ||
3843 | </e_new> | ||
3844 | <f_old_trans></f_old_trans> | ||
3845 | <f_translation> | ||
3846 | 구름 디테일(XY/농도) | ||
3847 | </f_translation> | ||
3848 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3849 | <b_path>/WindLight floater/WindLight Tabs/Clouds/WLCloudDetailHelp</b_path> | ||
3850 | <c_attribute>label</c_attribute> | ||
3851 | <d_old></d_old> | ||
3852 | <e_new>?</e_new> | ||
3853 | <f_old_trans></f_old_trans> | ||
3854 | <f_translation>?</f_translation> | ||
3855 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3856 | <b_path>/WindLight floater/WindLight Tabs/Clouds/BHText8</b_path> | ||
3857 | <c_attribute></c_attribute> | ||
3858 | <d_old></d_old> | ||
3859 | <e_new> | ||
3860 | X | ||
3861 | </e_new> | ||
3862 | <f_old_trans></f_old_trans> | ||
3863 | <f_translation> | ||
3864 | X | ||
3865 | </f_translation> | ||
3866 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3867 | <b_path>/WindLight floater/WindLight Tabs/Clouds/BHText9</b_path> | ||
3868 | <c_attribute></c_attribute> | ||
3869 | <d_old></d_old> | ||
3870 | <e_new> | ||
3871 | Y | ||
3872 | </e_new> | ||
3873 | <f_old_trans></f_old_trans> | ||
3874 | <f_translation> | ||
3875 | Y | ||
3876 | </f_translation> | ||
3877 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3878 | <b_path>/WindLight floater/WindLight Tabs/Clouds/BHText10</b_path> | ||
3879 | <c_attribute></c_attribute> | ||
3880 | <d_old></d_old> | ||
3881 | <e_new> | ||
3882 | D | ||
3883 | </e_new> | ||
3884 | <f_old_trans></f_old_trans> | ||
3885 | <f_translation> | ||
3886 | D | ||
3887 | </f_translation> | ||
3888 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3889 | <b_path>/WindLight floater/WindLight Tabs/Clouds/WLCloudDetailX</b_path> | ||
3890 | <c_attribute>label</c_attribute> | ||
3891 | <d_old></d_old> | ||
3892 | <e_new></e_new> | ||
3893 | <f_old_trans></f_old_trans> | ||
3894 | <f_translation></f_translation> | ||
3895 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3896 | <b_path>/WindLight floater/WindLight Tabs/Clouds/WLCloudDetailY</b_path> | ||
3897 | <c_attribute>label</c_attribute> | ||
3898 | <d_old></d_old> | ||
3899 | <e_new></e_new> | ||
3900 | <f_old_trans></f_old_trans> | ||
3901 | <f_translation></f_translation> | ||
3902 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3903 | <b_path>/WindLight floater/WindLight Tabs/Clouds/WLCloudDetailDensity</b_path> | ||
3904 | <c_attribute>label</c_attribute> | ||
3905 | <d_old></d_old> | ||
3906 | <e_new></e_new> | ||
3907 | <f_old_trans></f_old_trans> | ||
3908 | <f_translation></f_translation> | ||
3909 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3910 | <b_path>/WindLight floater/WindLight Tabs/Clouds/WLCloudScrollXText</b_path> | ||
3911 | <c_attribute></c_attribute> | ||
3912 | <d_old></d_old> | ||
3913 | <e_new> | ||
3914 | Cloud Scroll X | ||
3915 | </e_new> | ||
3916 | <f_old_trans></f_old_trans> | ||
3917 | <f_translation> | ||
3918 | 구름 스크롤 X | ||
3919 | </f_translation> | ||
3920 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3921 | <b_path>/WindLight floater/WindLight Tabs/Clouds/WLCloudScrollXHelp</b_path> | ||
3922 | <c_attribute>label</c_attribute> | ||
3923 | <d_old></d_old> | ||
3924 | <e_new>?</e_new> | ||
3925 | <f_old_trans></f_old_trans> | ||
3926 | <f_translation>?</f_translation> | ||
3927 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3928 | <b_path>/WindLight floater/WindLight Tabs/Clouds/WLCloudLockX</b_path> | ||
3929 | <c_attribute>label</c_attribute> | ||
3930 | <d_old></d_old> | ||
3931 | <e_new>Lock</e_new> | ||
3932 | <f_old_trans></f_old_trans> | ||
3933 | <f_translation>잠금</f_translation> | ||
3934 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3935 | <b_path>/WindLight floater/WindLight Tabs/Clouds/WLCloudScrollX</b_path> | ||
3936 | <c_attribute>label</c_attribute> | ||
3937 | <d_old></d_old> | ||
3938 | <e_new></e_new> | ||
3939 | <f_old_trans></f_old_trans> | ||
3940 | <f_translation></f_translation> | ||
3941 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3942 | <b_path>/WindLight floater/WindLight Tabs/Clouds/WLCloudScrollYText</b_path> | ||
3943 | <c_attribute></c_attribute> | ||
3944 | <d_old></d_old> | ||
3945 | <e_new> | ||
3946 | Cloud Scroll Y | ||
3947 | </e_new> | ||
3948 | <f_old_trans></f_old_trans> | ||
3949 | <f_translation> | ||
3950 | 구름 스크롤 Y | ||
3951 | </f_translation> | ||
3952 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3953 | <b_path>/WindLight floater/WindLight Tabs/Clouds/WLCloudScrollYHelp</b_path> | ||
3954 | <c_attribute>label</c_attribute> | ||
3955 | <d_old></d_old> | ||
3956 | <e_new>?</e_new> | ||
3957 | <f_old_trans></f_old_trans> | ||
3958 | <f_translation>?</f_translation> | ||
3959 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3960 | <b_path>/WindLight floater/WindLight Tabs/Clouds/WLCloudLockY</b_path> | ||
3961 | <c_attribute>label</c_attribute> | ||
3962 | <d_old></d_old> | ||
3963 | <e_new>Lock</e_new> | ||
3964 | <f_old_trans></f_old_trans> | ||
3965 | <f_translation>잠금</f_translation> | ||
3966 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3967 | <b_path>/WindLight floater/WindLight Tabs/Clouds/WLCloudScrollY</b_path> | ||
3968 | <c_attribute>label</c_attribute> | ||
3969 | <d_old></d_old> | ||
3970 | <e_new></e_new> | ||
3971 | <f_old_trans></f_old_trans> | ||
3972 | <f_translation></f_translation> | ||
3973 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3974 | <b_path>/WindLight floater/WindLight Tabs/Clouds/DrawClassicClouds</b_path> | ||
3975 | <c_attribute>label</c_attribute> | ||
3976 | <d_old></d_old> | ||
3977 | <e_new>Draw Classic Clouds</e_new> | ||
3978 | <f_old_trans></f_old_trans> | ||
3979 | <f_translation>일반 구름 그리기</f_translation> | ||
3980 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3981 | <b_path>/WindLight floater/WindLight Tabs/Clouds/WLClassicCloudsHelp</b_path> | ||
3982 | <c_attribute>label</c_attribute> | ||
3983 | <d_old></d_old> | ||
3984 | <e_new>?</e_new> | ||
3985 | <f_old_trans></f_old_trans> | ||
3986 | <f_translation>?</f_translation> | ||
3987 | </string><string><a_file>floater_windlight_options.xml</a_file> | ||
3988 | <b_path>/WindLight floater/WLDefaultSkyNames</b_path> | ||
3989 | <c_attribute></c_attribute> | ||
3990 | <d_old></d_old> | ||
3991 | <e_new> | ||
3992 | A-12AM:A-12PM:A-3AM:A-3PM:A-4.30PM:A-6AM:A-6PM:A-9AM:A-9PM:Barcelona:Blizzard:Blue Midday:Coastal Afternoon:Coastal Sunset:Default:Desert Sunset:Fine Day:Fluffy Big Clouds:Foggy:Funky Funky:Funky Funky Funky:Gelatto:Ghost:Incongruent Truths:Midday 1:Midday 2:Midday 3:Midday 4:Night:Pirate:Purple:Sailor's Delight:Sheer Sensuality | ||
3993 | </e_new> | ||
3994 | <f_old_trans></f_old_trans> | ||
3995 | <f_translation> | ||
3996 | A-12AM:A-12PM:A-3AM:A-3PM:A-4.30PM:A-6AM:A-6PM:A-9AM:A-9PM:Barcelona:Blizzard:Blue Midday:Coastal Afternoon:Coastal Sunset:Default:Desert Sunset:Fine Day:Fluffy Big Clouds:Foggy:Funky Funky:Funky Funky Funky:Gelatto:Ghost:Incongruent Truths:Midday 1:Midday 2:Midday 3:Midday 4:Night:Pirate:Purple:Sailor's Delight:Sheer Sensuality | ||
3997 | </f_translation> | ||
3998 | </string><string><a_file>menu_viewer.xml</a_file> | ||
3999 | <b_path>/Main Menu/View/Beacons/separator2</b_path> | ||
4000 | <c_attribute>label</c_attribute> | ||
4001 | <d_old></d_old> | ||
4002 | <e_new>-----------</e_new> | ||
4003 | <f_old_trans></f_old_trans> | ||
4004 | <f_translation>-----------</f_translation> | ||
4005 | </string><string><a_file>menu_viewer.xml</a_file> | ||
4006 | <b_path>/Main Menu/View/Beacons/separator3</b_path> | ||
4007 | <c_attribute>label</c_attribute> | ||
4008 | <d_old></d_old> | ||
4009 | <e_new>-----------</e_new> | ||
4010 | <f_old_trans></f_old_trans> | ||
4011 | <f_translation>-----------</f_translation> | ||
4012 | </string><string><a_file>menu_viewer.xml</a_file> | ||
4013 | <b_path>/Main Menu/View/Beacons/Beacon Width</b_path> | ||
4014 | <c_attribute>label</c_attribute> | ||
4015 | <d_old></d_old> | ||
4016 | <e_new>Beacon Width</e_new> | ||
4017 | <f_old_trans></f_old_trans> | ||
4018 | <f_translation>표시 간격</f_translation> | ||
4019 | </string><string><a_file>menu_viewer.xml</a_file> | ||
4020 | <b_path>/Main Menu/View/Beacons/Beacon Width/Beacon Width 1</b_path> | ||
4021 | <c_attribute>label</c_attribute> | ||
4022 | <d_old></d_old> | ||
4023 | <e_new>1</e_new> | ||
4024 | <f_old_trans></f_old_trans> | ||
4025 | <f_translation>1</f_translation> | ||
4026 | </string><string><a_file>menu_viewer.xml</a_file> | ||
4027 | <b_path>/Main Menu/View/Beacons/Beacon Width/Beacon Width 4</b_path> | ||
4028 | <c_attribute>label</c_attribute> | ||
4029 | <d_old></d_old> | ||
4030 | <e_new>4</e_new> | ||
4031 | <f_old_trans></f_old_trans> | ||
4032 | <f_translation>4</f_translation> | ||
4033 | </string><string><a_file>menu_viewer.xml</a_file> | ||
4034 | <b_path>/Main Menu/View/Beacons/Beacon Width/Beacon Width 16</b_path> | ||
4035 | <c_attribute>label</c_attribute> | ||
4036 | <d_old></d_old> | ||
4037 | <e_new>16</e_new> | ||
4038 | <f_old_trans></f_old_trans> | ||
4039 | <f_translation>16</f_translation> | ||
4040 | </string><string><a_file>menu_viewer.xml</a_file> | ||
4041 | <b_path>/Main Menu/View/Beacons/Beacon Width/Beacon Width 32</b_path> | ||
4042 | <c_attribute>label</c_attribute> | ||
4043 | <d_old></d_old> | ||
4044 | <e_new>32</e_new> | ||
4045 | <f_old_trans></f_old_trans> | ||
4046 | <f_translation>32</f_translation> | ||
4047 | </string><string><a_file>menu_viewer.xml</a_file> | ||
4048 | <b_path>/Main Menu/World/Environment Settings</b_path> | ||
4049 | <c_attribute>label</c_attribute> | ||
4050 | <d_old></d_old> | ||
4051 | <e_new>Environment Settings</e_new> | ||
4052 | <f_old_trans></f_old_trans> | ||
4053 | <f_translation>환경 설정</f_translation> | ||
4054 | </string><string><a_file>menu_viewer.xml</a_file> | ||
4055 | <b_path>/Main Menu/World/Environment Settings/Sunrise</b_path> | ||
4056 | <c_attribute>label</c_attribute> | ||
4057 | <d_old></d_old> | ||
4058 | <e_new>Sunrise</e_new> | ||
4059 | <f_old_trans></f_old_trans> | ||
4060 | <f_translation>일출</f_translation> | ||
4061 | </string><string><a_file>menu_viewer.xml</a_file> | ||
4062 | <b_path>/Main Menu/World/Environment Settings/Noon</b_path> | ||
4063 | <c_attribute>label</c_attribute> | ||
4064 | <d_old></d_old> | ||
4065 | <e_new>Midday</e_new> | ||
4066 | <f_old_trans></f_old_trans> | ||
4067 | <f_translation>정오</f_translation> | ||
4068 | </string><string><a_file>menu_viewer.xml</a_file> | ||
4069 | <b_path>/Main Menu/World/Environment Settings/Sunset</b_path> | ||
4070 | <c_attribute>label</c_attribute> | ||
4071 | <d_old></d_old> | ||
4072 | <e_new>Sunset</e_new> | ||
4073 | <f_old_trans></f_old_trans> | ||
4074 | <f_translation>일몰</f_translation> | ||
4075 | </string><string><a_file>menu_viewer.xml</a_file> | ||
4076 | <b_path>/Main Menu/World/Environment Settings/Midnight</b_path> | ||
4077 | <c_attribute>label</c_attribute> | ||
4078 | <d_old></d_old> | ||
4079 | <e_new>Midnight</e_new> | ||
4080 | <f_old_trans></f_old_trans> | ||
4081 | <f_translation>자정</f_translation> | ||
4082 | </string><string><a_file>menu_viewer.xml</a_file> | ||
4083 | <b_path>/Main Menu/World/Environment Settings/Revert to Region Default</b_path> | ||
4084 | <c_attribute>label</c_attribute> | ||
4085 | <d_old></d_old> | ||
4086 | <e_new>Revert to Region Default</e_new> | ||
4087 | <f_old_trans></f_old_trans> | ||
4088 | <f_translation>지역 기본 설정으로 되돌리기</f_translation> | ||
4089 | </string><string><a_file>menu_viewer.xml</a_file> | ||
4090 | <b_path>/Main Menu/World/Environment Settings/separator</b_path> | ||
4091 | <c_attribute>label</c_attribute> | ||
4092 | <d_old></d_old> | ||
4093 | <e_new>-----------</e_new> | ||
4094 | <f_old_trans></f_old_trans> | ||
4095 | <f_translation>-----------</f_translation> | ||
4096 | </string><string><a_file>menu_viewer.xml</a_file> | ||
4097 | <b_path>/Main Menu/World/Environment Settings/Environment Editor</b_path> | ||
4098 | <c_attribute>label</c_attribute> | ||
4099 | <d_old></d_old> | ||
4100 | <e_new>Environment Editor</e_new> | ||
4101 | <f_old_trans></f_old_trans> | ||
4102 | <f_translation>환경 편집기</f_translation> | ||
4103 | </string><string><a_file>menu_viewer.xml</a_file> | ||
4104 | <b_path>/Main Menu/Tools/Bug Reporting/separator72</b_path> | ||
4105 | <c_attribute>label</c_attribute> | ||
4106 | <d_old></d_old> | ||
4107 | <e_new>-----------</e_new> | ||
4108 | <f_old_trans></f_old_trans> | ||
4109 | <f_translation>-----------</f_translation> | ||
4110 | </string><string><a_file>notify.xml</a_file> | ||
4111 | <b_path>//FirstMedia/message</b_path> | ||
4112 | <c_attribute></c_attribute> | ||
4113 | <d_old></d_old> | ||
4114 | <e_new> | ||
4115 | You have begun playing media. Media can set to play automatically in the preferences window under Audio / Video. Note that this can be a security risk for media sites you do not trust. | ||
4116 | </e_new> | ||
4117 | <f_old_trans></f_old_trans> | ||
4118 | <f_translation> | ||
4119 | 미디어 재생이 시작되었습니다. 오디오/비디오 아래의 환경 설정 창에서 미디어가 자동으로 재생되도록 설정할 수 있습니다. 단, 신뢰할 수 없는 미디어 사이트에 대해서는 보안 위험이 존재할 수 있습니다. | ||
4120 | </f_translation> | ||
4121 | </string><string><a_file>notify.xml</a_file> | ||
4122 | <b_path>//ServerVersionChanged/message</b_path> | ||
4123 | <c_attribute></c_attribute> | ||
4124 | <d_old></d_old> | ||
4125 | <e_new> | ||
4126 | The region you have entered is running a different simulator version. Click this message for details. | ||
4127 | </e_new> | ||
263 | <f_old_trans></f_old_trans> | 4128 | <f_old_trans></f_old_trans> |
264 | <f_translation> </f_translation> | 4129 | <f_translation> |
4130 | 이동한 지역이 다른 시뮬레이터 버전으로 실행 중입니다. 자세한 내용을 보려면 이 메시지를 클릭하십시오. | ||
4131 | </f_translation> | ||
265 | </string><string><a_file>panel_audio.xml</a_file> | 4132 | </string><string><a_file>panel_audio.xml</a_file> |
266 | <b_path>/Media panel/mute_music</b_path> | 4133 | <b_path>/Media panel/mute_audio</b_path> |
267 | <c_attribute>label</c_attribute> | 4134 | <c_attribute>label</c_attribute> |
268 | <d_old></d_old> | 4135 | <d_old></d_old> |
269 | <e_new></e_new> | 4136 | <e_new></e_new> |
@@ -311,6 +4178,61 @@ | |||
311 | <e_new></e_new> | 4178 | <e_new></e_new> |
312 | <f_old_trans></f_old_trans> | 4179 | <f_old_trans></f_old_trans> |
313 | <f_translation></f_translation> | 4180 | <f_translation></f_translation> |
4181 | </string><string><a_file>panel_audio_device.xml</a_file> | ||
4182 | <b_path>/device_settings/Audio Devices</b_path> | ||
4183 | <c_attribute></c_attribute> | ||
4184 | <d_old></d_old> | ||
4185 | <e_new> | ||
4186 | Audio Devices | ||
4187 | </e_new> | ||
4188 | <f_old_trans></f_old_trans> | ||
4189 | <f_translation> | ||
4190 | 오디오 장치 | ||
4191 | </f_translation> | ||
4192 | </string><string><a_file>panel_audio_device.xml</a_file> | ||
4193 | <b_path>/device_settings/Input level:</b_path> | ||
4194 | <c_attribute></c_attribute> | ||
4195 | <d_old></d_old> | ||
4196 | <e_new> | ||
4197 | Input Level | ||
4198 | </e_new> | ||
4199 | <f_old_trans></f_old_trans> | ||
4200 | <f_translation> | ||
4201 | 입력 레벨 | ||
4202 | </f_translation> | ||
4203 | </string><string><a_file>panel_avatar.xml</a_file> | ||
4204 | <b_path>/Panel Avatar/tab/My Notes/Loading</b_path> | ||
4205 | <c_attribute></c_attribute> | ||
4206 | <d_old></d_old> | ||
4207 | <e_new> | ||
4208 | Loading... | ||
4209 | </e_new> | ||
4210 | <f_old_trans></f_old_trans> | ||
4211 | <f_translation> | ||
4212 | 로딩 중... | ||
4213 | </f_translation> | ||
4214 | </string><string><a_file>panel_classified.xml</a_file> | ||
4215 | <b_path>/Classified/ad_placed_paid</b_path> | ||
4216 | <c_attribute></c_attribute> | ||
4217 | <d_old></d_old> | ||
4218 | <e_new> | ||
4219 | Ad placed: [DATE], Paid L$[AMT] for listing. | ||
4220 | </e_new> | ||
4221 | <f_old_trans></f_old_trans> | ||
4222 | <f_translation> | ||
4223 | 게재 광고: [DATE], 게재 비용 L$[AMT]를 지불했습니다. | ||
4224 | </f_translation> | ||
4225 | </string><string><a_file>panel_friends.xml</a_file> | ||
4226 | <b_path>/friends/Multiple</b_path> | ||
4227 | <c_attribute></c_attribute> | ||
4228 | <d_old></d_old> | ||
4229 | <e_new> | ||
4230 | Multiple friends... | ||
4231 | </e_new> | ||
4232 | <f_old_trans></f_old_trans> | ||
4233 | <f_translation> | ||
4234 | 친구들... | ||
4235 | </f_translation> | ||
314 | </string><string><a_file>panel_groups.xml</a_file> | 4236 | </string><string><a_file>panel_groups.xml</a_file> |
315 | <b_path>/groups/group list/name</b_path> | 4237 | <b_path>/groups/group list/name</b_path> |
316 | <c_attribute>label</c_attribute> | 4238 | <c_attribute>label</c_attribute> |
@@ -318,28 +4240,28 @@ | |||
318 | <e_new></e_new> | 4240 | <e_new></e_new> |
319 | <f_old_trans></f_old_trans> | 4241 | <f_old_trans></f_old_trans> |
320 | <f_translation></f_translation> | 4242 | <f_translation></f_translation> |
321 | </string><string><a_file>panel_login.xml</a_file> | 4243 | </string><string><a_file>panel_group_land_money.xml</a_file> |
322 | <b_path>/panel_login/forgot_password_text</b_path> | 4244 | <b_path>/land_money_tab/loading_txt</b_path> |
323 | <c_attribute></c_attribute> | 4245 | <c_attribute></c_attribute> |
324 | <d_old></d_old> | 4246 | <d_old></d_old> |
325 | <e_new> | 4247 | <e_new> |
326 | Forgot your password? | 4248 | Loading... |
327 | </e_new> | 4249 | </e_new> |
328 | <f_old_trans></f_old_trans> | 4250 | <f_old_trans></f_old_trans> |
329 | <f_translation> | 4251 | <f_translation> |
330 | 암호 잊셨습까? | 4252 | 중... |
331 | </f_translation> | 4253 | </f_translation> |
332 | </string><string><a_file>panel_login.xml</a_file> | 4254 | </string><string><a_file>panel_group_roles.xml</a_file> |
333 | <b_path>/panel_login/forgot_password_url</b_path> | 4255 | <b_path>/roles_tab/roles_tab_container/roles_sub_tab/cant_delete_role</b_path> |
334 | <c_attribute></c_attribute> | 4256 | <c_attribute></c_attribute> |
335 | <d_old></d_old> | 4257 | <d_old></d_old> |
336 | <e_new> | 4258 | <e_new> |
337 | http://secondlife.com/account/request.php | 4259 | The 'Everyone' and 'Owners' Roles are special and cannot be deleted. |
338 | </e_new> | 4260 | </e_new> |
339 | <f_old_trans></f_old_trans> | 4261 | <f_old_trans></f_old_trans> |
340 | <f_translation> | 4262 | <f_translation> |
341 | http://secondlife.com/account/request.php | 4263 | '모든 사람' 및 '소유자' 역할은 특별하며 삭제할 수 없습니다. |
342 | </f_translation> | 4264 | </f_translation> |
343 | </string><string><a_file>panel_master_volume.xml</a_file> | 4265 | </string><string><a_file>panel_master_volume.xml</a_file> |
344 | <b_path>/master_volume/mute_master</b_path> | 4266 | <b_path>/master_volume/mute_master</b_path> |
345 | <c_attribute>label</c_attribute> | 4267 | <c_attribute>label</c_attribute> |
@@ -347,6 +4269,893 @@ | |||
347 | <e_new></e_new> | 4269 | <e_new></e_new> |
348 | <f_old_trans></f_old_trans> | 4270 | <f_old_trans></f_old_trans> |
349 | <f_translation></f_translation> | 4271 | <f_translation></f_translation> |
4272 | </string><string><a_file>panel_media_controls.xml</a_file> | ||
4273 | <b_path>/media_controls/music_icon</b_path> | ||
4274 | <c_attribute>label</c_attribute> | ||
4275 | <d_old></d_old> | ||
4276 | <e_new></e_new> | ||
4277 | <f_old_trans></f_old_trans> | ||
4278 | <f_translation></f_translation> | ||
4279 | </string><string><a_file>panel_media_controls.xml</a_file> | ||
4280 | <b_path>/media_controls/music_icon</b_path> | ||
4281 | <c_attribute>tool_tip</c_attribute> | ||
4282 | <d_old></d_old> | ||
4283 | <e_new>Play/pause streaming music</e_new> | ||
4284 | <f_old_trans></f_old_trans> | ||
4285 | <f_translation>스트리밍 음악 재생/일시 정지</f_translation> | ||
4286 | </string><string><a_file>panel_media_controls.xml</a_file> | ||
4287 | <b_path>/media_controls/music_pause</b_path> | ||
4288 | <c_attribute>label</c_attribute> | ||
4289 | <d_old></d_old> | ||
4290 | <e_new></e_new> | ||
4291 | <f_old_trans></f_old_trans> | ||
4292 | <f_translation></f_translation> | ||
4293 | </string><string><a_file>panel_media_controls.xml</a_file> | ||
4294 | <b_path>/media_controls/music_pause</b_path> | ||
4295 | <c_attribute>tool_tip</c_attribute> | ||
4296 | <d_old></d_old> | ||
4297 | <e_new>Pause streaming music</e_new> | ||
4298 | <f_old_trans></f_old_trans> | ||
4299 | <f_translation>스트리밍 음악 일시 정지</f_translation> | ||
4300 | </string><string><a_file>panel_media_controls.xml</a_file> | ||
4301 | <b_path>/media_controls/music_stop</b_path> | ||
4302 | <c_attribute>label</c_attribute> | ||
4303 | <d_old></d_old> | ||
4304 | <e_new></e_new> | ||
4305 | <f_old_trans></f_old_trans> | ||
4306 | <f_translation></f_translation> | ||
4307 | </string><string><a_file>panel_media_controls.xml</a_file> | ||
4308 | <b_path>/media_controls/music_stop</b_path> | ||
4309 | <c_attribute>tool_tip</c_attribute> | ||
4310 | <d_old></d_old> | ||
4311 | <e_new>Stop streaming music</e_new> | ||
4312 | <f_old_trans></f_old_trans> | ||
4313 | <f_translation>스트리밍 음악 중지</f_translation> | ||
4314 | </string><string><a_file>panel_media_controls.xml</a_file> | ||
4315 | <b_path>/media_controls/media_icon</b_path> | ||
4316 | <c_attribute>label</c_attribute> | ||
4317 | <d_old></d_old> | ||
4318 | <e_new></e_new> | ||
4319 | <f_old_trans></f_old_trans> | ||
4320 | <f_translation></f_translation> | ||
4321 | </string><string><a_file>panel_media_controls.xml</a_file> | ||
4322 | <b_path>/media_controls/media_icon</b_path> | ||
4323 | <c_attribute>tool_tip</c_attribute> | ||
4324 | <d_old></d_old> | ||
4325 | <e_new>Play/pause streaming music</e_new> | ||
4326 | <f_old_trans></f_old_trans> | ||
4327 | <f_translation>스트리밍 음악 재생/일시 정지</f_translation> | ||
4328 | </string><string><a_file>panel_media_controls.xml</a_file> | ||
4329 | <b_path>/media_controls/media_pause</b_path> | ||
4330 | <c_attribute>label</c_attribute> | ||
4331 | <d_old></d_old> | ||
4332 | <e_new></e_new> | ||
4333 | <f_old_trans></f_old_trans> | ||
4334 | <f_translation></f_translation> | ||
4335 | </string><string><a_file>panel_media_controls.xml</a_file> | ||
4336 | <b_path>/media_controls/media_pause</b_path> | ||
4337 | <c_attribute>tool_tip</c_attribute> | ||
4338 | <d_old></d_old> | ||
4339 | <e_new>Pause streaming media</e_new> | ||
4340 | <f_old_trans></f_old_trans> | ||
4341 | <f_translation>스트리밍 미디어 일시 정지</f_translation> | ||
4342 | </string><string><a_file>panel_media_controls.xml</a_file> | ||
4343 | <b_path>/media_controls/media_stop</b_path> | ||
4344 | <c_attribute>label</c_attribute> | ||
4345 | <d_old></d_old> | ||
4346 | <e_new></e_new> | ||
4347 | <f_old_trans></f_old_trans> | ||
4348 | <f_translation></f_translation> | ||
4349 | </string><string><a_file>panel_media_controls.xml</a_file> | ||
4350 | <b_path>/media_controls/media_stop</b_path> | ||
4351 | <c_attribute>tool_tip</c_attribute> | ||
4352 | <d_old></d_old> | ||
4353 | <e_new>Stop streaming media</e_new> | ||
4354 | <f_old_trans></f_old_trans> | ||
4355 | <f_translation>스트리밍 미디어 중지</f_translation> | ||
4356 | </string><string><a_file>panel_media_remote.xml</a_file> | ||
4357 | <b_path>/media_remote/play_label</b_path> | ||
4358 | <c_attribute></c_attribute> | ||
4359 | <d_old></d_old> | ||
4360 | <e_new> | ||
4361 | Play | ||
4362 | </e_new> | ||
4363 | <f_old_trans></f_old_trans> | ||
4364 | <f_translation> | ||
4365 | 재생 | ||
4366 | </f_translation> | ||
4367 | </string><string><a_file>panel_media_remote.xml</a_file> | ||
4368 | <b_path>/media_remote/stop_label</b_path> | ||
4369 | <c_attribute></c_attribute> | ||
4370 | <d_old></d_old> | ||
4371 | <e_new> | ||
4372 | Stop | ||
4373 | </e_new> | ||
4374 | <f_old_trans></f_old_trans> | ||
4375 | <f_translation> | ||
4376 | 중지 | ||
4377 | </f_translation> | ||
4378 | </string><string><a_file>panel_media_remote.xml</a_file> | ||
4379 | <b_path>/media_remote/pause_label</b_path> | ||
4380 | <c_attribute></c_attribute> | ||
4381 | <d_old></d_old> | ||
4382 | <e_new> | ||
4383 | Pause | ||
4384 | </e_new> | ||
4385 | <f_old_trans></f_old_trans> | ||
4386 | <f_translation> | ||
4387 | 일시 정지 | ||
4388 | </f_translation> | ||
4389 | </string><string><a_file>panel_media_remote.xml</a_file> | ||
4390 | <b_path>/media_remote/default_tooltip_label</b_path> | ||
4391 | <c_attribute></c_attribute> | ||
4392 | <d_old></d_old> | ||
4393 | <e_new> | ||
4394 | No Media Specified | ||
4395 | </e_new> | ||
4396 | <f_old_trans></f_old_trans> | ||
4397 | <f_translation> | ||
4398 | 지정된 미디어가 없습니다. | ||
4399 | </f_translation> | ||
4400 | </string><string><a_file>panel_media_remote.xml</a_file> | ||
4401 | <b_path>/media_remote/media_hidden_label</b_path> | ||
4402 | <c_attribute></c_attribute> | ||
4403 | <d_old></d_old> | ||
4404 | <e_new> | ||
4405 | (URL hidden by parcel owner) | ||
4406 | </e_new> | ||
4407 | <f_old_trans></f_old_trans> | ||
4408 | <f_translation> | ||
4409 | (구획 소유자에 의해 URL이 숨겨져 있습니다.) | ||
4410 | </f_translation> | ||
4411 | </string><string><a_file>panel_media_remote.xml</a_file> | ||
4412 | <b_path>/media_remote/media_icon_tooltip_web</b_path> | ||
4413 | <c_attribute></c_attribute> | ||
4414 | <d_old></d_old> | ||
4415 | <e_new> | ||
4416 | This location displays content from the World Wide Web. Click the Play button to display Web content. | ||
4417 | </e_new> | ||
4418 | <f_old_trans></f_old_trans> | ||
4419 | <f_translation> | ||
4420 | 이 위치에서는 WWW의 컨텐츠가 표시됩니다. 웹 컨텐츠를 표시하려면 재생 버튼을 클릭하십시오. | ||
4421 | </f_translation> | ||
4422 | </string><string><a_file>panel_media_remote.xml</a_file> | ||
4423 | <b_path>/media_remote/media_icon_tooltip_movie</b_path> | ||
4424 | <c_attribute></c_attribute> | ||
4425 | <d_old></d_old> | ||
4426 | <e_new> | ||
4427 | This location displays Video content. Click the Play button to play the video. | ||
4428 | </e_new> | ||
4429 | <f_old_trans></f_old_trans> | ||
4430 | <f_translation> | ||
4431 | 이 위치에서는 비디오 컨텐츠가 표시됩니다. 비디오를 재생하려면 재생 버튼을 클릭하십시오. | ||
4432 | </f_translation> | ||
4433 | </string><string><a_file>panel_media_remote.xml</a_file> | ||
4434 | <b_path>/media_remote/media_play_tooltip</b_path> | ||
4435 | <c_attribute></c_attribute> | ||
4436 | <d_old></d_old> | ||
4437 | <e_new> | ||
4438 | Display Web content at this location. | ||
4439 | </e_new> | ||
4440 | <f_old_trans></f_old_trans> | ||
4441 | <f_translation> | ||
4442 | 이 위치에서 웹 컨텐츠를 재생합니다. | ||
4443 | </f_translation> | ||
4444 | </string><string><a_file>panel_preferences_audio.xml</a_file> | ||
4445 | <b_path>/Media panel/streaming_prefs_text</b_path> | ||
4446 | <c_attribute></c_attribute> | ||
4447 | <d_old></d_old> | ||
4448 | <e_new> | ||
4449 | Streaming Preferences: | ||
4450 | </e_new> | ||
4451 | <f_old_trans></f_old_trans> | ||
4452 | <f_translation> | ||
4453 | 스트리밍 환경 설정: | ||
4454 | </f_translation> | ||
4455 | </string><string><a_file>panel_preferences_audio.xml</a_file> | ||
4456 | <b_path>/Media panel/audio_prefs_text</b_path> | ||
4457 | <c_attribute></c_attribute> | ||
4458 | <d_old></d_old> | ||
4459 | <e_new> | ||
4460 | Audio Preferences: | ||
4461 | </e_new> | ||
4462 | <f_old_trans></f_old_trans> | ||
4463 | <f_translation> | ||
4464 | 오디오 환경 설정: | ||
4465 | </f_translation> | ||
4466 | </string><string><a_file>panel_preferences_audio.xml</a_file> | ||
4467 | <b_path>/Media panel/auto_streaming_video</b_path> | ||
4468 | <c_attribute>label</c_attribute> | ||
4469 | <d_old></d_old> | ||
4470 | <e_new>Automatically play media</e_new> | ||
4471 | <f_old_trans></f_old_trans> | ||
4472 | <f_translation>자동으로 미디어 재생</f_translation> | ||
4473 | </string><string><a_file>panel_preferences_general.xml</a_file> | ||
4474 | <b_path>/general_panel/UI Size:</b_path> | ||
4475 | <c_attribute></c_attribute> | ||
4476 | <d_old></d_old> | ||
4477 | <e_new> | ||
4478 | UI Size: | ||
4479 | </e_new> | ||
4480 | <f_old_trans></f_old_trans> | ||
4481 | <f_translation> | ||
4482 | UI 크기: | ||
4483 | </f_translation> | ||
4484 | </string><string><a_file>panel_preferences_general.xml</a_file> | ||
4485 | <b_path>/general_panel/ui_auto_scale</b_path> | ||
4486 | <c_attribute>label</c_attribute> | ||
4487 | <d_old></d_old> | ||
4488 | <e_new>Use resolution independent scale</e_new> | ||
4489 | <f_old_trans></f_old_trans> | ||
4490 | <f_translation>해상도 독립 스케일 사용</f_translation> | ||
4491 | </string><string><a_file>panel_preferences_general.xml</a_file> | ||
4492 | <b_path>/general_panel/show_search_panel</b_path> | ||
4493 | <c_attribute>label</c_attribute> | ||
4494 | <d_old></d_old> | ||
4495 | <e_new>Show search panel in overlay bar</e_new> | ||
4496 | <f_old_trans></f_old_trans> | ||
4497 | <f_translation>오버레이 표시줄에 검색 창 표시</f_translation> | ||
4498 | </string><string><a_file>panel_preferences_general.xml</a_file> | ||
4499 | <b_path>/general_panel/show_search_panel</b_path> | ||
4500 | <c_attribute>tool_tip</c_attribute> | ||
4501 | <d_old></d_old> | ||
4502 | <e_new>Display the embedded search panel.</e_new> | ||
4503 | <f_old_trans></f_old_trans> | ||
4504 | <f_translation>포함된 검색 창을 표시합니다.</f_translation> | ||
4505 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4506 | <b_path>/Display panel/GraphicsPreferencesHelpButton</b_path> | ||
4507 | <c_attribute>label</c_attribute> | ||
4508 | <d_old></d_old> | ||
4509 | <e_new>?</e_new> | ||
4510 | <f_old_trans></f_old_trans> | ||
4511 | <f_translation>?</f_translation> | ||
4512 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4513 | <b_path>/Display panel/FullScreenInfo</b_path> | ||
4514 | <c_attribute></c_attribute> | ||
4515 | <d_old></d_old> | ||
4516 | <e_new> | ||
4517 | If unchecked, viewer will display full-screen when logged in. | ||
4518 | </e_new> | ||
4519 | <f_old_trans></f_old_trans> | ||
4520 | <f_translation> | ||
4521 | 선택을 해제하면 로그인 시 전체 화면으로 표시됩니다. | ||
4522 | </f_translation> | ||
4523 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4524 | <b_path>/Display panel/DisplayResLabel</b_path> | ||
4525 | <c_attribute></c_attribute> | ||
4526 | <d_old></d_old> | ||
4527 | <e_new> | ||
4528 | Display Resolution: | ||
4529 | </e_new> | ||
4530 | <f_old_trans></f_old_trans> | ||
4531 | <f_translation> | ||
4532 | 디스플레이 해상도: | ||
4533 | </f_translation> | ||
4534 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4535 | <b_path>/Display panel/AspectRatioLabel1</b_path> | ||
4536 | <c_attribute>tool_tip</c_attribute> | ||
4537 | <d_old></d_old> | ||
4538 | <e_new>width / height</e_new> | ||
4539 | <f_old_trans></f_old_trans> | ||
4540 | <f_translation>폭/높이</f_translation> | ||
4541 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4542 | <b_path>/Display panel/AspectRatioLabel1</b_path> | ||
4543 | <c_attribute></c_attribute> | ||
4544 | <d_old></d_old> | ||
4545 | <e_new> | ||
4546 | Aspect Ratio: | ||
4547 | </e_new> | ||
4548 | <f_old_trans></f_old_trans> | ||
4549 | <f_translation> | ||
4550 | 화면 비율: | ||
4551 | </f_translation> | ||
4552 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4553 | <b_path>/Display panel/aspect_ratio</b_path> | ||
4554 | <c_attribute>tool_tip</c_attribute> | ||
4555 | <d_old></d_old> | ||
4556 | <e_new>width / height</e_new> | ||
4557 | <f_old_trans></f_old_trans> | ||
4558 | <f_translation>폭/높이</f_translation> | ||
4559 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4560 | <b_path>/Display panel/aspect_ratio/8:5(Widescreen)</b_path> | ||
4561 | <c_attribute></c_attribute> | ||
4562 | <d_old></d_old> | ||
4563 | <e_new> | ||
4564 | 8:5 (Widescreen) | ||
4565 | </e_new> | ||
4566 | <f_old_trans></f_old_trans> | ||
4567 | <f_translation> | ||
4568 | 8:5(와이드스크린) | ||
4569 | </f_translation> | ||
4570 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4571 | <b_path>/Display panel/HigherText</b_path> | ||
4572 | <c_attribute></c_attribute> | ||
4573 | <d_old></d_old> | ||
4574 | <e_new> | ||
4575 | Quality and | ||
4576 | </e_new> | ||
4577 | <f_old_trans></f_old_trans> | ||
4578 | <f_translation> | ||
4579 | 품질 및 | ||
4580 | </f_translation> | ||
4581 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4582 | <b_path>/Display panel/QualityText</b_path> | ||
4583 | <c_attribute></c_attribute> | ||
4584 | <d_old></d_old> | ||
4585 | <e_new> | ||
4586 | Performance: | ||
4587 | </e_new> | ||
4588 | <f_old_trans></f_old_trans> | ||
4589 | <f_translation> | ||
4590 | 성능: | ||
4591 | </f_translation> | ||
4592 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4593 | <b_path>/Display panel/FasterText</b_path> | ||
4594 | <c_attribute></c_attribute> | ||
4595 | <d_old></d_old> | ||
4596 | <e_new> | ||
4597 | Faster | ||
4598 | </e_new> | ||
4599 | <f_old_trans></f_old_trans> | ||
4600 | <f_translation> | ||
4601 | 고속 | ||
4602 | </f_translation> | ||
4603 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4604 | <b_path>/Display panel/ShadersPrefText</b_path> | ||
4605 | <c_attribute></c_attribute> | ||
4606 | <d_old></d_old> | ||
4607 | <e_new> | ||
4608 | Low | ||
4609 | </e_new> | ||
4610 | <f_old_trans></f_old_trans> | ||
4611 | <f_translation> | ||
4612 | 낮음 | ||
4613 | </f_translation> | ||
4614 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4615 | <b_path>/Display panel/ShadersPrefText2</b_path> | ||
4616 | <c_attribute></c_attribute> | ||
4617 | <d_old></d_old> | ||
4618 | <e_new> | ||
4619 | Mid | ||
4620 | </e_new> | ||
4621 | <f_old_trans></f_old_trans> | ||
4622 | <f_translation> | ||
4623 | 중간 | ||
4624 | </f_translation> | ||
4625 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4626 | <b_path>/Display panel/ShadersPrefText3</b_path> | ||
4627 | <c_attribute></c_attribute> | ||
4628 | <d_old></d_old> | ||
4629 | <e_new> | ||
4630 | High | ||
4631 | </e_new> | ||
4632 | <f_old_trans></f_old_trans> | ||
4633 | <f_translation> | ||
4634 | 높음 | ||
4635 | </f_translation> | ||
4636 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4637 | <b_path>/Display panel/ShadersPrefText4</b_path> | ||
4638 | <c_attribute></c_attribute> | ||
4639 | <d_old></d_old> | ||
4640 | <e_new> | ||
4641 | Ultra | ||
4642 | </e_new> | ||
4643 | <f_old_trans></f_old_trans> | ||
4644 | <f_translation> | ||
4645 | 매우 높음 | ||
4646 | </f_translation> | ||
4647 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4648 | <b_path>/Display panel/HigherText2</b_path> | ||
4649 | <c_attribute></c_attribute> | ||
4650 | <d_old></d_old> | ||
4651 | <e_new> | ||
4652 | Higher | ||
4653 | </e_new> | ||
4654 | <f_old_trans></f_old_trans> | ||
4655 | <f_translation> | ||
4656 | 더 높게 | ||
4657 | </f_translation> | ||
4658 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4659 | <b_path>/Display panel/QualityText2</b_path> | ||
4660 | <c_attribute></c_attribute> | ||
4661 | <d_old></d_old> | ||
4662 | <e_new> | ||
4663 | Quality | ||
4664 | </e_new> | ||
4665 | <f_old_trans></f_old_trans> | ||
4666 | <f_translation> | ||
4667 | 품질 | ||
4668 | </f_translation> | ||
4669 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4670 | <b_path>/Display panel/QualityPerformanceSelection</b_path> | ||
4671 | <c_attribute>label</c_attribute> | ||
4672 | <d_old></d_old> | ||
4673 | <e_new></e_new> | ||
4674 | <f_old_trans></f_old_trans> | ||
4675 | <f_translation></f_translation> | ||
4676 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4677 | <b_path>/Display panel/CustomSettings</b_path> | ||
4678 | <c_attribute>label</c_attribute> | ||
4679 | <d_old></d_old> | ||
4680 | <e_new>Custom</e_new> | ||
4681 | <f_old_trans></f_old_trans> | ||
4682 | <f_translation>사용자 크기</f_translation> | ||
4683 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4684 | <b_path>/Display panel/ShadersText</b_path> | ||
4685 | <c_attribute></c_attribute> | ||
4686 | <d_old></d_old> | ||
4687 | <e_new> | ||
4688 | Shaders: | ||
4689 | </e_new> | ||
4690 | <f_old_trans></f_old_trans> | ||
4691 | <f_translation> | ||
4692 | 쉐이더: | ||
4693 | </f_translation> | ||
4694 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4695 | <b_path>/Display panel/BumpShiny</b_path> | ||
4696 | <c_attribute>label</c_attribute> | ||
4697 | <d_old></d_old> | ||
4698 | <e_new>Bump Mapping and Shiny</e_new> | ||
4699 | <f_old_trans></f_old_trans> | ||
4700 | <f_translation>범프 매핑 및 광택 보이기</f_translation> | ||
4701 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4702 | <b_path>/Display panel/BasicShaders</b_path> | ||
4703 | <c_attribute>label</c_attribute> | ||
4704 | <d_old></d_old> | ||
4705 | <e_new>Basic Shaders</e_new> | ||
4706 | <f_old_trans></f_old_trans> | ||
4707 | <f_translation>기본 쉐이더</f_translation> | ||
4708 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4709 | <b_path>/Display panel/BasicShaders</b_path> | ||
4710 | <c_attribute>tool_tip</c_attribute> | ||
4711 | <d_old></d_old> | ||
4712 | <e_new>Disabling this option may prevent some graphics card drivers from crashing.</e_new> | ||
4713 | <f_old_trans></f_old_trans> | ||
4714 | <f_translation>이 옵션을 사용하지 않으면 일부 그래픽 카드 드라이버에 오류가 발생할 수 있습니다.</f_translation> | ||
4715 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4716 | <b_path>/Display panel/WindLightUseAtmosShaders</b_path> | ||
4717 | <c_attribute>label</c_attribute> | ||
4718 | <d_old></d_old> | ||
4719 | <e_new>Atmospheric Shaders</e_new> | ||
4720 | <f_old_trans></f_old_trans> | ||
4721 | <f_translation>대기 쉐이더</f_translation> | ||
4722 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4723 | <b_path>/Display panel/Reflections</b_path> | ||
4724 | <c_attribute>label</c_attribute> | ||
4725 | <d_old></d_old> | ||
4726 | <e_new>Water Reflections</e_new> | ||
4727 | <f_old_trans></f_old_trans> | ||
4728 | <f_translation>수면 반사</f_translation> | ||
4729 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4730 | <b_path>/Display panel/ReflectionDetailText</b_path> | ||
4731 | <c_attribute></c_attribute> | ||
4732 | <d_old></d_old> | ||
4733 | <e_new> | ||
4734 | Reflection Detail: | ||
4735 | </e_new> | ||
4736 | <f_old_trans></f_old_trans> | ||
4737 | <f_translation> | ||
4738 | 반사 디테일: | ||
4739 | </f_translation> | ||
4740 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4741 | <b_path>/Display panel/ReflectionDetailRadio/0</b_path> | ||
4742 | <c_attribute></c_attribute> | ||
4743 | <d_old></d_old> | ||
4744 | <e_new> | ||
4745 | Terrain and Trees | ||
4746 | </e_new> | ||
4747 | <f_old_trans></f_old_trans> | ||
4748 | <f_translation> | ||
4749 | 지형 및 나무 | ||
4750 | </f_translation> | ||
4751 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4752 | <b_path>/Display panel/ReflectionDetailRadio/1</b_path> | ||
4753 | <c_attribute></c_attribute> | ||
4754 | <d_old></d_old> | ||
4755 | <e_new> | ||
4756 | All Static Objects | ||
4757 | </e_new> | ||
4758 | <f_old_trans></f_old_trans> | ||
4759 | <f_translation> | ||
4760 | 모든 정적 오브젝트 | ||
4761 | </f_translation> | ||
4762 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4763 | <b_path>/Display panel/ReflectionDetailRadio/2</b_path> | ||
4764 | <c_attribute></c_attribute> | ||
4765 | <d_old></d_old> | ||
4766 | <e_new> | ||
4767 | All Avatars and Objects | ||
4768 | </e_new> | ||
4769 | <f_old_trans></f_old_trans> | ||
4770 | <f_translation> | ||
4771 | 모든 아바타 및 오브젝트 | ||
4772 | </f_translation> | ||
4773 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4774 | <b_path>/Display panel/ReflectionDetailRadio/3</b_path> | ||
4775 | <c_attribute></c_attribute> | ||
4776 | <d_old></d_old> | ||
4777 | <e_new> | ||
4778 | Everything | ||
4779 | </e_new> | ||
4780 | <f_old_trans></f_old_trans> | ||
4781 | <f_translation> | ||
4782 | 모두 | ||
4783 | </f_translation> | ||
4784 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4785 | <b_path>/Display panel/AvatarRenderingText</b_path> | ||
4786 | <c_attribute></c_attribute> | ||
4787 | <d_old></d_old> | ||
4788 | <e_new> | ||
4789 | Avatar Rendering: | ||
4790 | </e_new> | ||
4791 | <f_old_trans></f_old_trans> | ||
4792 | <f_translation> | ||
4793 | 아바타 렌더링: | ||
4794 | </f_translation> | ||
4795 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4796 | <b_path>/Display panel/AvatarImpostors</b_path> | ||
4797 | <c_attribute>label</c_attribute> | ||
4798 | <d_old></d_old> | ||
4799 | <e_new>Avatar Impostors</e_new> | ||
4800 | <f_old_trans></f_old_trans> | ||
4801 | <f_translation>아바타 가상</f_translation> | ||
4802 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4803 | <b_path>/Display panel/AvatarVertexProgram</b_path> | ||
4804 | <c_attribute>label</c_attribute> | ||
4805 | <d_old></d_old> | ||
4806 | <e_new>Hardware Skinning</e_new> | ||
4807 | <f_old_trans></f_old_trans> | ||
4808 | <f_translation>기구 스킨 설정</f_translation> | ||
4809 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4810 | <b_path>/Display panel/AvatarCloth</b_path> | ||
4811 | <c_attribute>label</c_attribute> | ||
4812 | <d_old></d_old> | ||
4813 | <e_new>Avatar Cloth</e_new> | ||
4814 | <f_old_trans></f_old_trans> | ||
4815 | <f_translation>아바타 의복</f_translation> | ||
4816 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4817 | <b_path>/Display panel/DrawDistanceMeterText1</b_path> | ||
4818 | <c_attribute></c_attribute> | ||
4819 | <d_old></d_old> | ||
4820 | <e_new> | ||
4821 | m | ||
4822 | </e_new> | ||
4823 | <f_old_trans></f_old_trans> | ||
4824 | <f_translation> | ||
4825 | m | ||
4826 | </f_translation> | ||
4827 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4828 | <b_path>/Display panel/DrawDistanceMeterText2</b_path> | ||
4829 | <c_attribute></c_attribute> | ||
4830 | <d_old></d_old> | ||
4831 | <e_new> | ||
4832 | m | ||
4833 | </e_new> | ||
4834 | <f_old_trans></f_old_trans> | ||
4835 | <f_translation> | ||
4836 | m | ||
4837 | </f_translation> | ||
4838 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4839 | <b_path>/Display panel/DrawDistance</b_path> | ||
4840 | <c_attribute>label</c_attribute> | ||
4841 | <d_old></d_old> | ||
4842 | <e_new>Draw Distance:</e_new> | ||
4843 | <f_old_trans></f_old_trans> | ||
4844 | <f_translation>렌더링 거리 제한:</f_translation> | ||
4845 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4846 | <b_path>/Display panel/MaxParticleCount</b_path> | ||
4847 | <c_attribute>label</c_attribute> | ||
4848 | <d_old></d_old> | ||
4849 | <e_new>Max. Particle Count:</e_new> | ||
4850 | <f_old_trans></f_old_trans> | ||
4851 | <f_translation>최대 파티클 수:</f_translation> | ||
4852 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4853 | <b_path>/Display panel/RenderPostProcess</b_path> | ||
4854 | <c_attribute>label</c_attribute> | ||
4855 | <d_old></d_old> | ||
4856 | <e_new>Post Process Quality:</e_new> | ||
4857 | <f_old_trans></f_old_trans> | ||
4858 | <f_translation>사후 처리 품질:</f_translation> | ||
4859 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4860 | <b_path>/Display panel/MeshDetailText</b_path> | ||
4861 | <c_attribute></c_attribute> | ||
4862 | <d_old></d_old> | ||
4863 | <e_new> | ||
4864 | Mesh Detail: | ||
4865 | </e_new> | ||
4866 | <f_old_trans></f_old_trans> | ||
4867 | <f_translation> | ||
4868 | 메쉬 디테일: | ||
4869 | </f_translation> | ||
4870 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4871 | <b_path>/Display panel/ObjectMeshDetail</b_path> | ||
4872 | <c_attribute>label</c_attribute> | ||
4873 | <d_old></d_old> | ||
4874 | <e_new> Objects:</e_new> | ||
4875 | <f_old_trans></f_old_trans> | ||
4876 | <f_translation> 오브젝트:</f_translation> | ||
4877 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4878 | <b_path>/Display panel/FlexibleMeshDetail</b_path> | ||
4879 | <c_attribute>label</c_attribute> | ||
4880 | <d_old></d_old> | ||
4881 | <e_new> Flexiprims:</e_new> | ||
4882 | <f_old_trans></f_old_trans> | ||
4883 | <f_translation> 플렉시프림:</f_translation> | ||
4884 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4885 | <b_path>/Display panel/TreeMeshDetail</b_path> | ||
4886 | <c_attribute>label</c_attribute> | ||
4887 | <d_old></d_old> | ||
4888 | <e_new> Trees:</e_new> | ||
4889 | <f_old_trans></f_old_trans> | ||
4890 | <f_translation> 나무:</f_translation> | ||
4891 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4892 | <b_path>/Display panel/AvatarMeshDetail</b_path> | ||
4893 | <c_attribute>label</c_attribute> | ||
4894 | <d_old></d_old> | ||
4895 | <e_new> Avatars:</e_new> | ||
4896 | <f_old_trans></f_old_trans> | ||
4897 | <f_translation> 아바타:</f_translation> | ||
4898 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4899 | <b_path>/Display panel/TerrainMeshDetail</b_path> | ||
4900 | <c_attribute>label</c_attribute> | ||
4901 | <d_old></d_old> | ||
4902 | <e_new> Terrain:</e_new> | ||
4903 | <f_old_trans></f_old_trans> | ||
4904 | <f_translation> 지형:</f_translation> | ||
4905 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4906 | <b_path>/Display panel/SkyMeshDetail</b_path> | ||
4907 | <c_attribute>label</c_attribute> | ||
4908 | <d_old></d_old> | ||
4909 | <e_new> Sky:</e_new> | ||
4910 | <f_old_trans></f_old_trans> | ||
4911 | <f_translation> 하늘:</f_translation> | ||
4912 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4913 | <b_path>/Display panel/PostProcessText</b_path> | ||
4914 | <c_attribute></c_attribute> | ||
4915 | <d_old></d_old> | ||
4916 | <e_new> | ||
4917 | Low | ||
4918 | </e_new> | ||
4919 | <f_old_trans></f_old_trans> | ||
4920 | <f_translation> | ||
4921 | 낮음 | ||
4922 | </f_translation> | ||
4923 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4924 | <b_path>/Display panel/ObjectMeshDetailText</b_path> | ||
4925 | <c_attribute></c_attribute> | ||
4926 | <d_old></d_old> | ||
4927 | <e_new> | ||
4928 | Low | ||
4929 | </e_new> | ||
4930 | <f_old_trans></f_old_trans> | ||
4931 | <f_translation> | ||
4932 | 낮음 | ||
4933 | </f_translation> | ||
4934 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4935 | <b_path>/Display panel/FlexibleMeshDetailText</b_path> | ||
4936 | <c_attribute></c_attribute> | ||
4937 | <d_old></d_old> | ||
4938 | <e_new> | ||
4939 | Low | ||
4940 | </e_new> | ||
4941 | <f_old_trans></f_old_trans> | ||
4942 | <f_translation> | ||
4943 | 낮음 | ||
4944 | </f_translation> | ||
4945 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4946 | <b_path>/Display panel/TreeMeshDetailText</b_path> | ||
4947 | <c_attribute></c_attribute> | ||
4948 | <d_old></d_old> | ||
4949 | <e_new> | ||
4950 | Low | ||
4951 | </e_new> | ||
4952 | <f_old_trans></f_old_trans> | ||
4953 | <f_translation> | ||
4954 | 낮음 | ||
4955 | </f_translation> | ||
4956 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4957 | <b_path>/Display panel/AvatarMeshDetailText</b_path> | ||
4958 | <c_attribute></c_attribute> | ||
4959 | <d_old></d_old> | ||
4960 | <e_new> | ||
4961 | Low | ||
4962 | </e_new> | ||
4963 | <f_old_trans></f_old_trans> | ||
4964 | <f_translation> | ||
4965 | 낮음 | ||
4966 | </f_translation> | ||
4967 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4968 | <b_path>/Display panel/TerrainMeshDetailText</b_path> | ||
4969 | <c_attribute></c_attribute> | ||
4970 | <d_old></d_old> | ||
4971 | <e_new> | ||
4972 | Low | ||
4973 | </e_new> | ||
4974 | <f_old_trans></f_old_trans> | ||
4975 | <f_translation> | ||
4976 | 낮음 | ||
4977 | </f_translation> | ||
4978 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4979 | <b_path>/Display panel/SkyMeshDetailText</b_path> | ||
4980 | <c_attribute></c_attribute> | ||
4981 | <d_old></d_old> | ||
4982 | <e_new> | ||
4983 | Low | ||
4984 | </e_new> | ||
4985 | <f_old_trans></f_old_trans> | ||
4986 | <f_translation> | ||
4987 | 낮음 | ||
4988 | </f_translation> | ||
4989 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
4990 | <b_path>/Display panel/LightingDetailText</b_path> | ||
4991 | <c_attribute></c_attribute> | ||
4992 | <d_old></d_old> | ||
4993 | <e_new> | ||
4994 | Lighting Detail: | ||
4995 | </e_new> | ||
4996 | <f_old_trans></f_old_trans> | ||
4997 | <f_translation> | ||
4998 | 조명 세부 사항: | ||
4999 | </f_translation> | ||
5000 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
5001 | <b_path>/Display panel/LightingDetailRadio/SunMoon</b_path> | ||
5002 | <c_attribute></c_attribute> | ||
5003 | <d_old></d_old> | ||
5004 | <e_new> | ||
5005 | Sun and moon only | ||
5006 | </e_new> | ||
5007 | <f_old_trans></f_old_trans> | ||
5008 | <f_translation> | ||
5009 | 자연광만 표시 | ||
5010 | </f_translation> | ||
5011 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
5012 | <b_path>/Display panel/LightingDetailRadio/LocalLights</b_path> | ||
5013 | <c_attribute></c_attribute> | ||
5014 | <d_old></d_old> | ||
5015 | <e_new> | ||
5016 | Nearby local lights | ||
5017 | </e_new> | ||
5018 | <f_old_trans></f_old_trans> | ||
5019 | <f_translation> | ||
5020 | 근접 광원 표시 | ||
5021 | </f_translation> | ||
5022 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
5023 | <b_path>/Display panel/TerrainDetailText</b_path> | ||
5024 | <c_attribute></c_attribute> | ||
5025 | <d_old></d_old> | ||
5026 | <e_new> | ||
5027 | Terrain Detail: | ||
5028 | </e_new> | ||
5029 | <f_old_trans></f_old_trans> | ||
5030 | <f_translation> | ||
5031 | 지형 세부 사항: | ||
5032 | </f_translation> | ||
5033 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
5034 | <b_path>/Display panel/TerrainDetailRadio/0</b_path> | ||
5035 | <c_attribute></c_attribute> | ||
5036 | <d_old></d_old> | ||
5037 | <e_new> | ||
5038 | Low | ||
5039 | </e_new> | ||
5040 | <f_old_trans></f_old_trans> | ||
5041 | <f_translation> | ||
5042 | 낮음 | ||
5043 | </f_translation> | ||
5044 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
5045 | <b_path>/Display panel/TerrainDetailRadio/2</b_path> | ||
5046 | <c_attribute></c_attribute> | ||
5047 | <d_old></d_old> | ||
5048 | <e_new> | ||
5049 | High | ||
5050 | </e_new> | ||
5051 | <f_old_trans></f_old_trans> | ||
5052 | <f_translation> | ||
5053 | 높음 | ||
5054 | </f_translation> | ||
5055 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
5056 | <b_path>/Display panel/Defaults</b_path> | ||
5057 | <c_attribute>label</c_attribute> | ||
5058 | <d_old></d_old> | ||
5059 | <e_new>Recommended Settings</e_new> | ||
5060 | <f_old_trans></f_old_trans> | ||
5061 | <f_translation>권장 설정</f_translation> | ||
5062 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
5063 | <b_path>/Display panel/GraphicsHardwareButton</b_path> | ||
5064 | <c_attribute>label</c_attribute> | ||
5065 | <d_old></d_old> | ||
5066 | <e_new>Hardware Options</e_new> | ||
5067 | <f_old_trans></f_old_trans> | ||
5068 | <f_translation>하드웨어 옵션</f_translation> | ||
5069 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
5070 | <b_path>/Display panel/GraphicsHardwareButton</b_path> | ||
5071 | <c_attribute>label_selected</c_attribute> | ||
5072 | <d_old></d_old> | ||
5073 | <e_new>Hardware Options</e_new> | ||
5074 | <f_old_trans></f_old_trans> | ||
5075 | <f_translation>하드웨어 옵션</f_translation> | ||
5076 | </string><string><a_file>panel_preferences_im.xml</a_file> | ||
5077 | <b_path>/im/text_box4</b_path> | ||
5078 | <c_attribute></c_attribute> | ||
5079 | <d_old></d_old> | ||
5080 | <e_new> | ||
5081 | Logging Options: | ||
5082 | </e_new> | ||
5083 | <f_old_trans></f_old_trans> | ||
5084 | <f_translation> | ||
5085 | 로그인 옵션: | ||
5086 | </f_translation> | ||
5087 | </string><string><a_file>panel_preferences_input.xml</a_file> | ||
5088 | <b_path>/Input panel/text2</b_path> | ||
5089 | <c_attribute></c_attribute> | ||
5090 | <d_old></d_old> | ||
5091 | <e_new> | ||
5092 | Avatar Display Options: | ||
5093 | </e_new> | ||
5094 | <f_old_trans></f_old_trans> | ||
5095 | <f_translation> | ||
5096 | 아바타 디스플레이 옵션: | ||
5097 | </f_translation> | ||
5098 | </string><string><a_file>panel_preferences_input.xml</a_file> | ||
5099 | <b_path>/Input panel/avfp</b_path> | ||
5100 | <c_attribute>label</c_attribute> | ||
5101 | <d_old></d_old> | ||
5102 | <e_new>Show Avatar in Mouselook</e_new> | ||
5103 | <f_old_trans></f_old_trans> | ||
5104 | <f_translation>1인칭 시점으로 시작</f_translation> | ||
5105 | </string><string><a_file>panel_preferences_voice.xml</a_file> | ||
5106 | <b_path>/chat/device_settings_text</b_path> | ||
5107 | <c_attribute></c_attribute> | ||
5108 | <d_old></d_old> | ||
5109 | <e_new> | ||
5110 | NOTE: Running the Device Settings or Voice Chat Setup will temporarily disconnect you from Voice Chat. | ||
5111 | </e_new> | ||
5112 | <f_old_trans></f_old_trans> | ||
5113 | <f_translation> | ||
5114 | 참고: 장치 설정 또는 음성 채팅 설정을 실행하면 일시적으로 음성 채팅 연결이 끊길 수 있습니다. | ||
5115 | </f_translation> | ||
5116 | </string><string><a_file>panel_preferences_web.xml</a_file> | ||
5117 | <b_path>/web/use_external_browser</b_path> | ||
5118 | <c_attribute>tool_tip</c_attribute> | ||
5119 | <d_old></d_old> | ||
5120 | <e_new>Use outside web browser for help, web links, etc. Not recommended if running full screen.</e_new> | ||
5121 | <f_old_trans></f_old_trans> | ||
5122 | <f_translation>도움말, 웹링크 등은 외부 웹브라우저를 사용하십시오. 전체 화면 모드에서는 권장하지 않습니다.</f_translation> | ||
5123 | </string><string><a_file>panel_preferences_web.xml</a_file> | ||
5124 | <b_path>/web/use_external_browser/external</b_path> | ||
5125 | <c_attribute></c_attribute> | ||
5126 | <d_old></d_old> | ||
5127 | <e_new> | ||
5128 | Use external web browser (Firefox, Safari, Internet Explorer) | ||
5129 | </e_new> | ||
5130 | <f_old_trans></f_old_trans> | ||
5131 | <f_translation> | ||
5132 | 외부 웹 브라우저 사용(Firefox, Safari, Internet Explorer) | ||
5133 | </f_translation> | ||
5134 | </string><string><a_file>panel_preferences_web.xml</a_file> | ||
5135 | <b_path>/web/use_external_browser/internal</b_path> | ||
5136 | <c_attribute></c_attribute> | ||
5137 | <d_old></d_old> | ||
5138 | <e_new> | ||
5139 | Use built-in web browser | ||
5140 | </e_new> | ||
5141 | <f_old_trans></f_old_trans> | ||
5142 | <f_translation> | ||
5143 | 내부 웹 브라우저 사용 | ||
5144 | </f_translation> | ||
5145 | </string><string><a_file>panel_region_estate.xml</a_file> | ||
5146 | <b_path>/Estate/abuse_email_address_help</b_path> | ||
5147 | <c_attribute>label</c_attribute> | ||
5148 | <d_old></d_old> | ||
5149 | <e_new>?</e_new> | ||
5150 | <f_old_trans></f_old_trans> | ||
5151 | <f_translation>?</f_translation> | ||
5152 | </string><string><a_file>panel_voice_options.xml</a_file> | ||
5153 | <b_path>/content_panel/friends_only_check</b_path> | ||
5154 | <c_attribute>label</c_attribute> | ||
5155 | <d_old></d_old> | ||
5156 | <e_new>Only allow Friends to initiate Voice Calls with me</e_new> | ||
5157 | <f_old_trans></f_old_trans> | ||
5158 | <f_translation>친구들만 나와의 음성 채팅을 시작할 수 있도록 승락</f_translation> | ||
350 | </string><string><a_file>panel_voice_remote_expanded.xml</a_file> | 5159 | </string><string><a_file>panel_voice_remote_expanded.xml</a_file> |
351 | <b_path>/voice_remote/voice_channel_bg</b_path> | 5160 | <b_path>/voice_remote/voice_channel_bg</b_path> |
352 | <c_attribute>label</c_attribute> | 5161 | <c_attribute>label</c_attribute> |
diff --git a/linden/indra/newview/skins/xui/ko/need_to_update.xml b/linden/indra/newview/skins/xui/ko/need_to_update.xml index 6671486..006309f 100644 --- a/linden/indra/newview/skins/xui/ko/need_to_update.xml +++ b/linden/indra/newview/skins/xui/ko/need_to_update.xml | |||
@@ -2,125 +2,86 @@ | |||
2 | 2 | ||
3 | <strings> | 3 | <strings> |
4 | <string><a_file>alerts.xml</a_file> | 4 | <string><a_file>alerts.xml</a_file> |
5 | <b_path>//ErrorEncodingSnapshot/message</b_path> | 5 | <b_path>//DisplaySettingsNoShaders/message</b_path> |
6 | <c_attribute></c_attribute> | 6 | <c_attribute></c_attribute> |
7 | <d_old> | 7 | <d_old> |
8 | Error encoding snapshot. | 8 | [SECOND_LIFE] crashed while initializing graphics drivers. |
9 | Shaders will be disabled in order to avoid some common driver errors. | ||
10 | This will disable some graphics features. | ||
11 | We recommend updating your graphics card drivers. | ||
12 | Shaders can be re-enabled in Preferences > Graphics Detail. | ||
9 | </d_old> | 13 | </d_old> |
10 | <e_new> | 14 | <e_new> |
11 | Error encoding snapshot! | 15 | [SECOND_LIFE] crashed while initializing graphics drivers. |
16 | Graphics Quality will be set to low to avoid some common driver errors. | ||
17 | This will disable some graphics features. | ||
18 | We recommend updating your graphics card drivers. | ||
19 | Graphics Quality can be raised in Preferences > Graphics. | ||
12 | </e_new> | 20 | </e_new> |
13 | <f_translation> | 21 | <f_translation> |
14 | 스냅샷 인코딩 중 오류가 발생했습니다. | 22 | 그래픽 드라이버 초기화 중 [SECOND_LIFE]에 오류가 발생했습니다. |
23 | 일반적인 드라이버 오류를 방지하기 위해 그래픽 품질이 낮게 설정됩니다. | ||
24 | 이로 인해 일부 그래픽 기능을 사용할 수 없게 될 수 있습니다.. | ||
25 | 그래픽 카드 드라이버의 업데이트를 권장합니다. | ||
26 | 환경 설정 > 그래픽에서 그래픽 품질을 높일 수 있습니다. | ||
15 | </f_translation> | 27 | </f_translation> |
16 | <f_old_trans> | 28 | <f_old_trans> |
17 | 스냅샷 인코딩 중 오류가 발생했습니다. | 29 | 그래픽 드라이버 인식중 오류가 발생했습니다. 일반적인 드라이버 오류를 피하기 위해 쉐이더는 자동으로 비활성 될 것 입니다. 이것은 일부 그래픽 관련 효과를 비활성 시킬 것 입니다.그래픽 카드나 드라아버의 업데이트를 권유합니다. 쉐이더는 환경설정>그래픽 디테일 에서 다시 활성화 시킬 수 있습니다. |
18 | </f_old_trans> | 30 | </f_old_trans> |
19 | </string><string><a_file>alerts.xml</a_file> | 31 | </string><string><a_file>alerts.xml</a_file> |
20 | <b_path>//AddClassified/message</b_path> | 32 | <b_path>//HelpEstateAllowResident/message</b_path> |
21 | <c_attribute></c_attribute> | 33 | <c_attribute></c_attribute> |
22 | <d_old> | 34 | <d_old> |
23 | Classified ads appear in the 'Classified' section of the | 35 | Access to this estate will be limited to Residents |
24 | Search directory and on www.secondlife.com for one week. | 36 | listed here and any groups below. This setting is |
25 | Fill out your ad, then click 'Publish...' to add it to the | 37 | only available when Visible from Mainland is |
26 | directory. | 38 | unchecked. |
27 | You'll be asked for a price to pay when clicking Publish. | ||
28 | Paying more makes your ad appear higher in the list, and | ||
29 | also appear higher when people search for keywords. | ||
30 | </d_old> | 39 | </d_old> |
31 | <e_new> | 40 | <e_new> |
32 | Classified ads appear in the 'Classified' section of the | 41 | Access to this estate will be limited to Residents |
33 | Find directory for one week. | 42 | listed here and any groups below. This setting is |
34 | Fill out your ad, then click 'Publish...' to add it to the | 43 | only available when Public Access is |
35 | directory. | 44 | unchecked. |
36 | You'll be asked for a price to pay when clicking Publish. | ||
37 | Paying more makes your ad appear higher in the list, and | ||
38 | also appear higher when people search for keywords. | ||
39 | </e_new> | 45 | </e_new> |
40 | <f_translation> | 46 | <f_translation> |
41 | 광고가 1주일 동안 디렉토리 검색의'광고' 섹션에 | 47 | 이 사유지에 대한 출입은 아래 목록에 있는 |
42 | 게시됩니다. | 48 | 주민들과 선택된 그룹들로 제한됩니다. 이 설정은 |
43 | 광고를 작성한 후 '게시하기'를 클릭하여 디렉토리에 | 49 | 모두 출입 허용 옵션이 해제된 경우에만 |
44 | 추가합니다. | 50 | 이용할 수 있습니다. |
45 | 게시하기를 클릭하면 요금 결제를 묻는 메시지가 나타납니다. | ||
46 | 높은 가격을 지불 할수록 목록의 상단 위치에 게시되고 | ||
47 | 키워드 검색결과에 더 우선적으로 표시됩니다. | ||
48 | </f_translation> | 51 | </f_translation> |
49 | <f_old_trans> | 52 | <f_old_trans> |
50 | 광고가 1주일 동안 디렉토리 검색의'광고' 섹션에 | 53 | 사유지 사용권한은 목록에 있는 |
51 | 게시됩니다. | 54 | 주민들과 아래 목록에 그룹들로 제한됩니다. (사유지를 메인랜드에서 확인할 수 있는 경우, |
52 | 광고를 작성한 후 '게시하기'를 클릭하여 디렉토리에 | 55 | 사용권한은 주민 또는 목록상의 그룹으로 제한될 수 없고, 이러한 제어는 비활성화됩니다. |
53 | 추가합니다. | 56 | '접근 거부' 목록만 사용됨) |
54 | 게시하기를 클릭하면 요금 결제를 묻는 메시지가 나타납니다. | ||
55 | 높은 가격을 지불 할수록 목록의 상단 위치에 게시되고 | ||
56 | 키워드 검색결과에 더 우선적으로 표시됩니다. | ||
57 | </f_old_trans> | 57 | </f_old_trans> |
58 | </string><string><a_file>floater_about_land.xml</a_file> | 58 | </string><string><a_file>alerts.xml</a_file> |
59 | <b_path>/floaterland/landtab/land_objects_panel</b_path> | 59 | <b_path>//HelpEstateAllowGroup/message</b_path> |
60 | <c_attribute></c_attribute> | 60 | <c_attribute></c_attribute> |
61 | <d_old></d_old> | 61 | <d_old> |
62 | Access to this estate will be limited to groups | ||
63 | listed here and any Residents above. This setting is | ||
64 | only available when Visible from Mainland is | ||
65 | unchecked. | ||
66 | </d_old> | ||
62 | <e_new> | 67 | <e_new> |
63 | 68 | Access to this estate will be limited to groups | |
64 | 69 | listed here and any Residents above. This setting is | |
65 | 70 | only available when Public Access is | |
66 | 71 | unchecked. | |
67 | |||
68 | |||
69 | |||
70 | |||
71 | |||
72 | |||
73 | |||
74 | |||
75 | |||
76 | |||
77 | |||
78 | |||
79 | |||
80 | |||
81 | |||
82 | |||
83 | |||
84 | |||
85 | |||
86 | |||
87 | |||
88 | |||
89 | |||
90 | |||
91 | /> | ||
92 | </e_new> | 72 | </e_new> |
93 | <f_translation> | 73 | <f_translation> |
94 | 74 | 이 사유지에 대한 출입은 아래 목록에 있는 | |
95 | 75 | 주민들과 선택된 그룹들로 제한됩니다. 이 설정은 | |
96 | 76 | 모두 출입 허용 옵션이 해제된 경우에만 | |
97 | 77 | 이용할 수 있습니다. | |
98 | |||
99 | |||
100 | |||
101 | |||
102 | |||
103 | |||
104 | |||
105 | |||
106 | |||
107 | |||
108 | |||
109 | |||
110 | |||
111 | |||
112 | |||
113 | |||
114 | |||
115 | |||
116 | |||
117 | |||
118 | |||
119 | |||
120 | |||
121 | |||
122 | /> | ||
123 | </f_translation> | 78 | </f_translation> |
79 | <f_old_trans> | ||
80 | 사유지 사용권한은 목록상의 그룹들과 | ||
81 | 위에 특별히 허락된 주민들로 제한됩니다. (사유지를 메인랜드에서 확인할 수 있는 경우, | ||
82 | 사용권한은 주민 또는 목록상의 그룹으로 제한될 수 없고, 이러한 제어는 비활성화됩니다. | ||
83 | '접근 거부' 목록만 사용됨) | ||
84 | </f_old_trans> | ||
124 | </string><string><a_file>floater_about_land.xml</a_file> | 85 | </string><string><a_file>floater_about_land.xml</a_file> |
125 | <b_path>/floaterland/landtab/land_media_panel/Media texture:</b_path> | 86 | <b_path>/floaterland/landtab/land_media_panel/Media texture:</b_path> |
126 | <c_attribute></c_attribute> | 87 | <c_attribute></c_attribute> |
@@ -129,129 +90,408 @@ also appear higher when people search for keywords. | |||
129 | texture: | 90 | texture: |
130 | </d_old> | 91 | </d_old> |
131 | <e_new> | 92 | <e_new> |
132 | Sound | 93 | Replace |
133 | Settings: | 94 | Texture: |
134 | </e_new> | 95 | </e_new> |
135 | <f_translation> | 96 | <f_translation> |
136 | 드 | 97 | 대 |
137 | : | 98 | 텍: |
138 | </f_translation> | 99 | </f_translation> |
139 | <f_old_trans> | 100 | <f_old_trans> |
140 | 사운드 | 101 | 사운드 |
141 | 설정: | 102 | 설정: |
142 | </f_old_trans> | 103 | </f_old_trans> |
143 | </string><string><a_file>floater_about_land.xml</a_file> | 104 | </string><string><a_file>floater_about_land.xml</a_file> |
144 | <b_path>/floaterland/landtab/land_access_panel/AccessCheck</b_path> | 105 | <b_path>/floaterland/landtab/land_media_panel/media_auto_scale</b_path> |
145 | <c_attribute>label</c_attribute> | 106 | <c_attribute>label</c_attribute> |
146 | <d_old>Always Allow</d_old> | 107 | <d_old>Auto scale content (slower and reduced visual quality)</d_old> |
147 | <e_new>Ban</e_new> | 108 | <e_new>Auto scale</e_new> |
148 | <f_translation></f_translation> | 109 | <f_translation> 크기 조절</f_translation> |
149 | <f_old_trans></f_old_trans> | 110 | <f_old_trans>텐츠 자 크기 조절 (속도 및 각 품질 저하)</f_old_trans> |
150 | </string><string><a_file>floater_about_land.xml</a_file> | 111 | </string><string><a_file>floater_about_land.xml</a_file> |
151 | <b_path>/floaterland/landtab/land_access_panel/AccessCheck</b_path> | 112 | <b_path>/floaterland/landtab/land_media_panel/Voice settings:</b_path> |
152 | <c_attribute></c_attribute> | 113 | <c_attribute></c_attribute> |
153 | <d_old> | 114 | <d_old> |
154 | Allowed Residents | 115 | Voice |
116 | Settings: | ||
155 | </d_old> | 117 | </d_old> |
156 | <e_new> | 118 | <e_new> |
157 | Banned Residents | 119 | Voice: |
158 | </e_new> | 120 | </e_new> |
159 | <f_translation> | 121 | <f_translation> |
160 | 출입금지된 민 | 122 | 성: |
161 | </f_translation> | 123 | </f_translation> |
162 | <f_old_trans> | 124 | <f_old_trans> |
163 | 출입금지된 주민 | 125 | 음성 |
126 | 설정: | ||
164 | </f_old_trans> | 127 | </f_old_trans> |
165 | </string><string><a_file>panel_audio_device.xml</a_file> | 128 | </string><string><a_file>floater_buy_object.xml</a_file> |
166 | <b_path>/device_settings/Input device (microphone):</b_path> | 129 | <b_path>/contents/title_buy_text</b_path> |
167 | <c_attribute></c_attribute> | 130 | <c_attribute></c_attribute> |
168 | <d_old> | 131 | <d_old> |
169 | Audio Devices | 132 | Buy [NAME] |
133 | </d_old> | ||
134 | <e_new> | ||
135 | Buy | ||
136 | </e_new> | ||
137 | <f_translation> | ||
138 | 구매 | ||
139 | </f_translation> | ||
140 | <f_old_trans> | ||
141 | [NAME]약 | ||
142 | </f_old_trans> | ||
143 | </string><string><a_file>floater_chat_history.xml</a_file> | ||
144 | <b_path>/chat floater</b_path> | ||
145 | <c_attribute>title</c_attribute> | ||
146 | <d_old>Local Chat</d_old> | ||
147 | <e_new>Local Chat (history)</e_new> | ||
148 | <f_translation>채팅 기록</f_translation> | ||
149 | <f_old_trans>채팅 기록</f_old_trans> | ||
150 | </string><string><a_file>floater_critical.xml</a_file> | ||
151 | <b_path>/modal container</b_path> | ||
152 | <c_attribute>title</c_attribute> | ||
153 | <d_old> </d_old> | ||
154 | <e_new></e_new> | ||
155 | <f_translation></f_translation> | ||
156 | <f_old_trans> </f_old_trans> | ||
157 | </string><string><a_file>floater_new_outfit_dialog.xml</a_file> | ||
158 | <b_path>/modal container</b_path> | ||
159 | <c_attribute>title</c_attribute> | ||
160 | <d_old> </d_old> | ||
161 | <e_new></e_new> | ||
162 | <f_translation></f_translation> | ||
163 | <f_old_trans> </f_old_trans> | ||
164 | </string><string><a_file>floater_select_key.xml</a_file> | ||
165 | <b_path>/modal container</b_path> | ||
166 | <c_attribute>title</c_attribute> | ||
167 | <d_old> </d_old> | ||
168 | <e_new></e_new> | ||
169 | <f_translation></f_translation> | ||
170 | </string><string><a_file>floater_snapshot.xml</a_file> | ||
171 | <b_path>/Snapshot/file_size_label</b_path> | ||
172 | <c_attribute></c_attribute> | ||
173 | <d_old> | ||
174 | File size: [SIZE] bytes | ||
175 | </d_old> | ||
176 | <e_new> | ||
177 | File size: [SIZE] KB | ||
178 | </e_new> | ||
179 | <f_translation> | ||
180 | 파일 크기: [SIZE] KB | ||
181 | </f_translation> | ||
182 | <f_old_trans> | ||
183 | 파일 크기: [SIZE] 바이트 | ||
184 | </f_old_trans> | ||
185 | </string><string><a_file>floater_snapshot.xml</a_file> | ||
186 | <b_path>/Snapshot/new_snapshot_btn</b_path> | ||
187 | <c_attribute>label</c_attribute> | ||
188 | <d_old>New Snapshot</d_old> | ||
189 | <e_new>Refresh Snapshot</e_new> | ||
190 | <f_translation>새 스냅샷</f_translation> | ||
191 | <f_old_trans>새 스냅샷</f_old_trans> | ||
192 | </string><string><a_file>floater_snapshot.xml</a_file> | ||
193 | <b_path>/Snapshot/discard_btn</b_path> | ||
194 | <c_attribute>label</c_attribute> | ||
195 | <d_old>Discard</d_old> | ||
196 | <e_new>Cancel</e_new> | ||
197 | <f_translation>취소</f_translation> | ||
198 | <f_old_trans>취소</f_old_trans> | ||
199 | </string><string><a_file>floater_snapshot.xml</a_file> | ||
200 | <b_path>/Snapshot/keep_aspect_check</b_path> | ||
201 | <c_attribute>label</c_attribute> | ||
202 | <d_old>Keep specified aspect ratio</d_old> | ||
203 | <e_new>Constrain Proportions</e_new> | ||
204 | <f_translation>화상비 유지하기</f_translation> | ||
205 | <f_old_trans>화상비 유지하기</f_old_trans> | ||
206 | </string><string><a_file>floater_test.xml</a_file> | ||
207 | <b_path>/Test</b_path> | ||
208 | <c_attribute>title</c_attribute> | ||
209 | <d_old>Choose Resident</d_old> | ||
210 | <e_new>Test</e_new> | ||
211 | <f_translation>테스트</f_translation> | ||
212 | <f_old_trans>주민 선택</f_old_trans> | ||
213 | </string><string><a_file>floater_tos.xml</a_file> | ||
214 | <b_path>/modal container</b_path> | ||
215 | <c_attribute>title</c_attribute> | ||
216 | <d_old> </d_old> | ||
217 | <e_new></e_new> | ||
218 | <f_translation></f_translation> | ||
219 | <f_old_trans> </f_old_trans> | ||
220 | </string><string><a_file>floater_wearable_save_as.xml</a_file> | ||
221 | <b_path>/modal container</b_path> | ||
222 | <c_attribute>title</c_attribute> | ||
223 | <d_old> </d_old> | ||
224 | <e_new></e_new> | ||
225 | <f_translation></f_translation> | ||
226 | <f_old_trans> </f_old_trans> | ||
227 | </string><string><a_file>floater_world_map.xml</a_file> | ||
228 | <b_path>/worldmap/infohub_chk</b_path> | ||
229 | <c_attribute>label</c_attribute> | ||
230 | <d_old> </d_old> | ||
231 | <e_new></e_new> | ||
232 | <f_translation></f_translation> | ||
233 | <f_old_trans> </f_old_trans> | ||
234 | </string><string><a_file>floater_world_map.xml</a_file> | ||
235 | <b_path>/worldmap/telehubchk</b_path> | ||
236 | <c_attribute>label</c_attribute> | ||
237 | <d_old> </d_old> | ||
238 | <e_new></e_new> | ||
239 | <f_translation></f_translation> | ||
240 | <f_old_trans> </f_old_trans> | ||
241 | </string><string><a_file>floater_world_map.xml</a_file> | ||
242 | <b_path>/worldmap/popular_chk</b_path> | ||
243 | <c_attribute>label</c_attribute> | ||
244 | <d_old> </d_old> | ||
245 | <e_new></e_new> | ||
246 | <f_translation></f_translation> | ||
247 | <f_old_trans> </f_old_trans> | ||
248 | </string><string><a_file>floater_world_map.xml</a_file> | ||
249 | <b_path>/worldmap/land_for_sale_chk</b_path> | ||
250 | <c_attribute>label</c_attribute> | ||
251 | <d_old> </d_old> | ||
252 | <e_new></e_new> | ||
253 | <f_translation></f_translation> | ||
254 | <f_old_trans> </f_old_trans> | ||
255 | </string><string><a_file>floater_world_map.xml</a_file> | ||
256 | <b_path>/worldmap/event_chk</b_path> | ||
257 | <c_attribute>label</c_attribute> | ||
258 | <d_old> </d_old> | ||
259 | <e_new></e_new> | ||
260 | <f_translation></f_translation> | ||
261 | <f_old_trans> </f_old_trans> | ||
262 | </string><string><a_file>floater_world_map.xml</a_file> | ||
263 | <b_path>/worldmap/event_mature_chk</b_path> | ||
264 | <c_attribute>label</c_attribute> | ||
265 | <d_old> </d_old> | ||
266 | <e_new></e_new> | ||
267 | <f_translation></f_translation> | ||
268 | <f_old_trans> </f_old_trans> | ||
269 | </string><string><a_file>menu_viewer.xml</a_file> | ||
270 | <b_path>/Main Menu/View/Chat History</b_path> | ||
271 | <c_attribute>label</c_attribute> | ||
272 | <d_old>Chat History</d_old> | ||
273 | <e_new>Local Chat</e_new> | ||
274 | <f_translation>채팅 기록</f_translation> | ||
275 | <f_old_trans>채팅 기록</f_old_trans> | ||
276 | </string><string><a_file>menu_viewer.xml</a_file> | ||
277 | <b_path>/Main Menu/View/Instant Message</b_path> | ||
278 | <c_attribute>label</c_attribute> | ||
279 | <d_old>Instant Message</d_old> | ||
280 | <e_new>Communicate</e_new> | ||
281 | <f_translation>커뮤니케이트</f_translation> | ||
282 | <f_old_trans>메신저</f_old_trans> | ||
283 | </string><string><a_file>notify.xml</a_file> | ||
284 | <b_path>//FirstDebugMenus/message</b_path> | ||
285 | <c_attribute></c_attribute> | ||
286 | <d_old> | ||
287 | You have enabled the Client and Server debugging menus. | ||
288 | These menus contain features useful for developers debugging Second Life. | ||
289 | To toggle these menus on and off press Ctrl-Alt-D. On a Mac press Cmd-Opt-Shift-D. | ||
170 | </d_old> | 290 | </d_old> |
171 | <e_new> | 291 | <e_new> |
172 | Input device (microphone): | 292 | You have enabled the Advanced menu. |
293 | This menu contains features useful for developers debugging Second Life. | ||
294 | To toggle this menu on Windows press Ctrl-Alt-D. On Mac press Cmd-Opt-Shift-D. | ||
173 | </e_new> | 295 | </e_new> |
174 | <f_translation> | 296 | <f_translation> |
175 | 입력 장치(마이크): | 297 | 고급 메뉴를 활성화하였습니다. |
298 | 이 메뉴들은Second Life 디버깅 개발자에게 유용한 점들을 포함하고 있습니다. | ||
299 | 이 메뉴들을 토글 기능으로 사용하려면 Windows에서 Ctrl-Alt-D키를 누르고 Mac 운영 시스템에서는Cmd-Opt-Shift-D를 누릅니다. | ||
176 | </f_translation> | 300 | </f_translation> |
177 | <f_old_trans> | 301 | <f_old_trans> |
178 | 입력 레벨 | 302 | 클라이언트와 서버 디버깅 메뉴를 활성화 하였습니다. |
179 | </f_old_trans> | 303 | 이 메뉴들은Second Life 디버깅 개발자에게 유용한 점들을 포함하고 있습니다. |
180 | </string><string><a_file>panel_audio_device.xml</a_file> | 304 | 이 메뉴들을 켜짐 또는 꺼짐 토글 기능으로 사용하려면Ctrl-Alt-D키를 누릅니다. Mac 운영 시스템에서는Cmd-Opt-Shift-D를 누릅니다. |
181 | <b_path>/device_settings/Input device (microphone):</b_path> | 305 | </f_old_trans> |
306 | </string><string><a_file>notify.xml</a_file> | ||
307 | <b_path>//FirstSculptedPrim/message</b_path> | ||
182 | <c_attribute></c_attribute> | 308 | <c_attribute></c_attribute> |
183 | <d_old> | 309 | <d_old> |
184 | Audio Devices | 310 | You are editing a sculpted prim. |
311 | Sculpted prims require a special texture to specify their shape. | ||
312 | You can find example sculpted textures in the system library. | ||
185 | </d_old> | 313 | </d_old> |
186 | <e_new> | 314 | <e_new> |
187 | Input Level | 315 | You are editing a sculpted prim. |
316 | Sculpted prims require a special texture to specify their shape. | ||
317 | You can find example sculpted textures in the inventory library. | ||
188 | </e_new> | 318 | </e_new> |
189 | <f_translation> | 319 | <f_translation> |
190 | 입력 레벨 | 320 | sculpted prim을 편집 중입니다. |
321 | sculpted prim은 그 형태를 지정하는 특별한 텍스처를 요구합니다. | ||
322 | 인벤토리 라이브러리에서 텍스처 예를 찾을 수 있습니다. | ||
191 | </f_translation> | 323 | </f_translation> |
192 | <f_old_trans> | 324 | <f_old_trans> |
325 | sculpted prim을 편집 중입니다. | ||
326 | sculpted prim은 그 형태를 지정하는 특별한 텍스처를 요구합니다. | ||
327 | 시스템 라이브러리에서 텍스처 예를 찾을 수 있습니다. | ||
328 | </f_old_trans> | ||
329 | </string><string><a_file>panel_audio_device.xml</a_file> | ||
330 | <b_path>/device_settings/Input device (microphone):</b_path> | ||
331 | <c_attribute></c_attribute> | ||
332 | <d_old> | ||
333 | Audio Devices | ||
334 | </d_old> | ||
335 | <e_new> | ||
336 | Input device (microphone): | ||
337 | </e_new> | ||
338 | <f_translation> | ||
339 | 입력 장치(마이크): | ||
340 | </f_translation> | ||
341 | <f_old_trans> | ||
193 | 입력 레벨 | 342 | 입력 레벨 |
194 | </f_old_trans> | 343 | </f_old_trans> |
195 | </string><string><a_file>panel_login.xml</a_file> | 344 | </string><string><a_file>panel_avatar.xml</a_file> |
196 | <b_path>/panel_login/real_url</b_path> | 345 | <b_path>/Panel Avatar/ShowOnMapFriendOffline</b_path> |
197 | <c_attribute></c_attribute> | 346 | <c_attribute></c_attribute> |
198 | <d_old> | 347 | <d_old> |
199 | https://secondlife.com/app/login/?show_login_form=True | 348 | Show location on the map. |
349 | Disabled because they are not online. | ||
200 | </d_old> | 350 | </d_old> |
201 | <e_new> | 351 | <e_new> |
202 | http://secondlife.com/app/login/ | 352 | Show location on the map. |
353 | Disabled because they are not online. | ||
203 | </e_new> | 354 | </e_new> |
204 | <f_translation> | 355 | <f_translation> |
205 | http://secondlife.com/app/login/ | 356 | 지도상에 위치를 표시. |
357 | 온라인 상태가 아니므로 비활성화되었습니다. | ||
206 | </f_translation> | 358 | </f_translation> |
207 | <f_old_trans> | 359 | <f_old_trans> |
208 | https://secondlife.com/app/login/?show_login_form=True | 360 | 지도상에 위치를 표시. |
361 | 온라인 상태가 아니므로 비활성화되었습니다. | ||
209 | </f_old_trans> | 362 | </f_old_trans> |
210 | </string><string><a_file>panel_preferences_audio.xml</a_file> | 363 | </string><string><a_file>panel_group_general.xml</a_file> |
211 | <b_path>/Media panel/doppler_effect_text</b_path> | 364 | <b_path>/general_tab/confirm_group_create_str</b_path> |
212 | <c_attribute></c_attribute> | 365 | <c_attribute></c_attribute> |
213 | <d_old> | 366 | <d_old> |
214 | Streaming Preferences: | 367 | Creating this group will cost L$100. |
368 | Are you really, really, REALLY sure you want to spend L$100 to create this group? | ||
215 | </d_old> | 369 | </d_old> |
216 | <e_new> | 370 | <e_new> |
217 | Audio Preferences: | 371 | Creating this group will cost L$100. |
372 | Are you really, really, REALLY sure you want to spend L$100 to create this group? | ||
373 | Be aware that if nobody else joins this group within 48 hours, it will be disbanded and the group's name will be unavailable for future use. | ||
218 | </e_new> | 374 | </e_new> |
219 | <f_translation> | 375 | <f_translation> |
220 | 오디오 환경 설정: | 376 | 이 그룹을 생성하려면 L$100가 듭니다. |
377 | 이 그룹을 만드는 데 L$100를 지불할 의사가 있는지 잘 생각해 보십시오. | ||
378 | 48시간 내에 이 그룹에 아무도 가입하지 않으면 그룹이 삭제되고 나중에 이 그룹의 이름을 사용할 수 없게 됩니다. | ||
221 | </f_translation> | 379 | </f_translation> |
222 | <f_old_trans> | 380 | <f_old_trans> |
223 | 오디오 환경 설정: | 381 | 이 그룹을 생성하려면 L$100가 듭니다. |
382 | 이 그룹을 만드는 데 L$100를 지불할 의사가 있는지 잘 생각해 보십시오. | ||
224 | </f_old_trans> | 383 | </f_old_trans> |
225 | </string><string><a_file>panel_preferences_im.xml</a_file> | 384 | </string><string><a_file>panel_group_roles.xml</a_file> |
226 | <b_path>/im/text_box3</b_path> | 385 | <b_path>/roles_tab/roles_tab_container/members_sub_tab/help_text</b_path> |
386 | <c_attribute></c_attribute> | ||
387 | <d_old> | ||
388 | You can add or remove Roles assigned to Members. | ||
389 | Select multiple Members by holding the Ctrl key and | ||
390 | clicking on their names. | ||
391 | </d_old> | ||
392 | <e_new> | ||
393 | You can add or remove Roles assigned to Members. | ||
394 | Select multiple Members by holding the Ctrl key and | ||
395 | clicking on their names. | ||
396 | </e_new> | ||
397 | <f_translation> | ||
398 | 회원에게 할당된 역할을 추가 또는 제거할 수 있습니다. | ||
399 | Ctrl 키를 누른 상태로 해당하는 회원 이름을 클릭하면 | ||
400 | 여러 회원을 선택할 수 있습니다. | ||
401 | </f_translation> | ||
402 | <f_old_trans> | ||
403 | 회원에게 할당된 역할을 추가 또는 제거할 수 있습니다. | ||
404 | Ctrl 키를 누른 상태로 해당하는 회원 이름을 클릭하면 | ||
405 | 여러 회원을 선택할 수 있습니다. | ||
406 | </f_old_trans> | ||
407 | </string><string><a_file>panel_land_covenant.xml</a_file> | ||
408 | <b_path>/Covenant/can_resell</b_path> | ||
227 | <c_attribute></c_attribute> | 409 | <c_attribute></c_attribute> |
228 | <d_old> | 410 | <d_old> |
229 | Busy Mode Response: | 411 | Purchased land in this region may be resold. |
230 | </d_old> | 412 | </d_old> |
231 | <e_new> | 413 | <e_new> |
232 | Logging Options: | 414 | string land in this region may be resold. |
233 | </e_new> | 415 | </e_new> |
234 | <f_translation> | 416 | <f_translation> |
235 | 로그 : | 417 | 에서 토지를 재판매 할 있습니다. |
236 | </f_translation> | 418 | </f_translation> |
237 | <f_old_trans> | 419 | <f_old_trans> |
238 | 로그 : | 420 | 역에서 매한 토는 재판매 할 있습니다. |
239 | </f_old_trans> | 421 | </f_old_trans> |
240 | </string><string><a_file>panel_preferences_voice.xml</a_file> | 422 | </string><string><a_file>panel_media_controls.xml</a_file> |
241 | <b_path>/chat/voice_chat_description</b_path> | 423 | <b_path>/media_controls/media_play</b_path> |
424 | <c_attribute>tool_tip</c_attribute> | ||
425 | <d_old>Play/pause streaming movies</d_old> | ||
426 | <e_new>Play/pause streaming music</e_new> | ||
427 | <f_translation>스트리밍 음악 재생/일시 정지</f_translation> | ||
428 | <f_old_trans>스트리밍 동영상 재생/일시 정지</f_old_trans> | ||
429 | </string><string><a_file>panel_preferences_audio.xml</a_file> | ||
430 | <b_path>/Media panel/streaming_video</b_path> | ||
431 | <c_attribute>label</c_attribute> | ||
432 | <d_old>Play Streaming Video When Available (uses more bandwidth)</d_old> | ||
433 | <e_new>Play Streaming Media When Available (uses more bandwidth)</e_new> | ||
434 | <f_translation>가능한 경우 스트리밍 미디어 재생(더 많은 대역폭 사용)</f_translation> | ||
435 | <f_old_trans>스트리밍 비디오 재생(더 많은 대역폭 사용)</f_old_trans> | ||
436 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
437 | <b_path>/Display panel/windowed mode</b_path> | ||
438 | <c_attribute>label</c_attribute> | ||
439 | <d_old>Run in a window</d_old> | ||
440 | <e_new>Run Second Life in a window</e_new> | ||
441 | <f_translation>하나의 창에서 세컨드라이프 실행</f_translation> | ||
442 | <f_old_trans>하나의 창에서 실행</f_old_trans> | ||
443 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
444 | <b_path>/Display panel/aspect_auto_detect</b_path> | ||
445 | <c_attribute>label</c_attribute> | ||
446 | <d_old>Auto detect</d_old> | ||
447 | <e_new>Auto-detect ratio</e_new> | ||
448 | <f_translation>자동 감지</f_translation> | ||
449 | <f_old_trans>자동 감지</f_old_trans> | ||
450 | </string><string><a_file>panel_voice_enable.xml</a_file> | ||
451 | <b_path>/content_panel/voice_intro_text2</b_path> | ||
242 | <c_attribute></c_attribute> | 452 | <c_attribute></c_attribute> |
243 | <d_old> | 453 | <d_old> |
244 | Push-to-Talk mode lets you control when your voice is transmitted. When in toggle mode, press and release the push-to-talk trigger to switch your microphone on and off. When not in toggle mode, the microphone is active only when the trigger is held down. | 454 | Do you want to enable Voice Chat now? |
245 | </d_old> | 455 | </d_old> |
246 | <e_new> | 456 | <e_new> |
247 | NOTE: Running the Device Settings or Voice Chat Setup will temporarily disconnect you from Voice Chat. | 457 | Voice Chat is enabled by default. Do you wish to continue using Voice Chat? |
248 | </e_new> | 458 | </e_new> |
249 | <f_translation> | 459 | <f_translation> |
250 | 참고: 장치 설정 또는 음성 채팅 설정을 실행하면 일시적으로 음성 채팅 연결이 끊길 수 있습니다. | 460 | 기본적으로 음성 채팅은 활성화되어 있습니다. 음성 채팅을 지금 사용하시겠습니까? |
251 | </f_translation> | 461 | </f_translation> |
252 | <f_old_trans> | 462 | <f_old_trans> |
253 | 참고: 장치 설정 또는 음성 채팅 설정을 실행하면 일시적으로 음성 채팅 연결이 끊길 수 있습니다. | 463 | 음성 채팅을 지금 사용하시겠습니까? |
254 | </f_old_trans> | 464 | </f_old_trans> |
465 | </string><string><a_file>panel_voice_enable.xml</a_file> | ||
466 | <b_path>/content_panel/voice_enable/1</b_path> | ||
467 | <c_attribute></c_attribute> | ||
468 | <d_old> | ||
469 | Yes, enable Voice Chat. | ||
470 | </d_old> | ||
471 | <e_new> | ||
472 | Yes, continue using Voice Chat. | ||
473 | </e_new> | ||
474 | <f_translation> | ||
475 | 예, 음성 채팅을 사용합니다. | ||
476 | </f_translation> | ||
477 | <f_old_trans> | ||
478 | 예, 음성 채팅을 사용합니다. | ||
479 | </f_old_trans> | ||
480 | </string><string><a_file>panel_voice_enable.xml</a_file> | ||
481 | <b_path>/content_panel/voice_enable/0</b_path> | ||
482 | <c_attribute></c_attribute> | ||
483 | <d_old> | ||
484 | No, do not enable Voice Chat at this time. | ||
485 | </d_old> | ||
486 | <e_new> | ||
487 | No, disable Voice Chat. | ||
488 | </e_new> | ||
489 | <f_translation> | ||
490 | 아니오, 음성 채팅을 사용하지 않습니다. | ||
491 | </f_translation> | ||
492 | <f_old_trans> | ||
493 | 아니오, 음성 채팅을 당장은 사용하지 않습니다. | ||
494 | </f_old_trans> | ||
255 | </string><string><a_file>panel_voice_options.xml</a_file> | 495 | </string><string><a_file>panel_voice_options.xml</a_file> |
256 | <b_path>/content_panel/push_to_talk_check</b_path> | 496 | <b_path>/content_panel/push_to_talk_check</b_path> |
257 | <c_attribute>label</c_attribute> | 497 | <c_attribute>label</c_attribute> |
diff --git a/linden/indra/newview/skins/xui/ko/notify.xml b/linden/indra/newview/skins/xui/ko/notify.xml index 4541c5c..8ff1af2 100644 --- a/linden/indra/newview/skins/xui/ko/notify.xml +++ b/linden/indra/newview/skins/xui/ko/notify.xml | |||
@@ -875,16 +875,21 @@ Ctrl 또는 Alt 키를 누른 상태에서 신속하게 도구를 전환하십 | |||
875 | </notify> | 875 | </notify> |
876 | <notify name="FirstDebugMenus"> | 876 | <notify name="FirstDebugMenus"> |
877 | <message name="message"> | 877 | <message name="message"> |
878 | 클라이언트와 서버 디버 메뉴를 활성화 하였습니다. | 878 | 급 메뉴를 활성화하였습니다. |
879 | 이 메뉴들은Second Life 디버깅 개발자에게 유용한 점들을 포함하고 있습니다. | 879 | 이 메뉴들은Second Life 디버깅 개발자에게 유용한 점들을 포함하고 있습니다. |
880 | 이 메뉴들을 켜짐 또는 꺼짐 토글 기능으로 사용하려면Ctrl-Alt-D키를 누릅니다. Mac 운영 시스템에서는Cmd-Opt-Shift-D를 누릅니다. | 880 | 이 메뉴들을 토글 기능으로 사용하려면 Windows에서 Ctrl-Alt-D키를 누르고 Mac 운영 시스템에서는Cmd-Opt-Shift-D를 누릅니다. |
881 | </message> | 881 | </message> |
882 | </notify> | 882 | </notify> |
883 | <notify name="FirstSculptedPrim"> | 883 | <notify name="FirstSculptedPrim"> |
884 | <message name="message"> | 884 | <message name="message"> |
885 | sculpted prim을 편집 중입니다. | 885 | sculpted prim을 편집 중입니다. |
886 | sculpted prim은 그 형태를 지정하는 특별한 텍스처를 요구합니다. | 886 | sculpted prim은 그 형태를 지정하는 특별한 텍스처를 요구합니다. |
887 | 시스템 라이브러리에서 텍스쳐 예를 찾을 수 있습니다. | 887 | 인벤토리 라이브러리에서 텍스처 예를 찾을 수 있습니다. |
888 | </message> | ||
889 | </notify> | ||
890 | <notify name="FirstMedia"> | ||
891 | <message name="message"> | ||
892 | 미디어 재생이 시작되었습니다. 오디오/비디오 아래의 환경 설정 창에서 미디어가 자동으로 재생되도록 설정할 수 있습니다. 단, 신뢰할 수 없는 미디어 사이트에 대해서는 보안 위험이 존재할 수 있습니다. | ||
888 | </message> | 893 | </message> |
889 | </notify> | 894 | </notify> |
890 | <notify name="MaxListSelectMessage"> | 895 | <notify name="MaxListSelectMessage"> |
@@ -1018,4 +1023,9 @@ sculpted prim은 그 형태를 지정하는 특별한 텍스처를 요구합니 | |||
1018 | [VOICE_CHANNEL_NAME]과(와)의 음성 채팅에 연결하는 중 오류가 발생했습니다. 다시 시도해 주십시오. | 1023 | [VOICE_CHANNEL_NAME]과(와)의 음성 채팅에 연결하는 중 오류가 발생했습니다. 다시 시도해 주십시오. |
1019 | </message> | 1024 | </message> |
1020 | </notify> | 1025 | </notify> |
1026 | <notify name="ServerVersionChanged"> | ||
1027 | <message name="message"> | ||
1028 | 이동한 지역이 다른 시뮬레이터 버전으로 실행 중입니다. 자세한 내용을 보려면 이 메시지를 클릭하십시오. | ||
1029 | </message> | ||
1030 | </notify> | ||
1021 | </notifications> | 1031 | </notifications> |
diff --git a/linden/indra/newview/skins/xui/ko/panel_audio_device.xml b/linden/indra/newview/skins/xui/ko/panel_audio_device.xml index 7c09c02..35ebef8 100644 --- a/linden/indra/newview/skins/xui/ko/panel_audio_device.xml +++ b/linden/indra/newview/skins/xui/ko/panel_audio_device.xml | |||
@@ -1,9 +1,15 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <panel name="device_settings"> | 2 | <panel name="device_settings"> |
3 | <text name="Audio Devices"> | ||
4 | 오디오 장치 | ||
5 | </text> | ||
3 | <text name="Output device (speakers):"> | 6 | <text name="Output device (speakers):"> |
4 | 출력 장치(스피커): | 7 | 출력 장치(스피커): |
5 | </text> | 8 | </text> |
6 | <text name="Input device (microphone):"> | 9 | <text name="Input device (microphone):"> |
10 | 입력 장치(마이크): | ||
11 | </text> | ||
12 | <text name="Input level:"> | ||
7 | 입력 레벨 | 13 | 입력 레벨 |
8 | </text> | 14 | </text> |
9 | <text_editor name="voice_intro_text1"> | 15 | <text_editor name="voice_intro_text1"> |
diff --git a/linden/indra/newview/skins/xui/ko/panel_avatar.xml b/linden/indra/newview/skins/xui/ko/panel_avatar.xml index ec02aa5..b19f71f 100644 --- a/linden/indra/newview/skins/xui/ko/panel_avatar.xml +++ b/linden/indra/newview/skins/xui/ko/panel_avatar.xml | |||
@@ -166,6 +166,9 @@ | |||
166 | </text> | 166 | </text> |
167 | </panel> | 167 | </panel> |
168 | <panel label="나의 메모" name="My Notes"> | 168 | <panel label="나의 메모" name="My Notes"> |
169 | <string name="Loading"> | ||
170 | 로딩 중... | ||
171 | </string> | ||
169 | <text name="label"> | 172 | <text name="label"> |
170 | 이 공란을 사용하여 이 사람에 관한 참고 정보를 기록합니다. 진행 중인 | 173 | 이 공란을 사용하여 이 사람에 관한 참고 정보를 기록합니다. 진행 중인 |
171 | 거래, 공동 프로젝트 등을 추적합니다. 사용자만이 이러한 참고 정보를 | 174 | 거래, 공동 프로젝트 등을 추적합니다. 사용자만이 이러한 참고 정보를 |
@@ -189,7 +192,7 @@ | |||
189 | </text> | 192 | </text> |
190 | <text name="ShowOnMapFriendOffline"> | 193 | <text name="ShowOnMapFriendOffline"> |
191 | 지도상에 위치를 표시. | 194 | 지도상에 위치를 표시. |
192 | 온라인 상태가 아니므로 비활성화되었습니다. | 195 | 온라인 상태가 아니므로 비활성화되었습니다. |
193 | </text> | 196 | </text> |
194 | <text name="ShowOnMapFriendOnline"> | 197 | <text name="ShowOnMapFriendOnline"> |
195 | 지도상에 위치를 표시. | 198 | 지도상에 위치를 표시. |
diff --git a/linden/indra/newview/skins/xui/ko/panel_classified.xml b/linden/indra/newview/skins/xui/ko/panel_classified.xml index 0563196..4cb52fb 100644 --- a/linden/indra/newview/skins/xui/ko/panel_classified.xml +++ b/linden/indra/newview/skins/xui/ko/panel_classified.xml | |||
@@ -11,6 +11,9 @@ | |||
11 | <check_box label="성인용" name="classified_mature_check" /> | 11 | <check_box label="성인용" name="classified_mature_check" /> |
12 | <combo_box label="" name="classified_category_combo" /> | 12 | <combo_box label="" name="classified_category_combo" /> |
13 | <button label="업데이트" name="classified_update_btn" /> | 13 | <button label="업데이트" name="classified_update_btn" /> |
14 | <string name="ad_placed_paid"> | ||
15 | 게재 광고: [DATE], 게재 비용 L$[AMT]를 지불했습니다. | ||
16 | </string> | ||
14 | <text name="update_txt"> | 17 | <text name="update_txt"> |
15 | 업데이트 | 18 | 업데이트 |
16 | </text> | 19 | </text> |
diff --git a/linden/indra/newview/skins/xui/ko/panel_friends.xml b/linden/indra/newview/skins/xui/ko/panel_friends.xml index dae90ae..2f7e066 100644 --- a/linden/indra/newview/skins/xui/ko/panel_friends.xml +++ b/linden/indra/newview/skins/xui/ko/panel_friends.xml | |||
@@ -1,5 +1,8 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <panel name="friends"> | 2 | <panel name="friends"> |
3 | <string name="Multiple"> | ||
4 | 친구들... | ||
5 | </string> | ||
3 | <scroll_list name="friend_list" | 6 | <scroll_list name="friend_list" |
4 | tool_tip="Shift키 또는 Control키를 누른 상태에서 클릭하여 여러 명의 친구를 선택하십시오."> | 7 | tool_tip="Shift키 또는 Control키를 누른 상태에서 클릭하여 여러 명의 친구를 선택하십시오."> |
5 | <column name="icon_online_status" tool_tip="온라인 상태" /> | 8 | <column name="icon_online_status" tool_tip="온라인 상태" /> |
diff --git a/linden/indra/newview/skins/xui/ko/panel_group_general.xml b/linden/indra/newview/skins/xui/ko/panel_group_general.xml index 5555fa6..b78f85d 100644 --- a/linden/indra/newview/skins/xui/ko/panel_group_general.xml +++ b/linden/indra/newview/skins/xui/ko/panel_group_general.xml | |||
@@ -57,8 +57,9 @@ | |||
57 | 회원 데이터를 가져오는 중 | 57 | 회원 데이터를 가져오는 중 |
58 | </text> | 58 | </text> |
59 | <text name="confirm_group_create_str"> | 59 | <text name="confirm_group_create_str"> |
60 | 이 그룹을 생성하려면 L$100가 듭니다. | 60 | 이 그룹을 생성하려면 L$100가 듭니다. |
61 | 이 그룹을 만드는 데 L$100를 지불할 의사가 있는지 잘 생각해 보십시오. | 61 | 이 그룹을 만드는 데 L$100를 지불할 의사가 있는지 잘 생각해 보십시오. |
62 | 48시간 내에 이 그룹에 아무도 가입하지 않으면 그룹이 삭제되고 나중에 이 그룹의 이름을 사용할 수 없게 됩니다. | ||
62 | </text> | 63 | </text> |
63 | <text> | 64 | <text> |
64 | 그룹 환경 설정 | 65 | 그룹 환경 설정 |
diff --git a/linden/indra/newview/skins/xui/ko/panel_group_land_money.xml b/linden/indra/newview/skins/xui/ko/panel_group_land_money.xml index 72797f2..dcb935b 100644 --- a/linden/indra/newview/skins/xui/ko/panel_group_land_money.xml +++ b/linden/indra/newview/skins/xui/ko/panel_group_land_money.xml | |||
@@ -13,6 +13,9 @@ | |||
13 | <text name="cant_view_group_accounting_text"> | 13 | <text name="cant_view_group_accounting_text"> |
14 | 그룹의 계정 정보를 볼 권한이 없습니다. | 14 | 그룹의 계정 정보를 볼 권한이 없습니다. |
15 | </text> | 15 | </text> |
16 | <string name="loading_txt"> | ||
17 | 로딩 중... | ||
18 | </string> | ||
16 | <text name="group_land_heading"> | 19 | <text name="group_land_heading"> |
17 | 그룹 소유 토지 | 20 | 그룹 소유 토지 |
18 | </text> | 21 | </text> |
diff --git a/linden/indra/newview/skins/xui/ko/panel_group_roles.xml b/linden/indra/newview/skins/xui/ko/panel_group_roles.xml index 461f2fa..dbe0bcb 100644 --- a/linden/indra/newview/skins/xui/ko/panel_group_roles.xml +++ b/linden/indra/newview/skins/xui/ko/panel_group_roles.xml | |||
@@ -57,9 +57,9 @@ | |||
57 | <button label="새로운 사람 초대…" name="member_invite" /> | 57 | <button label="새로운 사람 초대…" name="member_invite" /> |
58 | <button label="그룹에서 강퇴" name="member_eject" /> | 58 | <button label="그룹에서 강퇴" name="member_eject" /> |
59 | <text name="help_text"> | 59 | <text name="help_text"> |
60 | 회원에게 할당된 역할을 추가 또는 제거할 수 있습니다. | 60 | 회원에게 할당된 역할을 추가 또는 제거할 수 있습니다. |
61 | Ctrl 키를 누른 상태로 해당하는 회원 이름을 클릭하면 | 61 | Ctrl 키를 누른 상태로 해당하는 회원 이름을 클릭하면 |
62 | 여러 회원을 선택할 수 있습니다. | 62 | 여러 회원을 선택할 수 있습니다. |
63 | </text> | 63 | </text> |
64 | </panel> | 64 | </panel> |
65 | <panel label="역할" name="roles_sub_tab"> | 65 | <panel label="역할" name="roles_sub_tab"> |
@@ -77,11 +77,15 @@ | |||
77 | 속할 수 있습니다.한 그룹은 모든 사람 및 소유주 역할을 포함하여 | 77 | 속할 수 있습니다.한 그룹은 모든 사람 및 소유주 역할을 포함하여 |
78 | 최고 10가지의 역할까지 가질 수 있습니다. | 78 | 최고 10가지의 역할까지 가질 수 있습니다. |
79 | </text> | 79 | </text> |
80 | <string name="cant_delete_role"> | ||
81 | '모든 사람' 및 '소유자' 역할은 특별하며 삭제할 수 없습니다. | ||
82 | </string> | ||
80 | </panel> | 83 | </panel> |
81 | <panel label="권한" name="actions_sub_tab"> | 84 | <panel label="권한" name="actions_sub_tab"> |
82 | <button label="검색" name="search_button" /> | 85 | <button label="검색" name="search_button" /> |
83 | <button label="모두 표시" name="show_all_button" /> | 86 | <button label="모두 표시" name="show_all_button" /> |
84 | <scroll_list name="action_list" tool_tip="자세한 사항을 보려면 권한 탭을 선택하십시오."> | 87 | <scroll_list name="action_list" |
88 | tool_tip="자세한 사항을 보려면 권한 탭을 선택하십시오."> | ||
85 | <column label="" name="icon" /> | 89 | <column label="" name="icon" /> |
86 | <column label="" name="action" /> | 90 | <column label="" name="action" /> |
87 | </scroll_list> | 91 | </scroll_list> |
diff --git a/linden/indra/newview/skins/xui/ko/panel_land_covenant.xml b/linden/indra/newview/skins/xui/ko/panel_land_covenant.xml index 4fd1c0f..d4f09ce 100644 --- a/linden/indra/newview/skins/xui/ko/panel_land_covenant.xml +++ b/linden/indra/newview/skins/xui/ko/panel_land_covenant.xml | |||
@@ -25,7 +25,7 @@ | |||
25 | 이 지역에서 구매한 토지는 결합/분할 할 수 없는 경우도 있습니다. | 25 | 이 지역에서 구매한 토지는 결합/분할 할 수 없는 경우도 있습니다. |
26 | </text> | 26 | </text> |
27 | <text name="can_resell"> | 27 | <text name="can_resell"> |
28 | 이 지역에서 구매 지 재판매 할 수 있습니다. | 28 | 이 지역에서 토지 재판매 할 수 있습니다. |
29 | </text> | 29 | </text> |
30 | <text name="can_not_resell"> | 30 | <text name="can_not_resell"> |
31 | 이 지역에서 구매한 토지는 재판매 할 수 없습니다. | 31 | 이 지역에서 구매한 토지는 재판매 할 수 없습니다. |
diff --git a/linden/indra/newview/skins/xui/ko/panel_media_controls.xml b/linden/indra/newview/skins/xui/ko/panel_media_controls.xml index 9344262..8669b80 100644 --- a/linden/indra/newview/skins/xui/ko/panel_media_controls.xml +++ b/linden/indra/newview/skins/xui/ko/panel_media_controls.xml | |||
@@ -1,8 +1,38 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <panel name="media_controls"> | 2 | <panel name="media_controls"> |
3 | <icon name="music_icon" tool_tip="스트리밍 음악 재생/일시 정지" /> | ||
3 | <button name="music_play" tool_tip="스트리밍 음악 재생/일시 정지" /> | 4 | <button name="music_play" tool_tip="스트리밍 음악 재생/일시 정지" /> |
4 | <button name="media_play" tool_tip="스트리밍 동영상 재생/일시 정지" /> | 5 | <button name="music_pause" tool_tip="스트리밍 음악 일시 정지" /> |
6 | <button name="music_stop" tool_tip="스트리밍 음악 중지" /> | ||
7 | <icon name="media_icon" tool_tip="스트리밍 음악 재생/일시 정지" /> | ||
8 | <button name="media_play" tool_tip="스트리밍 음악 재생/일시 정지" /> | ||
9 | <button name="media_pause" tool_tip="스트리밍 미디어 일시 정지" /> | ||
10 | <button name="media_stop" tool_tip="스트리밍 미디어 중지" /> | ||
5 | <volume_slider name="volume_slider" tool_tip="전체 소리" /> | 11 | <volume_slider name="volume_slider" tool_tip="전체 소리" /> |
6 | <button name="mute_master" tool_tip="전체 음소거" /> | 12 | <button name="mute_master" tool_tip="전체 음소거" /> |
7 | <button name="expand" tool_tip="개별 소리 조정" /> | 13 | <button name="expand" tool_tip="개별 소리 조정" /> |
14 | <string name="play_label"> | ||
15 | 재생 | ||
16 | </string> | ||
17 | <string name="stop_label"> | ||
18 | 중지 | ||
19 | </string> | ||
20 | <string name="pause_label"> | ||
21 | 일시 정지 | ||
22 | </string> | ||
23 | <string name="default_tooltip_label"> | ||
24 | 지정된 미디어가 없습니다. | ||
25 | </string> | ||
26 | <string name="media_hidden_label"> | ||
27 | (구획 소유자에 의해 URL이 숨겨져 있습니다.) | ||
28 | </string> | ||
29 | <string name="media_icon_tooltip_web"> | ||
30 | 이 위치에서는 WWW의 컨텐츠가 표시됩니다. 웹 컨텐츠를 표시하려면 재생 버튼을 클릭하십시오. | ||
31 | </string> | ||
32 | <string name="media_icon_tooltip_movie"> | ||
33 | 이 위치에서는 비디오 컨텐츠가 표시됩니다. 비디오를 재생하려면 재생 버튼을 클릭하십시오. | ||
34 | </string> | ||
35 | <string name="media_play_tooltip"> | ||
36 | 이 위치에서 웹 컨텐츠를 재생합니다. | ||
37 | </string> | ||
8 | </panel> | 38 | </panel> |
diff --git a/linden/indra/newview/skins/xui/ko/panel_media_remote.xml b/linden/indra/newview/skins/xui/ko/panel_media_remote.xml index b2afab0..e92e475 100644 --- a/linden/indra/newview/skins/xui/ko/panel_media_remote.xml +++ b/linden/indra/newview/skins/xui/ko/panel_media_remote.xml | |||
@@ -1,16 +1,3 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <panel name="music_remote"> | 2 | <panel name="media_remote"> |
3 | <text type="string" length="6" name="text"> | ||
4 | 영화 | ||
5 | </text> | ||
6 | <volume_slider name="volume_slider" | ||
7 | tool_tip="이 슬라이더를 사용하여 볼륨을 변경" /> | ||
8 | <button label="" label_selected="" name="stop_btn" tool_tip="미디어 중지" /> | ||
9 | <button label="" label_selected="" name="play_btn" | ||
10 | tool_tip="미디어 스트림 재생" /> | ||
11 | <button label="" label_selected="" name="pause_btn" | ||
12 | tool_tip="미디어 스트림 일시 정지" /> | ||
13 | <button name="media_stop" tool_tip="미디어 중지" /> | ||
14 | <button name="media_play" tool_tip="미디어 스트림 재생" /> | ||
15 | <button name="media_pause" tool_tip="미디어 스트림 일시 정지" /> | ||
16 | </panel> | 3 | </panel> |
diff --git a/linden/indra/newview/skins/xui/ko/panel_preferences_audio.xml b/linden/indra/newview/skins/xui/ko/panel_preferences_audio.xml index e88e989..f51848d 100644 --- a/linden/indra/newview/skins/xui/ko/panel_preferences_audio.xml +++ b/linden/indra/newview/skins/xui/ko/panel_preferences_audio.xml | |||
@@ -4,14 +4,22 @@ | |||
4 | 볼륨: | 4 | 볼륨: |
5 | </text> | 5 | </text> |
6 | <check_box label="오디오 음소거" name="disable audio" /> | 6 | <check_box label="오디오 음소거" name="disable audio" /> |
7 | <text name="streaming_prefs_text"> | ||
8 | 스트리밍 환경 설정: | ||
9 | </text> | ||
10 | <text name="audio_prefs_text"> | ||
11 | 오디오 환경 설정: | ||
12 | </text> | ||
7 | <panel label="볼륨" name="Volume Panel" /> | 13 | <panel label="볼륨" name="Volume Panel" /> |
14 | <check_box label="자동으로 미디어 재생" name="auto_streaming_video" /> | ||
8 | <check_box label="창을 최소화 할 때 오디오 음소거" name="mute_when_minimized" /> | 15 | <check_box label="창을 최소화 할 때 오디오 음소거" name="mute_when_minimized" /> |
9 | <text type="string" length="1" name="streaming_text"> | 16 | <text type="string" length="1" name="streaming_text"> |
10 | 스트리밍: | 17 | 스트리밍: |
11 | </text> | 18 | </text> |
12 | <check_box label="스트리밍 음악 재생(더 많은 대역폭 사용)" | 19 | <check_box label="스트리밍 음악 재생(더 많은 대역폭 사용)" |
13 | name="streaming_music" /> | 20 | name="streaming_music" /> |
14 | <check_box label="스트리밍 비디오 재생(더 많은 대역폭 사용)" | 21 | <check_box |
22 | label="가능한 경우 스트리밍 미디어 재생(더 많은 대역폭 사용)" | ||
15 | name="streaming_video" /> | 23 | name="streaming_video" /> |
16 | <text type="string" length="1" name="system_volume_text"> | 24 | <text type="string" length="1" name="system_volume_text"> |
17 | 사운드 효과: | 25 | 사운드 효과: |
diff --git a/linden/indra/newview/skins/xui/ko/panel_preferences_general.xml b/linden/indra/newview/skins/xui/ko/panel_preferences_general.xml index a893254..15e1e31 100644 --- a/linden/indra/newview/skins/xui/ko/panel_preferences_general.xml +++ b/linden/indra/newview/skins/xui/ko/panel_preferences_general.xml | |||
@@ -25,6 +25,10 @@ | |||
25 | <check_box label="작은 아바타 이름" name="small_avatar_names_checkbox" /> | 25 | <check_box label="작은 아바타 이름" name="small_avatar_names_checkbox" /> |
26 | <color_swatch label="" name="effect_color_swatch" | 26 | <color_swatch label="" name="effect_color_swatch" |
27 | tool_tip="색 관리기를 열려면 클릭 하십시오." /> | 27 | tool_tip="색 관리기를 열려면 클릭 하십시오." /> |
28 | <text name="UI Size:"> | ||
29 | UI 크기: | ||
30 | </text> | ||
31 | <check_box label="해상도 독립 스케일 사용" name="ui_auto_scale" /> | ||
28 | <spinner label="자리비움 시간초과:" name="afk_timeout_spinner" /> | 32 | <spinner label="자리비움 시간초과:" name="afk_timeout_spinner" /> |
29 | <check_box label="온라인 친구 보여주기" name="friends_online_notify_checkbox" /> | 33 | <check_box label="온라인 친구 보여주기" name="friends_online_notify_checkbox" /> |
30 | <check_box label="미니 지도 회전" name="rotate_mini_map_checkbox" /> | 34 | <check_box label="미니 지도 회전" name="rotate_mini_map_checkbox" /> |
@@ -35,6 +39,8 @@ | |||
35 | <check_box label="시스템 기본색 관리 사용" | 39 | <check_box label="시스템 기본색 관리 사용" |
36 | name="use_system_color_picker_checkbox" | 40 | name="use_system_color_picker_checkbox" |
37 | tool_tip="세컨드라이프에서 제공하는 것 대신 기본 시스템 색관리를 사용합니다." /> | 41 | tool_tip="세컨드라이프에서 제공하는 것 대신 기본 시스템 색관리를 사용합니다." /> |
42 | <check_box label="오버레이 표시줄에 검색 창 표시" name="show_search_panel" | ||
43 | tool_tip="포함된 검색 창을 표시합니다." /> | ||
38 | <text type="string" length="1" name="start_location_textbox"> | 44 | <text type="string" length="1" name="start_location_textbox"> |
39 | 시작 위치: | 45 | 시작 위치: |
40 | </text> | 46 | </text> |
diff --git a/linden/indra/newview/skins/xui/ko/panel_preferences_graphics1.xml b/linden/indra/newview/skins/xui/ko/panel_preferences_graphics1.xml index 7b39de5..599c114 100644 --- a/linden/indra/newview/skins/xui/ko/panel_preferences_graphics1.xml +++ b/linden/indra/newview/skins/xui/ko/panel_preferences_graphics1.xml | |||
@@ -3,7 +3,8 @@ | |||
3 | <text type="string" length="1" name="text"> | 3 | <text type="string" length="1" name="text"> |
4 | 디스플레이 해상도: | 4 | 디스플레이 해상도: |
5 | </text> | 5 | </text> |
6 | <check_box label="하나의 창에서 실행" name="windowed mode" /> | 6 | <button label="?" name="GraphicsPreferencesHelpButton" /> |
7 | <check_box label="하나의 창에서 세컨드라이프 실행" name="windowed mode" /> | ||
7 | <text_editor name="voice_chat_description"> | 8 | <text_editor name="voice_chat_description"> |
8 | 선택을 해제하면 로그인 시 전체화면으로 표시됩니다. | 9 | 선택을 해제하면 로그인 시 전체화면으로 표시됩니다. |
9 | </text_editor> | 10 | </text_editor> |
@@ -13,13 +14,25 @@ | |||
13 | <text type="string" length="1" name="(width / height)"> | 14 | <text type="string" length="1" name="(width / height)"> |
14 | (폭/높이) | 15 | (폭/높이) |
15 | </text> | 16 | </text> |
16 | <combo_box name="aspect_ratio"> | 17 | <text_editor name="FullScreenInfo"> |
18 | 선택을 해제하면 로그인 시 전체 화면으로 표시됩니다. | ||
19 | </text_editor> | ||
20 | <text name="DisplayResLabel"> | ||
21 | 디스플레이 해상도: | ||
22 | </text> | ||
23 | <text name="AspectRatioLabel1" tool_tip="폭/높이"> | ||
24 | 화면 비율: | ||
25 | </text> | ||
26 | <combo_box name="aspect_ratio" tool_tip="폭/높이"> | ||
17 | <combo_item type="string" length="1" name="4:3(StandardCRT)"> | 27 | <combo_item type="string" length="1" name="4:3(StandardCRT)"> |
18 | 4:3(표준 CRT) | 28 | 4:3(표준 CRT) |
19 | </combo_item> | 29 | </combo_item> |
20 | <combo_item type="string" length="1" name="5:4(1280x1024LCD)"> | 30 | <combo_item type="string" length="1" name="5:4(1280x1024LCD)"> |
21 | 5:4(1280x1024 LCD) | 31 | 5:4(1280x1024 LCD) |
22 | </combo_item> | 32 | </combo_item> |
33 | <combo_item name="8:5(Widescreen)"> | ||
34 | 8:5(와이드스크린) | ||
35 | </combo_item> | ||
23 | <combo_item type="string" length="1" name="16:9(Widescreen)"> | 36 | <combo_item type="string" length="1" name="16:9(Widescreen)"> |
24 | 16:9(와이드스크린) | 37 | 16:9(와이드스크린) |
25 | </combo_item> | 38 | </combo_item> |
@@ -37,6 +50,129 @@ | |||
37 | <check_box label="해상도 독립 스케일 사용" name="ui_auto_scale" /> | 50 | <check_box label="해상도 독립 스케일 사용" name="ui_auto_scale" /> |
38 | <spinner label="렌더링 거리 제한:" name="draw_distance" /> | 51 | <spinner label="렌더링 거리 제한:" name="draw_distance" /> |
39 | <check_box label="1인칭 시점으로 시작" name="avfp" /> | 52 | <check_box label="1인칭 시점으로 시작" name="avfp" /> |
53 | <text name="HigherText"> | ||
54 | 품질 및 | ||
55 | </text> | ||
56 | <text name="QualityText"> | ||
57 | 성능: | ||
58 | </text> | ||
59 | <text name="FasterText"> | ||
60 | 고속 | ||
61 | </text> | ||
62 | <text name="ShadersPrefText"> | ||
63 | 낮음 | ||
64 | </text> | ||
65 | <text name="ShadersPrefText2"> | ||
66 | 중간 | ||
67 | </text> | ||
68 | <text name="ShadersPrefText3"> | ||
69 | 높음 | ||
70 | </text> | ||
71 | <text name="ShadersPrefText4"> | ||
72 | 매우 높음 | ||
73 | </text> | ||
74 | <text name="HigherText2"> | ||
75 | 더 높게 | ||
76 | </text> | ||
77 | <text name="QualityText2"> | ||
78 | 품질 | ||
79 | </text> | ||
80 | <check_box label="사용자 크기" name="CustomSettings" /> | ||
81 | <text name="ShadersText"> | ||
82 | 쉐이더: | ||
83 | </text> | ||
84 | <check_box label="범프 매핑 및 광택 보이기" name="BumpShiny" /> | ||
85 | <check_box label="기본 쉐이더" name="BasicShaders" | ||
86 | tool_tip="이 옵션을 사용하지 않으면 일부 그래픽 카드 드라이버에 오류가 발생할 수 있습니다." /> | ||
87 | <check_box label="대기 쉐이더" name="WindLightUseAtmosShaders" /> | ||
88 | <check_box label="수면 반사" name="Reflections" /> | ||
89 | <text name="ReflectionDetailText"> | ||
90 | 반사 디테일: | ||
91 | </text> | ||
92 | <radio_group name="ReflectionDetailRadio"> | ||
93 | <radio_item name="0"> | ||
94 | 지형 및 나무 | ||
95 | </radio_item> | ||
96 | <radio_item name="1"> | ||
97 | 모든 정적 오브젝트 | ||
98 | </radio_item> | ||
99 | <radio_item name="2"> | ||
100 | 모든 아바타 및 오브젝트 | ||
101 | </radio_item> | ||
102 | <radio_item name="3"> | ||
103 | 모두 | ||
104 | </radio_item> | ||
105 | </radio_group> | ||
106 | <text name="AvatarRenderingText"> | ||
107 | 아바타 렌더링: | ||
108 | </text> | ||
109 | <check_box label="아바타 가상" name="AvatarImpostors" /> | ||
110 | <check_box label="기구 스킨 설정" name="AvatarVertexProgram" /> | ||
111 | <check_box label="아바타 의복" name="AvatarCloth" /> | ||
112 | <text name="DrawDistanceMeterText1"> | ||
113 | m | ||
114 | </text> | ||
115 | <text name="DrawDistanceMeterText2"> | ||
116 | m | ||
117 | </text> | ||
118 | <slider label="렌더링 거리 제한:" name="DrawDistance" /> | ||
119 | <slider label="최대 파티클 수:" name="MaxParticleCount" /> | ||
120 | <slider label="사후 처리 품질:" name="RenderPostProcess" /> | ||
121 | <text name="MeshDetailText"> | ||
122 | 메쉬 디테일: | ||
123 | </text> | ||
124 | <slider label=" 오브젝트:" name="ObjectMeshDetail" /> | ||
125 | <slider label=" 플렉시프림:" name="FlexibleMeshDetail" /> | ||
126 | <slider label=" 나무:" name="TreeMeshDetail" /> | ||
127 | <slider label=" 아바타:" name="AvatarMeshDetail" /> | ||
128 | <slider label=" 지형:" name="TerrainMeshDetail" /> | ||
129 | <slider label=" 하늘:" name="SkyMeshDetail" /> | ||
130 | <text name="PostProcessText"> | ||
131 | 낮음 | ||
132 | </text> | ||
133 | <text name="ObjectMeshDetailText"> | ||
134 | 낮음 | ||
135 | </text> | ||
136 | <text name="FlexibleMeshDetailText"> | ||
137 | 낮음 | ||
138 | </text> | ||
139 | <text name="TreeMeshDetailText"> | ||
140 | 낮음 | ||
141 | </text> | ||
142 | <text name="AvatarMeshDetailText"> | ||
143 | 낮음 | ||
144 | </text> | ||
145 | <text name="TerrainMeshDetailText"> | ||
146 | 낮음 | ||
147 | </text> | ||
148 | <text name="SkyMeshDetailText"> | ||
149 | 낮음 | ||
150 | </text> | ||
151 | <text name="LightingDetailText"> | ||
152 | 조명 세부 사항: | ||
153 | </text> | ||
154 | <radio_group name="LightingDetailRadio"> | ||
155 | <radio_item name="SunMoon"> | ||
156 | 자연광만 표시 | ||
157 | </radio_item> | ||
158 | <radio_item name="LocalLights"> | ||
159 | 근접 광원 표시 | ||
160 | </radio_item> | ||
161 | </radio_group> | ||
162 | <text name="TerrainDetailText"> | ||
163 | 지형 세부 사항: | ||
164 | </text> | ||
165 | <radio_group name="TerrainDetailRadio"> | ||
166 | <radio_item name="0"> | ||
167 | 낮음 | ||
168 | </radio_item> | ||
169 | <radio_item name="2"> | ||
170 | 높음 | ||
171 | </radio_item> | ||
172 | </radio_group> | ||
173 | <button label="권장 설정" name="Defaults" /> | ||
174 | <button label="하드웨어 옵션" label_selected="하드웨어 옵션" | ||
175 | name="GraphicsHardwareButton" /> | ||
40 | <text name="resolution_format"> | 176 | <text name="resolution_format"> |
41 | [RES_X]x[RES_Y] | 177 | [RES_X]x[RES_Y] |
42 | </text> | 178 | </text> |
diff --git a/linden/indra/newview/skins/xui/ko/panel_preferences_im.xml b/linden/indra/newview/skins/xui/ko/panel_preferences_im.xml index 263d41f..e7fc52d 100644 --- a/linden/indra/newview/skins/xui/ko/panel_preferences_im.xml +++ b/linden/indra/newview/skins/xui/ko/panel_preferences_im.xml | |||
@@ -14,6 +14,9 @@ | |||
14 | <check_box label="쪽지를 이메일([EMAIL])로 전송" name="send_im_to_email" /> | 14 | <check_box label="쪽지를 이메일([EMAIL])로 전송" name="send_im_to_email" /> |
15 | <check_box label="채팅 기록에 쪽지 포함" name="include_im_in_chat_history" /> | 15 | <check_box label="채팅 기록에 쪽지 포함" name="include_im_in_chat_history" /> |
16 | <check_box label="메신저에 채팅 시간 표시하기" name="show_timestamps_check" /> | 16 | <check_box label="메신저에 채팅 시간 표시하기" name="show_timestamps_check" /> |
17 | <text name="text_box4"> | ||
18 | 로그인 옵션: | ||
19 | </text> | ||
17 | <check_box label="메신저 쪽지 저장" name="log_instant_messages" /> | 20 | <check_box label="메신저 쪽지 저장" name="log_instant_messages" /> |
18 | <check_box label="메신저 로그에 시간 표시하기" | 21 | <check_box label="메신저 로그에 시간 표시하기" |
19 | name="log_instant_messages_timestamp" /> | 22 | name="log_instant_messages_timestamp" /> |
diff --git a/linden/indra/newview/skins/xui/ko/panel_preferences_input.xml b/linden/indra/newview/skins/xui/ko/panel_preferences_input.xml index 9bdc2b1..eaf6941 100644 --- a/linden/indra/newview/skins/xui/ko/panel_preferences_input.xml +++ b/linden/indra/newview/skins/xui/ko/panel_preferences_input.xml | |||
@@ -1,5 +1,5 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <panel label="입력장치/카메라" name="Input panel"> | 2 | <panel label="입력장치/카메라" name="Input panel"> |
3 | <text type="string" length="1" name=" Mouselook Options:"> | 3 | <text type="string" length="1" name=" Mouselook Options:"> |
4 | 1인칭 시점 옵션: | 4 | 1인칭 시점 옵션: |
5 | </text> | 5 | </text> |
@@ -22,4 +22,8 @@ | |||
22 | <check_box label="내 모습 변경시 카메라 자동 설정" | 22 | <check_box label="내 모습 변경시 카메라 자동 설정" |
23 | name="appearance camera movement" | 23 | name="appearance camera movement" |
24 | tool_tip="편집 모드일 때 카메라 자동 위치 설정 사용" /> | 24 | tool_tip="편집 모드일 때 카메라 자동 위치 설정 사용" /> |
25 | <text name="text2"> | ||
26 | 아바타 디스플레이 옵션: | ||
27 | </text> | ||
28 | <check_box label="1인칭 시점으로 시작" name="avfp" /> | ||
25 | </panel> | 29 | </panel> |
diff --git a/linden/indra/newview/skins/xui/ko/panel_preferences_voice.xml b/linden/indra/newview/skins/xui/ko/panel_preferences_voice.xml index 598fa6f..1740132 100644 --- a/linden/indra/newview/skins/xui/ko/panel_preferences_voice.xml +++ b/linden/indra/newview/skins/xui/ko/panel_preferences_voice.xml | |||
@@ -30,6 +30,9 @@ | |||
30 | </text> | 30 | </text> |
31 | <check_box label="친구 목록에 있는 사람들만 음성 채팅 수락" | 31 | <check_box label="친구 목록에 있는 사람들만 음성 채팅 수락" |
32 | name="voice_call_friends_only_check" /> | 32 | name="voice_call_friends_only_check" /> |
33 | <text_editor name="device_settings_text"> | ||
34 | 참고: 장치 설정 또는 음성 채팅 설정을 실행하면 일시적으로 음성 채팅 연결이 끊길 수 있습니다. | ||
35 | </text_editor> | ||
33 | <button label="장치 설정" name="device_settings_btn" /> | 36 | <button label="장치 설정" name="device_settings_btn" /> |
34 | <button label="음성 채팅 설정" name="launch_voice_wizard_button" /> | 37 | <button label="음성 채팅 설정" name="launch_voice_wizard_button" /> |
35 | </panel> | 38 | </panel> |
diff --git a/linden/indra/newview/skins/xui/ko/panel_preferences_web.xml b/linden/indra/newview/skins/xui/ko/panel_preferences_web.xml index fc12384..8452e3b 100644 --- a/linden/indra/newview/skins/xui/ko/panel_preferences_web.xml +++ b/linden/indra/newview/skins/xui/ko/panel_preferences_web.xml | |||
@@ -1,5 +1,14 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> |
2 | <panel label="웹" name="web"> | 2 | <panel label="웹" name="web"> |
3 | <radio_group name="use_external_browser" | ||
4 | tool_tip="도움말, 웹링크 등은 외부 웹브라우저를 사용하십시오. 전체 화면 모드에서는 권장하지 않습니다."> | ||
5 | <radio_item name="external"> | ||
6 | 외부 웹 브라우저 사용(Firefox, Safari, Internet Explorer) | ||
7 | </radio_item> | ||
8 | <radio_item name="internal"> | ||
9 | 내부 웹 브라우저 사용 | ||
10 | </radio_item> | ||
11 | </radio_group> | ||
3 | <text name="cache_size_label_l"> | 12 | <text name="cache_size_label_l"> |
4 | 브라우저 캐시: | 13 | 브라우저 캐시: |
5 | </text> | 14 | </text> |
diff --git a/linden/indra/newview/skins/xui/ko/panel_region_estate.xml b/linden/indra/newview/skins/xui/ko/panel_region_estate.xml index e157132..a408180 100644 --- a/linden/indra/newview/skins/xui/ko/panel_region_estate.xml +++ b/linden/indra/newview/skins/xui/ko/panel_region_estate.xml | |||
@@ -24,6 +24,7 @@ | |||
24 | tool_tip="성인 인증을 완료하지 않은 사용자는 출입이 차단됩니다. 자세한 사항은 support.secondlife.com을 참조하십시오." /> | 24 | tool_tip="성인 인증을 완료하지 않은 사용자는 출입이 차단됩니다. 자세한 사항은 support.secondlife.com을 참조하십시오." /> |
25 | <check_box label="음성 채팅 허용" name="voice_chat_check" /> | 25 | <check_box label="음성 채팅 허용" name="voice_chat_check" /> |
26 | <button label="?" name="voice_chat_help" /> | 26 | <button label="?" name="voice_chat_help" /> |
27 | <button label="?" name="abuse_email_address_help" /> | ||
27 | <text name="estate_manager_label"> | 28 | <text name="estate_manager_label"> |
28 | 사유지 관리자: | 29 | 사유지 관리자: |
29 | </text> | 30 | </text> |
diff --git a/linden/indra/newview/skins/xui/ko/panel_voice_enable.xml b/linden/indra/newview/skins/xui/ko/panel_voice_enable.xml index adfe7ee..a217886 100644 --- a/linden/indra/newview/skins/xui/ko/panel_voice_enable.xml +++ b/linden/indra/newview/skins/xui/ko/panel_voice_enable.xml | |||
@@ -4,14 +4,14 @@ | |||
4 | 세컨드라이프 음성 채팅입니다. 음성 채팅을 통해 주민들과 대화할 수 있습니다. 이 마법사는 음성 채팅 설정에 필요한 처리 단계를 안내해 드립니다. 음성 채팅을 하려면 오디오 스피커가 필요하고, 다른 사용자들과 대화를 하려면 마이크 또는 마이크가 장착된 스테레오 헤드셋이 필요합니다. | 4 | 세컨드라이프 음성 채팅입니다. 음성 채팅을 통해 주민들과 대화할 수 있습니다. 이 마법사는 음성 채팅 설정에 필요한 처리 단계를 안내해 드립니다. 음성 채팅을 하려면 오디오 스피커가 필요하고, 다른 사용자들과 대화를 하려면 마이크 또는 마이크가 장착된 스테레오 헤드셋이 필요합니다. |
5 | </text_editor> | 5 | </text_editor> |
6 | <text_editor name="voice_intro_text2"> | 6 | <text_editor name="voice_intro_text2"> |
7 | 음성 채팅을 지금 사용하시겠습니까? | 7 | 기본적으로 음성 채팅은 활성화되어 있습니다. 음성 채팅을 지금 사용하시겠습니까? |
8 | </text_editor> | 8 | </text_editor> |
9 | <radio_group name="voice_enable"> | 9 | <radio_group name="voice_enable"> |
10 | <radio_item name="1"> | 10 | <radio_item name="1"> |
11 | 예, 음성 채팅을 사용합니다. | 11 | 예, 음성 채팅을 사용합니다. |
12 | </radio_item> | 12 | </radio_item> |
13 | <radio_item name="0"> | 13 | <radio_item name="0"> |
14 | 아니오, 음성 채팅을 당은 용하지 않습니다. | 14 | 아니오, 음성 채팅을 사용하지 않습니다. |
15 | </radio_item> | 15 | </radio_item> |
16 | </radio_group> | 16 | </radio_group> |
17 | <text_editor name="voice_intro_text3"> | 17 | <text_editor name="voice_intro_text3"> |
diff --git a/linden/indra/newview/skins/xui/ko/panel_voice_options.xml b/linden/indra/newview/skins/xui/ko/panel_voice_options.xml index f909586..1803bd8 100644 --- a/linden/indra/newview/skins/xui/ko/panel_voice_options.xml +++ b/linden/indra/newview/skins/xui/ko/panel_voice_options.xml | |||
@@ -11,6 +11,8 @@ | |||
11 | 아바타 위치에서 음성 채팅 청취 | 11 | 아바타 위치에서 음성 채팅 청취 |
12 | </radio_item> | 12 | </radio_item> |
13 | </radio_group> | 13 | </radio_group> |
14 | <check_box label="친구들만 나와의 음성 채팅을 시작할 수 있도록 승락" | ||
15 | name="friends_only_check" /> | ||
14 | <check_box label="말하기 조절 모드로 세컨드라이프 시작" | 16 | <check_box label="말하기 조절 모드로 세컨드라이프 시작" |
15 | name="push_to_talk_check" /> | 17 | name="push_to_talk_check" /> |
16 | <check_box label="Push-to-Talk 토글 모드 사용" name="push_to_talk_toggle_check" /> | 18 | <check_box label="Push-to-Talk 토글 모드 사용" name="push_to_talk_toggle_check" /> |
diff --git a/linden/indra/newview/skins/xui/pt/alerts.xml b/linden/indra/newview/skins/xui/pt/alerts.xml deleted file mode 100644 index 74a5a04..0000000 --- a/linden/indra/newview/skins/xui/pt/alerts.xml +++ /dev/null | |||
@@ -1,1473 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <alerts>Null<alert modal="true" name="MissingAlert">Null<message name="message">[ALERT_NAME] no encontrado no alerts.xml</message> | ||
3 | <option name="OK">OK</option> | ||
4 | </alert> | ||
5 | <alert modal="true" name="FloaterNotFound">Null<message name="message">Floater error: No foram encontrados os seguintes controles: [CONTROLS]</message> | ||
6 | <option name="OK">OK</option> | ||
7 | </alert> | ||
8 | <alert modal="false" name="MOTD" title="Mensagem do dia">Null<message name="message">[MOTD]</message> | ||
9 | </alert> | ||
10 | <alert modal="true" name="GenericAlert">Null<message name="message">[MESSAGE]</message> | ||
11 | </alert> | ||
12 | <alert modal="true" name="GenericAlertYesCancel">Null<message name="message">[MESSAGE]</message> | ||
13 | <option name="Yes">Sim</option> | ||
14 | <option name="Cancel">Cancelar</option> | ||
15 | </alert> | ||
16 | <alert modal="true" name="GenericServerAlert">Null<message name="message">[MESSAGE]</message> | ||
17 | </alert> | ||
18 | <alert modal="true" name="ConnectTimeout">Null<message name="message">No foi possvel conectar-se ao [SECOND_LIFE]. O sistema pode estar desativado. Por favor, tente novamente em alguns minutos, ou clique em Ajuda para mais informaes e exibir a situao da pgina da web.</message> | ||
19 | <option name="OK">OK</option> | ||
20 | <option name="Help">Ajuda</option> | ||
21 | </alert> | ||
22 | |||
23 | |||
24 | <alert modal="true" name="WearableSave"> | ||
25 | <message name="message"> | ||
26 | Salvar modificaes? | ||
27 | </message> | ||
28 | <option name="Save"> | ||
29 | Salvar | ||
30 | </option> | ||
31 | <option name="Don'tSave"> | ||
32 | No salvar | ||
33 | </option> | ||
34 | <option name="Cancel"> | ||
35 | Cancelar | ||
36 | </option> | ||
37 | </alert> | ||
38 | |||
39 | <alert modal="true" name="RemoveWearableSave">Null<message name="message">Salvar alteraes de roupas/partes do corpo atuais?</message> | ||
40 | <option name="Save">Salvar</option> | ||
41 | <option name="Don'tSave">No Salvar</option> | ||
42 | <option name="Cancel">Cancelar</option> | ||
43 | </alert> | ||
44 | <alert modal="true" name="SetWearableSave">Null<message name="message">Salvar alteraes de roupas/ partes do corpo atuais?</message> | ||
45 | <option name="Save">Salvar</option> | ||
46 | <option name="Don'tSave">No Salvar</option> | ||
47 | <option name="Cancel">Cancelar</option> | ||
48 | </alert> | ||
49 | <alert modal="true" name="CompileQueueSaveText">Null<message name="message">Houve um problema com o carregamento do texto para um script devido a seguinte razo: [REASON]. Por favor, tente novamente mais tarde.</message> | ||
50 | </alert> | ||
51 | <alert modal="true" name="CompileQueueSaveBytecode">Null<message name="message">Houve um problema durante o carregamento de um script compilado devido a seguinte razo: [REASON]. Por favor, tente novamente mais tarde.</message> | ||
52 | </alert> | ||
53 | <alert modal="true" name="WriteAnimationFail">Null<message name="message">Falha nos dados de inscrio de animao.</message> | ||
54 | </alert> | ||
55 | <alert modal="true" name="UploadAuctionSnapshotFail">Null<message name="message">Houve um problema com o carregamento de imagens devido a seguinte razo: [REASON]</message> | ||
56 | </alert> | ||
57 | <alert modal="true" name="UnableToViewContentsMoreThanOne">Null<message name="message">No possvel visualizar os contedos de mais de um item ao mesmo tempo. Por favor, selecione apenas uma objeto e tente novamente.</message> | ||
58 | </alert> | ||
59 | <alert modal="true" name="MustSupplyVoteProposal">Null<message name="message">Voc deve enviar uma proposta para o voto. Faa uma breve descrio dos interesses do seu grupo.</message> | ||
60 | </alert> | ||
61 | <alert modal="true" name="InsufficientFunds">Null<message name="message">Fundos insuficientes.</message> | ||
62 | </alert> | ||
63 | <alert modal="true" name="CharacterSnapshotSaved">Null<message name="message">Uma imagem do seu personagem foi salva. Viste nossa pgina para v-la!</message> | ||
64 | </alert> | ||
65 | <alert modal="true" name="SaveClothingBodyChanges">Null<message name="message">Salvar todas as roupas/ partes do corpo?</message> | ||
66 | <option name="SaveAll">Salvar tudo</option> | ||
67 | <option name="Don'tSave">No Salvar</option> | ||
68 | <option name="Cancel">Cancelar</option> | ||
69 | </alert> | ||
70 | <alert modal="true" name="GrantModifyRights">Null<message name="message">Permite que um outro residente modifique QUALQUER objeto que voc tenha no Second Life. Seja muito cuidadoso quando lidar com essa permisso. Voc deseja garantir os direitos de edio para [FIRST_NAME] [LAST_NAME]?</message> | ||
71 | <option name="Yes">Sim</option> | ||
72 | <option name="No">No</option> | ||
73 | </alert> | ||
74 | <alert modal="true" name="RevokeModifyRights">Null<message name="message">Voc deseja cancelar os direitos de edio [FIRST_NAME] [LAST_NAME]?</message> | ||
75 | <option name="Yes">Sim</option> | ||
76 | <option name="No">No</option> | ||
77 | </alert> | ||
78 | <alert modal="true" name="RemoveFriend">Null<message name="message">Voc quer remover [FIRST] [LAST] dos seus amigos?</message> | ||
79 | <option name="Remove">Remover</option> | ||
80 | <option name="Cancel">Cancelar</option> | ||
81 | </alert> | ||
82 | <alert modal="true" name="GroupCreateSuccess">Null<message name="message">Grupo criado com sucesso.</message> | ||
83 | </alert> | ||
84 | <alert modal="true" name="UnableToCreateGroup">Null<message name="message">No foi possvel criar um grupo. [MESSAGE]</message> | ||
85 | <option name="OK">OK</option> | ||
86 | </alert> | ||
87 | <alert modal="true" name="PanelGroupApply">Null<message name="message">[NEEDS_APPLY_MESSAGE][WANT_APPLY_MESSAGE]</message> | ||
88 | <option name="ApplyChanges">Aplicar Alteraes</option> | ||
89 | <option name="IgnoreChanges">Ignorar Alteraes</option> | ||
90 | <option name="Cancel">Cancelar</option> | ||
91 | </alert> | ||
92 | <alert modal="true" name="CreateGroupCanAfford">Null<message name="message">Criar um grupo custa L$ [COST]. Para manter o grupo por mais de trs dias, voc deve alcanar um total de trs ou mais membros. Deseja criar um grupo?</message> | ||
93 | <option name="Create">Criar</option> | ||
94 | <option name="Cancel">Cancelar</option> | ||
95 | </alert> | ||
96 | <alert modal="true" name="CreateGroupCannotAfford">Null<message name="message">Criar um grupo custa L$[COST]. Voc no tem dinheiro suficiente para criar este grupo.</message> | ||
97 | </alert> | ||
98 | <alert modal="true" name="GroupNameTooShort">Null<message name="message">Nomes de Grupo deve ter, no mnimo, quatro letras.</message> | ||
99 | </alert> | ||
100 | <alert modal="true" name="GroupNameUsesReservedWord">Null<message name="message">O nome do grupo utiliza uma palavra reservada. Por favor, escolha um nome diferente.</message> | ||
101 | </alert> | ||
102 | <alert modal="true" name="MustSpecifyGroupNoticeSubject">Null<message name="message">Voc deve especificar um assunto para enviar uma notcia para o grupo.</message> | ||
103 | <option name="OK">OK</option> | ||
104 | </alert> | ||
105 | <alert modal="true" name="MustSupplyGroupCharter">Null<message name="message">Voc deve encaminhar uma carta para o grupo. Escreva um resumo sobre os interesses do seu grupo.</message> | ||
106 | </alert> | ||
107 | <alert modal="true" name="AddGroupOwnerWarning">Null<message name="message">Voc est para adicionar membros do grupo a funo de [ROLE_NAME]. Membros no podem ser removidos dessa funo. Os membros devem sair por si mesmos. Deseja continuar?</message> | ||
108 | <ignore>Quando adicionar membros do grupo a funa de Proprietrio.</ignore> | ||
109 | <ignore name="ignore"> | ||
110 | Quando adcionar membro ao grupo como dono. | ||
111 | </ignore> | ||
112 | <option name="Yes">Sim</option> | ||
113 | <option name="No">No</option> | ||
114 | </alert> | ||
115 | <alert modal="true" name="AssignDangerousActionWarning">Null<message name="message">Voc est prestes a adicionar a Habilidade '[ACTION_NAME]' para s Funo '[ROLE_NAME]' *AVISO* Qualquer membro com esta Habilidade pode atribuir a si mesmo -- e outro membro -- Funes que tm mais poderes que possuem atualmente, potencialmente elevando seus nveis prximos ao Proprietrio. Certifique-se sobre esta deciso antes de atribuir esta Habilidade. Adicionar esta Habilidade ao '[ROLE_NAME]'?</message> | ||
116 | <option name="Yes">Sim</option> | ||
117 | <option default="true" name="No">No</option> | ||
118 | </alert> | ||
119 | <alert modal="true" name="AssignDangerousAbilityWarning">Null<message name="message">Voc est prestes a adicionar a Habilidade '[ACTION_NAME]' a Funo '[ROLE_NAME]'. *AVISO* Alguns membros nesta funo com esta Habilidade podem atribuir a s mesmos -- e a qualquer outro -- todas Habilidades, elevando seus nveis prximos ao poder do Proprietrio. Adicionar esta Habilidade ao '[ROLE_NAME]'?</message> | ||
120 | <option name="Yes">Sim</option> | ||
121 | <option default="true" name="No">No</option> | ||
122 | </alert> | ||
123 | <alert modal="true" name="ClickPublishHelpGroup">Null<message name="message">Selecionar a opo "Publicar na Web" nos permitir publicar o nome do grupo, smbolo, cartas, ttulos e o fundador no website [SECOND_LIFE]. Voc responsvel por indicar se algum dos contedos acima for considerado Adulto de acordo com as Regras da Comunidade.</message> | ||
124 | </alert> | ||
125 | <alert modal="true" name="ClickPublishHelpLand">Null<message name="message">Selecionar a opo "Publicar na Web" nos permitir publicar o nome, descrio, imagens e localizao deste terreno no website [SECOND_LIFE]. Voc responsvel por indicar se algum dos contedos acima for considerado Adulto de acordo com as Regras da Comunidade.</message> | ||
126 | </alert> | ||
127 | <alert modal="true" name="ClickPublishHelpPostcard">Null<message name="message">Selecionar a opo "Publicar na Web" nos permitir publicar o nome do avatar do fotgrafo, comentrio, locao, mensagens e as fotos no website [SECOND_LIFE]. Voc responsvel por indicar se algum dos contedos acima for considerado Adulto de acordo com as Regras da Comunidade.</message> | ||
128 | </alert> | ||
129 | <alert modal="true" name="ClickPublishHelpAvatar">Null<message name="message">Selecionar a opo "Publicar na Web" nos permitir publicar seu nome, imagem e textos no website [SECOND_LIFE].</message> | ||
130 | </alert> | ||
131 | <alert modal="true" name="ClickWebProfileHelpAvatar">Null<message name="message">Se esse residente tem um perfil URL na web ento voc pode: *Clique em Carregar para carregar a pgina como um web browser encaixado. * Clique em Abrir para ver extrenamente no seu web browser padro. Quando visualizar seu perfil voc pode entrar com qualquer URL que especificar quando eles acessarem seu perfil.</message> | ||
132 | </alert> | ||
133 | <alert modal="true" name="ClickWebProfileNoWebHelpAvatar">Null<message name="message">Se esse residente tem um perfil URL na web ento voc pode: * Clicar em Abrir para ver extrenamente no seu web browser padro. Quando visualizar seu perfil voc pode entrar com qualquer URL que especificar quando eles acessarem seu perfil.</message> | ||
134 | </alert> | ||
135 | <alert modal="true" name="ReputationMinGreaterThanMax">Null<message name="message">Reputao mnima maior que a mxima. Independentemente, reduza o mnimo ou aumente o mximo.</message> | ||
136 | </alert> | ||
137 | <alert modal="true" name="MoneyMinGreaterThanMax">Null<message name="message">Dinheiro mnimo maio que o mximo. Independentemente, reduza o mnimo ou aumente o mximo.</message> | ||
138 | </alert> | ||
139 | <alert modal="true" name="OfficerTitleTooLong">Null<message name="message">Ttulos Oficiais podem ter somente 20 caracteres. Por favor, escolha um ttulo menor.</message> | ||
140 | </alert> | ||
141 | <alert modal="true" name="MemberTitleTooLong">Null<message name="message">Ttulos de Membros podem ter at 20 caracteres. Por favor, escolha um ttulo menor.</message> | ||
142 | </alert> | ||
143 | <alert modal="true" name="RunningLocally">Null<message name="message">Executando localmente...Sem retorno de dados.</message> | ||
144 | <option name="OK">OK</option> | ||
145 | </alert> | ||
146 | <alert modal="true" name="EjectNoMemberSelected">Null<message name="message">Nenhum membro selecionado pra ejetar.</message> | ||
147 | <option name="OK">OK</option> | ||
148 | </alert> | ||
149 | <alert modal="true" name="ConfirmEject">Null<message name="message">Isso ir ejetar o [MEMBER] do grupo. Deseja continuar?</message> | ||
150 | <option name="Eject">Ejetar</option> | ||
151 | <option name="Cancel">Cancelar</option> | ||
152 | </alert> | ||
153 | <alert modal="true" name="JoinGroupCanAfford">Null<message name="message">Unir-se a esse grupo custa L$[COST]. Deseja proceder?</message> | ||
154 | <option name="Join">Unir-se</option> | ||
155 | <option name="Cancel">Cancelar</option> | ||
156 | </alert> | ||
157 | <alert modal="true" name="JoinGroupCannotAfford">Null<message name="message">Unir-se a esse grupo custa L$[COST]. Voc no tem fundos suficientes para se unir a esse grupo.</message> | ||
158 | </alert> | ||
159 | <alert modal="true" name="LandBuyPass">Null<message name="message">Por L$[COST] voc pode ingressar no terreno '[PARCEL_NAME]') por [TIME] horas. Comprar um passe de acesso?</message> | ||
160 | <option name="OK">OK</option> | ||
161 | <option name="Cancel">Cancelar</option> | ||
162 | </alert> | ||
163 | <alert modal="true" name="CannotStartAuctionAlreadyForSale">Null<message name="message">Voc no pode iniciar um leilo em um terreno no qual j est pronto para venda. Cancele a venda do lote se desejar iniciar um leilo.</message> | ||
164 | </alert> | ||
165 | <alert modal="true" name="SalePriceRestriction">Null<message name="message">O preo de venda deve ser ajustado para > L$0 se desejar vender para qualquer um. Por favor, selecione um indivduo para realizar a venda se o valor for L$0.</message> | ||
166 | </alert> | ||
167 | <alert modal="true" name="ConfirmLandSaleChange">Null<message name="message">Os metros quadrados selecionados no lote esto sendo configurados para venda. Seu preo de venda ser L$[SALE_PRICE] e est autorizado para venda por [NAME]. Gostaria de continuar a fazer essa alterao?</message> | ||
168 | <option name="Continue">Continuar</option> | ||
169 | <option default="true" name="Cancel">Cancelar</option> | ||
170 | </alert> | ||
171 | <alert modal="true" name="ReturnObjectsDeededToGroup">Null<message name="message">Voc tem certeza de que quer retornar todos os objetos compartterrenodos com o grupo '[NAME]' neste lote para o inventrio do seu antigo Proprietrio? *AVISO* Isso ir apagar os objetos no transferveis para o grupo! Objetos: [N]</message> | ||
172 | <option name="Return">Retornar</option> | ||
173 | <option name="Cancel">Cancelar</option> | ||
174 | </alert> | ||
175 | <alert modal="true" name="ReturnObjectsOwnedByUser">Null<message name="message">Voc tem certeza de que deseja retornar todos os objetos do residente '[NAME]' neste lote para o inventrio dele? Objetos: [N]</message> | ||
176 | <option name="Return">Retornar</option> | ||
177 | <option name="Cancel">Cancelar</option> | ||
178 | </alert> | ||
179 | <alert modal="true" name="ReturnObjectsOwnedBySelf">Null<message name="message">Voc tem certeza de que deseja retornar todos os objetos de sua propriedade neste lote para seu inventrio? Objetos: [N]</message> | ||
180 | <option name="Return">Retornar</option> | ||
181 | <option name="Cancel">Cancelar</option> | ||
182 | </alert> | ||
183 | <alert modal="true" name="ReturnObjectsNotOwnedBySelf">Null<message name="message">Voc tem certeza de que deseja retornar todos os objetos que NO so seus para o inventrio de seus proprietrios? Objetos transferveis retornaro para seu proprietrios. *AVISO* Isso far com que os objetos no-transferveis sejam deletados! Objetos: [N]</message> | ||
184 | <option name="Return">Retornar</option> | ||
185 | <option name="Cancel">Cancelar</option> | ||
186 | </alert> | ||
187 | <alert modal="true" name="ReturnObjectsNotOwnedByUser">Null<message name="message">Voc tem certeza de que deseja retornar todos os objetos NO pertencentes ao [NAME] deste lote para o inventrio do proprietrio? *AVISO* Esta ao ir apagar os objetos no transferveis do grupo! Objetos: [N]</message> | ||
188 | <option name="Return">Retornar</option> | ||
189 | <option name="Cancel">Cancelar</option> | ||
190 | </alert> | ||
191 | <alert modal="true" name="ReturnAllTopObjects">Null<message name="message">Voc tem certeza de que deseja enviar todos os objetos desta regio de volta aos inventrios de seus proprietrios?</message> | ||
192 | <option name="Return">Retornar</option> | ||
193 | <option name="Cancel">Cancelar</option> | ||
194 | </alert> | ||
195 | <alert modal="true" name="DisableAllTopObjects">Null<message name="message">Voc tem certeza que deseja desativar todos os objetos desta regio?</message> | ||
196 | <option name="Disable">Desativar</option> | ||
197 | <option name="Cancel">Cancelar</option> | ||
198 | </alert> | ||
199 | <alert modal="true" name="ReturnObjectsNotOwnedByGroup">Null<message name="message">Retornar os objetos deste lote que NO so compartterrenodos com o grupo [NAME] de volta para seus proprietrios? Objetos: [N]</message> | ||
200 | <option name="Return">Retornar</option> | ||
201 | <option name="Cancel">Cancelar</option> | ||
202 | </alert> | ||
203 | <alert modal="true" name="UnableToDisableOutsideScripts">Null<message name="message">No possvel desabilitar scripts externos. Toda esta regio possui dano habilitado. Scripts devem ser permitidos para fazer as armas funcionarem.</message> | ||
204 | </alert> | ||
205 | <alert modal="true" name="MustBeInParcel">Null<message name="message">Voc deve permanecer dentro do lote para o Landing Point.</message> | ||
206 | </alert> | ||
207 | <alert modal="true" name="PromptRecipientEmail">Null<message name="message">Por favor, insira o endereo de e-mail do destinatrio.</message> | ||
208 | </alert> | ||
209 | <alert modal="true" name="PromptSelfEmail">Null<message name="message">Por favor, insira seu endereo de e-mail.</message> | ||
210 | </alert> | ||
211 | <alert modal="true" name="ErrorProcessingSnapshot">Null<message name="message">Erro processando dados de imagem.</message> | ||
212 | </alert> | ||
213 | <alert modal="true" name="ErrorEncodingSnapshot">Null<message name="message">Erro encoding imagem!</message> | ||
214 | </alert> | ||
215 | <alert modal="true" name="ErrorUploadingPostcard">Null<message name="message">Houve um problema ao carregar um carto postal devido a seguinte razo: [REASON]</message> | ||
216 | </alert> | ||
217 | <alert modal="true" name="ErrorUploadingReportScreenshot">Null<message name="message">Houve um problema ao carregar um reporte de imagem devido a seguinte razo: [REASON]</message> | ||
218 | </alert> | ||
219 | <alert modal="true" name="MustAgreeToLogIn">Null<message name="message">Voc deve concordar com os Termos de Servio para continuar a entrar no [SECOND_LIFE].</message> | ||
220 | </alert> | ||
221 | <alert modal="true" name="CouldNotPutOnOutfit">Null<message name="message">No foi possvel inserir no visual. A pasta visual no contm roupas, partes do corpo ou acessrios.</message> | ||
222 | </alert> | ||
223 | <alert modal="true" name="CannotWearTrash">Null<message name="message">No possvel usar roupas ou partes do corpo que esto no lixo.</message> | ||
224 | </alert> | ||
225 | <alert modal="true" name="CannotWearInfoNotComplete">Null<message name="message">No possvel usar um item uma vez que sua configurao ainda no esteja disponvel. Por favor, tente novamente em um minuto.</message> | ||
226 | </alert> | ||
227 | <alert modal="true" name="MustHaveAccountToLogInNoLinks">Null<message name="message">Voc deve ter uma conta para conectar ao [SECOND_LIFE].</message> | ||
228 | <option name="OK">OK</option> | ||
229 | <option name="Cancel">Cancelar</option> | ||
230 | </alert> | ||
231 | <alert modal="true" name="MustHaveAccountToLogIn">Null<message name="message">Voc deve ter uma conta para conectar ao [SECOND_LIFE]. Ir ao www.secondlifebrasil.com.br para criar uma nova conta?</message> | ||
232 | <option name="OK">OK</option> | ||
233 | <option name="Cancel">Cancelar</option> | ||
234 | </alert> | ||
235 | <alert modal="true" name="AddClassified">Null<message name="message">Anncios postados aparecem na seo "Classificados" do diretrio de Busca por uma semana. Preencha seu formulrio, ento clique em "Publicar" para adicion-lo ao diretrio. Voc receber uma notificao de cobrana aps clicar em Publicar. Pagar mais far seu anncio aparecer mais ao topo da lista e tambm quando as pessoas procurarem por palavras chave.</message> | ||
236 | <option name="OK">OK</option> | ||
237 | <option name="Cancel">Cancelar</option> | ||
238 | <ignore>Quando adicionar um anncio</ignore> | ||
239 | </alert> | ||
240 | <alert modal="true" name="DeleteClassified">Null<message name="message">Apagar anncio "[NAME]"? No h reembolso por taxas j pagas.</message> | ||
241 | <option name="Delete">Apagar</option> | ||
242 | <option name="Cancel">Cancelar</option> | ||
243 | </alert> | ||
244 | <alert modal="true" name="DeleteAvatarPick">Null<message name="message">Apagar pick [PICK]?</message> | ||
245 | <option name="Delete">Delete</option> | ||
246 | <option name="Cancel">Cancelar</option> | ||
247 | </alert> | ||
248 | <alert modal="true" name="DisplayChangeRestart">Null<message name="message">Alguns displays alteram o que voc requeriu [SECOND_LIFE] para deslig-lo imediatamente, o que poder ocasionar a perda de algum trabalho. Aplique estas mudanas entes de sair.</message> | ||
249 | <option name="ApplyandQuit">Aplicar e Sair</option> | ||
250 | <option name="Cancel">Cancelar</option> | ||
251 | </alert> | ||
252 | <alert modal="true" name="PromptGoToEventsPage">Null<message name="message">Ir at a [SECOND_LIFE] pgina de events?</message> | ||
253 | <option name="GotoPage">Ir pgina</option> | ||
254 | <option name="Cancel">Cancelar</option> | ||
255 | </alert> | ||
256 | <alert modal="true" name="MustSelectCandidate">Null<message name="message">Voc deve selecionar um candidato antes de votar.</message> | ||
257 | </alert> | ||
258 | <alert modal="true" name="SelectItemToView">Null<message name="message">Por favor, selecione um item para visualizar.</message> | ||
259 | </alert> | ||
260 | <alert modal="true" name="SelectProposalToView">Null<message name="message">Por favor, selecione uma proposta para votar.</message> | ||
261 | </alert> | ||
262 | <alert modal="true" name="SelectHistoryItemToView">Null<message name="message">Por favor, selecione o histrico de itens para exib-lo.</message> | ||
263 | </alert> | ||
264 | <alert modal="true" name="ResetShowNextTimeDialogs">Null<message name="message">Resetar tudo. Reset all 'Show next time' dialogs?</message> | ||
265 | <option name="OK">OK</option> | ||
266 | <option name="Cancel">Cancelar</option> | ||
267 | </alert> | ||
268 | <alert modal="true" name="CacheWillClear">Null<message name="message">O cache ser limpo uma vez resetada.</message> | ||
269 | </alert> | ||
270 | |||
271 | |||
272 | <alert modal="true" name="CacheWillBeMoved"> | ||
273 | <message name="message"> | ||
274 | O Cache ser removido aps reiniciar [SECOND_LIFE]. | ||
275 | Nota: Isto limpar o cache. | ||
276 | </message> | ||
277 | </alert> | ||
278 | |||
279 | |||
280 | <alert modal="true" name="ChangeConnectionPort"> | ||
281 | <message name="message"> | ||
282 | Configurao de porta ter efeito aps reiniciar [SECOND_LIFE]. | ||
283 | </message> | ||
284 | </alert> | ||
285 | |||
286 | |||
287 | <alert modal="true" name="GoToAuctionPage">Null<message name="message">Ir para a pgina do [SECOND_LIFE] para ver os detalhes do leilo ou fazer um lance?</message> | ||
288 | <option name="GotoPage">Ir para a pgina</option> | ||
289 | <option name="Cancel">Cancelar</option> | ||
290 | </alert> | ||
291 | <alert modal="true" name="SaveChanges">Null<message name="message">Salvar alteraes?</message> | ||
292 | <option name="Save">Salvar</option> | ||
293 | <option name="Don'tSave">No Salvar</option> | ||
294 | <option name="Cancel">Cancelar</option> | ||
295 | </alert> | ||
296 | <alert modal="true" name="GestureSaveFailedTooManySteps">Null<message name="message">Falha ao salvar Gesto. Este gesto possui muitos passos.Tente remover alguns passos e salve-o novamente.</message> | ||
297 | </alert> | ||
298 | <alert modal="true" name="GestureSaveFailedTryAgain">Null<message name="message">Falha ao salvar Gesto. Por favor, tente em uma minuto.Gesture save failed.</message> | ||
299 | </alert> | ||
300 | <alert modal="true" name="GestureSaveFailedObjectNotFound">Null<message name="message">No foi possvel salvar um Gesto pois o objeto ou o objeto associado ao inventrio no foi encontrado. O objeto pode estar fora de alcance. Objeto pode estar fora de alcance ou estar deletado.</message> | ||
301 | </alert> | ||
302 | <alert modal="true" name="GestureSaveFailedReason">Null<message name="message">Houve um problema em salvar um gesto devido a seguinte razo: [REASON]. Por favor, tente salvar o Gesto depois.</message> | ||
303 | </alert> | ||
304 | <alert modal="true" name="SaveNotecardFailObjectNotFound">Null<message name="message">No foi possvel salvar uma nota pois o objeto ou o objeto associado ao inventrio no pde ser encontrado.</message> | ||
305 | </alert> | ||
306 | <alert modal="true" name="SaveNotecardFailReason">Null<message name="message">Houve um problema em salvar uma nota devido a seguinte razo: [REASON]. Por favor, tente re-salvar a nota mais tarde.</message> | ||
307 | </alert> | ||
308 | <alert modal="true" name="ScriptCannotUndo">Null<message name="message">No foi possvel desfazer todas as mudanas na sua verso de script. Gostaria de carregar a ltima verso salva? (Esta operao no pode ser desfeita).</message> | ||
309 | <option name="Yes">Sim</option> | ||
310 | <option name="No">No</option> | ||
311 | </alert> | ||
312 | <alert modal="true" name="SaveScriptFailReason">Null<message name="message">Houve um problema em salvar um script devido a seguinte razo: [REASON]. Por favor, tente salvar novamente o script.</message> | ||
313 | </alert> | ||
314 | <alert modal="true" name="SaveScriptFailObjectNotFound">Null<message name="message">No foi possvel salvar o script pois o objeto ativo no pde ser encontrado. O objeto pode estar fora de alcance ou ter sido deletado.</message> | ||
315 | </alert> | ||
316 | <alert modal="true" name="SaveBytecodeFailReason">Null<message name="message">Houve um problema em salvar uma compilao de script devido a seguinte razo: [REASON]. Por favor, tente salvar novamente o script.</message> | ||
317 | </alert> | ||
318 | <alert modal="true" name="CouldNotStartStopScript">Null<message name="message">No foi possvel iniciar o script pois o objeto ativo no pde ser encontrado. O objeto pode estar fora de alcance ou ter sido deletado.</message> | ||
319 | </alert> | ||
320 | <alert modal="true" name="CannotDownloadFile">Null<message name="message">No foi possvel baixar o arquivo.</message> | ||
321 | </alert> | ||
322 | <alert modal="true" name="CannotWriteEncode">Null<message name="message">No foi possvel encoder o arquivo [[FILE]]</message> | ||
323 | </alert> | ||
324 | <alert modal="true" name="CannotWriteFile">Null<message name="message">No foi possvel escrever o arquivo [[FILE]]</message> | ||
325 | </alert> | ||
326 | <alert modal="true" name="CannotLoadWearable">Null<message name="message">Desculpe, no foi possvel carregar o arquivo utilizado.</message> | ||
327 | </alert> | ||
328 | <alert modal="true" name="ConfirmDeleteComplicated">Null<message name="message">Pelo menos um objeto est trancado, no copivel, ou possudo por algum mais. Tem certeza que deseja apagar esse item?</message> | ||
329 | <option name="Yes">Sim</option> | ||
330 | <option name="No">No</option> | ||
331 | </alert> | ||
332 | <alert modal="true" name="DisplaySettingsSafe">Null<message name="message">Os ajustes de display foram configurados para os nveis de segurana, porque voc especificou - opo salvar.</message> | ||
333 | </alert> | ||
334 | <alert modal="true" name="DisplaySettingsRecommended">Null<message name="message">Os ajustes de display foram configurados para os nveis bsicos recomendados nas configuraes do seu sistema.</message> | ||
335 | <option name="OK">OK</option> | ||
336 | </alert> | ||
337 | |||
338 | <alert modal="true" name="DisplaySettingsNoShaders"> | ||
339 | <message name="message"> | ||
340 | [SECOND_LIFE] teve uma falha tentando inicializar os drivers grficos. | ||
341 | As sombras sero desabilitadas para evitar erros de drivers | ||
342 | Recomendamos que voc atualize seu drive de vdeo. | ||
343 | A sombras poderam ser abilitadas novamente nas Preferncias. | ||
344 | </message> | ||
345 | </alert> | ||
346 | |||
347 | <alert modal="true" name="CannotRequestDomain">Null<message name="message">No foi possvel conectar ao servidor. Requisio do domnio [HOST] impossvel.</message> | ||
348 | </alert> | ||
349 | <alert modal="true" name="CannotFindDomain">Null<message name="message">No foi possvel encontrar o domnio do servidor. Isso pode ser resultado de perda de conexo ou problema no servidor. Por favor, tente novamente em poucos minutos ou clique em Ajuda para maiores informaes sobre o status em nossa pgina.</message> | ||
350 | <option name="OK">OK</option> | ||
351 | <option name="Help">Ajuda</option> | ||
352 | </alert> | ||
353 | <alert modal="true" name="PromptSelectServer">Null<message name="message">Por favor, selecione um servidor. No foi possvel se conectar ao [SERVER]</message> | ||
354 | </alert> | ||
355 | <alert modal="true" name="CannotConnectDNSError">Null<message name="message">No foi possvel conectar-se ao [SECOND_LIFE].DNS por no encontrar o nome do host. Por favor, verifique se voc pode conectar-se ao www.secondlifebrasil.com.br. Caso consiga, mas continue a receber esse erro, por favor entre em contato com o suporte e relate este problema.</message> | ||
356 | </alert> | ||
357 | <alert modal="true" name="CannotConnectSecurityError">Null<message name="message">No foi possvel estabelecer uma conexo segura com o servidor de entrada. Geralmente isso significa que o relgio de seu computador est configurado incorretamente. Por favor, v at ao Painel de Controle e certifique-se que a data/hora estejam corretas. Se continuar a receber esse erro, por favor informe a Equipe de Suporte.</message> | ||
358 | </alert> | ||
359 | <alert modal="true" name="CannotConnectVerificationError">Null<message name="message">No foi possvel conectar-se ao [SECOND_LIFE]. O servidor de entrada no pde verific-lo via SSL. Caso voc continue a receber este erro, por favor informar a Equipe de Suporte.</message> | ||
360 | </alert> | ||
361 | <alert modal="true" name="CannotConnectUnknownErrorWindows">Null<message name="message">No foi possvel conectar-se ao [SECOND_LIFE]. Apesar dos nossos esforos, algo inesperado aconteceu. Por favor, v a seo de Suporte e reporte este problema a Equipe de Suporte. Se possvel, inclua seu arquivo de log do SL (C:\Documents and Settings\(name)\Application Data\SecondLife\logs. Obrigado.</message> | ||
362 | </alert> | ||
363 | <alert modal="true" name="CannotConnectUnknownErrorDarwin">Null<message name="message">No foi possvel conectar-se ao [SECOND_LIFE]. Apesar dos nossos esforos, algo inesperado aconteceu. Por favor, v a seo de Suporte e reporte este problema a Equipe de Suporte. Se possvel, inclua seu arquivo de log (~/Library/Application Support/SecondLife/logs). Obrigado.</message> | ||
364 | </alert> | ||
365 | <alert modal="true" name="CannotResolveLoginToken">Null<message name="message">Houve um problema ao realizar a autenticao de seu login. Por favor, tente entrar novamente. Caso continue a receber esse erro, por favor v a seo de Suporte e reporte esse problema a Equipe de Suporte.</message> | ||
366 | </alert> | ||
367 | <alert modal="true" name="CannotConnectNoMessage">Null<message name="message">Problema desconhecido ao tentar conectar-se. (Mensagem de erro em branco do servidor). Por favor, tente novamente em poucos minutos ou clique em Ajuda para mais informaes sobre o status do sistema.</message> | ||
368 | <option name="OK">OK</option> | ||
369 | <option name="Help">Ajuda</option> | ||
370 | </alert> | ||
371 | <alert modal="true" name="CannotConnectNoReplyFromLogin">Null<message name="message">No foi possvel se conectar. Sem resposta do database de entrada. Por favor, tente novamente em alguns minutos ou clique em Ajuda para maiores informaes sobre o status do sistema.</message> | ||
372 | <option name="OK">OK</option> | ||
373 | <option name="Help">Ajuda</option> | ||
374 | </alert> | ||
375 | <alert modal="true" name="CannotConnectLoginTimeout">Null<message name="message">Login terminado por aguardar por sua localizao dentro do mundo. Por favor, tente novamente.</message> | ||
376 | </alert> | ||
377 | <alert modal="true" name="FirstRunDialog">Null<message name="message">Instalao do [SECOND_LIFE] completa. Caso sej sua primeira vez usando o [SECOND_LIFE], voc precisar criar uma conta antes de entrar. Ir at www.secondlifebrasil.com.br para criar uma nova conta?</message> | ||
378 | <option name="NewAccount...">Nova conta..</option> | ||
379 | <option name="Continue">Continuar</option> | ||
380 | </alert> | ||
381 | <alert modal="true" name="ClothingStillDownloading">Null<message name="message">Suas roupas ainda esto carregando. Voc pode explorar o mundo normalmente, e os outros residentes iro v-lo corretamente.</message> | ||
382 | </alert> | ||
383 | <alert modal="true" name="CannotResolveDomain">Null<message name="message">No foi possvel conectar-se ao servidor. No encontrado o nome do domnio: [DOMAIN]. Por favor, confira sua conexo de rede.</message> | ||
384 | </alert> | ||
385 | <alert modal="true" name="CannotConnectLoginPacket">Null<message name="message">No foi possvel conectar-se. O pacote de entrada no fi recebido pelo servidor de entrada. Por favor, tente novamente em poucos minutos ou clique em Ajuda para maiores informaes sobre o status do sistema.</message> | ||
386 | <option name="OK">OK</option> | ||
387 | <option name="Help">Ajuda</option> | ||
388 | </alert> | ||
389 | <alert modal="true" name="WelcomeToSecondLife">Null<message name="message">Bem-vindo ao [SECOND_LIFE]! Utilize as setas para se mover. Por favor, escolha um personagem masculino ou feminino. Voc pode mudar de idia depois..</message> | ||
390 | <option name="Male">Masculino</option> | ||
391 | <option name="Female">Feminino</option> | ||
392 | </alert> | ||
393 | <alert modal="true" name="WelcomeToSecondLifeSimple">Null<message name="message">Bem-vindo ao [SECOND_LIFE]! Utilize as setas para se mover. Por favor, escolha um personagem masculino ou feminino.</message> | ||
394 | <option name="Male">Masclino</option> | ||
395 | <option name="Female">Feminino</option> | ||
396 | </alert> | ||
397 | <alert modal="true" name="ConfirmQuit">Null<message name="message">Deseja sair?</message> | ||
398 | <option name="Yes">Sim</option> | ||
399 | <option name="No">No</option> | ||
400 | </alert> | ||
401 | <alert modal="true" name="RegionNoTerraforming">Null<message name="message">A regio [REGION] no permite ser plainada. Voc precisar comprar um lote em outra parte do mundo para faz-lo.</message> | ||
402 | </alert> | ||
403 | <alert modal="true" name="CannotCopyWarning">Null<message name="message">Voc no tem permisso para copiar este item e ir perd-lo do seu inventrio se entreg-lo a algum. Quer realmente oferecer este item?</message> | ||
404 | <option name="Yes">Sim</option> | ||
405 | <option name="No">No</option> | ||
406 | </alert> | ||
407 | <alert modal="true" name="CannotGiveItem">Null<message name="message">No foi possvel entregar o item.</message> | ||
408 | </alert> | ||
409 | <alert modal="true" name="TransactionCancelled">Null<message name="message">Transao cancelada.</message> | ||
410 | </alert> | ||
411 | <alert modal="true" name="TooManyItems">Null<message name="message">No possvel passar muitos itens entre inventrios em uma transao simples.</message> | ||
412 | </alert> | ||
413 | <alert modal="true" name="NoItems">Null<message name="message">Voc no pode dar itens.</message> | ||
414 | </alert> | ||
415 | <alert modal="true" name="CannotCopyCountItems">Null<message name="message">Voc no tem permisso para copiar [COUNT] os itens selecionados. Voc ir perd-lo do seu inventrio. Deseja realmente entregar este item?</message> | ||
416 | <option name="Yes">Sim</option> | ||
417 | <option name="No">No</option> | ||
418 | </alert> | ||
419 | <alert modal="true" name="CannotGiveCategory">Null<message name="message">No foi possvel entregar esta categoria de item.</message> | ||
420 | </alert> | ||
421 | <alert modal="true" name="FreezeAvatar">Null<message name="message">Congelar esse avatar? Ele ou ela estar temporriamente incapacitado de mover-se, conversar, ou interagir com mundo.</message> | ||
422 | <option name="Freeze">Congelar</option> | ||
423 | <option name="Unfreeze">Descongelar</option> | ||
424 | <option name="Cancel">Cancelar</option> | ||
425 | </alert> | ||
426 | <alert modal="true" name="EjectAvatar">Null<message name="message">Ejetar este avatar das suas terras?</message> | ||
427 | <option name="Eject">Ejetar</option> | ||
428 | <option name="EjectandBan">Ejetar e Banir</option> | ||
429 | <option name="Cancel">Cancelar</option> | ||
430 | </alert> | ||
431 | <alert modal="true" name="InvalidUUID">Null<message name="message">UUID invlido</message> | ||
432 | </alert> | ||
433 | <alert modal="true" name="AcquireErrorTooManyObjects">Null<message name="message">ACQUIRE ERROR: Muitos objetos selecionados.</message> | ||
434 | </alert> | ||
435 | <alert modal="true" name="AcquireErrorObjectSpan">Null<message name="message">ACQUIRE ERROR: Objetos criados em mais de uma regio. Por favor, mova todos os objetos para serem adquiridos em uma mesma regio.</message> | ||
436 | </alert> | ||
437 | <alert modal="true" name="TakeLockedOrNotOwnedBy">Null<message name="message">Pelo menos um objeto est trancado ou no pertence a voc. Se um objeto no pertence o pertence e voc ganh-lo, as permisses do prximo proprietrio sero aplicadas e a possibilidade de restringir suas habilidades de copi-lo e alter-lo no futuro. No entanto, voc ainda pode receber a seleo atual. Tem certeza de que deseja ficar com este item?</message> | ||
438 | <option name="Yes">Sim</option> | ||
439 | <option default="true" name="No">No</option> | ||
440 | </alert> | ||
441 | <alert modal="true" name="PromptGoToCurrencyPage">Null<message name="message">[EXTRA] Ir para [URL] para informaes sobre adquirir moeda?</message> | ||
442 | <option name="GotoPage">Ir at a pgina</option> | ||
443 | <option name="Cancel">Cancelar</option> | ||
444 | </alert> | ||
445 | <alert modal="true" name="UnableToLinkObjects">Null<message name="message">No possvel unir estes [COUNT] objetos.Voc pode unir um mximo de [MAX] objetos. Tente selecionar menos objetos.</message> | ||
446 | </alert> | ||
447 | <alert modal="true" name="CannotLinkIncompleteSet">Null<message name="message">Voc pode unir apenas conjuntos de objetos, e deve selecionar mais que um objeto.</message> | ||
448 | </alert> | ||
449 | <alert modal="true" name="CannotLinkModify">Null<message name="message">No possvel unir, pois voc no tem permisso para alterar todos os objetos. Certifique-se de que nenhum deles esteja trancado e que todos objetos sejam de sua posse.</message> | ||
450 | </alert> | ||
451 | <alert modal="true" name="CannotLinkDifferentOwners">Null<message name="message">No possvel unir, pois os objetos no tm o mesmo proprietrio. Certifique-se de possuir todos os objetos.</message> | ||
452 | </alert> | ||
453 | <alert modal="true" name="NoFileExtension">Null<message name="message">Sem arquivos de extenso para o arquivo '[FILE]' Por favor, certifique-se de que o arquivo tenha a extenso correta.</message> | ||
454 | </alert> | ||
455 | <alert modal="true" name="InvalidFileExtension">Null<message name="message">Extenso de arquivo invlida: [EXTENSION]. Esperada [VALIDS]</message> | ||
456 | <option name="OK">OK</option> | ||
457 | </alert> | ||
458 | <alert modal="true" name="CannotUploadSoundFile">Null<message name="message"> No possvel ler o arquivo de som para leitura: [FILE]</message> | ||
459 | </alert> | ||
460 | <alert modal="true" name="SoundFileNotRIFF">Null<message name="message">O arquivo no aparenta ser um arquivo do tipo RIFF WAVE: [FILE]</message> | ||
461 | </alert> | ||
462 | <alert modal="true" name="SoundFileNotPCM">Null<message name="message">O arquivo no aparenta ser um arquivo de udio PCM WAVE: [FILE]</message> | ||
463 | </alert> | ||
464 | <alert modal="true" name="SoundFileInvalidChannelCount">Null<message name="message">O arquivo possui um nmero de canais invlidos (deve ser mono ou stereo): [FILE]</message> | ||
465 | </alert> | ||
466 | <alert modal="true" name="SoundFileInvalidSampleRate">Null<message name="message">O arquivo no aparenta ser um exemplo de freqncia suportada (deve ser 44.1k): [FILE]</message> | ||
467 | </alert> | ||
468 | <alert modal="true" name="SoundFileInvalidWordSize">Null<message name="message">O arquivo no aparenta ser um tamanho de palavra suportada (deve ser 8 ou 16 bit): [FILE]</message> | ||
469 | </alert> | ||
470 | <alert modal="true" name="SoundFileInvalidHeader">Null<message name="message">No pode ser encontrado dado, bloco em cabealho WAV: [FILE]</message> | ||
471 | </alert> | ||
472 | <alert modal="true" name="SoundFileInvalidTooLong">Null<message name="message">Arquivo de udio muito longo (no mximo 10 segundos): [FILE]</message> | ||
473 | </alert> | ||
474 | <alert modal="true" name="ProblemWithFile">Null<message name="message">Problemas com o arquivo [FILE]: [ERROR]</message> | ||
475 | </alert> | ||
476 | <alert modal="true" name="CannotOpenTemporarySoundFile">Null<message name="message">No pode abrir o arquivo de som comprimido para inscrio: [FILE]</message> | ||
477 | </alert> | ||
478 | <alert modal="true" name="UnknownVorbisEncodeFailure">Null<message name="message">Falha desconhecida de codificao vorbis: [FILE]</message> | ||
479 | </alert> | ||
480 | <alert modal="true" name="CorruptResourceFile">Null<message name="message">Fonte do arquivo corrompida: [FILE]</message> | ||
481 | </alert> | ||
482 | <alert modal="true" name="UnknownResourceFileVersion">Null<message name="message">Arquivo de recurso de verso Linden desconhecido: [FILE]</message> | ||
483 | </alert> | ||
484 | <alert modal="true" name="UnableToCreateOutputFile">Null<message name="message">Incapaz de criar arquivo de sada: [FILE]</message> | ||
485 | </alert> | ||
486 | <alert modal="true" name="DoNotSupportBulkAnimationUpload">Null<message name="message">Atualmente, no suportamos o envio de arquivos de animao em massa.</message> | ||
487 | </alert> | ||
488 | <alert modal="true" name="CannotAccessOutputFile">Null<message name="message">Incapaz de acessar o arquivo de sada: [FILE]</message> | ||
489 | </alert> | ||
490 | <alert modal="true" name="InsufficientFundsToUploadFile">Null<message name="message">Valor insuficiente para carregar o arquivo: O valor L$[COST], seu saldo L$ [BALANCE].</message> | ||
491 | </alert> | ||
492 | <alert modal="true" name="InsufficientFundsToFinishUpload">Null<message name="message">Valor insuficiente para terminar carregamento do arquivo [FILE]: valor L$ [COST], o seu saldo L$[BALANCE]:</message> | ||
493 | </alert> | ||
494 | <alert modal="true" name="CannotUploadReason">Null<message name="message">Incapaz de carregar [FILE] devido ao seguinte motivo: [REASON] Por favor tente novamente.</message> | ||
495 | </alert> | ||
496 | <alert modal="true" name="CannotCreateLandmarkNotOwner">Null<message name="message">Voc no pode criar um ponto de referncia porque o proprietrio do terreno no permite. Tente novamente a alguns metros de distncia.</message> | ||
497 | </alert> | ||
498 | <alert modal="true" name="CannotRecompileSelectObjectsNoScripts">Null<message name="message">No possvel realizar compilao. Selecione os objetos com scripts vlidos.</message> | ||
499 | </alert> | ||
500 | <alert modal="true" name="CannotRecompileSelectObjectsNoPermission">Null<message name="message">No possvel realizar compilao. Selecione objetos com scripts que voc tenha permisso de modificar.</message> | ||
501 | </alert> | ||
502 | <alert modal="true" name="CannotResetSelectObjectsNoScripts">Null<message name="message">No possvel recomear. Selecione objetos com script que possam ser modificados.</message> | ||
503 | </alert> | ||
504 | <alert modal="true" name="CannotResetSelectObjectsNoPermission">Null<message name="message">No possvel recomear. Selecione objetos com script que voc tenha permisso de modificar.</message> | ||
505 | </alert> | ||
506 | <alert modal="true" name="CannotSetRunningSelectObjectsNoScripts">Null<message name="message">No possvel usar scripts de corrida. Selecione objetos com scripts vlidos.</message> | ||
507 | </alert> | ||
508 | <alert modal="true" name="CannotSetRunningSelectObjectsNoPermission">Null<message name="message">No possvel usar scripts de corrida. Selecione objetos com scripts que voc tenha a permisso de modificar.</message> | ||
509 | </alert> | ||
510 | <alert modal="true" name="CannotSetRunningNotSelectObjectsNoScripts">Null<message name="message">No possvel usar scripts no funcionais. Selecione objetos com scripts vlidos.</message> | ||
511 | </alert> | ||
512 | <alert modal="true" name="CannotSetRunningNotSelectObjectsNoPermission">Null<message name="message">No possvel usar scripts no funcionais. Selecione objetos com scripts que voc tem permisso de modificar.</message> | ||
513 | </alert> | ||
514 | <alert modal="true" name="NoFrontmostFloater">Null<message name="message">No frontmost floater to save></message> | ||
515 | </alert> | ||
516 | <alert modal="true" name="ColladaExportFailedUnknownServerError">Null<message name="message">Falha na exportao Collada: Falha desconhecida no servidor.</message> | ||
517 | </alert> | ||
518 | <alert modal="true" name="ColladaExportFailedInvalidPermissions">Null<message name="message">Falha na exportao Collada: Permisso invlida ou objeto bloqueado!</message> | ||
519 | </alert> | ||
520 | <alert modal="true" name="ColladaExportFailedUnknownError">Null<message name="message">Falha na exportao Collada: Erro desconhecido.</message> | ||
521 | </alert> | ||
522 | <alert modal="true" name="ObjectImportFailedTransfer">Null<message name="message">Falha na importao do objeto. No possvel a transferncia de arquivos.</message> | ||
523 | </alert> | ||
524 | <alert modal="true" name="ObjectImportFailedBadFormat">Null<message name="message">Falha na importao do objeto. O arquivo no compatvel com o formato SL Object.</message> | ||
525 | </alert> | ||
526 | <alert modal="true" name="ObjectImportFailedUnknownError">Null<message name="message">Falha na importao do objeto. Erro desconhecido.</message> | ||
527 | </alert> | ||
528 | <alert modal="true" name="CouldNotTeleportReason">Null<message name="message">No possvel teletransportar-se. [REASON]</message> | ||
529 | </alert> | ||
530 | <alert modal="true" name="CannotSetLandOwnerNothingSelected">Null<message name="message">Incapaz de estabelecer o proprietrio do terreno: Nada selecionado.</message> | ||
531 | </alert> | ||
532 | <alert modal="true" name="CannotSetLandOwnerMultipleRegions">Null<message name="message">No possvel exigir a posse do terreno porque a seleo alcanou mltiplas regies. Por favor, selecione uma rea menor e tente novamente.</message> | ||
533 | </alert> | ||
534 | <alert modal="true" name="ForceOwnerAuctionWarning">Null<message name="message">Esta poro est oferecida em leilo. Exigir a posse do terreno ir cancelar o leilo e possivelmente deixar alguns residentes infelizes, uma vez que os lances j comearam. Exigir posse?</message> | ||
535 | <option name="Force">Retomar</option> | ||
536 | <option name="Cancel">Cancelar</option> | ||
537 | </alert> | ||
538 | <alert modal="true" name="CannotContentifyNothingSelected">Null<message name="message">Contedo no encontrado: Nada selecionado.</message> | ||
539 | </alert> | ||
540 | <alert modal="true" name="CannotContentifyNoRegion">Null<message name="message">Contedo no encontrado: Sem regio.</message> | ||
541 | </alert> | ||
542 | <alert modal="true" name="CannotReleaseLandNothingSelected">Null<message name="message">No possvel abandonar terreno: Nada selecionado.</message> | ||
543 | </alert> | ||
544 | <alert modal="true" name="CannotReleaseLandNoRegion">Null<message name="message">No possvel abandonar terreno: No possvel encontrar regio.</message> | ||
545 | </alert> | ||
546 | <alert modal="true" name="CannotBuyLandNothingSelected">Null<message name="message">No possvel comprar terreno: Nada selecionado.</message> | ||
547 | </alert> | ||
548 | <alert modal="true" name="CannotBuyLandNoRegion">Null<message name="message">No possvel comprar terreno: O terreno no pode ser encontrado nesta regio.</message> | ||
549 | </alert> | ||
550 | <alert modal="true" name="CannotDeedLandNothingSelected">Null<message name="message">No possvel transferir posse do terreno: Nada selecionado.</message> | ||
551 | </alert> | ||
552 | <alert modal="true" name="CannotDeedLandNoGroup">Null<message name="message">No possvel transferir posse do terreno: Sem grupo.</message> | ||
553 | </alert> | ||
554 | <alert modal="true" name="CannotDeedLandNoRegion">Null<message name="message">No possvel transferir posse do terreno: O terreno no pode encontrado nesta regio. Por favor, use a Ferramenta: Reporte de Bug para corrigir isso.</message> | ||
555 | </alert> | ||
556 | <alert modal="true" name="CannotSetLandOwnerNothingSelected">Null<message name="message">No possvel identificar proprietrio: Nada selecionado.</message> | ||
557 | </alert> | ||
558 | <alert modal="true" name="CannotBuyLandMultipleRegions">Null<message name="message">No possvel comprar terreno porque a seleo alcanou mltiplas regies. Por favor selecione uma rea menor e tente novamente.</message> | ||
559 | </alert> | ||
560 | <alert modal="true" name="CannotBuyLandMultipleSelected">Null<message name="message">No possvel comprar terreno: Partes mltiplas foram selecionadas. Tente selecionar uma rea menor.</message> | ||
561 | </alert> | ||
562 | <alert modal="true" name="CannotDeedLandMultipleSelected">Null<message name="message">No possvel transferir posse do terreno: Partes mltiplas foram selecionadas. Tente selecionar uma rea menor.</message> | ||
563 | </alert> | ||
564 | <alert modal="true" name="RegionNotFound">Null<message name="message">Regio no encontrada.</message> | ||
565 | </alert> | ||
566 | <alert modal="true" name="ParcelCanPlayMusic">Null<message name="message">Esta regio pode tocar msica por streaming. Tocar msica requer um conexo de 768 kbps ou superior. Tocar msica quando disponvel?</message> | ||
567 | <option name="PlayMusic">Tocar msica</option> | ||
568 | <option name="Disable">Desabilitar</option> | ||
569 | </alert> | ||
570 | <alert modal="true" name="ParcelCanPlayMedia">Null<message name="message">Esta regio pode exibir vdeos por streaming. Para exibir vdeos requer um conexo de 768 kbps ou superior. Exibir quando disponvel?</message> | ||
571 | <option name="PlayMedia">Exibir vdeo</option> | ||
572 | <option name="Disable">Desabilitar</option> | ||
573 | </alert> | ||
574 | <alert modal="true" name="CannotBuyLandWaitingForServer">Null<message name="message">No possvel comprar terreno: Espere o servidor demonstrar o valor. Tente novamente em alguns segundos.</message> | ||
575 | </alert> | ||
576 | <alert modal="true" name="CannotDeedLandWaitingForServer">Null<message name="message">No possvel transferir posse do terreno: Espere o servidor demonstrar o proprietrio. Tente novamente em alguns segundos.</message> | ||
577 | </alert> | ||
578 | <alert modal="true" name="CannotBuyLandNoPublic">Null<message name="message">No possvel comprar terreno: A seleo no contm qualquer terreno pblico.</message> | ||
579 | </alert> | ||
580 | <alert modal="true" name="CannotBuyLandLandOwned">Null<message name="message">No possvel comprar terreno: O terreno selecionado de outro proprietrio. Tente selecionar uma rea menor.</message> | ||
581 | </alert> | ||
582 | <alert modal="true" name="CannotButLandRegionNotFound">Null<message name="message">No possvel comprar terreno: O terreno no pode ser encontrado nesta regio. Por favor, use a Ferramenta: Reporte de Bug para corrigir isso.</message> | ||
583 | </alert> | ||
584 | <alert modal="true" name="CannotBuyLandNoTransfer">Null<message name="message">No possvel comprar terreno: A regio [REGION] no permite transferncia do terreno.</message> | ||
585 | </alert> | ||
586 | <alert modal="true" name="CannotDeedLandNoTransfer">Null<message name="message">No possvel transferir posse do terreno: A regio [REGION] no permite transferncia do terreno.</message> | ||
587 | </alert> | ||
588 | <alert modal="true" name="CannotBuyLandForGroupNotOfficer">Null<message name="message">No possvel comprar o terreno de um grupo: Voc no um dos supervisores do grupo atual. Por favor, ative outro grupo usando Editar Grupos.</message> | ||
589 | </alert> | ||
590 | <alert modal="true" name="CannotBuyLandInsufficientFunds">Null<message name="message">Comprar esta [AREA] por metros quadrados custar L$[PRICE]. Voc tem somente L$ [BALANCE].</message> | ||
591 | </alert> | ||
592 | <alert modal="true" name="CannotReleaseLandNothingSelected">Null<message name="message">No possvel abandonar terreno: Nada selecionado.</message> | ||
593 | </alert> | ||
594 | <alert modal="true" name="CannotReleaseLandWatingForServer">Null<message name="message">No possvel abandonar terreno: Espere o servidor demonstrar o valor. Tente novamente em alguns segundos.</message> | ||
595 | </alert> | ||
596 | <alert modal="true" name="CannotReleaseLandSelected">Null<message name="message">No possvel abandonar terreno: Partes mltiplas foram selecionadas. Tente selecionar uma rea menor.</message> | ||
597 | </alert> | ||
598 | <alert modal="true" name="CannotReleaseLandDontOwn">Null<message name="message">No possvel abandonar terreno: Voc no tem permisso de renunciar esse lote. Aqueles que voc possui esto em verde.</message> | ||
599 | </alert> | ||
600 | <alert modal="true" name="CannotReleaseLandRegionNotFound">Null<message name="message">No possvel abandonar terreno: O terreno no pode ser encontrado nesta regio. Por favor, use a opo Ferramenta, Reporar Bug para corrigir isso.</message> | ||
601 | </alert> | ||
602 | <alert modal="true" name="CannotReleaseLandNoTransfer">Null<message name="message">No possvel abandonar terreno: A regio [REGION] no permite transferncia de terreno.</message> | ||
603 | </alert> | ||
604 | <alert modal="true" name="CannotReleaseLandPartialSelection">Null<message name="message">No possvel abandonar terreno: Voc deve selecionar um lote inteiro para renunci-lo. Tente dar um clique duplo para selecionar um lote inteiro ou primeiramente faa a diviso.</message> | ||
605 | </alert> | ||
606 | <alert modal="true" name="ReleaseLandWarning">Null<message name="message">Voc est preste a renunciar [AREA] metros do seu terreno. Ao renunciar esse lote, haver a perda do controle sobre ele, mas isso no ir creditar nenhum L$. Renunciar este terreno?</message> | ||
607 | <option name="Release">Renunciar</option> | ||
608 | <option default="true" name="Cancel">Cancelar</option> | ||
609 | </alert> | ||
610 | <alert modal="true" name="CannotDivideLandNothingSelected">Null<message name="message">No possivel dividir terreno: Nada selecionado.</message> | ||
611 | </alert> | ||
612 | <alert modal="true" name="CannotDivideLandPartialSelection">Null<message name="message">No possivel dividir terreno: Voc tem um lote inteiro selecionado. Tente selecionar uma rea menor ao clicar e arrastar.</message> | ||
613 | </alert> | ||
614 | <alert modal="true" name="LandDivideWarning">Null<message name="message">Dividir este terreno ir espalhar esse lote em dois e cada um pode ter suas prprias configuraes. Algumas configuraes sero colocadas no padro depois dessa operao. Quer dividir o terreno?</message> | ||
615 | <option name="Divide">Dividir</option> | ||
616 | <option name="Cancel">Cancelar</option> | ||
617 | </alert> | ||
618 | <alert modal="true" name="CannotDivideLandNoRegion">Null<message name="message">No possivel dividir terreno: O terreno no pode ser encontrado nesta regio. Por favor, use a opo Ferramenta, Reporar Bug para corrigir isso.</message> | ||
619 | </alert> | ||
620 | <alert modal="true" name="CannotJoinLandNoRegion">Null<message name="message">No possvel unir terreno: O terreno no pode ser encontrado nesta regio. Por favor, use a opo Ferramenta, Reporar Bug para corrigir isso.</message> | ||
621 | </alert> | ||
622 | <alert modal="true" name="CannotJoinLandNothingSelected">Null<message name="message">No possvel unir terreno: Nada selecionado.</message> | ||
623 | </alert> | ||
624 | <alert modal="true" name="CannotJoinLandEntireParcelSelected">Null<message name="message">No possvel unir terreno: Voc selecionou um lote inteiro. Tente seleciona uma rea maior quando clicar e arrastar.</message> | ||
625 | </alert> | ||
626 | <alert modal="true" name="CannotJoinLandSelection">Null<message name="message">No possvel unir terreno: Voc deve selecionar mais um lote. Tente seleciona uma rea maior quando clicar e arrastar.</message> | ||
627 | </alert> | ||
628 | <alert modal="true" name="JoinLandWarning">Null<message name="message">A unio deste terreno criar um lote maior que pode cruzar com a rea retangular selecionada. Voc vai precisar colocar os novos nomes e opes dos lotes. Deseja unir o terreno?</message> | ||
629 | <option name="Join">Unir</option> | ||
630 | <option name="Cancel">Cancelar</option> | ||
631 | </alert> | ||
632 | <alert modal="true" name="ConfirmNotecardSave">Null<message name="message">Esta nota precisa ser salva antes do item ser copiado ou visualizado. Salvar nota?</message> | ||
633 | <option default="true" name="Save">Salvar</option> | ||
634 | <option name="Cancel">Cancelar</option> | ||
635 | </alert> | ||
636 | <alert modal="true" name="ConfirmLandmarkCopy">Null<message name="message">Copiar este item para o seu inventrio?</message> | ||
637 | <option name="Copy">Copiar</option> | ||
638 | <option name="Cancel">Cancelar</option> | ||
639 | </alert> | ||
640 | <alert modal="true" name="ConfirmItemCopy">Null<message name="message">Copiar este item para o seu inventrio?</message> | ||
641 | <option name="Copy">Copiar</option> | ||
642 | <option name="Cancel">Cancelar</option> | ||
643 | </alert> | ||
644 | <alert modal="true" name="ResolutionSwitchFail">Null<message name="message">Falha ao trocar a resoluo para [RESX] por [RESY]</message> | ||
645 | </alert> | ||
646 | <alert modal="true" name="ErrorUndefinedGrasses">Null<message name="message">Erro: Gramado indefinido; [SPECIES]</message> | ||
647 | </alert> | ||
648 | <alert modal="true" name="ErrorUndefinedTrees">Null<message name="message">Erro: rvores indefinidas: [SPECIES]</message> | ||
649 | </alert> | ||
650 | <alert modal="true" name="CannotSaveWearableOutOfSpace">Null<message name="message">No possvel salvar '[NAME]' para um arquivo implantado. Voc precisa liberar algum espao no seu computador e salvar o arquivo novamente.</message> | ||
651 | </alert> | ||
652 | <alert modal="true" name="CannotSaveToAssetStore">Null<message name="message">No possvel salvar [NAME] na ASSET STORE principal. Este uma falha temporria. Por favor personalize e salve o implantado(wearable) novamente em alguns minutos. Se o problema persistir, por favor clique em Ferramentas Reporte de Bug. Encontre o menu e informe sobre os detalhes da configurao da sua rede.</message> | ||
653 | </alert> | ||
654 | <alert modal="true" name="AppEarlyExit">Null<message name="message">[MESSAGE] Incapaz de nos restaurar a partir desse problema. Por favor desinstale e reinstale novamente. Se o problema persistir, verifique o FAQ do suporte tcnico em www.secondlifebrasil.com.br</message> | ||
655 | <option name="Quit">Sair</option> | ||
656 | </alert> | ||
657 | <alert modal="true" name="YouHaveBeenLoggedOut">Null<message name="message">Voc se desconectou do [SECOND_LIFE]: [MESSAGE]. Clique em Continuar para observar mensagens existentes ou bate-papo. Voc no ser capaz de realizar nenhuma operao. Clique em Sair para fechar [SECOND_LIFE] imediatamente.</message> | ||
658 | <option name="Continue">Continuar</option> | ||
659 | <option name="Quit">Sair</option> | ||
660 | </alert> | ||
661 | <alert modal="true" name="SelectSingleRate">Null<message name="message">Selecionar um nico objeto para avaliao.</message> | ||
662 | <option name="OK">OK</option> | ||
663 | </alert> | ||
664 | <alert modal="true" name="OnlyOfficerCanBuyLand">Null<message name="message">No possvel comprar o terreno para o grupo: Voc no tem permisso para comprar o terreno para o seu grupo ativado. Por favor ative outro grupo usando Editar -></message> | ||
665 | </alert> | ||
666 | <alert model="true" name="AddFriend" title="Adicionar amigo">Null<message name="message">Amigos podem dar permisso para se encontrarem no mapa e receber informaes de status online. Oferecer amizade para [NAME]?</message> | ||
667 | <option name="Offer">Oferecer</option> | ||
668 | <option name="Cancel">Cancelar</option> | ||
669 | </alert> | ||
670 | <alert modal="true" name="RemoveFromFriends">Null<message name="message">Voc quer remover [FIRST_NAME] [LAST_NAME] da sua lista de amigos?</message> | ||
671 | <option name="Remove">Remover</option> | ||
672 | <option name="Cancel">Cancelar</option> | ||
673 | </alert> | ||
674 | <alert modal="true" name="RemoveMultipleFromFriends">Null<message name="message">Voc quer remover vrios amigos da sua lista?</message> | ||
675 | <option name="Remove">Remover</option> | ||
676 | <option name="Cancel">Cancelar</option> | ||
677 | </alert> | ||
678 | <alert modal="true" name="GodDeleteAllScriptedPublicObjectsByUser">Null<message name="message">Est certo que deseja apagar todos os objetos com scripts possudos pelo **[AVATAR_NAME]** em todos as outros terrenos neste SIM?</message> | ||
679 | <option name="DELETE!!">APAGAR!!</option> | ||
680 | <option default="true" name="Cancel">Cancelar Cancel</option> | ||
681 | </alert> | ||
682 | <alert modal="true" name="GodDeleteAllScriptedObjectsByUser">Null<message name="message">Est certo de que deseja APAGAR TODOS os objetos programados (scripted) possudos pelo ** [AVATAR_NAME] ** em TODAS os TERRENOS deste setor?</message> | ||
683 | <option name="!!DELETEALL!!">!!APAGAR TUDO!!</option> | ||
684 | <option default="true" name="Cancel">Cancelar</option> | ||
685 | </alert> | ||
686 | <alert modal="true" name="GodDeleteAllObjectsByUser">Null<message name="message">Est certo de que deseja APAGAR TODOS os objetos programados (scripted) ou no, possudos pelo ** [AVATAR_NAME] ** em TODAS as TERRENOS deste setor?</message> | ||
687 | <option name="!!DELETEALL!!">!!APAGAR TUDO!!</option> | ||
688 | <option default="true" name="Cancel">Cancelar</option> | ||
689 | </alert> | ||
690 | <alert modal="true" name="PublishGroupInfoToWeb">Null<message name="message">Selecionando a opo "Publicar na Web" nos permitir publicar o nome do grupo, smbolo, cartas, ttulos e fundador no website [SECOND_LIFE]. Voc responsvel por informar se algum dos contedos acima conter tema Adulto de acordo com as Regras da Comunidade.</message> | ||
691 | </alert> | ||
692 | <alert modal="true" name="ErrorEncodingSnapshot">Null<message name="message">Erro de codificao da imagem.</message> | ||
693 | </alert> | ||
694 | <alert modal="true" name="BlankClassifiedName">Null<message name="message">Voc deve especificar um ttulo qualquer para seu anncio.</message> | ||
695 | </alert> | ||
696 | <alert modal="true" name="MinClassifiedPrice">Null<message name="message">Preo mnimo a pagar para incluir na listagem de L$[MIN_PRICE]. Por favor, insira um valor maior.</message> | ||
697 | </alert> | ||
698 | <alert modal="true" name="CantLoadVertexShaders">Null<message name="message">Incapaz de carregar Vertex Shaders.</message> | ||
699 | </alert> | ||
700 | <alert modal="true" name="ConfirmObjectDeleteLock">Null<message name="message">Pelo menos um objeto est trancado. Contudo, voc pode apagar a seleo atual. Tem certeza de que deseja apagar este item?</message> | ||
701 | <option name="Yes">Sim</option> | ||
702 | <option name="No">No</option> | ||
703 | </alert> | ||
704 | <alert modal="true" name="ConfirmObjectDeleteNoCopy">Null<message name="message">Pelo menos um objeto no copivel. Contudo, voc pode apagar a seleo atual. Tem certeza de que deseja apagar este item?</message> | ||
705 | <option name="Yes">Sim</option> | ||
706 | <option name="No">No</option> | ||
707 | </alert> | ||
708 | <alert modal="true" name="ConfirmObjectDeleteNoOwn">Null<message name="message">Voc no proprietrio de um dos objetos. Contudo, voc pode apagar a seleo atual. Tem certeza de que deseja apagar este item?</message> | ||
709 | <option name="Yes">Sim</option> | ||
710 | <option name="No">No</option> | ||
711 | </alert> | ||
712 | <alert modal="true" name="ConfirmObjectDeleteLockNoCopy">Null<message name="message">Pelo menos um dos objetos est trancado ou no copivel. Contudo, voc pode apagar a seleo atual. Tem certeza de que deseja apagar este item?</message> | ||
713 | <option name="Yes">Sim</option> | ||
714 | <option name="No">No</option> | ||
715 | </alert> | ||
716 | <alert modal="true" name="ConfirmObjectDeleteLockNoOwn">Null<message name="message">Pelo menos um dos objetos est trancado ou no de sua posse. Contudo, voc pode apagar a seleo atual. Tem certeza de que deseja apagar este item?</message> | ||
717 | <option name="Yes">Sim</option> | ||
718 | <option name="No">No</option> | ||
719 | </alert> | ||
720 | <alert modal="true" name="ConfirmObjectDeleteNoCopyNoOwn">Null<message name="message">Pelo menos um dos objetos no copivel ou no de sua posse. Contudo, voc pode apagar a seleo atual. Tem certeza de que deseja apagar este item?</message> | ||
721 | <option name="Yes">Sim</option> | ||
722 | <option name="No">No</option> | ||
723 | </alert> | ||
724 | <alert modal="true" name="ConfirmObjectDeleteLockNoCopyNoOwn">Null<message name="message">Pelo menos um dos objetos est trancado, no copivel ou voc no o possui. Contudo, voc pode apagar a seleo atual. Tem certeza de que deseja apagar este item?</message> | ||
725 | <option name="Yes">Sim</option> | ||
726 | <option name="No">No</option> | ||
727 | </alert> | ||
728 | <alert modal="true" name="ConfirmObjectTakeLock">Null<message name="message">Pelo menos um dos objetos est trancado. Contudo, voc pode apagar a seleo atual. Tem certeza de que deseja apagar este item?</message> | ||
729 | <option name="Yes">Sim</option> | ||
730 | <option default="true" name="No">No</option> | ||
731 | </alert> | ||
732 | <alert modal="true" name="ConfirmObjectTakeNoOwn">Null<message name="message">Voc no possui todos os objetos que est manipulando. Caso continue, as permisses do prximo proprietrio sero aplicadas aos objetos e h possibilidade de restringir sua habilidade em modific-lo ou copi-lo no futuro. Contudo, voc pode utilizar a seleo. Deseja continuar?</message> | ||
733 | <option name="Yes">Sim</option> | ||
734 | <option default="true" name="No">No</option> | ||
735 | </alert> | ||
736 | <alert modal="true" name="ConfirmObjectTakeLockNoOwn">Null<message name="message">Pelo menos um objeto est trancado ou voc no possui todos os objetos que est manipulando. Caso continue, as permisses do prximo proprietrio sero aplicadas aos objetos e h possibilidade de restringir sua habilidade em modific-lo ou copi-lo no futuro. Contudo, voc pode utilizar a seleo. Deseja continuar?</message> | ||
737 | <option name="Yes">Sim</option> | ||
738 | <option default="true" name="No">No</option> | ||
739 | </alert> | ||
740 | <alert modal="true" name="CantBuyLandAcrossMultipleRegions">Null<message name="message">No foi possvel adquirir o lote devido ao vrias selees de regies mltiplas. Por favor, selecione uma rea menor e tente novamente.</message> | ||
741 | </alert> | ||
742 | <alert modal="true" name="DeedLandToGroup">Null<message name="message">Por tornar este lote uma ao, o grupo ser consultado a ter e manter fundos suficientes. O preo de aquisio do lote no ser reembolsado ao proprietrio. Caso um lote acionado for vendido, o preo de venda ser dividido entre os membros do grupo. Acionar estes [AREA] metros quadrados de terra para o grupo '[GROUP_NAME]'?</message> | ||
743 | <option name="Deed">Acionar</option> | ||
744 | <option name="Cancel">Cancelar</option> | ||
745 | </alert> | ||
746 | <alert modal="true" name="DeedLandToGroupWithContribution">Null<message name="message">Por tornar este lote uma ao, o grupo ser consultado a ter e manter fundos suficientes. A ao incluir contribuies de terra simultneas para o grupo do '[FIRST_NAME] [LAST_NAME]'. O preo de aquisio do lote no ser reembolsado ao proprietrio. Caso um lote acionado for vendido, o preo de venda ser dividido entre os membros do grupo. Acionar estes [AREA] metros quadrados de terra para o grupo '[GROUP_NAME]'?</message> | ||
747 | <option name="Deed">Acionar</option> | ||
748 | <option name="Cancel">Cancelar</option> | ||
749 | </alert> | ||
750 | <alert modal="true" name="DisplaySetToSafe">Null<message name="message">Configuraes de display foram ajustadas para nvel de segurana porque voc especificou -- opo de segurana.</message> | ||
751 | </alert> | ||
752 | <alert modal="true" name="DisplaySetToRecommended">Null<message name="message">Configuraes de display foram ajustadas para nvel recomendado basedo na configurao do seu sistema.</message> | ||
753 | </alert> | ||
754 | <alert modal="true" name="UnableToConnect">Null<message name="message">Incapaz de conectar ao servidor. No foi possvel encontrar o nome do domnio: [HOST_NAME]</message> | ||
755 | </alert> | ||
756 | <alert modal="true" name="CanNotFindServer">Null<message name="message">Incapaz de encontrar o nome do domnio do servidor. Isso pode ser resultado de uma perda de conexo ou problema com o servidor. Por favor, tente novamente em alguns minutos ou clique am Ajuda para maiores informaes sobre a disponibilidade do sistema.</message> | ||
757 | <option name="OK">OK</option> | ||
758 | <option name="Help">Ajuda</option> | ||
759 | </alert> | ||
760 | <alert modal="true" name="PleaseSelectServer">Null<message name="message">Por favor, selecione um servidor. Incapaz de conectar ao [IP_ADDRESS]</message> | ||
761 | </alert> | ||
762 | <alert modal="true" name="SystemMayBeDown">Null<message name="message">Incapaz de conectar-se ao [SECOND_LIFE] O sistema pode estar desativado. Por favor, tente novamente em alguns minutos ou clique am Ajuda para mais informaes sobre a disponibilidade do sistema.</message> | ||
763 | <option name="OK">OK</option> | ||
764 | <option name="Help">Ajuda</option> | ||
765 | </alert> | ||
766 | <alert modal="true" name="ErrorMessage">Null<message name="message">[ERROR_MESSAGE]</message> | ||
767 | </alert> | ||
768 | <alert modal="true" name="AvatarMoved">Null<message name="message">Sua [TYPE] localizao atual invlida. [HELP] Voc ser movido a uma regio prxima.</message> | ||
769 | </alert> | ||
770 | <alert modal="true" name="ClothingLoading">Null<message name="message">Suas roupas ainda esto carregando. Voc pode explorar o mundo normalmente e os outros residentes iro v-lo corretamente.</message> | ||
771 | </alert> | ||
772 | <alert modal="true" name="FirstRun">Null<message name="message">[SECOND_LIFE] instalao completa. Caso seja sua primeira vez utilizando o [SECOND_LIFE], voc precisar criar uma conta antes de ingressar. Ir at www.secondlifebrasil.com.br para criar uma nova conta?</message> | ||
773 | <option name="NewAccount...">Nova conta..</option> | ||
774 | <option name="Continue">Continuar</option> | ||
775 | </alert> | ||
776 | <alert modal="true" name="SetByHostFail">Null<message name="message">Incapaz de conectar-se ao servidor. No foi possvel encontrar o nome do domnio: [HOST_NAME] Por favor, verifique sua conexo.</message> | ||
777 | </alert> | ||
778 | <alert modal="true" name="LoginPacketNeverReceived">Null<message name="message">Incapaz de conectar-se. Pacote de entrada no recebido pelo servidor de entrada. Por favor, tente novamente em alguns minutos ou clique em Ajuda para maiores informaes sobre a disponibilidade de sistema.</message> | ||
779 | <option name="OK">OK</option> | ||
780 | <option name="Help">Ajuda</option> | ||
781 | </alert> | ||
782 | <alert modal="true" name="WelcomeNoClothes">Null<message name="message">Seu avatar aparecer em alguns minutos. Utilize as setas para mover-se. Pressione F1 a qualquer momento para aprender mais sobre [SECOND_LIFE].</message> | ||
783 | </alert> | ||
784 | <alert modal="true" name="WelcomeChooseSex" nodefault="true">Null<message name="message">Seu avatar aparecer em alguns minutos. Utilize as setas para mover-se. Pressione F1 a qualquer momento para aprender mais sobre [SECOND_LIFE]. Por favor, escolha um personagem masculino ou feminino. Voc pode mudar de idia depois.</message> | ||
785 | <option name="Male">Masculino</option> | ||
786 | <option name="Female">Feminino</option> | ||
787 | </alert> | ||
788 | <alert modal="true" name="NotEnoughCurrency">Null<message name="message">[NAME] L$ [PRICE] Voc no possui fundos suficientes para isso.</message> | ||
789 | </alert> | ||
790 | <alert modal="true" name="GrantedModifyRights">Null<message name="message">Foi garantido voc o privilgio de alterar o(s) objeto(s) [FIRST_NAME] [LAST_NAME]'</message> | ||
791 | </alert> | ||
792 | <alert modal="true" name="RevokedModifyRights">Null<message name="message">Seu privilgio para alterar o(s) objeto(s) [FIRST_NAME] [LAST_NAME]'s foi removido.</message> | ||
793 | </alert> | ||
794 | <alert modal="true" name="FlushMapVisibilityCaches">Null<message name="message">Isso ir descarregar os caches de mapa dessa regio. Pode seu til somente para debugar. (Em andamento, aguarde 5 minutos, ento todos os mapas sero atualizados aps reentrarem)</message> | ||
795 | <option name="OK">OK</option> | ||
796 | <option name="Cancel">Cancelar</option> | ||
797 | </alert> | ||
798 | <alert modal="true" name="OnlyCopyContentsOfSingleItem">Null<message name="message">Incapaz de copiar os contedos de mais de um item por vez. Por favor, selecione somente um objeto e tente novamente.</message> | ||
799 | <option name="OK">OK</option> | ||
800 | <option name="Cancel">Cancelar</option> | ||
801 | </alert> | ||
802 | <alert modal="true" name="KickUsersFromRegion">Null<message name="message">Teleportar para home todos os usurios dessa regio?</message> | ||
803 | <option name="OK">OK</option> | ||
804 | <option name="Cancel">Cancelar</option> | ||
805 | </alert> | ||
806 | <alert modal="true" name="ReturnScriptedOnOthersLand">Null<message name="message">Tem certeza de que deseja retornar todos os objetos programados (scripted) possudos pelo(a) ** [USER_NAME] ** que estejam em terrenos de outros?</message> | ||
807 | <option name="Return">Retornar</option> | ||
808 | <option default="true" name="Cancel">Cancelar</option> | ||
809 | </alert> | ||
810 | <alert modal="true" name="ReturnScriptedOnAllLand">Null<message name="message">Tem certeza de que deseja retornar TODOS os objetos programados (scripted) possudos pelo(a) ** [USER_NAME] ** desta Regio?</message> | ||
811 | <option name="Return">Retornar</option> | ||
812 | <option default="true" name="Cancel">Cancelar</option> | ||
813 | </alert> | ||
814 | <alert modal="true" name="InvalidTerrainBitDepth">Null<message name="message">No foi possvel configurar as texturas da regio. Texturas de terreno [TEXTURE_NUM] possui um nmero invlido de profundidade de [TEXTURE_BIT_DEPTH]. Substitua a textura [TEXTURE_NUM] com 24 bit 512x512 ou menor e clique em "Set" novamente.</message> | ||
815 | </alert> | ||
816 | <alert modal="true" name="InvalidTerrainSize">Null<message name="message">No foi possvel configurar as texturas da regio. Terrain texture [TEXTURE_NUM] muito grande em [TEXTURE_SIZE_X]x[TEXTURE_SIZE_Y]. Substitua a textura [TEXTURE_NUM] com 24 bit 512x512 ou menor e clique em "Set" novamente.</message> | ||
817 | </alert> | ||
818 | <alert modal="true" name="RawUploadStarted">Null<message name="message">Upload iniciado. Isso pode levar uns 2 minutos, dependendo da sua velocidade de conexo.</message> | ||
819 | </alert> | ||
820 | <alert modal="true" name="ConfirmBakeTerrain">Null<message name="message">Voc realmente deseja nivelar o terreno selecionado a partir do centro elevando/reduzindo os limites e o padro para a ferramenta Reverter?</message> | ||
821 | <option name="Bake">Executar</option> | ||
822 | <option name="Cancel">Cancelar</option> | ||
823 | </alert> | ||
824 | <alert modal="true" name="MaxAllowedAgentOnRegion">Null<message name="message">Voc pode ter somente [MAX_AGENTS] residentes permitidos.</message> | ||
825 | </alert> | ||
826 | <alert modal="true" name="MaxAllowedGroupsOnRegion">Null<message name="message">Voc pode ter somente [MAX_GROUPS] grupos permitidos.</message> | ||
827 | <option name="Bake">Executar</option> | ||
828 | <option name="Cancel">Cancelar</option> | ||
829 | </alert> | ||
830 | <alert modal="true" name="MaxBannedAgentsOnRegion">Null<message name="message">Voc pode ter apenas [MAX_BANNED] residentes banidos.</message> | ||
831 | </alert> | ||
832 | <alert modal="true" name="MaxManagersOnRegion">Null<message name="message">Voc pode ter apenas [MAX_MANAGER] residentes banidos.</message> | ||
833 | </alert> | ||
834 | <alert modal="true" name="OwnerCanNotBeDenied">Null<message name="message">No possvel adicionar um porprietrio a regio. Acesso negado lista.</message> | ||
835 | </alert> | ||
836 | <alert modal="true" name="CanNotChangeAppearanceUntilLoaded">Null<message name="message">No possvel alterar a aparncia at que as roupas e formas estejam carregadas.</message> | ||
837 | </alert> | ||
838 | <alert modal="true" name="ClassifiedMustBeAlphanumeric">Null<message name="message">O ttulo do seu Anncio deve comear com uma letra entre A e Z ou nmero. Nenhuma pontuao permitida.</message> | ||
839 | </alert> | ||
840 | <alert modal="true" name="CantSetBuyObject">Null<message name="message">No possvel configurar Comprar Objeto, porque o objeto no est venda. Por favor, ponha o objeto venda e tente novamente.</message> | ||
841 | </alert> | ||
842 | <alert modal="true" name="FinishedRawDownload">Null<message name="message">Download do arquivo de terreno RAW concludo em: [DOWNLOAD_PATH]</message> | ||
843 | </alert> | ||
844 | <alert modal="true" name="DownloadWindowsMandatory">Null<message name="message">Uma nova verso do [SECOND_LIFE] est disponvel.[MESSAGE] Voc deve atualizar sua verso para utilizar o sistema.</message> | ||
845 | <option name="Download">Atualizar</option> | ||
846 | <option name="Quit">Sair</option> | ||
847 | </alert> | ||
848 | <alert modal="true" name="DownloadWindows">Null<message name="message">Uma nova verso do [SECOND_LIFE] est disponvel.[MESSAGE] Essa atualizao no obrigatria, mas sugerimos que a instale para aperfeioamento de estabilidade e performance.</message> | ||
849 | <option name="Download">Atualizar</option> | ||
850 | <option default="true" name="Continue">Continuar</option> | ||
851 | </alert> | ||
852 | <alert modal="true" name="DownloadWindowsReleaseForDownload">Null<message name="message">Uma nova verso do [SECOND_LIFE] est disponvel.[MESSAGE] Essa atualizao no obrigatria, mas sugerimos que a instale para aperfeioamento de estabilidade e performance.</message> | ||
853 | <option name="Download">Atualizar</option> | ||
854 | <option name="Continue">Continuar</option> | ||
855 | </alert> | ||
856 | <alert modal="true" name="DownloadMacMandatory">Null<message name="message">Uma nova verso do [SECOND_LIFE] est disponvel.[MESSAGE] Voc deve atualizar esta verso para utilizar o sistema. Atualizar para sua pasta de Aplicaes?</message> | ||
857 | <option name="Download">Atualizar</option> | ||
858 | <option name="Quit">Sair</option> | ||
859 | </alert> | ||
860 | <alert modal="true" name="DownloadMac">Null<message name="message">Uma nova verso do [SECOND_LIFE] est disponvel.[MESSAGE] Essa atualizao no obrigatria, mas sugerimos que a instale para aperfeioamento de estabilidade e performance. Atualizar para sua pasta de Aplicaes?</message> | ||
861 | <option name="Download">Atualizar</option> | ||
862 | <option default="true" name="Continue">Continuar</option> | ||
863 | </alert> | ||
864 | <alert modal="true" name="DownloadMacReleaseForDownload">Null<message name="message">Uma nova verso do [SECOND_LIFE] est disponvel.[MESSAGE] Essa atualizao no obrigatria, mas sugerimos que a instale para aperfeioamento de estabilidade e performance. Atualizar para sua pasta de Aplicaes?</message> | ||
865 | <option name="Download">Atualizar</option> | ||
866 | <option name="Continue">Continuar</option> | ||
867 | </alert> | ||
868 | <alert modal="true" name="DeedObjectToGroup">Null<message name="message">Acionar este objeto causar ao grupo: * Recebe o valor pago pelo objeto</message> | ||
869 | <ignore>Quando acionar objetos ao grupo</ignore> | ||
870 | <option name="Deed">Acionar</option> | ||
871 | <option name="Cancel">Cancelar</option> | ||
872 | </alert> | ||
873 | <alert modal="true" name="AddClassified">Null<message name="message">Anncios colocados aparecem na seo 'Anncios' no diretrio de Busca por uma semana. Preencha seu anncio e clique em 'Publicar...' para adicion-lo ao diretrio. Voc ser consultado a pagar um preo quando clicar em Publicar. Quanto mais pagar, mais prximo ao topo da lista ficar seu anncio, facilitando a visualizao pelos outros Residentes.</message> | ||
874 | <ignore>Quando adicionar um novo Anncio.</ignore> | ||
875 | <option name="OK">OK</option> | ||
876 | <option name="Cancel">Cancelar</option> | ||
877 | </alert> | ||
878 | <alert modal="true" name="WebLaunchGraphicsDriver">Null<message name="message">Seu [VENDOR_LABLE] [CARD_NAME] driver de vdeo neste computador est desatualizado. Este um componente software que controla sua placa de vdeo. Verses antigas podem gerar problemas nos grficos 3D em programas como [SECOND_LIFE]. Ns recomendamos atualizar seu "[DRIVER_NAME]" driver, disponvel gratuitamente pela internet.</message> | ||
879 | <ignore>Quando iniciar o navegador, visualizar a pgina de atualizaes de drivers</ignore> | ||
880 | <option name="Gotopage">Ir para a pgina</option> | ||
881 | <option name="Cancel">Cancelar</option> | ||
882 | </alert> | ||
883 | <alert modal="true" name="WebLaunchGraphicsDriverIntelExtreme">Null<message name="message">Seu driver grfico Intel Extreme est desatualizado.Este um componente software que controla sua placa de vdeo. Verses antigas podem gerar problemas nos grficos 3D em programas como [SECOND_LIFE]. Ns recomendamos atualizar seu "[DRIVER_NAME]" driver, disponvel na pgina da Intel.Gostaria de ir at a pgina de e drivers do [SECOND_LIFE]?</message> | ||
884 | <ignore>Quando iniciar o navegador, visualizar a pgina de atualizaes de drivers Intel</ignore> | ||
885 | <option name="Gotopage">Ir para a pgina</option> | ||
886 | <option name="Cancel">Cancelar</option> | ||
887 | </alert> | ||
888 | <alert modal="true" name="RunningInPCI">Null<message name="message">GL indica que o driver de vdeo neste sistema est funcioando em modo PCImode, um mtodo mais lento de processamento de imanges. Caso voc esteja usando uma placa de vdeo PCI, por favor, desconsidere esta mensagem. Caso esteja usando uma placa de vdeo AGP, voc deve atualizar sua placa-me para melhorar a performance do sistema. Se estiver utilizando uma placa de vdeo PCI Express voc pode ativar a AGP a partir do painel Preferncias no [SECOND_LIFE].</message> | ||
889 | <ignore>Quando funcionar em modo PCI</ignore> | ||
890 | </alert> | ||
891 | <alert modal="true" name="WebLaunchJoinNow">Null<message name="message">Ir ao www.secondlifebrasil.com.br para gerenciar sua conta?</message> | ||
892 | <ignore>Quando iniciar o navegador, ir a pgina de gerncia de conta</ignore> | ||
893 | <option name="OK">OK</option> | ||
894 | <option name="Cancel">Cancelar</option> | ||
895 | </alert> | ||
896 | <alert modal="true" name="WebLaunchForums">Null<message name="message">Buscar pela Base de Conhecimento do [SECOND_LIFE] as ltimas dicas e truques.</message> | ||
897 | <ignore>Quando iniciar o navegador, ir at a Base de Conhecimento</ignore> | ||
898 | <option name="Gotopage">Ir para a pgina</option> | ||
899 | <option name="Cancel">Cancelar</option> | ||
900 | </alert> | ||
901 | <alert modal="true" name="WebLaunchSupport">Null<message name="message">Contactar o Suporte [SECOND_LIFE].</message> | ||
902 | <ignore>Quando iniciar o navegador, contactar o Suporte</ignore> | ||
903 | <option name="Gotopage">Ir para a pgina</option> | ||
904 | <option name="Cancel">Cancelar</option> | ||
905 | </alert> | ||
906 | <alert modal="true" name="WebLaunchSupportWiki">Null<message name="message">Ir at o Blog Oficial da Linden buscar pelas ltimas notcias e informaes.</message> | ||
907 | <ignore>Quando iniciar o navegador, visualizar o Blog</ignore> | ||
908 | <option name="Gotopage">Ir at a pgina</option> | ||
909 | <option name="Cancel">Cancelar</option> | ||
910 | </alert> | ||
911 | <alert modal="true" name="WebLaunchLSLGuide">Null<message name="message">Ir para a pgina guia do LSL para ajuda com script?</message> | ||
912 | <ignore>Quando iniciar o navegador, visualizar o guia LSL</ignore> | ||
913 | <option name="Gotopage">Ir para a pgina</option> | ||
914 | <option name="Cancel">Cancelar</option> | ||
915 | </alert> | ||
916 | <alert modal="true" name="WebLaunchLSLWiki">Null<message name="message">Ir para a pgina LSL Wiki para ajuda com script?</message> | ||
917 | <ignore>Quando iniciar o navegador, visualizar o LSL Wiki</ignore> | ||
918 | <option name="Gotopage">Ir para a pgina</option> | ||
919 | <option name="Cancel">Cancelar</option> | ||
920 | </alert> | ||
921 | <alert modal="true" name="WebLaunchReleaseNotes">Null<message name="message">Visite o [SECOND_LIFE] notas de lanamentos.</message> | ||
922 | <ignore>Quano iniciar o navegador, visitar as notas de lanamento.</ignore> | ||
923 | <option name="Gotopage">Ir para a pgina</option> | ||
924 | <option name="Cancel">Cancelar</option> | ||
925 | </alert> | ||
926 | <alert modal="true" name="ReturnToOwner">Null<message name="message">Voc tem certeza que quer devolver os objetos selecionados aos seus donos? A autoria dos objetos transferveis retornar para os seu antigos donos. (Todos os objetos retornaro para as pastas que estavam localizados anteriormente.)* *AVISO* Nenhum objeto transfervel acionado ser deletado!</message> | ||
927 | <ignore>Quando retornar os objetos aos seus donos.</ignore> | ||
928 | <option name="Return">Retornar</option> | ||
929 | <option name="Cancel">Cancelar</option> | ||
930 | </alert> | ||
931 | <alert modal="true" name="ViewReleaseNotes">Null<message name="message">Deseja visitar as notas de lanamentos do Second Life?</message> | ||
932 | <ignore>Enquanto estiver vendo as notas de lanamento.</ignore> | ||
933 | <option name="Gotopage">Ir para a pgina</option> | ||
934 | <option name="Cancel">Cancelar</option> | ||
935 | </alert> | ||
936 | <alert name="GroupLeaveConfirmOfficer">Null<message name="message">Voc um gerenciador do grupo [GROUP]. Deixar este grupo?</message> | ||
937 | <option name="Leave">Deixar</option> | ||
938 | <option name="Cancel">Cancelar</option> | ||
939 | </alert> | ||
940 | <alert name="GroupLeaveConfirmMember">Null<message name="message">Voc j um membro do grupo [GROUP]. Deixar este grupo?</message> | ||
941 | <option name="Leave">Deixar</option> | ||
942 | <option name="Cancel">Cancelar</option> | ||
943 | </alert> | ||
944 | <alert name="ConfirmKick" unique="true">Null<message name="message">Voc quer REALMENTE expulsar todos os usurios deste grid?</message> | ||
945 | </alert> | ||
946 | <alert modal="true" name="MuteLinden">Null<message name="message">Desculpe, voc no pode silenciar um Linden.</message> | ||
947 | <option name="OK">OK</option> | ||
948 | </alert> | ||
949 | <alert modal="true" name="MuteByName" title="Silenciar objeto pelo nome">Null<message name="message">Silenciar por nome somente afetar objetos, bate-papo e MI, mas no sons. Voc deve digitar o nome do objeto corretamente.</message> | ||
950 | <editline>Nome do objeto</editline> | ||
951 | <option name="OK">OK</option> | ||
952 | <option name="Cancel">Cancelar</option> | ||
953 | </alert> | ||
954 | <alert modal="true" name="MuteByNameFailed" title="Silenciar objeto pelo nome falhou">Null<message name="message">Voc j silenciou esse objeto.</message> | ||
955 | <option name="OK">OK</option> | ||
956 | </alert> | ||
957 | <alert name="RemoveItemWarn">Null<message name="message">Embora seja permitido excluir o inventrio, isso pode danificar o objeto. Voc quer excluir este inventrio?</message> | ||
958 | <option name="Yes">Sim</option> | ||
959 | <option default="true" name="No">No</option> | ||
960 | </alert> | ||
961 | <alert name="CantRateOwnedByGroup">Null<message name="message">No permitido fixar o preo de um objeto de outro proprietrio, ele pertence a um grupo.</message> | ||
962 | <option name="OK">OK</option> | ||
963 | </alert> | ||
964 | <alert name="CantOfferCallingCard">Null<message name="message">No possvel oferecer um carto de visitas neste momento. Por favor, tente novamente em breve.</message> | ||
965 | <option name="OK">OK</option> | ||
966 | </alert> | ||
967 | <alert name="CantOfferFriendship">Null<message name="message">No possvel oferecer uma amizade neste momento. Por favor, tente novamente em breve.</message> | ||
968 | <option name="OK">OK</option> | ||
969 | </alert> | ||
970 | <alert name="CantSetHome">Null<message name="message">No possvel definir home aqui. Sua home precisa estar num terreno que pertena a voc ou ao seu grupo.</message> | ||
971 | <option name="OK">OK</option> | ||
972 | </alert> | ||
973 | <alert name="BusyModeSet">Null<message name="message">Modificado para o modo Ocupado. O bate-papo e mensagens instantneas sero ocultadas. Mensagens instantneas sero respondidas como ocupado. Todos os convites para teleportar-se e sobre inventrio sero recusadas.</message> | ||
974 | <ignore>Ao alterar para Modo Ocupado.</ignore> | ||
975 | <option name="OK">OK</option> | ||
976 | </alert> | ||
977 | <alert name="NoPVPDetected">Null<message name="message">No foi detectado abusos em rea de player vs player (PvP)</message> | ||
978 | <option name="OK">OK</option> | ||
979 | </alert> | ||
980 | <alert name="NotecardAttachPermFail">Null<message name="message">Somente itens com permisso irrestrita do proprietrio, podem ser anexadas aos notecards.</message> | ||
981 | <option name="OK">OK</option> | ||
982 | </alert> | ||
983 | <alert name="JoinedTooManyGroupsMember">Null<message name="message">Voc j pertence a muitos grupos para entrar em outro. Por favor, deixe pelo menos um grupo antes de entrar nesse. Para sair de um grupo, selecione o Menu Editar e a opo Meus Grupos. [NAME] convidou para entrar num grupo como membro.</message> | ||
984 | <option name="Join">Entrar</option> | ||
985 | <option name="Decline">Rejeitar</option> | ||
986 | </alert> | ||
987 | <alert name="JoinedTooManyGroupsOfficer">Null<message name="message">Voc j um oficial de muitos grupos para pertencer a outro. Por favor, deixe pelo menos um grupo antes de entrar nesse. Para sair de um grupo, selecione o Menu Editar e a opo Meus Grupos. [NAME] convidou para entrar num grupo como membro.</message> | ||
988 | <option name="Join">Entrar</option> | ||
989 | <option name="Decline">Rejeitar</option> | ||
990 | </alert> | ||
991 | <alert name="HandleRateOwner">Null<message name="message">No permitido fixar o preo de um objeto de outro proprietrio, ele pertence a um grupo.</message> | ||
992 | <option name="OK">OK</option> | ||
993 | </alert> | ||
994 | <alert name="KickUser">Null<message name="message">Expulsar este usurio com qual mensagem?</message> | ||
995 | <editline>Um administrador o desconectou.</editline> | ||
996 | <option name="OK">OK</option> | ||
997 | <option name="Cancel">Cancelar.</option> | ||
998 | </alert> | ||
999 | <alert name="KickAllUsers">Null<message name="message">Expulsar todo mundo atualmente do grid com qual mensagem?</message> | ||
1000 | <editline>Um administrador te desconectou.</editline> | ||
1001 | <option name="OK">OK</option> | ||
1002 | <option name="Cancel">Cancelar</option> | ||
1003 | </alert> | ||
1004 | <alert name="FreezeUser">Null<message name="message">Paralise este usurio com qual mensagem?</message> | ||
1005 | <editline>Voc foi paralisado. Voc no pode mover-se ou conversar. Um administrador entrar em contato com voc atravs de mensagem instantnea (MI).</editline> | ||
1006 | <option name="OK">OK</option> | ||
1007 | <option name="Cancel">Cancelar</option> | ||
1008 | </alert> | ||
1009 | <alert name="UnFreezeUser">Null<message name="message">Liberar este usurio com qual mensagem?</message> | ||
1010 | <editline>Voc no est mais paralisado.</editline> | ||
1011 | <option name="OK">OK</option> | ||
1012 | <option name="Cancel">Cancelar</option> | ||
1013 | </alert> | ||
1014 | <alert name="ExpungeUser">Null<message name="message">Insira uma ID agente para banir um usurio.</message> | ||
1015 | <editline />NullNull | ||
1016 | <option name="OK">OK</option> | ||
1017 | <option name="Cancel">Cancelar</option> | ||
1018 | </alert> | ||
1019 | <alert modal="true" name="OfferTeleport">Null<message name="message">Oferecer um teletransporte para uma localizao com a seguinte mensagem?</message> | ||
1020 | <editline>Venha para [REGION]</editline> | ||
1021 | <option name="OK">OK</option> | ||
1022 | <option name="Cancel">Cancelar</option> | ||
1023 | </alert> | ||
1024 | <alert modal="true" name="OfferTeleportFromGod">Null<message name="message">God user convocou para a sua localizao?</message> | ||
1025 | <editline>Venha para [REGION]</editline> | ||
1026 | <option name="OK">OK</option> | ||
1027 | <option name="Cancel">Cancelar</option> | ||
1028 | </alert> | ||
1029 | <alert name="MessageEstate" title="Mensagem para todos do Estado">Null<message name="message">Digite um breve anncio ao qual ser enviado para todos que estejam nesta regio.</message> | ||
1030 | <editline />NullNull | ||
1031 | <option name="OK">OK</option> | ||
1032 | <option name="Cancel">Cancelar</option> | ||
1033 | </alert> | ||
1034 | <alert name="ChangeLindenEstate" title="Mudar propriedade Linden">Null<message name="message">Voc no capaz de modificar um Estado pertencente a Linden (mainland, grid adolescente, orientao, etc.). Isso EXTREMAMENTE PERIGOSO porque pode afetar profundamente a experincia do usurio. Na mainland, isso ir mudar milhares de regies e fazer o espao do servidor travar. Proceder?</message> | ||
1035 | <option name="ChangeEstate">Mudar Estado</option> | ||
1036 | <option name="Cancel">Cancelar</option> | ||
1037 | </alert> | ||
1038 | <alert name="ChangeLindenAccess" title="Mudar a propriedade de Linden OK">Null<message name="message">Voc capaz de modificar um Estado pertencente a Linden (mainland, grid adolescente, orientao, etc.). Isso EXTREMAMENTE PERIGOSO porque pode afetar profundamente a experincia do usurio. Na mainland, isso ir mudar milhares de regies e fazer o espao do servidor travar. Continuar?</message> | ||
1039 | <option name="ChangeEstate">Trocar Estado</option> | ||
1040 | <option name="Cancel">Cancelar</option> | ||
1041 | </alert> | ||
1042 | <alert name="EstateAllowedAgentAdd" title="Seleo de Estado"><message name="message">Adicionar lista de permitidos somente para essa Regio ou para [ALL_ESTATES]?</message> | ||
1043 | <option name="ThisEstate">Esta Regio</option> | ||
1044 | <option name="AllEstates">Todas as Regies</option> | ||
1045 | <option name="Cancel">Cancelar</option> | ||
1046 | </alert> | ||
1047 | <alert name="EstateAllowedAgentRemove" title="Seleo de Estado"><message name="message">Remover da lista de permisso somente esta Regio ou [ALL_ESTATES]?</message> | ||
1048 | <option name="ThisEstate">Esta Regio</option> | ||
1049 | <option name="AllEstates">Todas Regies</option> | ||
1050 | <option name="Cancel">Cancelar</option> | ||
1051 | </alert> | ||
1052 | <alert name="EstateAllowedGroupAdd" title="Seleo de Estado"><message name="message">Adicionar lista de grupos permitidos somente para esta Regio ou [ALL_ESTATES]?</message> | ||
1053 | <option name="ThisEstate">Esta Regio</option> | ||
1054 | <option name="AllEstates">Todas Regies</option> | ||
1055 | <option name="Cancel">Cancelar</option> | ||
1056 | </alert> | ||
1057 | <alert name="EstateAllowedGroupRemove" title="Seleo de Estado">Null<message name="message">Remover da lista de grupos permitidos somente esta Regio ou [ALL_ESTATES]?</message> | ||
1058 | <option name="Cancel">Cancelar</option> | ||
1059 | </alert> | ||
1060 | <alert name="EstateBannedAgentAdd" title="Seleo de Estado">Null<message name="message">Negar acesso a esta Regio somente ou para [ALL_ESTATES]?</message> | ||
1061 | <option name="ThisEstate">Esta Regio</option> | ||
1062 | <option name="AllEstates">Todas Regies</option> | ||
1063 | <option name="Cancel">Cancelar</option> | ||
1064 | </alert> | ||
1065 | <alert name="EstateBannedAgentRemove" title="Seleo de Estado">Null<message name="message">Cancelar acessos negados para esta Regio somente ou para [ALL_ESTATES]?</message> | ||
1066 | <option name="ThisEstate">Esta Regio</option> | ||
1067 | <option name="AllEstates">Todas Regies</option> | ||
1068 | <option name="Cancel">Cancelar</option> | ||
1069 | </alert> | ||
1070 | <alert name="EstateManagerAdd" title="Seleo de Estado">Null<message name="message">Adicionar gerenciador do Estado para esta Regio somente ou para todas?</message> | ||
1071 | <option name="ThisEstate">Esta Regio</option> | ||
1072 | <option name="AllEstates">Todas Regies</option> | ||
1073 | <option name="Cancel">Cancelar</option> | ||
1074 | </alert> | ||
1075 | <alert name="EstateManagerRemove" title="Seleo de Estado">Null<message name="message">Remover gerenciador do Estado para esta Regio somente ou para todas?</message> | ||
1076 | <option name="ThisEstate">Esta Regio</option> | ||
1077 | <option name="AllEstates">Todas Regies</option> | ||
1078 | <option name="Cancel">Cancelar</option> | ||
1079 | </alert> | ||
1080 | <alert name="EstateCovenantChange" title="Seleo de Estado">Null<message name="message">Mudar mensagem do Corretor somente para esta regio ou para [ALL_ESTATES]?</message> | ||
1081 | <option name="ThisEstate">Esta Regio</option> | ||
1082 | <option name="AllEstates">Todas Regies</option> | ||
1083 | <option name="Cancel">Cancelar</option>s | ||
1084 | </alert> | ||
1085 | <alert name="EstateKickUser" title="Confirmar Kick">Null<message name="message">Expulsar [EVIL_USER] desta Regio?</message> | ||
1086 | <option name="Kick">Expulsar</option> | ||
1087 | <option name="Cancel">Cancelar</option> | ||
1088 | </alert> | ||
1089 | <alert modal="true" name="EstateChangeCovenant">Null<message name="message">Tem certeza de que deseja mudar o Corretor da regio?</message> | ||
1090 | <option name="Change">Mudar</option> | ||
1091 | <option name="Cancel">Cancelar</option> | ||
1092 | </alert> | ||
1093 | <alert modal="true" name="ProblemImportingEstateCovenant">Null<message name="message">Problemas encontrados ao importar o Corretor da regio.</message> | ||
1094 | <option name="OK">OK</option> | ||
1095 | </alert> | ||
1096 | <alert modal="true" name="UnableToLoadNotecard">Null<message name="message">No possvel carregar notas neste momento.</message> | ||
1097 | <option name="OK">OK</option> | ||
1098 | </alert> | ||
1099 | <alert modal="true" name="NotAllowedToViewNotecard">Null<message name="message">Permisses insuficientes para visualizar notecard associado com ID asset solicitado.</message> | ||
1100 | <option name="OK">OK</option> | ||
1101 | </alert> | ||
1102 | <alert modal="true" name="MissingNotecardAssetID">Null<message name="message">ID asset para notecard no foi localizado no banco de dados.</message> | ||
1103 | <option name="OK">OK</option> | ||
1104 | </alert> | ||
1105 | <alert name="PublishClassified">Null<message name="message">Lembre-se: A taxa dos Classificados no so devolvidas. Publicar esse classificado agora por L$[AMOUNT]?</message> | ||
1106 | <option name="Publish">Publicar</option> | ||
1107 | <option name="Cancel">Cancelar</option> | ||
1108 | </alert> | ||
1109 | <alert name="ConfirmRestart" title="Confirmar restart">Null<message name="message">Voc quer realmente reiniciar essa regio em 2 minutos?</message> | ||
1110 | <option name="Restart">Reiniciar</option> | ||
1111 | <option name="Cancel">Cancelar</option> | ||
1112 | </alert> | ||
1113 | <alert name="MessageRegion" title="Mensagem para todos desta Regio">Null<message name="message">Digite um aviso que ser enviado para todos nesta regio.</message> | ||
1114 | <editline />NullNull | ||
1115 | <option name="OK">OK</option> | ||
1116 | <option name="Cancel">Cancelar</option> | ||
1117 | </alert> | ||
1118 | <alert modal="true" name="HelpRegionBlockTerraform" title="Bloquear Terraform">Null<message name="message">Se esta caixa estiver marcada, os proprietrios do terreno no podero model-lo independente das opes de 'Editar Terreno' por lote. Padro: desligado.</message> | ||
1119 | </alert> | ||
1120 | <alert modal="true" name="HelpRegionBlockFly" title="Bloquear Vo">Null<message name="message">Se esta caixa estiver marcada, as pessoas no podero voar nesta regio independente das configuraes por lote de 'Voar'. Padro: desligado.</message> | ||
1121 | </alert> | ||
1122 | <alert modal="true" name="HelpRegionAllowDamage" title="Permitir Dano">Null<message name="message">Marcar essa caixa habilita o sistema de vitalidade em todos os lotes independente das configuraes individuais. Se esta caixa ficar desmarcada, os proprietrios de lotes individuais ainda estaro aptos a ativar o sistema de vitalidade de seus lotes. Padro: desligado.</message> | ||
1123 | </alert> | ||
1124 | <alert modal="true" name="HelpRegionAgentLimit" title="Agente Limite">Null<message name="message">Define o nmero mximo de residentes permitidos nessa regio. Lembre-se que quanto mais residentes existir em sua regio, pior pode ser a performance. Padro: 30</message> | ||
1125 | </alert> | ||
1126 | <alert modal="true" name="HelpRegionObjectBonus" title="Objeto Bonus"><message name="message">O Bnus de Objeto um multiplicador de primitivas permitidas em qualquer lote. So permitidos valores entre 1 e 10. Definido como '1' a cada 512m2;, seriam permitidos 117 objetos; como '2' a cada 512m2;, seriam permitidos 234; e assim sucessivamente. O nmero mximo de objetos permitidos por regio 15.000 no importando qual o valor definido para o Bnus de Objeto. Uma vez colocado esse valor, ele no pode ser diminudo at voc ter certeza de que a mudana no forar o retorno ou a excluso de objetos atuais no lote. Padro: 1.0</message> | ||
1127 | </alert> | ||
1128 | <alert modal="true" name="HelpRegionMaturity" title="Adulto"><message name="message">Configure a maturidade da regio, como mostrado no canto superior direito da tela nas janelas de dica no mapa. Contedo Adulto tambm inlui no resultado das buscas - Os residentes podem optar em no pesquisar por regies com contedo Adulto. As janelas dica no mapa no mudaro por 5 min uma vez que o sistema atualiza as informaes peridicamente. Padro: PG | ||
1129 | </message> | ||
1130 | </alert> | ||
1131 | <alert modal="true" name="HelpRegionRestrictPushObject" title="Restringir Empurrar"><message name="message">Configura toda a regio para permisses restritivas de push. Agentes s podem usar push neles mesmos ou realizar o push atravs de scripts pertencentes ao proprietrio do lote, ou aqueles definidos para o grupo da parcela, assumindo que a parcela tenha um grupo definido. Push se refere funo llPushObject() LSL. Padro: Desligado.</message> | ||
1132 | </alert> | ||
1133 | <alert modal="true" name="HelpParcelChanges" title="Unir/dividir"><message name="message">Configura se os lotes que no pertencem ao proprietrio do Estado podem ser mesclados ou subdivididos. Se esta opo estiver desmarcada: * Apenas os donos ou gerenciadores de Estado podem mesclar ou dividir lotes; *Eles podem mesclar ou subdividir lotes pertencentes ao dono ou para o grupo onde eles tem os poderes apropriados. Se esta opo estiver marcada: * Todos os donos de lotes podem unir ou subdividir os lotes que eles possuem. *Para lotes pertencentes a grupos, aqueles com os poderes apropriados podem unir ou subdividir lotes. Padro: Marcado.</message> | ||
1134 | </alert> | ||
1135 | <alert modal="true" name="RegionMaturityChange" title="Modificar para adulto"><message name="message">A avaliao de maturidade para esta regio foi atualizada. O mapa-mundi, entretanto, levar aproximadamente 5 minutos para atualizar, pois o sistema apenas atualiza as informaes de mapa periodicamente.</message> | ||
1136 | </alert> | ||
1137 | <alert modal="true" name="HelpRegionLandResell" title="Revender Terreno"><message name="message">Os gerenciadores e os proprietrios podem vender qualquer terreno do proprietrio. Se essa opo estiver desmarcada, os compradores no podem revender seus lotes nessa regio. Se essa opo for marcada, compradores podem vender seus terrenos nessa regio. Padro: Desabilidata.</message> | ||
1138 | </alert> | ||
1139 | <alert modal="true" name="HelpEstateCovenantID" title="Corretor ID"><message name="message">Configura notecard ID asset para os Corretores do Estado pertencentes a este Estado. Padro 00000000-0000-0000-0000-000000000000 ou nenhum </message> | ||
1140 | </alert> | ||
1141 | <alert modal="true" name="HelpRegionDisableScripts" title="Desabilitar Scripts"><message name="message">Quando a performance de simulao est ruim, os scripts podem ser os culpados. Abra a Barra de Estatsticas (Ctrl-Shift-1). Olhe no Simulador de Fsica FPS. Se estiver abaixo de 45, ento abra o painel 'Tempo' localizado na parte de baixo da Barra de Estatsticas. Se o Tempo de Script ler 25 ms ou mais, clique no boto 'Get Top CScripts'. Ser dado o nome e a localizao do script que pode estar causando uma performance ruim. Marque a caixa 'Desabilitar Scripts' e aperte o boto 'Aplicar' temporariamente desabilitar todos os scripts nesta regio. Uma vez que voc chegar ao local, investigue o script para determinar se ele est causando o problema. Voc pode querer entrar em contato com o proprietrio do script, excluir ou devolver o objeto. Desmarque a caixa 'Desabilitar Script' e ento clique em 'Aplicar' para reativar os scripts na regio. Padro: desligado.</message> | ||
1142 | </alert> | ||
1143 | <alert modal="true" name="HelpRegionDisableCollisions" title="Desabilitar Colises"><message name="message">Quando a performance de simulao est ruim, objetos Fsicos podem ser os culpados. Abra a Barra de Estatsticas (Ctrl-Shift-1). Olhe no Simulador de Fsica FPS. Se estiver abaixo de 45, ento abra o painel 'Tempo' localizado na parte de baixo da Barra de Estatsticas. Se o Tempo de Simulao (Fsica) for igual ou maior a 20 ms, clique no boto 'Get Top Colliders'. Voc poder ver o nome e localizao de objetos fsicos que podem estar causando a baixa performance. Marcar a caixa de opo 'Desabilitar Colises' e ento pressionar o boto 'Aplicar' ir desabilitar temporariamente colises objeto-objeto. Voc poder precisar fazer isso para ir ao local de um 'top collider'. Uma vez que voc chegue ao local, investigue o objeto - ele est colidindo constantemente com outros objetos? Voc pode contatar o proprietrio do objeto ou apagar ou retornar o objeto. Desmarque a cauxa de opo 'Desabilitar Colises' e ento clique em 'Aplicar' para reativar colises na terreno. Default: off</message> | ||
1144 | </alert> | ||
1145 | <alert modal="true" name="HelpRegionDisablePhysics" title="Desabilitar Fsica"><message name="message">Desabilitar Fsica similar a desabilitar Colises, com exceo de que todas as simulaes fsicas sero desabilitadas. Isto significa que no s os objetos pararo de colidir, mas tambm que os avatares no podero se mover. Isto s deve ser usado quando Desabilitar Colises no trouxer performance suficiente regio para investigar um problema de Fsica ou do 'Top Collider'. Esteja certo de re-habilitar Fsica quando voc terminar, ou os avatares no podero se mover. Default: off</message> | ||
1146 | </alert> | ||
1147 | <alert modal="true" name="HelpRegionTopColliders" title="Ranking-Colises"><message name="message">Mostra uma lista de objetos com o maior nmero de potenciais colises objeto-objeto. Estes objetos podem diminuir a performance de simulao. Selecione Ver > Barra de Estatsticas e olhe em Simulador > Tempo > Tempo de Simulao (Fsica) para ver se mais de 20 ms so gastos em fsica.</message> | ||
1148 | </alert> | ||
1149 | <alert modal="true" name="HelpRegionTopScripts" title="Ranking-Scripts"><message name="message">Mostra uma lista dos objetos gastando mais tempo rodando scripts LSL. Estes objetos podem diminuir a performance de simulao. Selecione Ver > Barra de Estatsticas e olha em Simulador > Tempo > Tempo de Script para ver mais se 25 ms so gastos em scripts.</message> | ||
1150 | </alert> | ||
1151 | <alert modal="true" name="HelpRegionRestart" title="Reiniciar Regio"><message name="message">Reincio do servidor rodando nesta regio, aps um aviso de dois minutos. Todos os residentes nesta regio sero desconectados. A regio salvar seus dados, e dever retornar em at 90 segundos. Reiniciar a regio no consertar a maioria dos problemas de performance, e deveria ser utilizada somente quando indicado.</message> | ||
1152 | </alert> | ||
1153 | <alert modal="true" name="HelpRegionWaterHeight" title="Altura da gua"><message name="message">Esta a altura em metros onde a gua aparece. Caso este ajuste seja diferente de 20 e voc tenha guas adjacentes ao limite do seu terreno ou guas continentais, haver uma abertura visvel. Default: 20</message> | ||
1154 | </alert> | ||
1155 | <alert modal="true" name="HelpRegionTerrainRaise" title="Limite do aumento"><message name="message">Esta a distncia qual os proprietrios podem elevar o terreno, a partir da altura do terreno 'nivelado'. Default: 4</message> | ||
1156 | </alert> | ||
1157 | <alert modal="true" name="HelpRegionTerrainLower" title="Limite mais baixo"><message name="message">Esta a distncia qual os proprietrios do terreno podem abaixar o terreno, a partir da altura do terreno 'nivelado'. Default: -4</message> | ||
1158 | </alert> | ||
1159 | <alert modal="true" name="HelpRegionUploadRaw" title="Upload RAW Terrain"><message name="message">Este arquivo faz upload de um arquivo .RAW da regio em que voc est. O arquivo precisa conter as dimenses/nmero de canais corretos: RGB, 256x256 e 13 canais. A melhor forma de criar um arquivo da regio baixando o arquivo .RAW existente. Um bom primeiro passo seria modificar o primeiro canal (altura da regio), e fazer upload do arquivo. O upload pode levar certa de 45 segundos. Note que fazer upload do arquivo da regio *no* mover os objetos que esto na regio, apenas o terreno e as permisses associadas a ele. Isso pode fazer com que alguns objetos fiquem debaixo da terra. Para mais informaes sobre edio dos campos de altura da regio, v para: http://secondlife.com/tiki/tiki-index.php?page=RawTerrainFile</message> | ||
1160 | </alert> | ||
1161 | <alert modal="true" name="HelpRegionDownloadRaw" title="Enviar RAW de terreno"><message name="message">Este boto faz download de um arquivo contendo campos de altura da regio, dimenses do terreno, status de venda e algumas permisses para esta terreno. Ao abrir o arquivo em programas como o Photosho, voc precisa especificar as dimenses do documento, que so: RGB, 256x256 com 13 canais. Este arquivo de terras no pode ser aberto de outra forma. Para mais informaes sobre edio dos campos de altura da regio, v para: http://secondlife.com/tiki/tiki-index.php?page=RawTerrainFile</message> | ||
1162 | </alert> | ||
1163 | <alert modal="true" name="HelpRegionUseEstateSun" title="Usar Sol do Estado"><message name="message">Esta caixa de opo faz com que a posio do sol neste terreno seja o mesmo que a posio do Sol no resto da regio. Default: marcada</message> | ||
1164 | </alert> | ||
1165 | <alert modal="true" name="HelpRegionFixedSun" title="Sol fixo"><message name="message">Esta caixa de opo ajusta a posio do sol no equalizador de fuso e interrompe o movimento do sol. Default: desmarcada</message> | ||
1166 | </alert> | ||
1167 | <alert modal="true" name="HelpRegionBakeTerrain" title="Bake Terrain"><message name="message">Este boto salva a forma atual do terreno como o novo padro para a regio. Uma vez nivelado, o terreno pode tomar a forma salva sempre que voc ou outros utilizarem a ferramenta 'Revert' na edio de terreno. O terreno nivelado tambm o ponto mdio entre os limites de elevao e reduo de terreno.</message> | ||
1168 | </alert> | ||
1169 | <alert modal="true" name="HelpEstateEstateManager" title="Gerente de Regio"><message name="message">Um gerente da regio um residente a quem voc delegou o controle das configuraes da regio. Ele pode alterar qualquer configurao da regio, com exceo de elevar, abaixar ou aterrar o terreno. Em particular, ele pode permitir ou banir residentes da sua regio. Gerentes da regio s podem ser adicionados ou removidos pelo proprietrio da regio; um gerente no pode adicionar ou remover outro gerente. Escolha somente residentes em quem voc confia para serem gerentes da regio, pois voc poder ser responsabilizado pelas aes deles.</message> | ||
1170 | </alert> | ||
1171 | <alert modal="true" name="HelpEstateUseGlobalTime" title="Usar hora Global"><message name="message">Esta caixa de opo faz com que o Sol em sua regio siga a mesma posio do Sol nas regies da 'mainland' do Linden Lab. Default: sim</message> | ||
1172 | </alert> | ||
1173 | <alert modal="true" name="HelpEstateFixedSun" title="Sol fixo"><message name="message">Esta caixa de opo ajusta a posio do sol no equalizador de fuso e interrompe o movimento do sol.</message> | ||
1174 | </alert> | ||
1175 | <alert modal="true" name="HelpEstateExternallyVisible" title="Acesso pblico"><message name="message">Indica se os residentes que esto em outras regies podem entrar nesta regio sem estar na lista de permisses. Default: permitido</message> | ||
1176 | </alert> | ||
1177 | <alert modal="true" name="HelpEstateAllowDirectTeleport" title="Teleporte direto"><message name="message">Quando checado, permite que os residentes se teleportem diretamente para qualquer ponto na regio. Quando desmarcada, os residentes sero teleportados para o hub mais prximo. Default: desmarcada</message> | ||
1178 | </alert> | ||
1179 | <alert modal="true" name="HelpEstateAllowResident" title="Permitir acesso"><message name="message">Se qualquer residente for listado aqui, o acesso regio ser limitado aos residentes nesta lista e grupos na lista abaixo. (Se a regio for visvel da mainland, o acesso no pode ser limitado a uma lista de residentes ou grupos, e estes controles no so disponveis. Somente a lista de 'acesso negado' ser utilizada.)</message> | ||
1180 | </alert> | ||
1181 | <alert modal="true" name="HelpEstateAllowGroup" title="Permitir acesso de grupo"><message name="message">Se qualquer grupo for listado aqui, o acesso regio ser limitado aos grupos nesta lista e residentes especificamente permitidos acima. (Se a regio for visvel da mainland, o acesso no pode ser limitado a uma lista de residentes ou grupos, e estes controles no so disponveis. Somente a lista de 'acesso negado' ser utilizada.)</message> | ||
1182 | </alert> | ||
1183 | <alert modal="true" name="HelpEstateBanResident" title="Negar acesso"><message name="message">Residentes desta lista esto proibidos de acessar a sua regio, independentemente das permisses e grupos setados acima. Adicionar um residente a esta lista ir remov-lo da lista de permisses.</message> | ||
1184 | </alert> | ||
1185 | <alert modal="true" name="HelpEstateCovenant" title="Corretor do Estado"><message name="message">Setar um corretor da regio lhe permite vender lotes nesta regio. Se um corretor no foi setado, voc no pode vender terras. O carto do seu corretor pode ficar vazio se voc no desejar aplicar quaisquer regras ou avisar os compradores sobre qualquer coisa em relao ao lote antes da compra. Um corretor pode ser usado para comunicar regras, orientaes, informaes culturais ou simplesmente suas expectativas quanto ao futuro comprador. Isto pode incluir zoneamento, regulamentos para construes, opes de pagamento ou qualquer outra informao que voc julgar importante que o novo proprietrio veja e concorde antes da compra. O comprador precisa concordar com o corretor marcando a check box antes de concluir a compra. Corretores so sempre visveis na janela About Land para todos os lotes que forem setados.</message> | ||
1186 | </alert> | ||
1187 | <alert modal="true" name="BuyObjectOneOnly" title="Mensagem"><message name="message">No possvel comprar mais de um objeto ao mesmo tempo. Por favor, selecione apenas um objeto e tente novamente.</message> | ||
1188 | </alert> | ||
1189 | <alert modal="true" name="BuyObjectOneOwner" title="Mensagem"><message name="message">No possvel comprar objetos de diferentes proprietrios ao mesmo tempo. Por favor, selecione apenas um objeto e tente novamente.</message> | ||
1190 | </alert> | ||
1191 | <alert modal="true" name="BuyContentsOneOnly" title="Mensagem"><message name="message">No possvel comprar o contedo de mais de um objeto ao mesmo tempo. Por favor, selecione apenas um objeto e tente novamente.</message> | ||
1192 | </alert> | ||
1193 | <alert modal="true" name="BuyContentsOneOwner" title="Mensagem"><message name="message">No possvel comprar objetos de diferentes proprietrios ao mesmo tempo. Por favor, selecione apenas um objeto e tente novamente.</message> | ||
1194 | </alert> | ||
1195 | <alert name="PermYes"><message name="message">Sim</message> | ||
1196 | </alert> | ||
1197 | <alert name="PermNo"><message name="message">No</message> | ||
1198 | </alert> | ||
1199 | <alert modal="true" name="BuyOriginal"><message name="message">Comprar o objeto original de [OWNER] por L$[PRICE]? Voc se tornar o proprietrio deste objeto. Voc poder: Modificar: [MODIFYPERM] Copiar: [COPYPERM] Revender ou Doar: [RESELLPERM]</message> | ||
1200 | <option name="Buy">Comprar</option> | ||
1201 | <option name="Cancel">Cancelar</option> | ||
1202 | </alert> | ||
1203 | <alert modal="true" name="BuyOriginalNoOwner"><message name="message">Comprar o objeto original por L$[PRICE]? Voc se tornar o proprietrio deste objeto. Voc poder: Modificar: [MODIFYPERM] Copiar: [COPYPERM] Revender ou Doar: [RESELLPERM]</message> | ||
1204 | <option name="Buy">Comprar</option> | ||
1205 | <option name="Cancel">Cancelar</option> | ||
1206 | </alert> | ||
1207 | <alert modal="true" name="BuyCopy"><message name="message">Comprar uma cpia de [OWNER] por L$[PRICE]? O objeto ser copiado para o seu inventrio. Voc poder: Modificar: [MODIFYPERM] Copiar: [COPYPERM] Revender ou Doar: [RESELLPERM]</message> | ||
1208 | <option name="Buy">Comprar</option> | ||
1209 | <option name="Cancel">Cancelar</option> | ||
1210 | </alert> | ||
1211 | <alert modal="true" name="BuyCopyNoOwner"><message name="message">Comprar uma cpia por L$[PRICE]? O objeto ser copiado para o seu inventrio. Voc poder: Modificar: [MODIFYPERM] Copiar: [COPYPERM] Revender ou Doar: [RESELLPERM]</message> | ||
1212 | <option name="Buy">Comprar</option> | ||
1213 | <option name="Cancel">Cancelar</option> | ||
1214 | </alert> | ||
1215 | <alert modal="true" name="BuyContents"><message name="message">Comprar contedo de [OWNER] por L$[PRICE]? Eles sero copiados para o seu inventrio.</message> | ||
1216 | <option name="Buy">Comprar</option> | ||
1217 | <option name="Cancel">Cancelar</option> | ||
1218 | </alert> | ||
1219 | <alert modal="true" name="BuyContentsNoOwner"><message name="message">Comprar contedo por L$[PRICE]? Eles sero copiados para o seu inventrio.</message> | ||
1220 | <option name="Buy">Comprar</option> | ||
1221 | <option name="Cancel">Cancelar</option> | ||
1222 | </alert> | ||
1223 | <alert modal="true" name="ConfirmPurchase" nodefault="true"><message name="message">Esta transao ir: [ACTION] Tem certeza de que deseja prosseguir com esta compra?</message> | ||
1224 | <option name="Confirm">Confirmar</option> | ||
1225 | <option name="Cancel">Cancelar</option> | ||
1226 | </alert> | ||
1227 | <alert modal="true" name="ConfirmPurchasePassword" nodefault="true"><message name="message">Esta transao ir: [ACTION] Tem certeza de que deseja prosseguir com esta compra? Por favor, digite sua senha e clique Confirmar.</message> | ||
1228 | <editline />Null | ||
1229 | <option name="ConfirmPurchase">Confirmar Compra</option> | ||
1230 | <option name="Cancel">Cancelar</option> | ||
1231 | </alert> | ||
1232 | <alert name="SetPickLocation"><message name="message">Nota: Voc deve atualizar sua localizao para retornar aos valores originais.</message> | ||
1233 | <option name="OK">OK</option> | ||
1234 | </alert> | ||
1235 | <alert modal="true" name="MoveInventoryFromObject"><message name="message">Voc selecionou itens 'no copy' do inventrio. Estes itens sero movidos para o seu inventrio, no copiados. Mover os itens do inventrio?</message> | ||
1236 | <ignore>Ao mover itens no-copy do inventrio</ignore> | ||
1237 | <option name="Move">Mover</option> | ||
1238 | <option name="Don'tMove">No mover</option> | ||
1239 | </alert> | ||
1240 | <alert modal="true" name="MoveInventoryFromScriptedObject"><message name="message">Voc selecionou itens 'no copy' do inventrio. Estes itens sero movidos para o seu inventrio, no copiados. Como este objeto contm script, mover estes itens para o seu inventrio pode causar mal funcionamento do script. Mover os itens do inventrio?</message> | ||
1241 | <ignore>Ao mover objetos no-copy com script do invnetrio</ignore> | ||
1242 | <option name="Move">Mover</option> | ||
1243 | <option name="Don'tMove">No mover</option> | ||
1244 | </alert> | ||
1245 | <alert name="ClickActionNotPayable"><message name="message">Aviso: A ao executada ao clicar o objeto Pay j foi setada, mas funcionar apenas se um script for adicionado com o evento money(). Isto se d porque os residentes geralmente esperam que os objetos tero alguma reao quando o dinheiro pago a eles.</message> | ||
1246 | <ignore>Ao setar 'Pay' em objetos sem eventos money()</ignore> | ||
1247 | </alert> | ||
1248 | <alert modal="true" name="OpenObjectCannotCopy"><message name="message">No h itens neste objeto que voc est autorizado a copiar.</message> | ||
1249 | </alert> | ||
1250 | <alert modal="true" name="LoadAccountTransactions"><message name="message">Ir para [URL] para ver detalhes da transao?</message> | ||
1251 | <ignore>Ao carregar a pgina de transaes</ignore> | ||
1252 | <option name="OK">OK</option> | ||
1253 | <option name="Cancel">Cancelar</option> | ||
1254 | </alert> | ||
1255 | <alert modal="true" name="HelpReportAbuseEmailLL" ><message name="message">Use esta ferramenta para reportar violaes dos Termos de Servio e Padres da Comunidade. Veja: -http://secondlife.com/corporate/tos.php http://secondlife.com/corporate/cs.php - Todos os abusos reportados dos Termos de Servio e Padres da Comunidade so investigados e resolvidos. Voc receber um e-mail informando-lhe da resoluo quando esta ocorrer. Voc tambm pode ver a resoluo do incidente no Police Blotter em:- http://secondlife.com/community/blotter.php</message> | ||
1256 | </alert> | ||
1257 | <alert modal="true" name="HelpReportAbuseEmailEO"><message name="message">IMPORTANTE: Este report ser enviado ao proprietrio da regio em que voc est e no Linden Lab. - Como prestador de servio aos residentes e visitantes, o proprietrio da regio em que voc est escolheu receber e resolver todos os reports originados nesta regio. Linden Lab no investigar os reports que voc postar deste local. O proprietrio da regio resolver os reports baseados nas regras locais desta regio como definido pelo corretor da regio. (Veja os corretores no menu World e selecione About Land.) - A resoluo deste report se aplica apenas a esta regio; outras reas do Second Life no sero afetadas pelo resultado deste report. Somente a Linden Lab pode restringir o acesso a todo o Second Life.</message> | ||
1258 | </alert> | ||
1259 | <alert modal="true" name="HelpReportBug"><message name="message">Use esta ferramenta *somente* para reportar ferramentas tcnicas que no se comportam como descrito ou esperado. Por favor, fornea o mximo possvel de detalhes. Voc pode responder ao e-mail que voc recebeu para adicionar mais detalhes ao seu report. Todos os bugs reportados so investigados e avaliados. Voc no receber nenhum e-mail de resposta. - Se voc est encontrado dificuldades tcnicas, contate o suporte em: http://secondlife.com/community/support.php - Nota: reports incompletos no sero investigados.</message> | ||
1260 | </alert> | ||
1261 | <alert modal="true" name="HelpReportAbuseSelectCategory"><message name="message">Por favor, selecione uma categoria para este caso de abuso. Isto nos ajuda a processar os abusos reportados.</message> | ||
1262 | </alert> | ||
1263 | <alert modal="true" name="HelpReportBugSelectCategory"><message name="message">Por favor, selecione uma categoria para este bug. Isto nos ajuda a processar os bugs reportados.</message> | ||
1264 | </alert> | ||
1265 | <alert modal="true" name="HelpReportAbuseAbuserNameEmpty"><message name="message">Por favor, informe o nome do residente que cometeu o abuso. Um valor preciso nos ajuda a processar os abusos reportados.</message> | ||
1266 | </alert> | ||
1267 | <alert modal="true" name="HelpReportAbuseAbuserLocationEmpty"><message name="message">Por favor, informe o local onde o abuso aconteceu. Um valor preciso nos ajuda a processar os abusos reportados.</message> | ||
1268 | </alert> | ||
1269 | <alert modal="true" name="HelpReportAbuseSummaryEmpty"><message name="message">Por favor informe um resumo do abuso acontecido. Um resumo preciso nos ajuda a processar os abusos reportados.</message> | ||
1270 | </alert> | ||
1271 | <alert modal="true" name="HelpReportBugSummaryEmpty"><message name="message">Por favor, informe um resumo do bug. Um resumo preciso nos ajuda a processar os bugs reportados.</message> | ||
1272 | </alert> | ||
1273 | <alert modal="true" name="HelpReportAbuseDetailsEmpty"><message name="message">Por favor, informe uma descrio detalhada do abuso acontecido. Seja o mais especfico que puder, incluindo nomes e detalhes do incidente que est reportando. Uma descrio precisa nos ajuda a processar abusos reportados.</message> | ||
1274 | </alert> | ||
1275 | <alert modal="true" name="HelpReportBugDetailsEmpty"><message name="message">Por favor, informe uma descrio detalhada do bug. Seja o mais especfico que puder, incluindo passos para reproduzir o bug, se possvel. Uma descrio precisa nos ajuda a processar bugs reportados.</message> | ||
1276 | </alert> | ||
1277 | <alert modal="true" name="HelpReportAbuseContainsCopyright"><message name="message">Caro Residente, Reports sobre quebra de copyright s podem ser submetidos como descrito em http://secondlife.com/corporate/dmca.php. Reports sobre quebra de copyright sero automaticamente descartados se forem submetidos pela ferramenta 'Abuse Report'. Se o seu report no est relacionado a quebra de copyright, voc pode fechar esta janela e terminar de submeter o seu report. Obrigado, KAIZEN Games</message> | ||
1278 | </alert> | ||
1279 | <alert modal="true" name="FailedRequirementsCheck"><message name="message">No foram encontrados os seguintes componentes requeridos de [FLOATER]:[COMPONENTS]</message> | ||
1280 | </alert> | ||
1281 | <alert name="ReplaceAttachment" title="Substituir anexo existente"><message name="message">J existe um objeto neste ponto do seu corpo. Voc deseja substitu-lo pelo objeto selecionado?</message> | ||
1282 | <ignore save_option="true">Ao substituir o objeto existente</ignore> | ||
1283 | <option ignore="Replace Automatically" name="Yes">Sim</option> | ||
1284 | <option ignore="Never Replace" name="No">No</option> | ||
1285 | </alert> | ||
1286 | <alert name="BusyModePay" title="Modo Ocupado"><message name="message">Voc est no modo Ocupado, o que significa que voc no receber quaisquer itens oferecidos por troca neste pagamento. Voc gostaria de deixar o modo Ocupado antes de completar esta transao?</message> | ||
1287 | <ignore save_option="true">Ao pagar uma pessoa ou objeto em modo Ocupado</ignore> | ||
1288 | <option ignore="Always leave Busy Mode" name="Yes">Sim</option> | ||
1289 | <option ignore="Never leave Busy Mode" name="No">No</option> | ||
1290 | </alert> | ||
1291 | |||
1292 | <alert modal="true" name="ConfirmEmptyTrash"><message name="message">Tem certeza de que deseja remover permanentemente o contedo da lixeira de seu inventrio?</message> | ||
1293 | <ignore>Ao esvaziar a lixeira de seu inventrio</ignore> | ||
1294 | <option default="true" name="Yes">Sim</option> | ||
1295 | <option name="No">No</option> | ||
1296 | </alert> | ||
1297 | |||
1298 | <alert modal="true" name="ConfirmClearBrowserCache"> | ||
1299 | <message name="message"> | ||
1300 | Voc tem certesa que deseja limpar | ||
1301 | o cache do browser? | ||
1302 | </message> | ||
1303 | <option default="true" name="Yes"> | ||
1304 | Sim | ||
1305 | </option> | ||
1306 | <option name="No"> | ||
1307 | No | ||
1308 | </option> | ||
1309 | </alert> | ||
1310 | |||
1311 | |||
1312 | <alert modal="true" name="ConfirmClearCookies"> | ||
1313 | <message name="message"> | ||
1314 | Voc tem certesa que deseja limpar | ||
1315 | os cookies? | ||
1316 | </message> | ||
1317 | <option default="true" name="Yes"> | ||
1318 | Sim | ||
1319 | </option> | ||
1320 | <option name="No"> | ||
1321 | Cancelar | ||
1322 | </option> | ||
1323 | </alert> | ||
1324 | |||
1325 | |||
1326 | <alert modal="true" name="ConfirmEmptyLostAndFound"> | ||
1327 | <message name="message"> | ||
1328 | Deseja realmente remover permanentemente | ||
1329 | o contedo da pasta achados e perdidos? | ||
1330 | </message> | ||
1331 | <ignore> | ||
1332 | Quando remover permanentemente contedo da pasta achados e perdidos. | ||
1333 | </ignore> | ||
1334 | <option default="true" name="Yes"> | ||
1335 | Sim | ||
1336 | </option> | ||
1337 | <option name="No"> | ||
1338 | No | ||
1339 | </option> | ||
1340 | </alert> | ||
1341 | |||
1342 | |||
1343 | <alert modal="true" name="CopySLURL"><message name="message">A seguinte SLURL foi copiada para o seu clipboard: [SLURL] Cole-a numa pgina web para permitir que outros residentes a acessem facilmente ou teste-a colando na barra de endereos do seu browser.</message> | ||
1344 | <ignore>Ao copiar a SLURL para o seu clipboard</ignore> | ||
1345 | </alert> | ||
1346 | |||
1347 | |||
1348 | |||
1349 | |||
1350 | <alert modal="true" name="Link_linden_br"> | ||
1351 | <message name="message">Compra de Linden.</message> | ||
1352 | <option name="Gotopage">Ir para a pgina</option> | ||
1353 | <option name="Cancel">Cancelar</option> | ||
1354 | </alert> | ||
1355 | |||
1356 | |||
1357 | <alert modal="true" name="Link_kaizens_br"> | ||
1358 | <message name="message">Compra de Kaizen.</message> | ||
1359 | <option name="Gotopage">Ir para a pgina</option> | ||
1360 | <option name="Cancel">Cancelar</option> | ||
1361 | </alert> | ||
1362 | |||
1363 | <alert modal="true" name="Link_negocio_br"> | ||
1364 | <message name="message">Abra seu Negcio.</message> | ||
1365 | <option name="Gotopage">Ir para a pgina</option> | ||
1366 | <option name="Cancel">Cancelar</option> | ||
1367 | </alert> | ||
1368 | |||
1369 | |||
1370 | <alert modal="true" name="Link_anuncie_br"> | ||
1371 | <message name="message">Anuncie no Second Life.</message> | ||
1372 | <option name="Gotopage">Ir para a pgina</option> | ||
1373 | <option name="Cancel">Cancelar</option> | ||
1374 | </alert> | ||
1375 | |||
1376 | |||
1377 | <alert modal="true" name="Link_oficial_br"> | ||
1378 | <message name="message">Second Life Brasil.</message> | ||
1379 | <option name="Gotopage">Ir para a pgina</option> | ||
1380 | <option name="Cancel">Cancelar</option> | ||
1381 | </alert> | ||
1382 | |||
1383 | |||
1384 | |||
1385 | <alert modal="true" name="Link_blog_br"> | ||
1386 | <message name="message">Blog Second Life Brasil.</message> | ||
1387 | <option name="Gotopage">Ir para a pgina</option> | ||
1388 | <option name="Cancel">Cancelar</option> | ||
1389 | </alert> | ||
1390 | |||
1391 | |||
1392 | <alert modal="true" name="Link_abuso_br"> | ||
1393 | <message name="message">Reportar Abuso.</message> | ||
1394 | <option name="Gotopage">Ir para a pgina</option> | ||
1395 | <option name="Cancel">Cancelar</option> | ||
1396 | </alert> | ||
1397 | |||
1398 | |||
1399 | <alert modal="true" name="Link_suporte_br"> | ||
1400 | <message name="message">Contactar Suporte.</message> | ||
1401 | <option name="Gotopage">Ir para a pgina</option> | ||
1402 | <option name="Cancel">Cancelar</option> | ||
1403 | </alert> | ||
1404 | |||
1405 | |||
1406 | <alert modal="true" name="ClickPartnerHelpAvatar"> | ||
1407 | <message name="message"> | ||
1408 | You can propose to another Resident or dissolve an existing partnership through the [SECOND_LIFE] website. | ||
1409 | |||
1410 | Go to the Second Life web site for more information on partnering? | ||
1411 | </message> | ||
1412 | <option name="GotoPage"> | ||
1413 | Go to Page | ||
1414 | </option> | ||
1415 | <option name="Cancel"> | ||
1416 | Cancel | ||
1417 | </option> | ||
1418 | </alert> | ||
1419 | |||
1420 | |||
1421 | |||
1422 | |||
1423 | <alert modal="true" name="IMSessionStartError"> | ||
1424 | <message name="message"> | ||
1425 | Erro ao tentar um nova sesso MI com [RECIPIENT]. | ||
1426 | [REASON] | ||
1427 | </message> | ||
1428 | <option default="true" name="OK"> | ||
1429 | OK | ||
1430 | </option> | ||
1431 | </alert> | ||
1432 | |||
1433 | |||
1434 | <alert modal="true" name="IMSessionStartNotVerified"> | ||
1435 | <message name="message"> | ||
1436 | Erro ao tentar um nova sesso MI com [RECIPIENT]. | ||
1437 | [REASON] | ||
1438 | </message> | ||
1439 | <option default="true" name="OK"> | ||
1440 | OK | ||
1441 | </option> | ||
1442 | </alert> | ||
1443 | |||
1444 | <alert modal="true" name="IMSessionEventError"> | ||
1445 | <message name="message"> | ||
1446 | Erro [EVENT] [RECIPIENT]. | ||
1447 | [REASON] | ||
1448 | </message> | ||
1449 | <option default="true" name="OK"> | ||
1450 | OK | ||
1451 | </option> | ||
1452 | </alert> | ||
1453 | |||
1454 | <alert modal="true" name="ForceCloseIMSession"> | ||
1455 | <message name="messsage"> | ||
1456 | Sua sesso com [NAME] ser fechada. | ||
1457 | [REASON] | ||
1458 | </message> | ||
1459 | <option default="true" name="OK"> | ||
1460 | OK | ||
1461 | </option> | ||
1462 | </alert> | ||
1463 | |||
1464 | <alert modal="true" name="Cannot_Purchase_an_Attachment"> | ||
1465 | <message name="message"> | ||
1466 | Os artigos no podem ser comprados | ||
1467 | enquanto forem parte de um acessrio. | ||
1468 | </message> | ||
1469 | </alert> | ||
1470 | |||
1471 | |||
1472 | |||
1473 | </alerts> | ||
diff --git a/linden/indra/newview/skins/xui/pt/floater_about.xml b/linden/indra/newview/skins/xui/pt/floater_about.xml deleted file mode 100644 index e59d8d2..0000000 --- a/linden/indra/newview/skins/xui/pt/floater_about.xml +++ /dev/null | |||
@@ -1,42 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | ||
2 | <floater can_close="true" can_drag_on_left="false" can_minimize="true" | ||
3 | can_resize="false" height="440" min_height="100" min_width="100" | ||
4 | name="floater_about" rect_control="FloaterAboutRect" | ||
5 | title="Sobre o Second Life" width="470"> | ||
6 | <text_editor bg_readonly_color="0, 0, 0, 0" bottom="-434" embedded_items="false" | ||
7 | follows="left|top|right|bottom" font="SansSerifSmall" height="168" left="6" | ||
8 | max_length="65536" mouse_opaque="true" name="credits_editor" | ||
9 | text_color="1, 1, 1, 1" text_readonly_color="1, 1, 1, 1" width="458" | ||
10 | word_wrap="true"> | ||
11 | Second Life is brought to you by a2, Aaron, Abishai, adrian, Alberto, Alex, Alexei, Alfred, Alice, Altruima, Amber, Anastasia, Andrea, Andrew, Andy, Annette, Anthony, Aura, Avi, Babbage, Beast, beez, Belinda, Ben, Benjamin, Benny, Betsy, Bill, Blue, Bo, Bob, Brad, Branka, Brent, Brian, Bruce, Bub, Bucky, Bunny, Burgess, Buttercup, Callum, Casino, Cat, Catherine, Chadrick, Char, Charity, Charlie, Chiyo, Chris, Christopher, Civic, Claudia, Cleopetra, Cole, ColeD, Colin, Colleen, Cornelius, Cory, Cube, Cupid, Cyan, Cyn, Dan, DanceStar, Daniel, Data, Dave, David, David2, Deana, Debra, Dee, Dek, Del, Dez, Don, Donovan, Dore, Doug, drunkensufi, Dummy, dustin, Eddie, Eileen, Elena, Elle, Emily, Eric, erika, Erin, Ethan, Evan, Eve, Everett, Firefly, Flashpoint, Fordak, Frank, Fred, Fritz, Frontier, Garry, George, Gia, Ginsu, Glenn, Gulliver, Guy, Hamlet, Haney, Harmony, Harry, Helen, Hello, Henrik, Heretic, Hermia, Holly, Hungry, Hunter, Ian, Icculus, Irfan, Iris, Isaac, Isabel, IsThat, Ivy, Izzy, Jack, Jacqui, Jake, James, Jane, Janet, Jaron, Jay, Jean, Jed, Jeff, Jennifer, Jeremy, Jeska, JeskaTest, Jesse, Jill, Jim, Jimbo, Joe, John, Jon, Jonathan, Joon, Jose, Joshua, Jp, June, Justin, Karen, Kari, Karinelson, Kelly, Kelvin, Ken, Kenny, Kent, Kevin, Kona, Kyle, LaughingMan, Lauren, Lawrence, Lee, Leopard, Leprechaun, Leviathania, Lexie, Leyla, Liana, Libby, Lightfoot, Lizzie, Lock, Logan, Loki, Louie, Lucy, Luke, Madhavi, Magellan, Magenta, Makiko, Marius, Mark, Martin, Matthew, Maurice, Mayor, Melanie, Meta, Mia, Michael, MichaelFrancis, Mick, Migyeong, Mikeb, MikeT, Milo, Mitch, Mogura, Monkey, Monroe, Morpheus, Natria, Neo, Nicolas, Nicole, Nigel, Noel, Nora, Nova, Otakon, Page, Pathfinder, Patsy, Paul, Peter, Philip, Phoenix, PierreLuc, Pilouk, Pony, Professor, Qarl, Rachelle, Ramzi, Ray, Realestate, Red, Rejean, Reuben, Rheya, Richard, Rika, Rob, Robin, Roosevelt, Ross, Runitai, Ruth, Ryan, Sabin, Sally, Sam, Sarah, Satoko, Sean, Secret, Sejong, Senator, Seth, Showme, Siobhan, Sky, Sleepy, Spike, Stefan, Stephanie, Stephany, Stephen, Steve, Stryfe, sturm, Sudhi, Sunil, Swiss, Sylvain, Tanya, Tbone, Teeny, Teeple, Teresa, Tesla, Tess, Tessa, Thomas, Thrax, Thumper, Tim, Tobin, Todd, Tofu, Tom, Torley, Tracy, Uncle, Varas, Vasudha, Vektor, Ventrella, Video, Viola, Walker, Warren, Wendy, Which, Xan, Xander, Xenon, Xtreme, Yedwab, Yohan, Yool, Yoz, Yuko, Zach, Zee, Zero and many others. | ||
12 | |||
13 | Thank you to the following residents for helping to ensure that this is the best version yet: AlexandriaS Aabye, devilite Aabye, Dynamqting Aabye, hellebore Aabye, Maddog Aabye, Urru Aabye, mabare Abattoir, Didi Abdallah, Elwood Abernathy, Jake Abramovich, Schort Achterbahn, Divily Ackland, JadeCharlet Ackland, Kevin Acorn, Binvis Acronym, Robert Adelaide, Atte Aderdeen, KiVanyel Adria, Krillian Adria, Mandi Adria, Butch Adzebills, Beccaboo Aero, Akasha Aferdita, Nicole Aferdita, Nero Agnomen, Hay Ah, Oxoc Ah, Sironl Ah, evokue Ahn, nycbadboy Ahn, Taan Ahn, Cyres Aida, TalNova Aji, Illusion Akula, Xen Akula, Jessa Alba, Alba Albert, kernowed Albert, Blaine Albion, AnneMarie Alcott, Bo Alcott, Cindie Alcott, Cunundrum Alcott, fighter Alcott, Jarad Alcott, Marcello Aldwych, Xenia Alemany, CellMaster Alexander, Molly Alexander, Aerotisma Alexandre, Ghostofgoat Alexandre, Took Alexandre, Ty Alexandre, Christophe Perrin / Krisp Alexandre, Adec Alexandria, Kiwi Alfa, Rowr Aliev, aivlys Allen, asclepius Allen, Aveyond06 Allen, Calvin Allen, gayfrench Allen, gender Allen, Grayson Allen, Jak Allen, Jerdog Allen, MariahMarie Allen, Metzyn Allen, Misty26 Allen, moshetzi Allen, nayara Allen, NH Allen, Pegi Allen, Ponesco Allen, Rap4rag Allen, Safer Allen, sobroke Allen, Bethann Allstar, Sloan Almendros, Ogro Almodovar, Raymondo Alonzo, Rebeca Alonzo, Omega Alphabeta, Elirien Alturas, Rick Alvarado, Golam Amadeus, Kea Amarula, Ariella Amat, Popas Amat, xxjojxx Amat, Jamie Amdahl, Helyos Ames, julies Ames, Keisha Ames, Javz Amsterdam, Kathy Amsterdam, Twistaspliff Amsterdam, darian Anabuki, Dnali Anabuki, Wes Anaconda, Serra Anansi, Britney Anatine, pax Anatine, Ranya Anatine, sientaya Anatine, Siowen Anatine, Padu Andalso, Chanel Anderson, Donna Andrews, Trixie Angel, Macphisto Angelus, meQal Anna, Aznxer Antfarm, Karlo Antonelli, Maksimilian Antonelli, Vala Antonelli, Athoni Antonioni, klement Antwerp, lildeadgirl Antwerp, GeordieJohn Anubis, KatanaBlade Anubis, Diag Anzac, Lunarlie Anzac, Picker Apogee, Azuby Apparatchik, brianica Appin, SwedenArtSheepdogs Aquacade, CaSimone Aquitaine, Dexter Aquitaine, Pericat Aquitaine, Sunshine Araw, Bino Arbuckle, Evangeline Arcadia, Niles Argus, pe Argus, BenneDJezzerette Ariantho, Karmaticdragon Ariantho, Teren Aridian, Garcia Ariel, Ina Arkin, alva Arliss, Noriyoko Arliss, Harle Armistice, Avi Arrow, Ming Arrow, Rox Arten, Razitra Artizar, Mandy Asano, Ty Asano, Kristoff Asbrink, Skye Asbrink, Threasher Asbrink, Daniel Ash, Dion Ashby, Eva Ashby, Ravenal Ashby, TOPDIME Ashby, danielluh Ashton, Deb Ashton, ach Asp, cokeser Asp, lastping Asp, Posrednik Asp, Notypewell Astro, Nargus Asturias, SiRiS Asturias, yol Asturias, ZATZAi Asturias, Animus Asylum, Sang Asylum, SomethingReal Atkey, Dakota Atlanta, Irie Atlantis, Matt Attenborough, Nirva Attenborough, CaptJosh Au, Goren Auer, Jackamo Auer, Jonathan Auer, Tisdi Auer, Chris Auk, Raven Axon, Shawn Ay, TJ Ay, ares Ayres, Cazz Ayres, Eon Ayres, Laura Ayres, zoeba Ayres, Naomi Babcock, Eldrich Babeli, Adrianna Babenco, She Babenco, sterick Babenco, corto Babii, Dia Babii, EvilCutz Babii, Flooxx Babii, Girl Babii, Imraanos Babii, Iv Babii, Lizthebabe Babii, Torrence Babii, Chrystal Babii, Sara Bachman, dzb0 Bade, Doug Bagration, Hobbit Bagration, Abert Bailey, Bambi Bailey, EveNice Bailey, Kaliya Bailey, Kriz Bailey, Leen Bailey, Leonine Bailey, Minke Bailey, Nightjaxs Bailey, Peyton Bailey, Shan Bailey, Stevo Bailey, Tariv Bailey, cream Bailly, Ezekiel Bailly, Gianna Bailly, Hells Bain, Briauna Bainbridge, AnaSofia Bakalava, Jonas Bakalava, Micki Baker, Anita Balczo, Naomi Balczo, Nathan Balder, Bibi Balhaus, Sponz Balhaus, Ainsleigh Ballinger, Dimitry Ballinger, Miriam Ballinger, Rik Ballinger, Trey Ballinger, Zagor Ballinger, Zek Ballinger, Kilara Balnarring, Maya Balut, Franz Bamaisin, Manolo Bamboo, Yuki Bamboo, Oliver Bandit, Pirate Bandit, Outy Banjo, winkler Banjo, SabreWulf Banshee, Akeela Banting, Elke Banting, Arkesh Baral, Barber Barbarossa, Samantha Barbee, Aruk Barbosa, Ayahuasca Barbosa, Bastill Barbosa, Corleone Barbosa, Padrig Barbosa, Samakh Barbosa, seat Barbosa, Topper Barbosa, Thery Bardeen, Bridgitte Bardot, Nici Barley, Annie Barnard, Josse Barnard, DB Barnes, Kitty Barnett, Threshin Barnett, Amy Barnett, Scott Baron, Jeremy Barracuda, Verbuda Barragar, Daphne Barrett, Fenleab Barrett, Lindsey Barrett, Smiley Barry, Denise Barrymore, Manuela Barrymore, Nell Barrymore, Sensation Barrymore, BraadWorst Barth, XxRevelationxX Barthelmess, Fleur Bartlett, Marina Bartlett, Lucius Bartz, Mack Bartz, Astley Bascom, dolomite Bascom, Dags Basevi, Lena Basevi, crystal Basiat, SuezanneC Baskerville, Sweetheart Baskerville, Demi Bates, Demon Bates, kane Bates, Will Bates, ShadixBear Bathgate, Carlotta Batra, Bruce Batz, Silentborn Batz, Dominik Bauer, Logan Bauer, Boz Baxter, Camryn Baxter, diesus Baxter, Drett Baxter, Gazmanjones Baxter, Kiley Baxter, Schwenny Baxter, Shimboo Baxter, Stoffe Baxter, Diamond Baxter, Gruntos Baxter, BC Bayliss, Bibi Bayliss, Backly Beam, BigFoot Beam, JuJu Beam, nati Beam, Pelgrim Beam, ELLiebob Bean, LeatherElf1 Beat, Nikky Beat, Carl Beattie, Fe Beattie, sonoma Beatty, Henri Beauchamp, TimTam Beauchamp, Conrad Beaumont, Dieudonnee Beaumont, Kitten Beaumont, Lucilla Beaumont, Odina Beaumont, PCBRANDY Beaumont, PLASTOK Beaumont, Sheree Beaumont, Sweet Beaumont, Olivier Beaumont, Busybee Beaver, Chiheb Bechir, Caspian Beck, GoldenGamer Beck, icar Beck, Jigoes Beck, Matsumoto Beck, Millie Beck, Rhino Beck, Ronor Beck, ropland Beck, wai Beck, laurionna Beckenbauer, Jeffery Beckersted, Dominick Beckham, Druu Becloud, Holger Becloud, Duce Bedlam, Beach Beebe, Manicexpression Beebe, Nicolette Beebe, Feril Beeks, BillyJoe Beerbaum, Lola Beerbaum, Pimppdog Beerbaum, Baylee Beery, DrathnotT Behemoth, Malarthi Behemoth, phoenix Behemoth, Trinity Bekkers, Dioana Bellah, KissesRhawt Bellambi, Bream Bellman, Hazel Bellow, Milo Bellow, Corvette Beltran, Lefty Belvedere, Jaden Benavente, Bianca Bender, Jeremy Bender, Mercedes Benedek, Albert Benelli, Dodi Benelli, Emili Benelli, laurette Benelli, ninake Benelli, Evazion Benelli, Elaine Bennett, Izabella Bentham, Carol Bentley, Deedrick Benton, Joel Berblinger, Lord Berchot, Pele Berchot, Marimar Berchot, Melody Beresford, Brielle Bergbahn, chrissie Bergson, Kody Bergson, Bit Berjis, Kevin Bernal, Dorie Bernstein, mystic Berry, Razza Berry, Bella Bertone, Taylor Berzin, liz Bessie, Kekken Biberman, Nicolas Biddle, Halbert Bienenstich, terrycrow Bigwig, Jasmine Bijoux, Kala Bijoux, Dano Bikcin, enzo Bikcin, Angle Binder, Cuffs Binder, Roxtor Binder, Tom Binder, Agamemnon Bing, Chalander Bing, Gigi Bing, runeking3007 Bing, Monsieur Bingyi, Angelica Biondetti, Melissa Birge, reeneebob Birmingham, Anubis Bishop, Danica Bishop, Mowesy Bisiani, Marteas Biziou, Karla Bjornson, Roxie Bjornson, Travis Bjornson, Atlwolf Blabbermouth, Rice Black, Nathan Black, Amanda Blackmountain, Disstraction Blackthorne, Miriya Blackthorne, Teagan Blackthorne, Orko Blanchard, Neural Blankes, Random Blankes, Shaura Blazer, Nethermind Bliss, dayanne Boa, Denideny Boa, lecosutre Boa, naholc Boa, NITR0US Boa, Prana Boa, RS Boa, penelope Bobak, Bad Bobbysocks, Ryuujin Boccara, Joey Bock, Elkissa Bode, Annika Boehm, Babyblues Boffin, Snodude101101 Bogan, Dirk Bogart, Jily Bogart, Pompo Bombacci, Ascanio Bonetto, Bony Bonetto, Casanova Bonetto, Cuncittina Bonetto, Frede Bonetto, Ervee Bonne, Jolanda Bonne, Poppy Bonne, Becky Book, Bibi Book, Barney Boomslang, Sam Boomslang, Steeven Boorman, Rogue Borgnine, Summer Borgnine, Rafe Borrelly, Equitus Bosch, Peter van den Bosch, tessa Bosshart, Hermione Bossy, Mr Bossy, Rhiannon Bossy, Aspen Bossy, Marisela Bouchard, Tony Bouchard, Annita Boucher, Aster Boucher, Katy Boucher, Lisae Boucher, Router Boucher, Sneaky1 Boucher, Varak Boucher, DarkAlpha Bourne, Hastings Bournemouth, bend Bowie, Lucy Bowie, Casper Box, coolbimbo Box, Kittenna Box, Metaphor Box, Nemesis Box, Bell Boyd, Kelley Boyd, Sylar Boyd, WendyCat Boyd, Denis Boyle, Jennifer Boyle, melmuse Boyle, Alycia Bradley, jayne Bradley, Airie Braendle, Glitch Braess, Su Brando, Tybalt Brando, IntLibber Brautigan, Dante Breck, Carbon Breed, WitchFire Breed, Bella Brennan, erika Brenner, gaby Brenner, Talthybius Brevity, KitKat Brewster, Lindsey Breyer, Artemis Bright, Brigitte Bright, Donnie Bright, Lucas Bright, Oya Bright, Prentice Bright, Risa Bright, Starfire Bright, Beebo Brink, Marcus Brink, Emi Brissot, Ice Brodie, Luth Brodie, Sam Brodie, Chromal Brodsky, Tydomus Brodsky, Cage Brody, Darling Brody, Kurston Brody, Mike1A Brody, UserJesse Brody, Reese Brody, Faith Broek, Happy Broek, ShadowHunter Brokken, Jacey Brooks, Shake Brooks, Shary Brooks, Sigurd Brooks, Tate Brooks, Vanleen Brooks, BruTuS Broome, PastorD Broome, Sarita Broome, October Brotherhood, Elroy Brouwer, Neophyte Brouwer, Jebediah Brown, linda Brown, Schwartz Bruder, lupu Brule, Joshua Brynner, Linda Brynner, Southy Buckenburger, drifterr Bugaboo, Michelle Bumbo, Trixie Bumbo, Paul Bumi, Jitar Bunin, Kerian Bunin, Crystalmom Bunnyhug, Embrace Bunnyhug, Zues Burali, GiGi Burgess, Keith Burgess, Shawna Burgess, Bain Buridan, Sean Buridan, Chiccorosso Burke, Count Burks, Hinamori Burleigh, Atom Burma, Jasper Burma, Aleshanee Burnett, Dottie Burns, Ebro Burns, Skipper Burns, John Burns, Haroldthe Burrel, Big Burt, dubureau Burt, Keisha Burt, phill Burt, Janloo Burton, Madd Burton, Bowlalot Bury, Dreklore Bury, Jarek Bury, Jenni Bury, Lou Bury, Orlando Bury, Angel Butuzova, dodi Byrd, Enchtris Byrd, Tleva Caballero, Gayle Cabaret, Monique Cabaret, Adele Cagney, Cralyn Cagney, Caribbean Cahill, Darien Caldwell, Lily Caldwell, CFire Caldwell, Ciara Calhern, Karl Calhern, Cecil Calhoun, Tizzy Calliope, Hypatia Callisto, Raven Callisto, Fred Cameron, Meliana Cameron, Antonius Camus, Maddie Camus, Raskella Canadeo, Exotica Canadeo, Vessus Candour, Alexis Canetti, Silvio Canetti, Talia Canetti, bragan Canning, Charenthia Canning, Reeda Canning, Vannesh Cannoli, Changurr Cao, Chilli Cao, Dorian Cao, RosyLee Cao, steve319 Cao, Contamina Capalini, Cougard Capalini, Kirsti Capalini, Lindichka Capalini, Lyla Capalini, JohnMAC Carbenell, snake Carbenell, Capri Carbetta, Sophia Carducci, Kid Cardway, Icould Careless, Aurore Carlberg, Brumia Carlberg, Bruni Carlberg, Brandie Carlos, Jenny Carlos, Avalon Carmona, Moana Carmona, Ashelia Carnell, Rain Carnell, CJ Carnot, Madison Carnot, Julie Carpathea, HALOCAT Carr, coolmaria Carroll, karyme Carroll, Leila Carroll, Crisii Carter, cyrielle Carter, isidore Carter, Missi Carter, Shatara Carter, Tristan Carthage, Aemilia Case, Baby Case, Jenn Cassady, Kittygloom Cassady, Charlotte Cassavetes, Holly Cassavetes, Anthony Cassini, Supertell Cassini, Wietse Cassini, Just Cattaneo, Mandy Cattaneo, Aleicester Catteneo, arthuraleksandravicius Cavan, Maximus Cazalet, Quellin Ceawlin, dMetria Cela, Spidey Cela, Arcadia Ceres, wanderer Cerveau, Aaron Cerveau, Marky Chaffe, Stefani Chaffe, The Chaffe, Becca Chambers, Lexis Chambers, Inigo Chamerberlin, Shion Chandrayaan, Ibrisse Chantilly, MaryAnne Chantilly, Cool Chaparral, guy2 Chaplin, Iadwen Chaplin, Lillyann Chaplin, wllmn Chaplin, Marsha Chapman, Caspar Chapman, Dominique Charles, Chilly Charlton, Pammie Charming, Total Chastity, Arohee Chatnoir, Papillon Chatnoir, Barry Cheeky, coldFuSion Cheeky, Nyla Cheeky, Ryan Cheeky, Aggressor Cheetah, Ronald Cheevers, Michelle Chernov, Maggy Chestnut, Cam Chevalier, Eleonore Chevalier, Kelly Chevalier, Mauries Chevalier, Ozzy Chevalier, Rayvendell Chevalier, Swampy Chevalier, Cheesemuncher Chickenwing, Kaltezar Chickenwing, milespeed Chihuly, Coolkama Childs, Michelle Childs, Nicole Childs, SimonRaven Chippewa, Albert Choche, Annetha Christensen, Jennifer Christensen, Zell Christensen, Herman Christiansen, Haifeng Chu, Francis Chung, tyana Chung, Sundance Churchill, Anubis Cioc, Corpierro Cioc, Dwayne Cioc, Knibbel Cioc, Slowhand Citylights, PonygirlSarah Clapper, Jim Clark, Jacob Clark, Jo A Clark, Angelos Clary, Biffle Clary, lilly733 Clary, Rui Clary, William Clary, Otto Clave, Arahan Claveau, Neil Claxton, Mimi Claymore, Pete Claymore, Sam Clayton, Blank Cleanslate, Deckheard Cleanslate, Electron Cleanslate, Spirit Cleanslate, Willow Cleanslate, Kovu Cleaver, Bell Clellon, Covisha Clift, EBCY Clift, Iumi Cline, pizzaguy Clutterbuck, knightrider Clymer, Exia Coage, Brenda Coakes, Lindsay Coakes, Lyndka Cochrane, Ceinwen Coen, Oneil Coen, Mahogony Coffee, Mark Coffee, Lisbeth Cohen, Melayna Colasanti, holly Coldstream, Moon Cole, Shiden Coledale, Castalia Collingwood, JUNKIE Colman, Silver Colman, Stahi Columbia, SweetAbe Columbia, CC Columbo, Charity Colville, Isabeau Conacher, Deb Cone, emili0 Congrejo, MarioDaniel Congrejo, Jazzy Connell, Jenika Connolly, Cooper Conover, Garn Conover, Mara Conover, Myles Cooper, Angelina Coorara, Valentine Coppens, psyco Coppola, Tremleh Coppola, Venus Coppola, Chiana Cordeaux, Sensuality Cordeaux, Clarissa Cordoso, Methos Corinthian, Tylerferland Cork, Caleb Corleone, Montana Corleone, Sparkey Corleone, Zoey Corleone, Achtai Coronet, Count Coronet, Dweedle Coronet, jjccc Coronet, Ron Coronet, Caterina Cortes, Letitia Cortes, Marcella Cortes, Martinelli Cortes, Raven Cortes, Soopafly Cortes, Grazel Cosmo, Athena Cosmos, Cally Cosmos, Annyssa Cosmos, Bunny Costello, Zelitor Costello, Lionel Cournoyer, Sasha Cowen, Carl Crabe, Lyssa Craig, micke Craig, Mel Cramer, Tee Cramer, Avil Creeggan, Bunch Creeggan, CronoCloud Creeggan, NewYorkCityDJ Cremorne, Shalori Cremorne, Artik Crimson, Bliss Crimson, Daffodil Crimson, Raul Crimson, Shaoti Crimson, Trevor Crimson, Rex Cronon, Ace Crosby, Linnrenate Crosby, DaRealNeo Crossing, Wark Cruyff, Silver Csak, Eulalia Cuddihy, Lauralynne Cuddihy, Rammstig Cummings, Rita Cummings, Fremont Cunningham, Jinger Curie, RICX Curie, Betty Curry, Marissa Curtis, Mercurion Curtiss, Juan Cusack, Sanderman Cyclone, Marek Czervik, Alreania DaSilva, Dnel DaSilva, Seph DaSilva, Kelly Dabney, dorothyann07 Dae, Frax Dae, Frost Dae, Syryne Dae, Oddy Dae, 1Time Daehlie, Sinead Daehlie, TRACI Daehlie, Dante Daffodil, Limey Daffodil, stripey Daffodil, Atomik Dagger, Bloodsoaked Dagger, Coca Dagger, Colera Dagger, J4ck Dagger, Jaune Dagger, leigha Dagger, Silver1 Dagger, Alexander Dagmar, Simeon Dagmar, Dweezle Dagostino, Ginoo7 Dagostino, Joka Dagostino, Rachid Dagostino, Sinatra Dagostino, DR Dahlgren, Alexandra Daikon, Devious Dailey, Natalie Dailey, Sukit Dailey, Zoya Dailey, Nad Dal, Rudra Dal, Robert Dale, Coventina Dalgleish, Salvador Dalgleish, Anya Daligdig, Nyterious Daligdig, yvette Daligdig, Kylie Dallin, Angel Damask, Phantom Damask, QatanI Damdin, Bekka Damone, Pashin Damone, Vaekraun Damone, Zoraya Damone, elmoono Dana, Mary Dana, ml Dana, Rezzer Dancer, Shrug Dangle, Guttstein, Daniel, Bubba Daniels, Dinky Daniels, Kiana Daniels, marcel Daniels, Rosey Daniels, Sara Daniels, VictoriaRose Daniels, Ignacio Dannunzio, SlimD Dannunzio, williamae Dannunzio, Chriss Darkes, Digit Darkes, Tanooki Darkes, Bree Darling, Chasity Darling, Darra Darling, Val Darracq, Diana Darragh, Ryan Darragh, Bane Darrow, Bree Darrow, Ivy Darrow, cuddles Dassin, Leeloo Dassin, Dachine Daviau, Gyllian Daviau, Leben Daviau, Serioto Daviau, Willow Daviau, Allison David, JamieZel David, Todd David, Casey Davidson, LaNikki Davis, Whispering Dawn, Lady Dawson, Helen Dayton, Ryan Dayton, Ooh Dazy, Woopsy Dazy, Brighid DeCuir, eZekiel DeCuir, Link DeCuir, nath DeCuir, Rhys DeCuir, siliconegirl DeCuir, spring DeCuir, Iron DeCuir, Escort DeFarge, Archangelo DeSantis, Aubrey DeSantis, Gustav DeSantis, Hippy DeSantis, Ilana DeSantis, Sutara DeSantis, Undina DeSantis, Axienne DeVaux, Dana DeVaux, Kitty DeVaux, Mindy DeVaux, Krystal DeVinna, Krystalynn DeVinna, Magenta DeVinna, Manuela DeVinna, Spike Deakins, Debbes Dean, Korben Dean, Dogbert Debevec, Savannah Debs, emily Decatur, Heiko Decatur, Zorena Deckard, Andrea Decosta, Dolly Decosta, Esperenza Decosta, Kruppen Decosta, larrykin Decosta, PhoenixRose Decosta, Sophy Decosta, Twinsen Decosta, Vladimir Decosta, Duxster Deere, Maxim Deharo, Summerbreeze Deharo, Matti Deigan, DeeAnn Dejavu, Gina Dejavu, Shai Delacroix, alexis Delcon, Ashly Delcon, Kane Delcon, Dante Deledda, Lady Deledda, Jega Delgado, Alicia Delphin, Darek Deluca, Lestat Demain, Nuka Demain, Allissa Demar, Lilyanah Demar, Aeleen Demina, Blowing Demina, Kalm Demina, Sarias Demina, Skeddles Demina, Sweet Demina, Alida Demontrond, Redux Dengaku, J. Derby, Cristell Deschanel, Ivey Deschanel, SinaMaria Deschanel, Elisabeth Desideri, Monique Desideri, Bartiloux Desmoulins, Hazel Desmoulins, Isis Desmoulins, Phoenix Desmoulins, Jon Desmoulins, Dino Despres, Samantha Despres, Snowflake Despres, Bones Detritus, Neo Devoix, Bre Dharma, Showshawna Dharma, Mike DiPrima, Winter DiPrima, Gongree Diage, Azure Diamond, Styles Diamond, Maike Dibou, Klaus Dieffenbach, Xavier Dieffenbach, Lordfly Digeridoo, Selkit Diller, Tari Dilley, Kelly Dilweg, Werewolf Dingo, Darkharmony Dingson, Knud Dingson, Jewel Dinkin, Mecha Dinosaur, Savonna Dinova, Amina Diplomat, FuZzY Diqui, Crimson Divine, Lizbeth Divine, Cryptid Divisadero, Destiny Divisadero, Montsho Division, Gryphon Dix, Kittybird Dix, Hope Dixon, CadiWolf Dobbs, Darling Doboy, Nicole Docherty, Ralph Doctorow, Odo Dod, nik385 Doesburg, sam Doigts, Elea Dollinger, Miche Dollinger, Severina Dollinger, Eric Domela, Krysta Domela, Franky Donaldo, Duntroon Donburi, Tricia Donovan, Sabrina Doolittle, DeDe Doowangle, Dinghy Doowangle, Phoebe Doowangle, Ratzfatz Dorado, Jessalicious Dorance, RJaNator Dorance, Kalemika Dougall, Fi Douglas, Norelyn Douglas, Aerrett Dovgal, Wendy Dovgal, Alex Drago, MAGWolf Drago, Lupo Drake, Palanth Drake, Aryanna Draken, Drinkin Draken, Kaylan Draken, Maddy Draken, nixkuroi Draken, Thornpaw Draken, Sinjo Drakes, James001 Dryke, Nameless Dryke, Roberta Ducatillon, Helke Duettmann, Moni Duettmann, Kyla Duke, Esence Dulce, Manuella Dulce, Ric Dulce, Shannel Dulce, Xander Dumont, Lionna Dumouriez, Marko Duncan, Duncan, Lyre Dunia, Cyndari Dunn, Garth Dunn, Sugababe Duport, Taylorholic Durant, Vixie Durant, Julie Durant, Drew Dwi, Ribbon Dye, Michelle Dzieciol, shngy Dzieciol, Jeffrey Earp, Umbrella Ebi, Adi Eccleston, Bazzerbill Eccleston, Dragon Eccleston, chawna Eclipse, Minolin Eclipse, Valkyrie Eclipse, Joi Edelman, Alx Edman, Daniella Edman, Saskia Edman, Storm Edman, Cory Edo, Tommy Ehrler, Stephe Ehrler, Edred Einarmige, Hope Eldrich, Kai Eldrich, Winter Eldrich, Thunder Electric, Ezmerelda Electricteeth, Hostile Electricteeth, Kris Electricteeth, Loki Eliot, rudy2zday Eliot, Shaydin Eliot, Iris Ellison, Enigma Elswit, Tim Ely, Darkling Elytis, Delu Elytis, Happy Elytis, Jessica Elytis, Bernd Emmons, Kellie Emmons, Robbert Emmons, Bean Emoto, dick Encore, Andy Enfield, Fuzionor Engawa, Hethr Engel, RH Engel, Digital Enigma, Kahlest Enoch, Lex Enoch, Oran Enoch, Ryal Enoch, Wobmongle Enoch, Wyatt Enoch, Pea Enzyme, Antony Epin, Sapphire Epin, DBDigital Epsilon, Shoshana Epsilon, FallenAngel Erato, Renton Eretz, Mo Eriksen, 64Y80Y Eros, tommy Eros, Nicola Escher, Zak Escher, Salvatore Esposito, Quinevere Essex, Zed Essex, Fabian Etchegaray, Psyche Etoile, Byanex Etzel, CrimsonWings Eun, Deckard Eun, Arwen Eusebio, Anastacia Evans, buttonlynn Evans, Rose Evans, Romeo Evelyn, Sephiroth Everidge, Patriiick Ewing, Trey Ewing, Vivian Ewing, Xwing Ewing, Zha Ewry, SirZarath Excelsior, Zorrita Express, Hierophant Extraordinaire, Blanche Fabre, Annie Fackler, Wolfgang Fackler, Amy Faddoul, Shukran Fahid, Garth FairChang, Brooke Fairplay, TOmmy Fairplay, Vixen Fairplay, Bobby Fairweather, Darlean Fairymeadow, Gotobug Fairymeadow, Heathie Fairymeadow, Meleni Fairymeadow, Moon Fairymeadow, Odysseus Fairymeadow, rob Fairymeadow, Taylkusha Fairymeadow, Crystal Falcon, WhiteAngel Falcon, VetteMan Falken, Evilpony Fallon, Fernand Fapp, Sasuke Fapp, Roen Fardel, Dariush Fargis, Jenn Fargis, Mandy Farina, Kokoro Fasching, Madison Fasching, Ben Fassbinder, Leo Fastback, Rikky Faulds, STEEL Faulds, Equino Faulkland, Flynn Faulkland, High Faulkland, Arda Fauna, Elvis Faust, Benelli Federal, Forest Federko, Belle Fegte, Danny Feingold, Luc Feingold, Bing Fell, Darky Fellini, Jaze Fellini, Sacha Fellini, paulie Femto, Ynot Fenua, Fau Ferdinand, Soren Ferlinghetti, Meri Fermi, Boxter Ferraris, Danamea Ferraris, Duilho Ferraris, Fred33 Ferraris, LeekySean Ferraris, Letizia Ferraris, Marlowe Ferraris, Wanted Ferraris, Xavier Ferraris, Feff Ferrer, Thomas Ferris, Nakala Fetisov, Astrin Few, Chosen Few, Ahh Fiddlesticks, Chantal Fielding, Caleb Fierrens, Patrice Fierrens, sam Fieseler, NutZ Figaro, summer Figaro, Leumia Figgis, Mae Figtree, Maldavius Figtree, Ravovich Figtree, Morgana Fillion, Brett Finsbury, sofia Finsbury, Jazmina Firefly, sasha Fischer, william Fish, Nadia Fisher, StevenSDF Fisher, Carol A . Fisher, Dimitri Fisseux, Manni Fitzgerald, Freddie Fitzroy, Phineas Flagstaff, Ante Flan, Braden Flanagan, BrettEbay Flanagan, Echo Flanagan, Knute Flanagan, Kristjan Flanagan, LilyRose Flanagan, Meril Flanagan, Lulu Flasheart, Jolie Fleury, Clitoria Flint, Fifi Flintlock, Frostie Flora, Kitto Flora, Chriss Florio, Arlen Flossberg, Angel Fluffy, Emilyuk Fluffy, Frurry Fluno, Faedra Flytrap, Brieg Foden, Annette Fonda, Katina Fonda, Raymond Fonda, Marcos Fonzarelli, Yuri Fonzarelli, CrystalShard Foo, etoile16 Food, Kim Food, Kode Forager, Vodka Forager, Wendy Forager, Lucien Forcella, Maela Forcella, Olli Forcella, Violet Forcella, Clarissa Forder, darkdog Forder, Hans Forder, Jango3234 Forder, Olli Forder, Naryu Forester, FaustTiger Forte, Richie Forte, BMFC Forwzy, Erick Forwzy, SusNy Foss, Sanford Foulon, Iwana Fouquet, Kae Fox, Raudf Fox, Wolfie Fox, Phli Foxchase, Kityn Foxley, MollyBrown Foxley, Qua Frampton, Ice Franchini, Nicolas Franchini, Soizie Franciosa, Samson Francis, Nequam Frangilli, Andreas Frankfurter, PreWired Frankfurter, Diane Franklin, Cappy Frantisek, Romano Frascati, DeMits Frederix, Mel Fredriksson, Sune Fredriksson, Tina Fredriksson, Fastfreddy Freeloader, Sammar Freeman, Kitty Freund, Jorgen Friis, Zorin Frobozz, mdbobbitt Frobozz, Chris Frontenac, Foolish Frost, Asriazh Frye, Patti Frye, Phish Frye, Nobody Fugazi, Simba Fuhr, Snugglebunny Fuhr, fallendream Furse, Jamie Furst, Cherise Gagliano, Laura Gagliano, Gammy Gainey, Gazz Galatea, Govindira Galatea, Rizpah Galatea, Amber Galbraith, Mandy Galileo, william Galileo, David Gall, LoLa Galland, Zach Ganache, Casey Gandini, Edgar Gantenbein, Jonx Gao, Soso Gao, Madison Gardner, Silver Garfield, Michelle Garrigus, Nerdmaster Garrigus, Jarik Garsztka, Svoboda Garsztka, Salkin Gascoigne, Roger Gaspara, Buttlock Gasser, Pud Gasser, Zina Gasser, Prince Gausman, livingdead Ge, Josh Geesink, Tolly Geest, Georgina Geewhiz, Chris Geiger, Sabine Geiger, Samuel Geiger, Tristessa Geiger, Joe Gemini, Mielle Gemini, Misty Gentil, Sanna Georgette, Phoenix Gerhadsen, Mic Ghia, Salores Ghia, Loskobosko Giacomin, Susanne Giffen, Lazarus Giha, Micah Giha, Merry Gildea, Summer Gildea, Brittany Giles, Rayy Giles, sevron Giles, Gattz Gilman, Rori Gilmour, SunQueen Ginsberg, Rockwell Ginsberg, Intolerable Ginsburg, Junie Ginsburg, Enrico Giove, Krystal Giove, Annie Giovinazzo, Cat Gisel, Constantine Giugiaro, Io Giugiaro, Persimmon Gjellerup, Lorna Gladstone, Toby Gladstone, Dale Glass, Gellan Glenelg, EmmaBella Glimmer, louise Glimmer, Gianna Glitter, Melyissa Glitterbuck, Victoria Glushenko, Wolf Goalpost, Chris Gobo, Xerses Goff, Sturdus Goldblatt, Nigel Goldflake, Major Golding, Master Goldkey, Zho Golem, Stylez Gomez, Carlos Gomez, Alecydoss Gontermann, Skyler Goode, Valentine Goode, Odd Goodfellow, Dragyn Goodliffe, Hank Goodliffe, Livinda Goodliffe, Robertt Goodliffe, Daphne Goodnight, Sean Gorham, Ledje Gorky, Emma Gould, Amaze Grace, Lagerstone Graff, Harper Grainger, Andy Grant, Carrie Grant, LauraLOral Granville, AlphaOmega Graves, Ebon Graves, Kyrii Graves, Leeloo Graves, Bosco Gray, Dez Gray, Renegade Gray, Summer Gray, Aries Graysmark, Edian Graysmark, Scotty Grayson, Mantis Grebe, Kelly Green, cara Greene, Kimber Greene, Mystical Greene, Raven Greene, Soilent Greene, Matthew Greene, Soilent Greene, Roberta Greenfield, ShayLee Greenspan, Dax Greer, Angel Gregg, Kyleigh Gregg, Sophie Greggan, Deanna Gregoire, StylynProfylyn Gretzky, Farallon Greyskin, Kraal Griffith, Xavier Griffith, Jacomo Grigg, Sylvie Grizot, bodyman72 Grot, Damian Grot, MarieCaroline Grumiaux, Mozo Grumiaux, Oceane Grumiaux, Jadem Gruppman, Gracie Grut, Jennie Grut, Mhaijik Guillaume, Frog Gulick, RacerX Gullwing, Enktan Gully, Gilly Gully, Woozie Gumshoe, Teddy Gumsing, Stephane Gunawan, Alienbear Gupte, Boroondas Gupte, mcgeeb Gupte, Elise Guyot, Jamal Guyot, Lawyer Guyot, Thiago Guyot, Arwen Gymnast, denniswo1993 Gymnast, Lukes Gymnast, Miki Gymnast, Sizoark Gynoid, Markiss Haas, Pepper Haas, Arkanys Hadlee, Apollo Haight, Lord Haight, Fawn Hailey, Kaelin Hailey, Gaelle Halasy, ISIS Halberd, Meg Halberd, Zander Halberd, Arnold Halderman, Malarwen Hall, Ken Hall, Jonah2cd Hallard, Saii Hallard, Trixie Hallard, Doris Haller, Destina Halley, Susiee Hamilton, IBMTapeGuy Hammerer, Lighten Hammerer, VEVER Hammerer, Alison Hamsun, Fawn Hana, leah Hana, Darknite Hand, Emperors Hand, nefertiti71 Handrick, Rodney Handrick, Delerium Hannibal, leanhaumshee Hannya, jingle Hansen, Mattie Hansen, Terry Hansen, Vox Hansen, Filo Hapmouche, Gustavus Hapmouche, Nounouch Hapmouche, Adrian Harbinger, Kami Harbinger, StormCrow Harbinger, CherryBomb Hare, Den Hare, Omegasun Harford, ricky Harford, ricky Harford, Harley, Jenna Harley, Kristina Harley, Natasha Harlow, Hummer Harmison, Allen Harrington, Tessa Harrington, Joker Harris, Shanti Harris, Dagon Harrison, J0NATHAN Harrop, Kerinauu Hartunian, Kyentay Hartunian, Rav Hartunian, Ski Harvey, Tuesday Harvey, Xylo Hasp, Betina Hatfield, Gina Hatfield, Calamity Hathaway, Dorian Hathaway, Duncan Hathaway, Xavier Hathaway, Jack Hathor, Kamilah Hauptmann, Pam Havercamp, swift Havercamp, Griselda Hawes, kwanita Hawks, Ravenis Hawks, BenG Hax, el33t Hax, Juicy Hax, Macx Hax, Meta Hax, Mikka Hax, Mokona512 Hax, Mr8ball Hax, Prophet Hax, Rina Hax, Slober Hax, Starbuck Hax, Takehiro4 Hax, Kyle Hayashi, Ashrilyn Hayashida, Eriko Hayashida, August Hayek, Milton Hayek, Ronnie Hayes, Max Hazlehurst, Sorsaran Hazlehurst, Grath Hazlitt, Violet Hazlitt, April Heaney, Aquela Hearn, jefferey Heart, Kalyrra Heart, Marissa Heart, Taina Heart, TLC Heart, Tori Heart, Dana Hebert, Trimzi Hedges, AmazedBlue Hegel, Dagmar Heideman, r0bin Helsinki, Moira Henley, Ursa Henley, Joharr Hennah, Daviana Hennesy, GJ Hennesy, jens Hennesy, Karl Herber, mistydawn Herbst, Donatella Hermano, Robins Hermano, Ekib Hern, Greves Heron, Jagged Heron, Christel Herzbrun, le Herzog, Reverend Herzog, Elektra Hesse, SweetDesire Heston, Cotton Hicks, Zack Hicks, Kevyn Hienke, Tristan Hienzman, Devin Hill, Wendy Hill, Tensai Hilra, Valek Hin, Adolph Hinkle, Timothy Hinkle, YoCo Hird, Amber Hirvi, Dagon Hitchcock, Heather Hitchcock, Noah Hitchcock, Sianna Hock, Dominique Hofmann, Holly Hofmann, Ganador Holgado, Brookston Holiday, Davidd Holmer, Sam Holyoke, Alexander Homewood, atory Homewood, dabadguy Homewood, Ed Homewood, Huge Homewood, Meesha Homewood, tilstad Homewood, Cremi Honey, Laura Honey, Sandling Honey, Honey, Haos Honua, Vudu Hoodoo, Dallas Horsefly, Lucy Horton, SJ Horton, Homer Horwitz, naty Hotaling, Traceysvideos Hotger, DaQueenB Houston, Natasha Houston, Tia Houston, Hughes Howard, Meg Howe, Edward Howton, Falllen Howton, Pepto Hoyer, Sabrina Hoyer, LadyAbigail Hubbard, Kristopher Hudson, Nikita Hudson, Titus Hudson, XLR8RRICK Hudson, Holly Huffhines, Bella Hugo, Haole Hula, Sard Huldschinsky, Neran Hull, Anastasia Humphrey, October Hush, Silent Hush, Ctarr Huszar, ac14 Hutson, Dex Hutton, Fox Hwasung, Johanna Hyacinth, White Hyacinth, Adrianna Hyde, DJ Hyde, Ty Hyland, Adeline Hynes, Cathy Hynes, DeepSweet Hynes, Psykeeper Hynes, Sexy Hynes, Ares Hyun, Emperor Hyun, melodie Hyun, slayer Hyun, Puck Ida, Weary Ida, Anne Idler, Ruby Idora, Bryan Idziak, Six Igaly, elfi Independent, Spike Independent, Veilofunknown Independent, Bryndi Ingersoll, Ingrid Ingersoll, Noelyci Ingmann, Andrew Ingrassia, Dale Innis, Foxy Innis, Vern Innis, 111Mc Innis, Cloud Insoo, MEtoo Insoo, Quinn Iredell, Rebekah Iredell, Lucien Ireton, Maggie Ireton, Austin Ironclad, DavidJames Irwin, Roy Irwin, Xavier Irwin, Esmee Isbell, Miyu Ishii, Billy Islander, Misa Itamae, Magnum Iuga, Akasha Ivory, Juliana Ivory, WHITEMAGIC Ivory, Gazometr Ivory, Indigo Izumi, Kami Izumi, Salazar Jack, Gunslinger Jackalope, Sutton Jacks, Casandra Jackson, Dernard Jackson, Dougal Jacobs, Lone Jacobs, Sydney Jacobs, jefftlse Jacobus, jose007 Jacobus, justine Jacobus, LampLighter Jacobus, Micha Jacobus, Jadge Jacobus, Enchant Jacques, Victoria Jacques, Dreamweaver Jae, Gregoire James, Kizza James, Vienna James, Barry Jannings, Bianca Jannings, Gwen Jannings, Juappa Jannings, Paisley Jannings, Coos Jansma, Fernandinho Jansma, Griffioen Jansma, Jiire Jansma, IsisLynn Janus, Theobaise Janus, Conway Jarrico, DylanJr Jarrico, Quest Jarrico, erba Jarvis, Jeagerman Javelin, Alan Jay, Lopp Jay, harpo Jedburgh, Craig Jeffries, Alexis Jenns, Bimbie Jenns, XanXan Jervil, Alexander Jessop, Gelenas Jessop, RodneyLee Jessop, Tataniya Jessop, Amethyst Jetaime, Kooky Jetaime, Sapphire Jetaime, Tempest Jewel, Vampirella Jewel, Elia Jewell, Josey Jewell, Shaolin Jewell, Sheeba Jewell, Stefu Jewell, Uma Jewell, Rosslin Jiang, alex Jimenez, Forest Joffe, John Jogiches, Dyani Johin, Musashi Johin, Major Johnson, Dean Johnson, Peter Johnson, Thomas Carson Johnson, Janet Jones, Jason Jones, Bedo Jonze, Elaine Jorgensen, Osiloa Jorgensen, Mariah Jubilee, Sam Jubilee, Ada Jun, Chenak Jun, Ferris Jun, kelyane Jun, Takeshi Jun, Tommi Jun, Phoebe Juneau, Grace Juniper, icandi Juno, Kimo Junot, isha Juran, Orchid Juran, Torsten Juran, Krzywol Kaczmarek, Sakura Kagekiyo, Meni Kaiousei, Fritz Kakapo, Esdrael Kamachi, Kathy Kamenev, Darsuky Kaminski, Rebecca Kaminski, Digital Kaos, Kappa Kappa, Leah Kappa, Gapple Kappler, Cristalle Karami, Toledo Karas, Tina Karlfeldt, Angelina Karura, Samara Kasshiki, Kitty Katscher, Lonetree Katscher, Goldie Katsu, Shamir Katsu, Lacey Kavanagh, Scrooge Kavanagh, Faye Kawabata, Ninja Kawabata, Onimusho Kawaguichi, Brad Kazakov, Ida Keen, Jeff Kelley, Kyle Kelley, An Kellner, Cindy Kellner, Kean Kelly, Tony Kembla, KaliCat Kennedy, Fred Kenorland, Sharon Kent, Nils Kenzo, Rase Kenzo, Tammy Kenzo, Tyci Kenzo, chica Keon, Benja Kepler, Gust Kepler, KittyKatt Kerensky, anton Keynes, Ipenda Keynes, Malevolyn Keynes, Ayumi Khorana, Hoshi Kiama, Nekorina Kiama, Aurillius Kidd, Bare Kidd, Billboard Kidd, Blurple Kidd, Cade Kidd, Ekerilar Kidd, FFS Kidd, Lazarus Kidd, Lea Kidd, MidnightRush Kidd, Mittens Kidd, Morliona Kidd, Neilly Kidd, Kim Kienzle, RJ Kikuchiyo, Gail Kilara, Fish Kilby, zeelee Kindley, Montez King, Dax Kirkorian, Myoukitsune Kirkorian, Szandor Kirkorian, Cmtccmoi Kish, Kia Kish, DaQbet Kish, Coca Kit, Developer Kit, pronto Kit, Sunshine Kit, ssjkriccolo Kitchensink, Reisuki Kitsune, Tengu Kitsune, AngelEyes Kittinger, Devilish Kitty, Kitty, Panther Kitty, Daaneth Kivioq, Praseodymium Kivioq, Sonya Kivioq, Emily Kleene, Buejien Klees, Princess Klees, SaltySugar Klees, Parrish Kline, ProfessorKindly Kline, Chelsay Knibber, Victoria Knight, Raspitomaru Knopfli, Cocoanut Koala, Akiko Koba, Bryan Koba, dawood Koba, Izen Koba, Nebur Koba, Taran Koba, Pamela Koenig, Neo Koga, BlackOut Kohime, Jazzie Kohime, Naa Kohime, Seriuskid Kohime, Wandale Kohime, Zana Kohime, Zerosix Kohime, Maucat Koi, Dagmar Kojishi, Chroma Kolache, Icey Kolache, Kornscope Komachi, Bri Koolhaas, KamaSutra Koolhaas, Katya Koolhaas, Trylle Korda, Corrine Korobase, Navajo Korvin, Pasha Korvin, David Kostolany, quintin Kostolany, Tasha Kostolany, Amy Kotobide, Zaphod Kotobide, KYWLDCT Kovacs, LillyEliska Kralomoc, Joseph Krams, Fumon Kubo, LudwigVan Kubrick, Anagras Kuhn, Selina Kuhn, Tal Kuhn, Finora Kuncoro, Maya Kupferberg, Jana Kurelek, Shika Kuri, Yo0gy Kuri, Endo Kurosawa, Tatsuki Kurosawa, MrBill Kurri, Albert Kwak, Kwakkelde Kwak, Duckling Kwak, Kasey Kyger, Kaimi Kyomoon, Stelard Kyomoon, Kyo Kyong, Emm Laa, Keera Laasonen, Delvendez Laborde, Raban Laborde, Amodeus Labrada, Louisa Labrada, Sweeten Lacey, Fiachra Lach, Eliv Lachman, Flykiwi Lachman, Charlie Laffer, LarryS Laffer, Sasha Lafleur, OxLukexO Lagan, Shadow Lagan, Tilianna Lagan, Jaye Lahtoh, Davoid Lake, Fairlight Lake, Thomas Lake, Veronique Lalonde, Leticia Lambeau, Maleia Lambeau, Cross Lament, Drakon Lameth, Misch Lameth, Caeleigh Lamington, Nedrick Lamont, essayn Lamont, Dwayne Lancaster, Hiram Lancaster, Carlton Lane, Christo83 Lane, DOO Lane, Niket Lane, Roughtoe Lane, Taylor Lane, Ami Lang, Emily Lang, Ruadh Langwarrin, Sasha Lapointe, Garrett Laramide, TBA Lardner, Beverly Larkin, Marcoh Larsen, Vanessa Larsen, bjf25 Larsson, curL Larsson, Garsson Larsson, Jondolarr Larsson, Justicar Larsson, Quinn Larsson, redshoedave Larsson, Tod Larsson, lea Laryukov, Renate Laryukov, Benny Lassally, Khristen Lassard, Josh Latrell, Lacey Latrell, Shari Latrell, Casper Laughton, Kory Laughton, Lisa Launay, Sasha Launay, Areyn Laurasia, Crystaleen Laval, Moirae Laval, Sascha Laval, Slasha Laval, Tiberius Laval, Shadow Laviolette, Velarissa Laviolette, Zeus Laws, Snaptick Laxness, wtf Laxness, Carrie Laysan, Norton Lazarno, Candide LeMay, Dustin LeMay, Shelly LeMay, Antionette LeShelle, Hayden LeShelle, Kristian LeShelle, Monika LeShelle, Mysti LeShelle, Shaklin LeShelle, Shavaii LeShelle, Lord Leafblower, Kinjry Legend, UniqueRose Legend, Jonny Legien, Lillia Lehane, Renae Leigh, KeiAira Leigh, Casper Leinhardt, MiaLily Lelouch, Adriana Lemieux, Keiki Lemieux, Ginger Lemmon, Heather Lemmon, JohnnyMac Lemmon, Lenni Lemuria, Bubba Leonard, Spyder Leroy, Aral Levitt, DarionMonkee Levitt, Quiana Levitt, Angharad Lewellen, AngelEyes Lewis, Cookie Lewis, JonnyImpala Lewis, Ekka Li, Jesa Li, Anark Liebknecht, KUieTSToRm Lightcloud, Lincoln Lightfoot, Nicola Lightfoot, Shaman Lightstone, Nika Lightworker, April Lilliehook, Joi Lilliehook, Kimi Lilliehook, LAPDHOLLYWOOD2000 Lilliehook, Lindy Lilliehook, Shayne Lilliehook, Skywil Lilliehook, Neo Linden, Amber Linden, Guy Linden, Teeple Linden, Marck Lindman, NoSpy Lindman, Rahduhlac Lineker, Evangeline Ling, Kailani Ling, Karyll Ling, Lexus Ling, moon Ling, Wai Ling, Samantha Lingiuan, CyberonX Link, Laynie Link, SLurl Link, Aphrodisiack Lisle, Petunia Liveoak, Eithnie Llanfair, Jennifer Llanfair, Pami Llewelyn, Gwyneth Llewelyn, Kiten Lobo, Paul Lobo, Khrome Lock, Brett Logan, Dragger Lok, Pavig Lok, Sera Lok, May Loll, Lola Lollipop, SweetTasting Lollipop, Nikee London, Trinity London, Dogan Lonergan, Rod Longcloth, Excalibur Longstaff, Apolonique Loon, Austyn Loon, Danyhael Loon, Goreki Loon, Huligo Loon, Jaffred Loon, LouisS Loon, Luke Loon, mahee Loon, Ruthless Loon, Melina Loonie, rasta Lopez, Lydiah Lorentz, Stellar Losangeles, Blackie Lotus, Misha Lotus, Alysia Loudon, Grace Loudon, grumble Loudon, Kate Loudon, kimmie Loveless, LadyMacbrat Loveless, Ally Lovell, Dixii Lovell, Darb2rad Lowe, Lozzie Lowe, Trip Lowe, Andrek Lowell, Jaraziah Lowell, Lissa Lowell, Stryfe Lowell, Leland Lowell, Leonardo Lowey, Stagger Lowey, Strabo Lowey, Raen Lu, Laurie Lubezki, MissJean Lubezki, Lucia Lucero, Lee Ludd, Franchises Lulu, Jayden Lulu, Kitten Lulu, mona Lumet, Alienor Lumiere, Michi Lumin, Wolf Lumin, Grumpy Lumley, Sian Lumley, HamSuiJe Lumpen, Laguna Luna, Starbella Luna, Ashley Lundquist, Theosta Lunt, Cliothe Luo, Lincoln Lupino, Bronwyn Lurra, Mineki Lurra, MYMistress Lusch, Linnae Lusso, Natalie Lustre, Rose Luxemburg, Helena Lycia, AG Lykin, Lhlilith Lykin, Niko Lykin, Logan Lyne, Jacques Lytton, Kianeira MacDiarmid, Apple MacKay, Melissa MacKay, Bailey Mackenzie, Maxx Mackenzie, Rose Mackie, Ee Maculate, Gaetan Maculate, Ravarian Maculate, Adrian Maddaloni, yearning Maddaloni, Ava Maddux, Flezix Maddux, Karamel Madison, Allure Madonna, Mannie Madonna, Sitearm Madonna, Mario Madsen, Mitzy Madsen, Ben Maersk, Lillian Maertens, Turk Maertens, Stephanie Magnolia, Lonique Magojiro, WarKirby Magojiro, Loki Mahana, Vinny Mahana, Semiramis Mahina, Shadow Mahoney, Rissa Maidstone, Tynana Maidstone, Angel Majestic, Jeremy Majestic, StarFire Majestic, Tiara Majestic, One Maktoum, Lana Maladay, Marzipan Maladay, Missy Malaprop, Ordinal Malaprop, Void Malaprop, Natasha Malibu, Rygel Malick, Ali Maltz, Leena Maltz, Cage Mandala, Synthalor Mandelbrot, Zeppelin Mandelbrot, Esteban Manen, Kawaii Manga, Mailee Manga, Nathalie Manga, Yinato Manga, Mya Mantis, Madame Maracas, Maisa Maracas, Domino Marama, Panama Marama, Charm March, SallyWoelfin March, Markel Marchionne, AdriAnne Margulis, Edgware Marker, Tika Market, AiSenshi Market, Lizbeth Marlowe, Queue Marlowe, Joana Maroon, Grey Marquette, Adrianna Marquez, Jeremy Marquez, Shirley Marquez, Christian Marquez, Dax Mars, Dnate Mars, Xandi Mars, Sarah Marsi, Garmon Martin, Sean Martin, SignpostMarv Martin, Brittany Martinek, Sweet Martini, ElDraque Martov, Aminom Marvin, Edwin Marvin, Meatnik Marvin, Zanza Marx, bollit Masala, Nguai Masala, Satya Masala, team23 Mascot, Tyler Mason, NAM Massey, Minasojo Massiel, Gatto Mastroianni, Checho Masukami, SlavegirlPaula Masukami, Hellsing Matador, Femina Matahari, Leoki Matahari, Rosa Mathieson, Violet Mathieson, MikVik Mathilde, Jonathan Mathy, Ernesto Matova, Selenia Matova, Meltharas Matsukaze, lordneg Matzerath, Memnoch Matzerath, Dedric Mauriac, Kezz Mauriac, Wolruf Mauvaise, coyote Maverick, Martin Maxwell, jericka May, Jeza May, Mellony May, Lauri Mayfair, EnCore Mayne, revochen Mayne, amaya Mayo, Hellmanns Mayo, Jima Mayo, Kion Mayo, Kisho Mayo, Mo9a7i Mayo, Neobe Mayo, Salazar Mayo, Sat Mayo, Scotto Mayo, William Mayo, Gino McAllister, Masion McAllister, Wallace McAllister, DarlinNikki McAlpine, Hawk McAlpine, Inga McAlpine, Lex McArdle, Maggie McArdle, Joshua McCallister, Keegan McCallister, Bradford McCann, Ella McCann, Flox McCarey, Jezzie McCellan, David E . McClure, Cash McConachie, Cathal McConachie, Tad McConachie, Aodhan McDunnough, Drew McDunnough, Artie McFly, Minnie McGann, Sabine McGettigan, Poppet McGimsie, Carole McGuire, Tegwenn McKenna, Shaemus McLaglen, ShirleyM McLaglen, Dirty McLean, HoseQueen McLean, Billibob McLeod, Cari McLeod, Innes McLeod, Jaenae McLeod, Slate McLeod, Troy McLuhan, Anya McMahon, DoGGo McMahon, Hutch McMahon, Iras McMahon, Jian McMahon, Jimama McMahon, Kouki McMahon, Sioban McMahon, Akie McMillan, laika McMillan, Lauris McMillan, Marteze McMillan, Maye McMillan, Nicholas McMillan, Radikal McMillan, Tammi McMillan, Jax McNally, Arwyn Meadowbrook, Waterflower Meadowbrook, Ima Mechanique, Nber Medici, Chandra Meehan, Geo Meek, Earane Meiji, Jessica Meiklejohn, Emiko Meili, penelope Meili, Luz Melbourne, Marti Melnik, MenuBar Memorial, Aitor Mendes, Mona Mendes, Jay Menges, Kimmie Menges, Lennart Menges, Margaret Menges, Mikel Menjou, VzNevada Menoptra, Merselus Mensing, Leia Mercy, SAPPHIRE Mercy, Sofie Mercy, ozadakan Meriman, Sandycd Meriman, Washington1985 Meriman, Infiniview Merit, Nanashe Merkur, Ayahuasca Merlin, Craischen Merlin, devillover Merlin, Faer Merlin, Jarros Merlin, Jolie Merlin, Kejo Merlin, Mario4 Merlin, Sarah Merlin, Silas Merlin, Wizard01 Merlin, Telitha Merlin, Vrrgo Merlin, Rocky Merosi, Luxe Merrienboer, Lance Mertel, Angus Mesmer, MysElf Messmer, Lonny Miasma, Utopar Michinaga, MTC Mielziner, Enysy Mikita, Celeste Miles, Giovani Miles, Guli Miles, Mars Miles, Noah Miles, RobWest Miles, Subzero Miles, DALLAS Milestone, Jane Milev, Jesper Milev, MMz Milev, YumYum Milk, Belle Milland, Berri Milland, Joanne Milland, Vicky Miller, Samantha Miller, Calvin Millions, Envy Millions, Lusty Millions, Versu Millionsofus, AsteroidS Mills, Emixam Mills, Goodstuff Mills, Guntrinkyt Mills, Isabella Mills, Landen Mills, Noelle Mills, Sand Mills, Djarno Mills, Mandee Milner, Haika Milo, Mankud Milo, Slobodan Milosz, Eliezer Mimistrobell, Amoret Mineff, Little Ming, Mako Minogue, Mandee Minogue, Milena Minogue, Sylfie Minogue, Manon Mirabeau, Tygeria Mirabeau, leliel Mirihi, Cmdr Misfit, disisme Misfit, fangy Misfit, Grim Misfit, RedWolf Misfit, Michal Mishin, Robby Mission, Shawn Mission, Haravikk Mistral, Thom Mistral, Sertories Mitchell, Temporal Mitra, Bphero Mizser, Stolar Mohr, DarkWulf Mokeev, Nemo Mokeev, sharon Mokeev, Sech Molinari, lara Molinaro, MARIOS Molinaro, James Mommsen, Sierra Monnett, Joan Monstre, Cattra Montagne, Galadhriel Montagne, AnnaMarie Montgomery, Christine Montgomery, Mariah Montgomery, Shawna Montgomery, Jemima Moo, Jihashi Moo, Moonie Moo, Wiske Moo, Borgie Moody, DOA Moody, Makinzie Moody, Preciousse Moody, Bit Moody, Luna Moody, ziphren Moonflower, Axl Moonlight, FxyLdy Moonlight, Stormy Moonlight, Lichtje Moonsoo, Astryd Moore, Haze Moore, Walker Moore, wiseman Moore, Zak Moore, Mordechai Moose, JMM Morahan, Kayleigh Morahan, Cyndi Moran, Marcus Moreau, Kathy Morellet, Violet Morellet, Heather Morenz, Maggie Morgan, Newbie1canobe Morgan, Sumar Morgan, Bella Morico, Ornella Morigi, Eagle Morris, Amanda Morrison, Maeyanie Mosienko, Svetlana Mosienko, Trinity Mostel, Risa Mosuke, Falcon Mountain, NEWB Mountain, Windy Mountain, KittenAnne Mousehold, Minky Mousehold, Lawna Mower, Pure Moxie, webeagle Moy, Buckaroo Mu, Nye Mu, Kara Muir, Robert Muir, Criscad Muni, Jean Munro, Pranay Munro, Nobu Murakami, Shar Murakami, Yumi Murakami, Arrekusu Muromachi, Sasameyuki Muromachi, Usagi Musashi, Spiritfire Musketeer, Questyn Myhre, Myst Mysterio, Vincent Nacon, Fox Nadir, Morgana Nagorski, Sari Naheed, Yasmin Nakamichi, Aibyou Nakamura, Aluviel Nakamura, Kyriani Nakamura, Madeea Nakamura, Masao Nakamura, Misao Nakamura, Tammi Nakamura, Tanabata Nakamura, Nawtakune Nakatani, rich Nasu, Lev Nedkov, Coal Nelson, Shiharizad Nelson, Laurah Nemeth, Beladonna Nephilim, Lianna Nephilim, Seraph Nephilim, Sari Neruda, Tiberious Neruda, otakup0pe Neumann, Wilhelm Neumann, Chet Neurocam, Draconis Neurocam, Cenji Neutra, Lex Neva, Prokofy Neva, BC Nevadan, Seagel Neville, Judi Newall, Killian Newall, Si Newall, Roenik Newell, Jos Newman, Lynda Newman, MadCat Newman, Weaver Newman, Ian Newt, Ribblet Newt, ninjafoo Ng, Raideur Ng, William Niangao, Gao Niangao, Lori Nicholas, Pravda Nicholas, Evangeline Nichols, Joella Nico, Morpheus Nieder, Titzalina Nieder, Blaze Nielsen, Angelus Nielson, Lazaros Nikolaidis, lincoln Nikolaidis, Tiruviel Nikolaidis, Kenn Nilsson, Lib Nilsson, Jokyr Nimbus, Tateru Nino, Jyotsna Nishi, lloll Nishi, Roxas Nishi, Tuote Nishi, Katlene Niven, Kari Niven, Thegamer Nixdorf, May Noarlunga, Jo Noe, DesrAw Noel, Jacindia Noel, Jaz Noel, MelodyRose Noel, Mi Noel, Paden Noel, Ricky Noel, Sunno Noel, Ono Noh, Tuach Noh, Feras Nolan, Jane Nolan, Harald Nomad, Helen Nomura, Lolita Nomura, Richard Noonan, Aenea Nori, Aulin Normandy, Kat Normandy, Zebra North, Stephen Northport, Galare Novi, KittyMarie Novi, Soo Novi, Elia Nozaki, lynsey Nozaki, Rini Nozaki, Kinzo Nurmi, Yasmin Nurmi, Kyran Nyak, Lauren Nykvist, Karma Oates, Alice Obscure, Honeymoon Obscure, Mikhail Obscure, Origin Obscure, Dementia Obviate, Lucius Obviate, Mootly Obviate, TripleXXXTex Obviate, Vanessa Obviate, Vitis Obviate, Sieben Ochs, Avery Oddfellow, Clinton Oddfellow, Maczter Oddfellow, Sempervirens Oddfellow, Tashie Oddfellow, Wagahai Oddfellow, CarlinRae Odell, Johnny Odell, Liny Odell, Lucifer Odell, vanler Odets, Foxb Oe, Kiwini Oe, Natalie Oe, Eddy Ofarrel, Mylinn Ofeq, Roundabout Ogee, Bannock Ogg, Behemoth Ogre, Anju Oh, BlackCinders Oh, Canoe Oh, Crippy Oh, Dakotah Oh, Day Oh, Doo Oh, Feander Oh, Heady Oh, Job Oh, kyushudan Oh, Lila Oh, Luxura Oh, MrSim Oh, OHYES Oh, Oury Oh, Qyty Oh, Santa Oh, Svn Oh, Volta Oh, xepadd Oh, isla Oh, Angelina Ohara, Troy Oherlihy, Yasuragi Okame, Rephaim Okina, Sven Okonomi, benyamin Olaria, EvlDesire Oliver, Brightly Olivier, Renton Olivier, Gary Olson, Christopher Omega, Hamncheese Omlet, Joseph Omlet, Libuse Ondricek, luminye Onizuka, Miyuki Onmura, Toshiro Onmura, Hotaru Onomatopoeia, Isis Ophelia, Orchid Ophelia, Stumbelina Ophelia, Roberto Oppewall, Anthony Opus, Spaceman Opus, Vakis Oranos, Koop Orbit, Sammy Ormsby, Cal Orr, Usra Ostrich, Nikki Osumi, Ariel Otafuku, kevin Oto, CJ Oto, Ann Otoole, Patrice Otoole, Abyssin Otoro, Omega Otsuzum, Teravus Ousley, Straitjacket Overlord, Szegey Oxberger, LemonYellow Oxide, Tabitha Oxide, Rianne Ozsvar, Coyote Pace, Hare Pace, Dargon Pacer, Piero Padar, Zasha Padar, Chav Paderborn, Edison Paderborn, Otenth Paderborn, RC Paderborn, Sylvia Paderborn, Chandra Page, Lili Page, Raven Page, Web Page, AnneJoy Paine, DravenLee Paine, Isobella Paine, Larva Paine, Lushious Paine, Thomas42 Paine, Cesar Pakula, Federico Palen, Monica Palen, Diana Palmer, sense Palmer, Crazy Pangaea, Sacha Pangaea, Upinthe Panhandle, Simbiant Paperclip, Drea Paperdoll, Pannie Paperdoll, raymon Paperdoll, jaesung Papp, JohnJ Papp, Alec Paragon, Cliff Paris, Vertigo Paris, Blue Parisi, serena Parisi, JR Parker, Kora Parker, Prawnyloks Parker, Etheria Parrott, Tommy Parrott, Selaras Partridge, Sexy Partridge, Maegen Parvenu, Francie Pasternak, Mr Pasternak, Eloise Pasteur, sandhya2 Patel, Bruce Patton, Penny Patton, Dave Patton, Haole Pau, Andy Paul, LanNoire Paul, Nolte, Paul, Nicholi Pavlova, shadow Pawpaw, Cuffman Payne, Deseri Payne, Gypsy Paz, LupineFox Paz, Shy Peart, Tamara Peart, Pontias Peck, Robin Peel, Elum Pegler, Kotek Pekli, Pulp Pekli, Reaser Pencer, Caliandris Pendragon, Hiro Pendragon, Jopsy Pendragon, Darren Pennell, Mideon Pennell, Powell Pera, Stanley Pera, Tajma Pera, FlipperPA Peregrine, Jennyfur Peregrine, Alana Perenti, MaxPerfect Perenti, Revolution Perenti, MoonGazer Perhaps, Brooklyn Perinal, Shawk Pertwee, Drakior Perun, Charm Perway, Jubilee Pessoa, Riley Pessoa, Tristram Petion, Aline Petrov, Larry Petrov, PantzerHamzter Petshop, scott Petshop, Foxy Petunia, Inara Pey, Tony Pey, Brathak Pfeffer, Henrick Pfeffer, Jack Pfeffer, Marlo Pfeffer, Resi Pfeffer, Lum Pfohl, TACK Pfohl, rren Pfohl, Psyke Phaeton, Sangi Phaeton, Don Pharaoh, Topdog Pharaoh, Anderson Philbin, Philb Philbin, Ridge Phillips, Maximus Phlox, Careltje Phoenix, Winter Phoenix, Ummm Pickles, Piper Picnic, Loki Pico, Hawk Pidgeon, followmeimthe Piedpiper, Alin Piek, Ricky Piek, angelwithahintoflife Pierterson, Elsibeth Pierterson, Marod Pierterson, Noshi Pierterson, Shanel Pierterson, Natasha Pike, Joshua Pilote, Adeline Pinion, Miguel Pinion, Quinn Pinion, Peach Pink, Tisha Pink, Lulu Pink, alice Pinkerton, Getty Pinkerton, Apple Pinkney, Becky Pippen, Tam Pippen, sandra Pitney, Trish Pitney, Max Pitre, Hawk Pitts, Spritely Pixel, Chel Pixie, HotBuns Pixie, Mina Pixie, Mcplane Planer, simon Planer, Guy Plasma, Halogen Plasma, Mathias Plasma, Phill Plasma, White Platini, Phoenix Platthy, Gallia Plubeau, Corki Plunkett, PollyD Plunkett, Asalynda Pluto, Evgeniy Podolsky, OTTONE Pogelmann, Henry Poindexter, Phoebe Poitier, Rowan Poitier, Rigorus Poitier, Stephen Pollock, Mishka Pomeray, Kuatum Poole, Karina Popinjay, Francesca Poppy, Hot Poppy, Shelly Portello, Anthony Portsmouth, Ian Portsmouth, HackPatooey Posthorn, JohnnyD Posthorn, Madison Posthorn, Antitese Poulot, Uccello Poultry, Tanarus Pow, Frederic Prevost, Bill Priestly, Dit Priestly, Phil Priestman, Rachelle Priestman, Sage Priestman, Simone Prieto, Wundur Primbee, Jacob Primeau, Twilight Primeau, Beautifull Princess, Creamyyy Princess, Graciella Princess, Lyna Princess, Theo Prinz, Krono Pro, Don Proost, Games Prototype, Melissa Prunes, Pie Psaltery, Danger Pugilist, Lily Pussycat, LoL Pye, PITTACOS Pye, Prize Pyle, Reese Qian, Ash Qin, Jen Qinan, milesmess Qinan, Quino Quaggy, Starsitter Quality, Algeard Quamar, Flack Quartermass, Marcus Quartermass, Shaggy Quimby, Laura Quimby, Memir Quinn, Amy Quirk, Edge Qunhua, HeinzJoachim Qunhua, Tsing Qunhua, brooke Ra, Dael Ra, Knightsof Ra, Mayo Ra, Roger Raabe, Sharven Raabe, Sail Racer, Supra Racer, Ada Radius, Rob Raffke, Rayne Ragowski, Starfoxtj4 Rail, mantitaur2 Rainbow, Sparkly Rainbow, Andromeda Raine, musicteacher Rampal, Hoyle Rang, Hermione Ranger, jurnal Ranger, Horgus Rasmuson, Trend Rasmuson, Whoosh Rasmuson, Rascal Ratelle, Eriss Rau, Morugai Rau, Ozhika Rau, slave Rau, Awsoonn Rawley, Marie Rawley, Guy Raymaker, JAC Raymaker, PlanetThoughts Raymaker, Rogier Raymaker, Trident Raymaker, Xoren Raymaker, Ranaa Raymond, Rowena Rearwin, Londyn Reatequi, Neo Rebus, Bekka Redgrave, Etude Redgrave, Lyn Redgrave, Publicist Redgrave, Wingless Redgrave, Allie Ree, Jon Ree, Thyna Ree, Zi Ree, Todd Reed, RhaRha Rees, Alex Regent, Alexander Regent, Cat Rehula, Timoteo Reifsnider, Sirus Reiner, Trilobite Reisman, ali Reiter, Ruben Reiter, Fenrir Reitveld, EmpressNever Rejected, Maya Remblai, Kapu Ren, Atticus Renoir, catsrounds Renoir, Cedric Renoir, Julion Renoir, karman Renoir, Sim Renoir, Isabela Repine, MysticalCeCe Repine, Sissimaid Resistance, Tom Reuven, Beagle Revolution, Xin Revolution, Keex Rexroth, Ordos Reymont, Roz Reynolds, CJ Rezillo, Rena Rhea, Hiroaki Rhino, Curious Rhode, Lexy Rhode, Natriumcitrate Rhode, Toshi Rhode, Pam Ribble, Gia Richard, Gigly Richez, Hutton Richez, Renae Richez, Ronald Richez, Roxi Richez, Jimbo Richez, Josh Rident, Finncaev Riederer, Aeryn Riel, INK Rinkitink, Puck Rinkitink, Riki Rinkitink, Edoardo Ritt, Bibi Riva, Eche Riverview, helloau Riverview, Liam Roark, Angela Robertson, Jay Robson, Brooks Rocco, Marth Rocco, Mo Rocco, Wolf Rocco, dartagnan29 Rockett, marco Rockett, Monida Rockett, ortaga Rockett, Raziel Rockett, Anastasia Roelofs, Stormy Roentgen, Hector Roffo, Ricci Roffo, Tonio Roffo, Picaro Roffo, IvanTwin Rogers, Chrisje100 Rojyo, Rowana Rolland, Shine Rolls, Iris Ronmark, Jacques Ronmark, Phil Ronzoni, Keishii Roo, MattyMcHatton Roo, Kimika Rookwood, Prego Rosca, Rayne Rosca, Uber Rosca, Felix Rosenberg, Amethyst Rosencrans, Alejandro Rosenthal, Davian Rosenthal, Edgar Rosenthal, Seth Rosetta, Alustriel Rosewood, Arenae Rosewood, Fury Rosewood, Gwendelyn Rosewood, Kira Rosewood, liz Rosewood, Oriene Rosewood, Lashelle Rosse, Roodvosje Rosse, Rose Rosse, Rico Rosse, Jonah Rossini, Milordino Rossini, Sparrow Rossini, Yira Rossini, Zanah Rossini, zina Rossini, Francaldo Rotunno, Reckless Rotunno, Excel Rousselot, mica Rousselot, Lexie Rovio, Alexandra Rucker, Lilith Ruff, Stina Ruff, Aragorn Runo, Kragelund Runo, Rinziq Runo, ViRi Runo, Distilled1 Rush, Jordann Russell, Kryton Russell, Miyaki, Russell, Brent Russell, Revons Rutabaga, Rocky Rutabaga, FEZ Rutherford, Darcy Rutledge, Jo Ruttenberg, Odo Ruttenberg, Theodorrick Ruttenberg, Artix Ruxton, Armand Ryan, Zakeir Rydell, Cathy Ryder, McCall Ryder, Inarra Saarinen, Kai Sabena, Sarie Sabena, Alissa Sabre, Arcticfire Sabre, BamBam Sachertorte, kai Sachertorte, Umphrey Sachs, Mila Sadovnycha, Proxima Saenz, Lynne Sage, Cheloxchile2006 Saiman, Milo Saintlouis, Natasia Saintlouis, Trinity Saintlouis, Rollergirl Saiz, Nyoko Salome, Scandinavian Salomon, Agarash Salsman, Rayne Saltair, Horus Salubrius, Solta Salyut, Nicola Samiam, Aleg Sandell, angeltf Sands, Balkan Sands, Charmaign Sands, Check Sands, Damien Sands, Orika Sands, Other Sands, Padraic Sands, Sotos Sands, Taira Sands, Cloudia Sani, Carinthia Sansome, Allasandra Santos, Rosell Santos, Solanghe Sarlo, Ishara Sartre, Charles Sassoon, Damian Saule, Jesse Sautereau, Natalia Sawley, Billie Scaggs, Mordecai Scaggs, Roz Scaggs, Socaliwag Scaggs, Johannason Scarborough, Jim Schack, Norm Schack, Fatz Scheflo, MissKitten Schildhauer, Nelson Schmo, Werner Schnabel, Tammye Schneider, Frank Schneider, Funk Schnook, cleopatras Schnyder, mylife Schnyder, ScOrPiOn Schnyder, Count Schridde, Kircheis Schroeder, Julia Schulze, Anita Schwartzman, Cornelious Schwartzman, Etrius Schwartzman, Dr Scofield, Joe Scofield, RyanAva Scofield, Kira Scott, Six Seale, Sterremare Seale, Dallas Seaton, Star Seaton, Spurs Seattle, Elio Seelowe, Jaden Seelowe, Moira Seelowe, Teleio Seferis, Artemus Seifert, Gouranga Seiling, Alyrae Seitan, Grace Selene, Maureen Selene, amandaelisabeth Sellers, Chelsey Sellers, Fashion Sellers, Novellium Sellers, Kerutsen Sellery, Semolina Semaphore, ice Semple, Daisy Semyorka, Roxy Semyorka, DarkStar Senior, River Senyurt, Singular Seoul, James Seraph, Jesrad Seraph, Liv Serf, Tears Serf, Neon Serge, Magnum Serpentine, Jazzy Serra, Aiyana Serrurier, Coelacanth Seurat, Jean Severine, Landreu Severine, Gitana Sevier, Elizabell Sewell, johni Seymour, nayeli Shabazz, Talena Shabazz, Princess Shalala, Robbie Shamroy, Dimas Shan, Lancer Shan, Nae Shan, onlyyou Shan, Shango Shan, Spirit Shan, Jumpda Shark, DigiKatt Shaw, Steffi Shenlin, Afon Shepherd, Clair Shepherd, Eastern Shepherd, LadyLeah Shepherd, Lexis Shepherd, Siddhartha Shepherd, Taran Shepherd, Valentin Shepherd, Jieux Shepherd, Delicious Sheridan, LauraAnne Sheridan, Remco Sheridan, Aki Shichiroji, Todedoz Shichiroji, BlckCobra Shikami, Mary Shikami, Seven Shikami, Thomas Shikami, Szia Shilova, lisalove Shimada, Yoyo Shinobu, Tarrant Shipman, Kitsuribami Shirabyoshi, Amber Shirakawa, AmySue Shirakawa, Kanna Shirakawa, Shelectra Shirakawa, CJ Shojo, Felix Sholokhov, VonFoxFire Sholokhov, Renegade Shriner, Alexandra Shu, Bung Shu, Ddevine Shuftan, emmakael Shuftan, Skipper Shutt, Jaime Sicling, Ko Sicling, Lucien Sidek, Ulrich Sidran, Darlene Sieyes, Darling Sieyes, sparkles Sieyes, Mjren Silvera, Apotheus Silverman, HVX Silverstar, Nirven Silverstar, Rocco Silverstar, Tamar Silverstar, Rosie Simca, Drvid Simoni, Dragos Simons, barnowlgirl Sinatra, Cheyanne Sinatra, marilsdb Sinatra, Nanceee Sinatra, Quiet Sinatra, Vent Sinatra, Frosty Sinatra, Misty Singer, Katie Singh, Sydney Singh, Philo Sion, followingwaves Sirbu, Saya Sirbu, Don Sivocci, Danielle Skall, Hegemon Skall, JASMINE Skall, Mykal Skall, Dovryn Skall, Arathorn Slade, Artakan Slade, djsunz Slade, Eleana Slade, Erica Slade, Jupiter Slade, Kronikz Slade, Methosmv Slade, piro Slade, Snapeslove Slade, Sys Slade, TylerSnk Slade, Wylee Slade, ZirQ Slade, Xabax Slade, Malik Slapstick, Coug Sleeper, Kenny Sleeper, Lucia Slippery, Adrian Sloane, Alistair Sloane, Rysz Sloane, Angel Slocombe, PrinceDK Slunce, Flo Slunce, Tatiana Smagulov, badboy1331 Smalls, Brat Smalls, EDhardy Smalls, Lomgren Smalls, DonAmon Smirnov, Andrew Smith, Elliott Smith, Mikal Snakeankle, Esch Snoats, Eian Snook, Pavee Snook, floe Snookums, kramer Snookums, Rach Snookums, Jonboy Snye, fionn Soderstrom, miguel Soderstrom, Bellisima Sodwind, Dafydd Sodwind, Scott69 Sodwind, Shipper Sodwind, Ilianexsi Sojourner, Shirokuro Sojourner, The Sojourner, Wiccan Sojourner, Elijah Sol, Lara Sola, Vanilla Sola, Silvari Soleil, David23 Something, DolphPun Somme, Rhyph Somme, aewyn Sondergaard, Kali Sonic, Packard Sonic, Jayman Sonnenblume, Pippen Sonnenblume, Esichs Sonnerstein, Sylvia Sonoda, ASCLEPIUS Soon, Tecumseh Soon, Julia Soothsayer, Shadowspawn Soothsayer, Tindallia Soothsayer, RJ Source, Akemi Soy, Aln Soy, Aaron Soyer, Tsuno Soyinka, Oz Spade, Ellen Spark, karlynn Sparkle, Kaylie Sparkle, TruHeart Sparkle, Dave Sparrow, slyflower Sparrow, Flapjack Spatula, Cheyenne Spearmann, Jester Spearmann, JewelKicker Spearmann, Data Spectre, Rai Speculaas, Sin Speculaas, Thornne Speculaas, Ehdward Spengler, mo Spengler, Wesley Spengler, Datentyp Sperber, Niko Sperber, Giuseppe Spicoli, Snakeye Spicoli, Marcus Spire, Setori Spire, Crackervelli Spitteler, Naughty Spitteler, Studders101 Spitteler, Yojne Spitteler, ScaryMary Spitz, Geezer Spoonhammer, GutterBlood Spoonhammer, Tour Spoonhammer, Sheet Spotter, tree Sprawl, Kitty Sprocket, Alan Standish, Fox Standish, Clive Stanwell, Alexis Stapovic, Hippyjim Starbrook, Missy Starbrook, Thunder Starbrook, Babydoll Stardust, Birdy Stardust, Johannes Starostin, Ariana Starr, Funk Starr, eltee Statosky, Hanako Stawberry, Micheal Steadham, Blueman Steele, sugar Steele, Jennifer Steele, Golda Stein, Tyler Stein, Uber Stein, Bernd Steinhardt, Whisper Stella, Hjoerdis Stenvaag, Timmy Stepford, LaserFingers Steptoe, Athena Sterling, Selvina Sterling, Hunter Stern, Ocmer Sternberg, Jabath Steuart, Sylvia Steuben, Bracin Stevenson, Sammmy Stewart, Skeeter Stiglitz, Lily Stilman, Nisaa Stilman, Quick Stilman, Spaydar Stine, Unger Stine, Sherrade Stirling, Till Stirling, Juggernaut Stoklitsky, Meret Stonebender, Argent Stonecutter, Gearsawe Stonecutter, Kayla Stonecutter, Liquids Stonewall, Nevera Stooge, Matthew Stork, Sam Stork, Neotoy Story, AllieKat Stovall, Krystal Straaf, Kyrus Straaf, Laars Straaf, Niccia Straaf, Aloe Stradling, egbert Stradling, Lotus Stradling, SlyFox Stradling, Eristic Strangelove, Thaumata Strangelove, Valiant Strangelove, Salome Strangelove, Erica Strauss, Zinger Strauss, Gabrielle Street, Artistniko Streeter, Bruce82 Streeter, Builder Streeter, dast Streeter, Hans Streeter, Stilette Streeter, Darzus Strutt, Bluto Stubbs, Olivier Sturges, Kharie Su, Rexx Su, Vudu Suavage, Silverrain Sucettes, Siyu Suen, Zack Suen, Linnian Sugar, Sierra Sugar, Stacey Sugar, Jodie Suisei, Koto Sukra, Takira Sukra, Ravanne Sullivan, Rik Sullivan, Sofi Sullivan, Joffi Sumbula, BrightAngel Summers, Kiyana Summers, Eclipsed Sun, Shinshinto Sungsoo, Angel Sunset, Warord Suntzu, DalE Supply, ivan Supply, Frictionless Surface, Brightwing Surtees, David Surtees, Georges Susa, Caterina Susanti, Fatima Susanti, Owen Susanto, Caliburn Susanto, Kevin Susenko, Forseti Svarog, Kinga Svarog, Batman Swenholt, Flame Swenholt, Shyressa Swenholt, Earle Swenson, Harvey Swenson, Kevin Swenson, Anastasia Swindlehurst, Liz Swindlehurst, Swein Swindlehurst, Verrenus Swindlehurst, Christain Switchblade, Guy Szondi, Nonlucid Szondi, Sagmumu Szondi, XVenomX Szymborska, CaelThunderwing Tackleberry, Mitzi Tackleberry, Ayla Tae, Maya Tae, Princess Tae, Carsten Taft, Gigs Taggart, Aphrodite Tagore, Lynn Tagore, Jenna Taira, Zephora Taiyou, Rusmi Taka, Kaimen Takahe, Akina Takakura, Sabina Takakura, Tao Takashi, Cornelius Tal, Dolmere Talamasca, Kelindra Talamasca, Sabane Talamasca, Tod69 Talamasca, Bad Tamale, Kitchkinet Tamale, Dany Tammas, kym Tammas, Phoming Tammas, sasha Tammas, Alina Tamura, Janu Tamura, Karetta Tamura, Melli Tamura, Morina Tamura, Snake Tamura, Valentina Tamura, Rutain Tandino, Tracy Tani, Jolt Tank, Rachel Tapioca, Ilyara Tardis, Jaxx Tardis, Aaron Tardis, Sim Tatham, Tobi Taurog, Joey Tavoularis, John Taylor, Jeffrey Temin, Enabran Templar, Crymzon Tempura, Jehan Tendaze, Angel Tengu, Arctic Tenk, Ginevro Tenk, OolBatar Tenk, Sally Tenk, Storchi Tenk, Bloodsong Termagant, Cubey Terra, Lynn Terra, Niles Theas, Sterre Theas, Lost Thereian, Osprey Therian, Lukas Thetan, Larson Thibaud, Redd Thielt, Tana Thielt, Thongshaman Thirroul, Millie Thompson, Brooke Thurston, Lisa Thyben, Bengal Tiger, RavenAnn Tiger, Terrigo Tiger, Sable Till, Soraya Till, Zayn Till, Trixie Timtam, immortal Tiramisu, Matthew Todd, Watermelon Tokyo, Amily Toland, Prijian Toland, Wigger Toland, Wym Toland, Shaia Toll, harathoi Toman, EH Tomcat, Pawz Tomcat, nicky Tomsen, Olyntchen Tomsen, Siul Tomsen, Zukini Tomsen, Darkover Tone, JazzySweet Tone, Tea Tone, Shelly Toonie, Tristan Torgeson, Katie Tornado, manufr Torok, Drew Torres, Xavier Tosung, Benjamin Tower, TJ Tower, Coquine Tracy, Fintaya Tracy, Herman Tracy, killer Tracy, Marcel Tran, Cabal Trautman, Nadja Travanti, Steve Trenchard, Grimm Trenchmouth, Neogrinch Trenchmouth, Scarlet Trenton, input Trilam, Debbie Trilling, Dahlia Trimble, TrainingDay Trimble, Candy Tripp, FeelGood Tripp, Nate Tripp, Skalligrim Tripp, stimpy Tripp, Michael Tripsa, Orion Tristan, Sam Troell, Celebrity Trollop, MaidHeather Trollop, Roberto Trotter, Tipsey Troughton, Lucille Trudeau, Paul Trudeau, arthus Truffaut, Chambord Truffaut, Siss Truss, Boshiken Tsuki, Sindy Tsure, Dante Tucker, ImAOzGrl Tucker, Scott Tucker, BabyAlice Tulip, Bryce Tully, Pixie Tungl, Lyr Tuppakaka, Hawthorn Tuque, Omei Turnbull, Victor Tuxing, Cloe Twang, Twill Tymets, Andrew Tyson, Lyndyn Tzara, Ilyushin Tzedek, Echo Uba, francois Uba, James Udal, Jman Udet, Sara Udet, Koola Uggla, Rocky Uggla, Barry Ultsch, Didro Ultsch, Ianbob Ultsch, Jacki Ultsch, Tchize Umarov, Pepper Underall, Silky Underall, MadameThespian Underhill, Archanox Underthorn, Muzicole Undertone, Chance Unknown, Luthien Unsung, Random Unsung, Sammael Unsung, Totally Unsustainable, Withershins Unsworth, Alison Upshaw, daniel27 Upshaw, Downs Upshaw, Wookie Upshaw, Mr Ur, dlen Uriza, olivia Uriza, tamzi Uriza, clashman Usher, Egelion Usher, dragonboy Utorid, Shade Vacano, Tali Vacano, VanDelay Vacano, Waters Vacano, Gisela Vale, Suena Vale, Anna Valeeva, Caelestaeia Valeeva, Jrhueving Valeeva, Keela Valeeva, Sue Valeeva, Huns Valen, Belle Valentine, LaTaina Valentine, Nenilai Valentine, Sweet Valentine, Lightwave Valkyrie, SexyEyes Valkyrie, Shucks Valkyrie, Cherie Vallely, Charlie Vanalten, Dina Vanalten, Jonash Vanalten, WindyWeather Vanalten, Anousjka Vanbeeck, Joseph Vandeperck, Annabelle Vandeverre, Cyn Vandeverre, Maia Vandeverre, Starlight Vandeverre, Gunter Vandyke, Sascha Vandyke, Savage Vanguard, Trinity Vanmoer, Blucool Vanness, Janey Vansant, Reva Vanvleck, Bunnee Varmint, Priest Varun, Zermit Vasilopita, Hornern Vaughan, Marie Vaughan, Marleen Vaughan, Tiffany Vaughan, Cinthya Vavoom, Mithik Vavoom, Speeder Vavoom, QuietlyCharmes Vega, Aleksy Vella, Delsara Vella, Falcon Vella, Gippy Vella, Loftvoker Vella, marivy Vella, mikky Vella, PrincessRainbow Vella, Ramiro Vella, Charla Vellhi, Dave Vellhi, Holly Venera, havelock Venkman, Dark Ventura, Psyche Vertes, Rhianna Vertes, Nyteshade Vesperia, Dahlia Vezina, Danielle Vidor, Darucain Vieria, Dytska Vieria, Heidi Vieria, ThaRi Vieria, Yora Vig, Tryme Viking, Peri Villota, Violetta Villota, Steve Vinson, Eva Virgo, Camille Virtanen, Giada Visconti, Seraphim Vixen, Robin Vogel, Troy Vogel, Ebony Voight, Heather Voight, Lexie Voight, Roy Voight, Rutger Voight, Cary Volare, Constanza Volare, Dick Volare, FleetingJoy Volitant, Isara Vollmar, Sasha Vollmar, Scarlett Vollmar, Aagaard Voom, Aliens Voom, Duchess Voom, Plenty Voom, Pope Voom, quewan Voom, Selina Voom, Theresa Voom, Yes Voom, Yolanda Voom, Ki Voss, Fatima Vuckovic, Noone Vuckovic, Viana Vuckovic, NARUTO Wade, Warren Wade, Wizardesssss Wade, esclava Wakawaka, Squeebee Wakawaka, Brian Wellman aka Bribo Wakawaka, Pandora Wake, Hosic Wakmann, Greenfield Walcott, Gillian Waldman, Hiram Walker, Tiffany Walsh, Piers Warf, Xenon Warf, Relkin Warrigal, JK Warrior, Shan Warrior, Eowyn Watanabe, Hatibei Watanabe, JimmyC Watanabe, Poemi Watanabe, Toru Watanabe, Tsukasa Watanabe, Gen Watson, Harley Watts, Keeley Waverley, Misterblue Waves, Nimrodina Wayne, Bill Weaver, Nitram Wei, Sistagrlro Wei, Scully Weir, Adrina Welders, Escape Welles, Ivy Welles, Tracy Welles, Vanity Welles, XaMaD Welles, breemman Wellman, Spyder Werribee, Angela Wertmuller, Ronny Wertmuller, Mike Westerburg, Sofia Westwick, Lea Weyland, Darryl Wheeler, lily Whetmore, Lola Whetmore, Sabby Whiplash, SteveR Whiplash, Trader1 Whiplash, Wynx Whiplash, Chalky White, Les White, Sid White, Juicefroma Whitehead, Garrett Whitfield, Jewelia Whitfield, NaomiG6159 Whitfield, Asher Whitman, GoldEagle Whitman, Lizziey Whittenton, Athena Whizenhunt, GreenGate Widdershins, EmCee Widget, edwin Wijaya, Yamtx Wijaya, Aunnia Wilberg, Corwin Wilberg, Elric Wilberg, Johann Wilberg, Brittany Wildcat, MISGREENCHRONIC Wildcat, Bcreative Wilde, Midnight Wilde, Stormy Wilde, DJMantega Wilder, KJ Wilder, Nikki Wilder, Rebel Wilder, Terra Wilder, Infalle Wildung, Streak Wildung, Hed Williams, Michael B. Williams, Erica Williams, Benson Willis, Explorer Willis, Kithin Willis, Isandra Willunga, Kamots Wind, Merum Wind, Mystra Wind, Jaxom Winger, Alex2007 Winkler, Christopher Winkler, Frauke Winkler, Genny Winkler, Mwayne Winkler, Ridgie Winkler, Wolli Winkler, Janice Winnfield, Firefly Winx, Magus Winx, Cricket Wise, Marios Wise, AzurAA Wise, CountD Wishbringer, Heart Wishbringer, Missy Wishbringer, Caemlyn Witherspoon, Celeste Witherspoon, Kalia Withnail, Kami Woebegone, Ochi Wolfe, Salina Wolfe, kirkmegna Wombat, Luna Wood, Steve Wood, Eremia Woodbury, MeForest Woodget, Widgy Woodget, York Woodget, Patchouli Woollahra, Ronco Woolley, Kevin Woolley, Noah Woori, BiGSiN Wormser, Jaime Wormser, Dave Wormser, Joseph Worthington, Vitafit Wottitz, Keera Woyseck, Donnie Wrangler, Brandy Wright, Arian Writer, Bat Writer, Brina Writer, Dwayne Writer, FearToAll Writer, Grog Writer, Head Writer, Mne Writer, nathaniel Writer, Quixotic Writer, Riddley Writer, Two Writer, ZZ Writer, Zoya Writer, Faith Wunderland, Tommy3141 Wunderland, Evalyn Wunderlich, RainbowChef Wunderlich, Raistlin Wunderlich, Terrano Wunderlich, Wallyneumonic Wunderlich, Phil Wuyts, Carrie Wyler, London Wyler, sypher Wyler, TiTiNe Wyler, Tyron Wyler, Alaxandra Xeno, polo Xeno, Roz Xeno, Beatfox Xevious, Kamael Xevious, Leraje Xevious, eXPLORATRIX Xi, Ganesha Xi, groudon185p Xi, Kiyotei Xi, norritt Xi, Sadonya Xi, Aimee Xia, pixiedust Xia, Silky Xia, nimrod Yaffle, Yiffy Yaffle, icegirl Yalin, Jak Yalin, Kile Yamabushi, Naamah Yamabushi, OnnaYokai Yamabushi, Tengu Yamabushi, Tenshiko Yamabushi, Horseplay Yamauba, Enricob Yamdev, Lucian Yamdev, Darth Yao, Haaru Yao, Hex Yao, Milena Yao, Nyarlanathotep Yao, pescerosso Yao, Saigon Yao, TuTsi Yao, dima88 Yap, yuki Yaseotoko, Galea Yates, Originalman2000 Yates, Pumpy Yates, Sherry Yates, Tyrone Yates, Samar Yaud, Griffin Yeats, Kingsbury Yeats, Coos Yellowknife, Easy Yering, AlexYu Yifu, Jessmay Yifu, JoYoung Yifu, Lili Yifu, Snippy Yifu, Evolving Yin, Tzop Yip, Usus Yip, Moshiach Yohkoh, SolZephyr Yohkoh, Terish Yohkoh, Vicky Yongbo, Adp Yongho, Shizn Yongho, DrinkChocolate Yoshikawa, Grecco Yoshikawa, Julianus Yoshikawa, Yonagigai Yoshikawa, Yondaime Yoshikawa, Leto Yoshiro, Minako Yoshiyuki, Zindorf Yossarian, Mistral Yost, FoxSan Yosuke, Blythe Young, oiuy Young, Martyn Young, Briana Yue, cleo Yue, Dakotah Yue, Gumby Yue, Himeno Yue, nkoder Yue, Su2ndLife Yue, Seeker Yuequi, Judy Yun, Li Yun, Pielewop Zabelin, TinaDee Zabibha, Saressa Zadeh, Deathmare Zadoq, Krazzora Zaftig, Zud Zaftig, Lady Euterpe Zagoskin, Adam Zaius, Winston Zaius, Mysterious Zamboni, Dane Zander, TheDragonMaster Zander, Vallek Zander, AustinTodd Zanetti, Ianbra Zapedzki, Jill Zapedzki, skyzo Zapedzki, Supershine Zapedzki, Tristan Zapedzki, Zankoku Zapedzki, Joyce Zapedzki, Paul Zapotocky, seissab Zarf, xlene Zarf, Zyzzy Zarf, Freedom Zeami, Mala Zeami, ArbaJayba Zebaki, ToKizzable Zeddmore, Tocaelpito Zeffirelli, Nite Zelmanov, Zogborf Zelmanov, Suzanne Zeluco, Benton Zemach, Theo Zemach, Dee Zemlja, Xellessanova Zenith, Keji Zeno, Qat Zeno, Shekina Zeno, HotFoxy Zenovka, kazuku Zenovka, Lilly Zenovka, Susanne Zenovka, Talltenor Zenovka, Zola Zenovka, Hewee Zetkin, BeauZeau Zhao, malee Zhaoying, Takea Zhaoying, Maximilian Zhichao, Ricky Zhichao, Samael Zhichao, WildHeart Zhichao, Zflat Zhongyuan, Luthander Zhou, Silvanne Ziemia, Vocianna Ziemia, kankano Zinnemann, Enki Zinner, Omnephilite Zinner, Marios Ziskey, Jai Zucker, scott Zucker, Suzie Zucker, Daphnie Zuhrah, Mathoni Zuhrah, Ravi Zuma, Junkfooddog Zwiers, Aargle Zymurgy, Me Zymurgy and many others. | ||
14 | |||
15 | |||
16 | APR Copyright (C) 2000-2004 The Apache Software Foundation | ||
17 | Cg Copyright (C) 2002, NVIDIA Corporationa. | ||
18 | cURL Copyright (C) 1996-2002, Daniel Stenberg, (daniel@haxx.se) | ||
19 | expat Copyright (C) 1998, 1999, 2000 Thai Open Source Software Center Ltd. | ||
20 | FreeType Copyright (C) 1996-2002, The FreeType Project (www.freetype.org). | ||
21 | GL Copyright (C) 1999-2004 Brian Paul. | ||
22 | Havok.com(TM) Copyright (C) 1999-2001, Telekinesys Research Limited. | ||
23 | jpeg2000 Copyright (C) 2001, David Taubman, The University of New South Wales (UNSW) | ||
24 | jpeglib Copyright (C) 1991-1998, Thomas G. Lane. | ||
25 | ogg/vorbis Copyright (C) 2001, Xiphophorus | ||
26 | OpenSSL Copyright (C) 1998-2002 The OpenSSL Project. | ||
27 | SDL Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002 Sam Lantinga | ||
28 | SSLeay Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | ||
29 | xmlrpc-epi Copyright (C) 2000 Epinions, Inc. | ||
30 | zlib Copyright (C) 1995-2002 Jean-loup Gailly and Mark Adler. | ||
31 | |||
32 | All rights reserved. See licenses.txt for details. | ||
33 | |||
34 | |||
35 | Steve, just think of a snappy quote. It's not *that* hard, is it? | ||
36 | </text_editor> | ||
37 | <text_editor bg_readonly_color="0, 0, 0, 0" bottom_delta="174" embedded_items="false" | ||
38 | follows="left|top|right|bottom" font="SansSerif" height="238" left="6" | ||
39 | max_length="65536" mouse_opaque="true" name="support_editor" | ||
40 | text_color="1, 1, 1, 1" text_readonly_color="1, 1, 1, 1" width="458" | ||
41 | word_wrap="true" /> | ||
42 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/pt/floater_about_land.xml b/linden/indra/newview/skins/xui/pt/floater_about_land.xml deleted file mode 100644 index d81b8e6..0000000 --- a/linden/indra/newview/skins/xui/pt/floater_about_land.xml +++ /dev/null | |||
@@ -1,279 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <floater bottom="-554" can_close="true" can_drag_on_left="false" can_minimize="true" can_resize="false" can_tear_off="true" enabled="true" height="370" hidden="false" left="367" min_height="100" min_width="100" mouse_opaque="true" name="floaterland" rect_control="FloaterLandRect5" title="Sobre o Terreno" width="460"><tab_container bottom="-370" enabled="true" height="350" hidden="false" left="0" mouse_opaque="false" name="landtab" tab_position="top" width="460"><panel border="true" bottom="-349" enabled="true" follows="left|top|right|bottom" height="333" hidden="false" label="Geral" left="1" mouse_opaque="true" name="land_general_panel" width="458"> | ||
3 | |||
4 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-20" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" hidden="false" left="4" mouse_opaque="true" name="Name:" v_pad="0" width="72">Nome:</text> | ||
5 | |||
6 | <line_editor bevel_style="in" border_style="line" border_thickness="1" bottom="-20" enabled="true" follows="left|top" font="SansSerifSmall" handle_edit_keys_directly="false" height="16" hidden="false" left="76" max_length="63" mouse_opaque="true" name="Name" select_all_on_focus_received="false" select_on_focus="false" text_readonly_color="0.576471 0.662745 0.835294 1" width="286" /> | ||
7 | |||
8 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-40" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" hidden="false" left="4" mouse_opaque="true" name="Description:" v_pad="0" width="72">Descrio:</text> | ||
9 | |||
10 | <line_editor bevel_style="in" border_style="line" border_thickness="1" bottom="-40" enabled="true" follows="left|top" font="SansSerifSmall" handle_edit_keys_directly="false" height="16" hidden="false" left="76" max_length="127" mouse_opaque="true" name="Description" select_all_on_focus_received="false" select_on_focus="false" text_readonly_color="0.576471 0.662745 0.835294 1" width="286" /> | ||
11 | |||
12 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-60" drop_shadow_visible="true" enabled="false" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" hidden="false" left="4" mouse_opaque="true" name="SalePending" v_pad="0" width="364" /> | ||
13 | |||
14 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-80" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" hidden="false" left="4" mouse_opaque="true" name="Owner:" v_pad="0" width="72">Proprietrio:</text> | ||
15 | |||
16 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-80" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" hidden="false" left="76" mouse_opaque="true" name="OwnerText" v_pad="0" width="292">Leyla Linden</text> | ||
17 | |||
18 | <button bottom="-80" enabled="true" follows="left|top" font="SansSerifSmall" halign="center" height="16" hidden="false" label="Perfil..." label_selected="Perfil..." left="245" mouse_opaque="true" name="Profile..." scale_image="true" width="60" /> | ||
19 | |||
20 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-100" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" hidden="false" left="4" mouse_opaque="true" name="Group:" v_pad="0" width="72">Grupo:</text> | ||
21 | |||
22 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-102" drop_shadow_visible="true" enabled="false" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" hidden="false" left="76" mouse_opaque="true" name="GroupText" v_pad="0" width="150" /> | ||
23 | |||
24 | |||
25 | <button bottom="-100" enabled="true" follows="left|top" font="SansSerifSmall" halign="center" height="16" hidden="false" label="Ajustar..." label_selected="Ajustar..." left="245" mouse_opaque="true" name="Set..." scale_image="true" width="60" /> | ||
26 | |||
27 | <check_box bottom="-120" enabled="false" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Permitir posse para o grupo" left="76" mouse_opaque="true" name="check deed" radio_style="false" tool_tip="O gerente do grupo pode acionar essa terra ao grupo, ento esta ser mantida pelo gestor da ilha" width="136" /> | ||
28 | |||
29 | <button bottom="-120" enabled="false" follows="left|top" font="SansSerifSmall" halign="center" height="16" hidden="false" label="Passar..." label_selected="Deed..." left="245" mouse_opaque="true" name="Deed..." scale_image="true" tool_tip="Voc s pode acionar esta terra se voc for um gerente selecionado pelo grupo.." width="60" /> | ||
30 | |||
31 | |||
32 | <check_box bottom="-140" enabled="false" follows="left|top" font="SansSerifSmall" | ||
33 | height="16" hidden="false" initial_value="false" | ||
34 | label="Proprietrio faz contribuio com acionamento" left="76" mouse_opaque="true" | ||
35 | name="check contrib" radio_style="false" | ||
36 | tool_tip="Quando a terra acionada ao grupo, o proprietrio anterior contribui alocando terra suficiente para mant-la." | ||
37 | width="219" /> | ||
38 | |||
39 | |||
40 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-160" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" hidden="false" left="4" mouse_opaque="true" name="For Sale:" v_pad="0" width="72">A Venda:</text> | ||
41 | |||
42 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-160" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" hidden="false" left="76" mouse_opaque="true" name="Not for sale." v_pad="0" width="206">No Est a Venda.</text> | ||
43 | |||
44 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-160" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" hidden="false" left="76" mouse_opaque="true" name="For Sale: Price L$[PRICE]." v_pad="0" width="206">Preo: L$[PRICE].</text> | ||
45 | |||
46 | <button bottom="-184" enabled="true" follows="left|top" font="SansSerif" halign="center" height="20" hidden="false" label="Vender Terra..." label_selected="Vender Terra..." left="76" mouse_opaque="true" name="Sell Land..." scale_image="true" width="100" /> | ||
47 | |||
48 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-180" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" hidden="false" left="76" mouse_opaque="true" name="For sale to" v_pad="0" width="206">A venda para: [BUYER]</text> | ||
49 | |||
50 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-200" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" hidden="false" left="76" mouse_opaque="true" name="Sell with landowners objects in parcel." v_pad="0" width="206">A venda (Objetos includos).</text> | ||
51 | |||
52 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-200" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" hidden="false" left="76" mouse_opaque="true" name="Selling with no objects in parcel." v_pad="0" width="206">A Venda (Objetos no Includos).</text> | ||
53 | |||
54 | <button bottom="-224" enabled="true" follows="left|top" font="SansSerif" halign="center" height="20" hidden="false" label="Cancelar venda do terreno" label_selected="Cancelar venda do terreno" left="76" mouse_opaque="true" name="Cancel Land Sale" scale_image="true" width="140" /> | ||
55 | |||
56 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-244" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" hidden="false" left="4" mouse_opaque="true" name="Claimed:" v_pad="0" width="72">Solicitado</text> | ||
57 | |||
58 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-244" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" hidden="false" left="76" mouse_opaque="true" name="DateClaimText" v_pad="0" width="206">Ter Ago 15 13:47:25 2006</text> | ||
59 | |||
60 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-264" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" hidden="false" left="4" mouse_opaque="true" name="PriceLabel" v_pad="0" width="72">rea:</text> | ||
61 | |||
62 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-264" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" hidden="false" left="76" mouse_opaque="true" name="PriceText" v_pad="0" width="206">4048 m2.</text> | ||
63 | |||
64 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-284" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" hidden="false" left="4" mouse_opaque="true" name="Traffic:" v_pad="0" width="72">Trfego:</text> | ||
65 | |||
66 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-284" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" hidden="false" left="76" mouse_opaque="true" name="DwellText" v_pad="0" width="206">0</text> | ||
67 | |||
68 | <button bottom="-308" enabled="false" follows="left|top" font="SansSerif" halign="center" height="20" hidden="false" label="Comprar Terra..." label_selected="Comprar Terra..." left="76" mouse_opaque="true" name="Buy Land..." scale_image="true" width="100" /> | ||
69 | |||
70 | <button bottom="-308" enabled="false" follows="left|top" font="SansSerif" halign="center" height="20" hidden="false" label="Comprar para o Grupo..." label_selected="Comprar para o Grupo..." left="182" mouse_opaque="true" name="Buy For Group..." scale_image="true" width="100" /> | ||
71 | |||
72 | <button bottom="-332" enabled="false" follows="left|top" font="SansSerif" halign="center" height="20" hidden="false" label="Comprar Passe..." label_selected="Comprar Passe..." left="76" mouse_opaque="true" name="Buy Pass..." scale_image="true" tool_tip="Uma passagem concede a voc acesso temporrio a esta terra." width="100" /> | ||
73 | |||
74 | <button bottom="-332" enabled="true" follows="left|top" font="SansSerif" halign="center" height="20" hidden="false" label="Abandonar Terra.." label_selected="Abandonar Terra.." left="182" mouse_opaque="true" name="Abandon Land..." scale_image="true" width="100" /> | ||
75 | |||
76 | <button bottom="-332" enabled="true" follows="left|top" font="SansSerif" halign="center" height="20" hidden="false" label="Reclamar Terra..." label_selected="Reclamar Terra..." left="182" mouse_opaque="true" name="Reclaim Land..." scale_image="true" width="100" /> | ||
77 | |||
78 | <button bottom="-284" enabled="false" follows="left|top" font="SansSerif" halign="center" height="20" hidden="false" label="Linden Sale..." label_selected="Linden Sale..." left="182" mouse_opaque="true" name="Linden Sale..." scale_image="true" tool_tip="A terra precisa ser proprietria, estar com o contedo configurado e no estar pronta para leilo." width="100" /> | ||
79 | |||
80 | <text hidden="true" name="new users only">Somente novos usurios</text> | ||
81 | |||
82 | <text hidden="true" name="anyone">Qualquer um</text> | ||
83 | |||
84 | </panel> | ||
85 | |||
86 | <panel border="true" bottom="-349" enabled="true" follows="left|top|right|bottom" height="333" hidden="false" label="Corretor" left="1" mouse_opaque="true" name="land_covenant_panel" width="458"><text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-20" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="20" hidden="false" left="180" mouse_opaque="false" name="covenant_timestamp_text" v_pad="0" width="250">ltima Alterao: Qua, Dez 31 16:00:00 1969</text> | ||
87 | |||
88 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-40" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="20" hidden="false" left="10" mouse_opaque="false" name="region_name_lbl" v_pad="0" width="100">Regio:</text> | ||
89 | |||
90 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-40" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="20" hidden="false" left="140" mouse_opaque="false" name="region_name_text" v_pad="0" width="150">leyla</text> | ||
91 | |||
92 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-60" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="20" hidden="false" left="10" mouse_opaque="false" name="estate_name_lbl" v_pad="0" width="100">Estado:</text> | ||
93 | |||
94 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-60" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="20" hidden="false" left="140" mouse_opaque="false" name="estate_name_text" v_pad="0" width="150">mainland</text> | ||
95 | |||
96 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-80" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="20" hidden="false" left="10" mouse_opaque="false" name="estate_owner_lbl" v_pad="0" width="120">Proprietrio do Estado:</text> | ||
97 | |||
98 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-80" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="20" hidden="false" left="140" mouse_opaque="false" name="estate_owner_text" v_pad="0" width="150">(nenhum)</text> | ||
99 | |||
100 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-100" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerif" h_pad="0" halign="left" height="20" hidden="false" left="40" mouse_opaque="false" name="resellable_clause" v_pad="0" width="350">Terra comprada nesta regio no pode ser revendida.</text> | ||
101 | |||
102 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-120" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerif" h_pad="0" halign="left" height="20" hidden="false" left="40" mouse_opaque="false" name="changeable_clause" v_pad="0" width="350">Terra comrpada nesta regio no poder ser compartilhada ou sub-dividida.</text> | ||
103 | |||
104 | <text_editor type="string" length="1" bottom="-325" embedded_items="false" enabled="false" follows="left|top" font="SansSerifSmall" height="180" hidden="false" left="15" max_length="65535" mouse_opaque="true" name="covenant_editor" text_readonly_color="1 1 1 1" width="375" word_wrap="true">No h corretor para este Estado.</text_editor> | ||
105 | |||
106 | <text hidden="true" name="can_resell">Terra comprada nesta regio pode ser revendida.</text> | ||
107 | |||
108 | <text hidden="true" name="can_not_resell">Terra comprada nesta regio no pode ser revendida.</text> | ||
109 | |||
110 | <text hidden="true" name="can_change">Terra comprada nesta regio pode ser compartilhada ou | ||
111 | sub-dividida.</text> | ||
112 | |||
113 | <text hidden="true" name="can_not_change">Terra comprada nesta regio no pode ser | ||
114 | compartilhada ou sub-dividida..</text> | ||
115 | |||
116 | </panel> | ||
117 | |||
118 | |||
119 | <panel border="true" bottom="-349" enabled="true" follows="left|top|right|bottom" height="333" hidden="false" label="Objetos" left="1" mouse_opaque="true" name="land_objects_panel" width="458"><text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-20" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" hidden="false" left="4" mouse_opaque="true" name="Simulator Primitive Bonus Factor: 1.00" v_pad="0" width="364" /> | ||
120 | |||
121 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-40" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" hidden="false" left="4" mouse_opaque="true" name="Simulator primitive usage:" v_pad="0" width="364">Uso do simulador de primitivas:</text> | ||
122 | |||
123 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-40" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" hidden="false" left="170" mouse_opaque="true" name="0 out of 0 available" v_pad="0" width="212">0 a 14055 (14055 disponvel)</text> | ||
124 | |||
125 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-60" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" hidden="false" left="4" mouse_opaque="true" name="Primitives parcel supports:" v_pad="0" width="199">Primitivas suportadas pelo terreno:</text> | ||
126 | |||
127 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-60" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" hidden="false" left="196" mouse_opaque="true" name="object_contrib_text" v_pad="0" width="212">926</text> | ||
128 | |||
129 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-80" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" hidden="false" left="4" mouse_opaque="true" name="Primitives on parcel:" v_pad="0" width="152">Primitivas no Lote:</text> | ||
130 | |||
131 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-80" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" hidden="false" left="100" mouse_opaque="true" name="total_objects_text" v_pad="0" width="48">0</text> | ||
132 | |||
133 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-100" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" hidden="false" left="28" mouse_opaque="true" name="Owned by parcel owner:" v_pad="0" width="128">Pertencentes ao dono:</text> | ||
134 | |||
135 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-100" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" hidden="false" left="156" mouse_opaque="true" name="owner_objects_text" v_pad="0" width="48">0</text> | ||
136 | |||
137 | <button bottom="-100" enabled="false" follows="left|top" font="SansSerifSmall" halign="center" height="16" hidden="false" label="Mostrar" label_selected="Mostrar" left="204" mouse_opaque="true" name="ShowOwner" scale_image="true" width="50" /> | ||
138 | |||
139 | <button bottom="-100" enabled="false" follows="left|top" font="SansSerifSmall" halign="center" height="16" hidden="false" label="Retornar..." label_selected="Retornar..." left="259" mouse_opaque="true" name="ReturnOwner..." scale_image="true" tool_tip="Retorno os objetos aos seus proprietrios." width="119" /> | ||
140 | |||
141 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-120" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" hidden="false" left="28" mouse_opaque="true" name="Set to group:" v_pad="0" width="128">Configurados ao grupo:</text> | ||
142 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-120" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" hidden="false" left="156" mouse_opaque="true" name="group_objects_text" v_pad="0" width="48">0</text> | ||
143 | <button bottom="-120" enabled="false" follows="left|top" font="SansSerifSmall" halign="center" height="16" hidden="false" label="Mostrar" label_selected="Mostrar" left="204" mouse_opaque="true" name="ShowGroup" scale_image="true" width="50" /> | ||
144 | <button bottom="-120" enabled="false" follows="left|top" font="SansSerifSmall" halign="center" height="16" hidden="false" label="Retornar..." label_selected="Retornar..." left="259" mouse_opaque="true" name="ReturnGroup..." scale_image="true" tool_tip="Retornar os objetos para seus proprietrios." width="119" /> | ||
145 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-140" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" hidden="false" left="28" mouse_opaque="true" name="Owned by others:" v_pad="0" width="128">Propriedade de Outros:</text> | ||
146 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-140" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" hidden="false" left="156" mouse_opaque="true" name="other_objects_text" v_pad="0" width="48">0</text> | ||
147 | <button bottom="-140" enabled="false" follows="left|top" font="SansSerifSmall" halign="center" height="16" hidden="false" label="Mostrar" label_selected="Mostrar" left="204" mouse_opaque="true" name="ShowOther" scale_image="true" width="50" /> | ||
148 | <button bottom="-140" enabled="false" follows="left|top" font="SansSerifSmall" halign="center" height="16" hidden="false" label="Retornar..." label_selected="Retornar..." left="259" mouse_opaque="true" name="ReturnOther..." scale_image="true" tool_tip="Retornar os objetos aos seus proprietrios." width="119" /> | ||
149 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-160" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" hidden="false" left="28" mouse_opaque="true" name="Selected / sat upon:" v_pad="0" width="128">Selecionado/Sentado:</text> | ||
150 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-160" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" hidden="false" left="156" mouse_opaque="true" name="selected_objects_text" v_pad="0" width="48">0</text> | ||
151 | |||
152 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-180" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" hidden="false" left="4" mouse_opaque="true" name="Autoreturn" v_pad="0" width="294">Auto-retornar objetos dos outros residentes (minutos):</text> | ||
153 | |||
154 | <line_editor bevel_style="in" border_style="line" border_thickness="1" bottom="-180" enabled="true" follows="left|top" font="SansSerifSmall" handle_edit_keys_directly="false" height="16" hidden="false" left="302" max_length="6" mouse_opaque="true" name="clean other time" select_all_on_focus_received="false" select_on_focus="false" width="66" /> | ||
155 | |||
156 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-200" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" hidden="false" left="4" mouse_opaque="true" name="Object Owners:" v_pad="0" width="139">Proprietrios dos Objetos:</text> | ||
157 | |||
158 | <button bottom="-200" enabled="true" follows="left|top" font="SansSerifSmall" halign="center" height="16" hidden="false" label="Atualizar Lista" label_selected="Atualizar Lista" left="145" mouse_opaque="true" name="Refresh List" width="85" /> | ||
159 | |||
160 | <button bottom="-200" enabled="false" follows="left|top" font="SansSerifSmall" halign="center" height="16" hidden="false" label="Objetos Retornados..." label_selected="Objetos Retornados..." left="230" mouse_opaque="true" name="Return objects..." width="164" /> | ||
161 | |||
162 | <button bottom="-228" enabled="true" follows="left|top" font="SansSerif" halign="center" height="20" hidden="false" label="" label_selected="" left="4" mouse_opaque="true" name="Type" tool_tip="Organizar por Tipo" width="24" /> | ||
163 | |||
164 | <button bottom="-228" enabled="true" follows="left|top" font="SansSerif" halign="center" height="20" hidden="false" label="Nome" label_selected="Nome" left="28" mouse_opaque="true" name="Name" tool_tip="Organizar por Nome" width="220" /> | ||
165 | |||
166 | <button bottom="-228" enabled="true" follows="left|top" font="SansSerif" halign="center" height="20" hidden="false" label="Quantidade" label_selected="Quantidade" left="248" mouse_opaque="true" name="Count" tool_tip="Organizar por Quantidade" width="84" /> | ||
167 | |||
168 | <name_list allow_calling_card_drop="false" background_visible="false" bottom="-329" column_padding="0" draw_border="true" draw_heading="false" draw_stripes="true" enabled="true" fg_disable_color="1 1 1 1" fg_selected_color="1 1 1 1" fg_unselected_color="1 1 1 1" follows="left|top|right|bottom" height="97" hidden="false" left="4" mouse_opaque="true" multi_select="false" name="owner list" name_column_index="2" width="450" /> | ||
169 | |||
170 | </panel> | ||
171 | |||
172 | <panel border="true" bottom="-349" enabled="true" follows="left|top|right|bottom" height="333" hidden="false" label="Opes" left="1" mouse_opaque="true" name="land_options_panel" width="458"><text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-20" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" hidden="false" left="4" mouse_opaque="true" name="allow_label" v_pad="0" width="278">Permitir outros residentes a:</text> | ||
173 | |||
174 | <check_box bottom="-40" enabled="true" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Editar Terreno" left="14" mouse_opaque="true" name="edit land check" radio_style="false" width="268" /> | ||
175 | |||
176 | <check_box bottom="-60" enabled="true" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Criar Landmarks" left="14" mouse_opaque="true" name="check landmark" radio_style="false" width="268" /> | ||
177 | |||
178 | <check_box bottom="-80" enabled="true" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Voar" left="14" mouse_opaque="true" name="check fly" radio_style="false" width="268" /> | ||
179 | |||
180 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-40" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" hidden="false" left="178" mouse_opaque="true" name="allow_label2" v_pad="0" width="104">Criar Objetos:</text> | ||
181 | |||
182 | <check_box bottom="-40" enabled="true" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Residentes" left="280" mouse_opaque="true" name="edit objects check" radio_style="false" width="104" /> | ||
183 | |||
184 | <check_box bottom="-40" enabled="true" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Grupo" left="370" mouse_opaque="true" name="edit group objects check" radio_style="false" width="70" /> | ||
185 | |||
186 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-60" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" hidden="false" left="178" mouse_opaque="true" name="allow_label3" v_pad="0" width="124">Entrada do Objeto:</text> | ||
187 | |||
188 | <check_box bottom="-60" enabled="true" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Residentes" left="280" mouse_opaque="true" name="all object entry check" radio_style="false" width="120" /> | ||
189 | |||
190 | <check_box bottom="-60" enabled="true" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Grupo" left="370" mouse_opaque="true" name="group object entry check" radio_style="false" width="70" /> | ||
191 | |||
192 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-80" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" hidden="false" left="178" mouse_opaque="true" name="allow_label4" v_pad="0" width="124">Executar Scripts:</text> | ||
193 | |||
194 | <check_box bottom="-80" enabled="true" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Residentes" left="280" mouse_opaque="true" name="check other scripts" radio_style="false" width="120" /> | ||
195 | <check_box bottom="-80" enabled="true" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Grupo" left="370" mouse_opaque="true" name="check group scripts" radio_style="false" width="70" /> | ||
196 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-100" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" hidden="false" left="4" mouse_opaque="true" name="land_options_label" v_pad="0" width="278">Opes de Terra:</text> | ||
197 | <check_box bottom="-120" enabled="true" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Salvo (sem dano)" left="14" mouse_opaque="true" name="check safe" radio_style="false" width="268" /> | ||
198 | <check_box bottom="-120" enabled="true" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Restrict Pushing" left="178" mouse_opaque="true" name="PushRestrictCheck" radio_style="false" tool_tip="llPushObject s funcionar nos scripts do proprietrio do lote ou nos scripts de quem empurra." width="119" /> | ||
199 | <check_box bottom="-140" enabled="true" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Mostrar nos locais de Busca (L$30/semana) sobre" left="14" mouse_opaque="true" name="ShowDirectoryCheck" radio_style="false" width="268" /> | ||
200 | |||
201 | <combo_box allow_text_entry="false" bottom="-140" enabled="true" follows="left|top" height="18" hidden="false" left="300" max_chars="20" mouse_opaque="true" name="land category" width="130"><combo_item name="AnyCategory" value="any">Qualquer Categoria</combo_item> | ||
202 | |||
203 | <combo_item name="LindenLocation" value="linden">Locao Linden</combo_item> | ||
204 | <combo_item name="Adult" value="adult">Adulto</combo_item> | ||
205 | <combo_item name="Arts&Culture" value="arts">Artes e Cultura</combo_item> | ||
206 | <combo_item name="Business" value="store">Negcios</combo_item> | ||
207 | <combo_item name="Educational" value="educational">Educacional</combo_item> | ||
208 | <combo_item name="Gaming" value="game">Jogo</combo_item> | ||
209 | <combo_item name="Hangout" value="gather">Lazer</combo_item> | ||
210 | <combo_item name="NewcomerFriendly" value="newcomer">Amigvel para novatos</combo_item> | ||
211 | <combo_item name="Parks&Nature" value="park">Parques e Natureza</combo_item> | ||
212 | <combo_item name="Residential" value="home">Residencial</combo_item> | ||
213 | <combo_item name="Shopping" value="shopping">Compras</combo_item> | ||
214 | <combo_item name="Other" value="other">Outros</combo_item> | ||
215 | </combo_box> | ||
216 | <check_box bottom="-160" enabled="true" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Publicar lista na web" left="14" mouse_opaque="true" name="PublishCheck" radio_style="false" tool_tip="Publicar informaes do seu lote na web." width="164" /> | ||
217 | <check_box bottom="-160" enabled="true" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Mature content" left="178" mouse_opaque="true" name="MatureCheck" radio_style="false" tool_tip="As informaes do seu lote so consideradas para Adultos." width="107" /> | ||
218 | <button bottom="-160" enabled="true" follows="left|top" font="SansSerif" halign="center" height="16" hidden="false" label="?" label_selected="?" left="348" mouse_opaque="true" name="?" width="20" /> | ||
219 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-180" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" hidden="false" left="4" mouse_opaque="true" name="Snapshot:" v_pad="0" width="278">Foto:</text> | ||
220 | <texture_picker allow_no_texture="false" bottom="-299" can_apply_immediately="false" default_image_name="" enabled="true" follows="left|top" height="135" hidden="false" label="" left="76" mouse_opaque="true" name="snapshot_ctrl" tool_tip="Clique para escolher uma imagem" width="180" /> | ||
221 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-303" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" hidden="false" left="4" mouse_opaque="true" name="Landing Point: (none)" v_pad="0" width="278">Landing Point: (nenhum)</text> | ||
222 | <button bottom="-303" enabled="true" follows="left|top" font="SansSerifSmall" halign="center" height="16" hidden="false" label="Set" label_selected="Ajustar" left="236" mouse_opaque="true" name="Set" scale_image="true" tool_tip="Ajuste o landing point para a posio do seu avatr. Ele precisa ser dentro deste lote." width="50" /> | ||
223 | <button bottom="-303" enabled="true" follows="left|top" font="SansSerifSmall" halign="center" height="16" hidden="false" label="Limpar" label_selected="Limpar" left="291" mouse_opaque="true" name="Clear" scale_image="true" tool_tip="Limpar o landing point." width="50" /> | ||
224 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-323" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" hidden="false" left="4" mouse_opaque="true" name="Teleport Routing: " v_pad="0" width="278">Rota de Tele-transporte:</text> | ||
225 | |||
226 | <combo_box allow_text_entry="false" bottom="-325" enabled="true" follows="left|top" height="18" hidden="false" left="140" max_chars="20" mouse_opaque="true" name="landing type" tool_tip="Rota de Teletransporte -- Selecione como tratar os tele-transportes no seu lote." width="120"><combo_item type="string" length="1" enabled="true" name="Blocked" value="Blocked">Bloqueado</combo_item> | ||
227 | |||
228 | <combo_item type="string" length="1" enabled="true" name="LandingPoint" value="Landing Point">Landing Point</combo_item> | ||
229 | <combo_item type="string" length="1" enabled="true" name="Anywhere" value="Anywhere">Qualquer lugar</combo_item> | ||
230 | </combo_box> | ||
231 | </panel> | ||
232 | |||
233 | <panel border="true" bottom="-349" enabled="true" follows="left|top|right|bottom" height="333" hidden="false" label="Mdia" left="1" mouse_opaque="true" name="land_media_panel" width="458"><check_box bottom="-20" enabled="true" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Restringir som espacial a este lote" left="96" mouse_opaque="true" name="check sound local" radio_style="false" width="292" /> | ||
234 | |||
235 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-48" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" hidden="false" left="4" mouse_opaque="true" name="Music URL:" v_pad="0" width="364">URL Msica:</text> | ||
236 | |||
237 | <line_editor bevel_style="in" border_style="line" border_thickness="1" bottom="-48" enabled="true" follows="left|top" font="SansSerifSmall" handle_edit_keys_directly="false" height="16" hidden="false" left="96" max_length="255" mouse_opaque="true" name="music_url" select_all_on_focus_received="true" select_on_focus="true" text_readonly_color="0.576471 0.662745 0.835294 1" width="292" /> | ||
238 | |||
239 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-76" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" hidden="false" left="4" mouse_opaque="true" name="Media texture:" v_pad="0" width="364">Textura de Mdia:</text> | ||
240 | |||
241 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-76" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" hidden="false" left="96" mouse_opaque="true" name="Replace this texture:" v_pad="0" width="292">Substituir esta Textura:</text> | ||
242 | |||
243 | |||
244 | <texture_picker allow_no_texture="true" bottom="-144" can_apply_immediately="false" default_image_name="Default" enabled="true" follows="left|top" height="64" hidden="false" label="" left="96" mouse_opaque="true" name="media texture" tool_tip="Clique para escolher uma imagem" width="64" /> | ||
245 | |||
246 | |||
247 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-154" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" hidden="false" left="96" mouse_opaque="true" name="with content from this URL:" v_pad="0" width="292">com contedo desta URL:</text> | ||
248 | |||
249 | <line_editor bevel_style="in" border_style="line" border_thickness="1" bottom="-172" enabled="true" follows="left|top" font="SansSerifSmall" handle_edit_keys_directly="false" height="16" hidden="false" left="96" max_length="255" mouse_opaque="true" name="media_url" select_all_on_focus_received="true" select_on_focus="true" text_readonly_color="0.576471 0.662745 0.835294 1" width="292" /> | ||
250 | |||
251 | <check_box bottom="-208" enabled="true" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Conteudo Auto-Ajustavel (lento e reduz a qualidade visual)" left="96" mouse_opaque="true" name="media_auto_scale" radio_style="false" tool_tip="Marcando esta opo o contedo se ajustar ao lote automaticamente. O lote pode se tornar lento e com baixa qualidade visual nenhum outro ajuste de textura ou alinhamento ser necessrio." width="308" /> | ||
252 | </panel> | ||
253 | |||
254 | <panel border="true" bottom="-349" enabled="true" follows="left|top|right|bottom" height="333" hidden="false" label="Acesso" left="1" mouse_opaque="true" name="land_access_panel" width="458"><text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-20" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" hidden="false" left="4" mouse_opaque="true" name="Limit access to this parcel to:" v_pad="0" width="278">Limitar acesso a este lote a:</text> | ||
255 | |||
256 | <check_box bottom="-40" enabled="true" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Grupo: (nenhum)" left="4" mouse_opaque="true" name="GroupCheck" radio_style="false" width="278" /> | ||
257 | |||
258 | <check_box bottom="-60" enabled="true" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Avatares: (0 listados, 300 mx.)" left="4" mouse_opaque="true" name="AccessCheck" radio_style="false" width="278" /> | ||
259 | <name_list allow_calling_card_drop="false" background_visible="true" bottom="-144" column_padding="5" draw_border="true" draw_heading="false" draw_stripes="true" enabled="true" follows="left|top" height="80" hidden="false" left="28" mouse_opaque="true" multi_select="false" name="AccessList" width="254" /> | ||
260 | <button bottom="-164" enabled="true" follows="left|top" font="SansSerifSmall" halign="center" height="16" hidden="false" label="Incluir..." label_selected="Incluir..." left="28" mouse_opaque="true" name="Add..." scale_image="true" width="64" /> | ||
261 | <button bottom="-164" enabled="false" follows="left|top" font="SansSerifSmall" halign="center" height="16" hidden="false" label="Remover" label_selected="Remover" left="96" mouse_opaque="true" name="Remove" scale_image="true" width="64" /> | ||
262 | <check_box bottom="-184" enabled="false" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Vender passes permitindo acesso temporrio:" left="28" mouse_opaque="true" name="PassCheck" radio_style="false" width="254" /> | ||
263 | <spinner bottom="-204" enabled="false" follows="left|top" height="16" hidden="false" increment="1" initial_val="10" label="Preo em L$:" label_width="128" left="76" max_val="500" min_val="1" mouse_opaque="true" name="PriceSpin" width="206" /> | ||
264 | <spinner bottom="-224" enabled="false" follows="left|top" height="16" hidden="false" increment="0.25" initial_val="1" label="Horas de Acesso:" label_width="128" left="76" max_val="24" min_val="0.01" mouse_opaque="true" name="HoursSpin" width="206" /> | ||
265 | </panel> | ||
266 | |||
267 | <panel border="true" bottom="-349" enabled="true" follows="left|top|right|bottom" height="333" hidden="false" label="Banir" left="1" mouse_opaque="true" name="land_ban_panel" width="458"><check_box bottom="-20" enabled="true" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Banir estes Avatares: (0 listados, 300 mx.)" left="4" mouse_opaque="true" name="LandBanCheck" radio_style="false" width="278" /> | ||
268 | |||
269 | <name_list allow_calling_card_drop="false" background_visible="true" bottom="-104" column_padding="5" draw_border="true" draw_heading="false" draw_stripes="true" enabled="true" follows="left|top" height="80" hidden="false" left="28" mouse_opaque="true" multi_select="false" name="LandBanList" width="254" /> | ||
270 | |||
271 | <button bottom="-124" enabled="true" follows="left|top" font="SansSerifSmall" halign="center" height="16" hidden="false" label="Incluir..." label_selected="Incluir..." left="28" mouse_opaque="true" name="Add..." scale_image="true" width="64" /> | ||
272 | <button bottom="-124" enabled="false" follows="left|top" font="SansSerifSmall" halign="center" height="16" hidden="false" label="Remover" label_selected="Remover" left="96" mouse_opaque="true" name="Remove" scale_image="true" width="64" /> | ||
273 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-144" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" hidden="false" left="4" mouse_opaque="true" name="Deny by Payment Status:" v_pad="0" width="278">Negado por Situao de Pagamento:</text> | ||
274 | <check_box bottom="-164" enabled="true" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Negar Sem Informao de Pagamento no Arquivo" left="28" mouse_opaque="true" name="DenyAnonymousCheck" radio_style="false" width="254" /> | ||
275 | <check_box bottom="-184" enabled="true" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Negar Informao de Pagamento no Arquivo" left="28" mouse_opaque="true" name="DenyIdentifiedCheck" radio_style="false" width="254" /> | ||
276 | <check_box bottom="-204" enabled="true" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Negar Informao de Pagamento Usada" left="28" mouse_opaque="true" name="DenyTransactedCheck" radio_style="false" width="254" /> | ||
277 | </panel> | ||
278 | </tab_container> | ||
279 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/pt/floater_account_history.xml b/linden/indra/newview/skins/xui/pt/floater_account_history.xml deleted file mode 100644 index 77b543e..0000000 --- a/linden/indra/newview/skins/xui/pt/floater_account_history.xml +++ /dev/null | |||
@@ -1,4 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <floater can_close="true" can_drag_on_left="false" can_minimize="true" can_resize="true" height="350" min_height="100" min_width="100" name="money history floater" title="Histrico de conta" width="500"><tab_container bottom="-346" follows="left|top|right|bottom" height="326" left="4" mouse_opaque="false" name="tab" tab_position="left" width="492" /> | ||
3 | <button bottom="-346" follows="left|bottom" font="SansSerif" halign="center" height="20" label="Mais Detalhes..." label_selected="Mais Detalhes..." left="4" mouse_opaque="true" name="details_btn" width="100" /> | ||
4 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/pt/floater_animation_preview.xml b/linden/indra/newview/skins/xui/pt/floater_animation_preview.xml deleted file mode 100644 index 5213fd9..0000000 --- a/linden/indra/newview/skins/xui/pt/floater_animation_preview.xml +++ /dev/null | |||
@@ -1,63 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <floater can_close="true" can_drag_on_left="false" can_minimize="false" can_resize="false" height="520" min_height="520" min_width="300" name="Animation Preview" title="" width="300"><pad height="12" /> | ||
3 | <text follows="top|left" height="15" left="10" name="name_label">Nome:</text> | ||
4 | <line_editor bottom_delta="-2" follows="top|left|right" height="19" left="45" max_length="254" name="name_form" right="-10" /> | ||
5 | <text bottom_delta="-22" follows="top|left" height="15" left="10" name="description_label">Descrio:</text> | ||
6 | <line_editor bottom_delta="-2" follows="top|left|right" height="19" left="75" max_length="254" name="description_form" right="-10" /> | ||
7 | <pad height="7" /> | ||
8 | <spinner follows="left|top" height="18" increment="1" initial_val="0" label="Prioridade" label_width="50" left="10" max_val="4" min_val="0" name="priority" tool_tip="Controle com o qual umas animaes podem ser sobrepostas por outras." width="90" /> | ||
9 | <text bottom_delta="3" follows="top|left" height="15" left="110" name="preview_label">Prever enquanto</text> | ||
10 | <combo_box bottom_delta="-2" follows="left|top" height="18" label="" left="185" name="preview_base_anim" right="-10" tool_tip="Use isso para testar o comportamento de sua animao enquanto seu avatar executa aes comuns."><combo_item name="Standing">Parado</combo_item> | ||
11 | <combo_item name="Walking">Andando</combo_item> | ||
12 | <combo_item name="Sitting">Sentando</combo_item> | ||
13 | <combo_item name="Flying">Voando</combo_item> | ||
14 | </combo_box> | ||
15 | <check_box bottom_delta="-23" follows="left|top" height="18" label="Loop" left="10" name="loop_check" tool_tip="Executa a animao repetidamente." /> | ||
16 | <spinner bottom_delta="-2" follows="left|top" height="18" increment="1" initial_val="0" label="Dentro(%)" label_width="30" left="80" max_val="100" min_val="0" name="loop_in_point" tool_tip="Ajusta o ponto onde a repetio comea." width="90" /> | ||
17 | <spinner bottom_delta="0" follows="left|top" height="18" increment="1" initial_val="0" label="Fora(%)" label_width="40" left="185" max_val="100" min_val="0" name="loop_out_point" tool_tip="Ajusta o ponto onde a repetio termina." /> | ||
18 | <text bottom_delta="-20" follows="top|left" height="15" left="10" name="hand_label">Posio Manual</text> | ||
19 | <combo_box bottom_delta="-2" follows="left|top" height="18" label="" left="70" name="hand_pose_combo" right="190" tool_tip="Controla o que as mos fazem durante a animao"><combo_item name="Spread" value="">Espreguiar</combo_item> | ||
20 | <combo_item name="Relaxed" value="Hands_Relaxed">Relaxado</combo_item> | ||
21 | <combo_item name="PointBoth" value="Hands_Point">Apontar Ambos</combo_item> | ||
22 | <combo_item name="Fist" value="Hands_Fist">Punho</combo_item> | ||
23 | <combo_item name="RelaxedLeft" value="Hands_Relaxed_L">Relaxado para Esquerda</combo_item> | ||
24 | <combo_item name="PointLeft" value="Hands_Point_L">Apontar Esquerda</combo_item> | ||
25 | <combo_item name="FistLeft" value="Hands_Fist_L">Punho Esquerdo </combo_item> | ||
26 | <combo_item name="RelaxedRight" value="Hands_Relaxed_R">Relaxado para Direita</combo_item> | ||
27 | <combo_item name="PointRight" value="Hands_Point_R">Apontar Direita</combo_item> | ||
28 | <combo_item name="FistRight" value="Hands_Fist_R">Punho Direito</combo_item> | ||
29 | <combo_item name="SaluteRight" value="Hands_Salute_R">Saudar Direita</combo_item> | ||
30 | <combo_item name="Typing" value="Hands_Typing">Digitando</combo_item> | ||
31 | <combo_item name="PeaceRight" value="Hands_Peace_R">Pacfico Direita</combo_item> | ||
32 | </combo_box> | ||
33 | <text bottom_delta="-22" follows="top|left" height="15" left="10" name="emote_label">Expresso</text> | ||
34 | <combo_box bottom_delta="-2" follows="left|top" height="18" label="" left="70" name="emote_combo" right="190" tool_tip="Controla o que a face faz durante a animao."><combo_item name="[None]">[None]</combo_item> | ||
35 | <combo_item name="Aaaaah">Aaaaah</combo_item> | ||
36 | <combo_item name="Afraid">Temeroso</combo_item> | ||
37 | <combo_item name="Angry">Raivoso</combo_item> | ||
38 | <combo_item name="BigSmile">Sorriso</combo_item> | ||
39 | <combo_item name="Bored">Entediado</combo_item> | ||
40 | <combo_item name="Cry">Chorar</combo_item> | ||
41 | <combo_item name="Disdain">Desprezar</combo_item> | ||
42 | <combo_item name="Embarrassed">Envergonhado</combo_item> | ||
43 | <combo_item name="Frown">Franzir a testa</combo_item> | ||
44 | <combo_item name="Kiss">Beijar</combo_item> | ||
45 | <combo_item name="Laugh">Rir</combo_item> | ||
46 | <combo_item name="Plllppt">Plllppt</combo_item> | ||
47 | <combo_item name="Repulsed">Enojado</combo_item> | ||
48 | <combo_item name="Sad">Triste</combo_item> | ||
49 | <combo_item name="Shrug">Indiferena</combo_item> | ||
50 | <combo_item name="Smile">Sorriso</combo_item> | ||
51 | <combo_item name="Surprise">Surpreso</combo_item> | ||
52 | <combo_item name="Wink">Piscar</combo_item> | ||
53 | <combo_item name="Worry">Preocupado</combo_item> | ||
54 | </combo_box> | ||
55 | <spinner bottom_delta="-25" follows="left|top" height="18" increment="0.01" initial_val="0" label="Ease In (sec)" label_width="65" left="10" max_val="10" min_val="0" name="ease_in_time" tool_tip="Quantidade de tempo (em segundos) para que as animaes se mesclem." width="125" /> | ||
56 | <spinner bottom_delta="0" follows="left|top" height="18" increment="0.01" initial_val="0" label="Ease Out (sec)" label_width="75" left="150" max_val="10" min_val="0" name="ease_out_time" tool_tip="Quantidade de tempo (em segundos) para que a animaes se mesclem." width="135" /> | ||
57 | <button bottom="300" follows="top|right" height="28" label="" left="10" name="play_btn" tool_tip="Executa/pausa sua animao." width="28" /> | ||
58 | <button bottom_delta="0" follows="top|right" height="28" label="" left_delta="32" name="stop_btn" tool_tip="Interrompe a execuo da animao." width="28" /> | ||
59 | <slider bottom="305" follows="top|right" height="20" increment="0.0001" initial_val="0" label="" label_width="0" left="80" max_val="1" min_val="0" name="playback_slider" right="290" show_text="false" /> | ||
60 | <text bottom="250" follows="top|left" left="10" name="bad_animation_text">Incapaz de ler o arquivo de animao. Ns recomendamos exportar arquivos BVH do Poser 4.</text> | ||
61 | <button bottom="10" follows="bottom|right" height="20" label="Cancelar" left="182" name="cancel_btn" width="64" /> | ||
62 | <button bottom="10" follows="bottom|left" height="20" label="Carregar (L$[AMOUNT])" left="31" name="ok_btn" width="110" /> | ||
63 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/pt/floater_auction.xml b/linden/indra/newview/skins/xui/pt/floater_auction.xml deleted file mode 100644 index 41239dc..0000000 --- a/linden/indra/newview/skins/xui/pt/floater_auction.xml +++ /dev/null | |||
@@ -1,11 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <floater can_close="true" can_drag_on_left="false" can_minimize="true" can_resize="true" height="368" min_height="368" min_width="420" name="floater_auction" title="Terrenos" width="420"><icon bottom="88" follows="left|right|top|bottom" left="4" name="snapshot_icon" right="-4" top="-24" /> | ||
3 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-308" drop_shadow_visible="true" follows="left|right|bottom" font="SansSerifSmall" h_pad="0" halign="left" height="16" left="4" mouse_opaque="true" name="parcel_text" v_pad="0" width="400" /> | ||
4 | <check_box bottom_delta="-28" follows="left|bottom" font="SansSerifSmall" height="16" initial_value="true" label="Incluir marcador de seleo amarelo" left="4" mouse_opaque="true" name="fence_check" width="199" /> | ||
5 | <combo_box bottom="-336" follows="left|bottom" height="16" left_delta="199" mouse_opaque="true" name="saletype_combo" width="100"><combo_item name="Auction">Leilo</combo_item> | ||
6 | <combo_item name="FirstLand">Primeiro Lote</combo_item> | ||
7 | </combo_box> | ||
8 | <button bottom="-360" follows="left|bottom" font="SansSerif" halign="center" height="20" label="Foto" label_selected="Foto" left="4" mouse_opaque="true" name="snapshot_btn" width="96" /> | ||
9 | <button bottom="-360" follows="left|bottom" font="SansSerif" halign="center" height="20" label="OK" label_selected="OK" left_delta="100" mouse_opaque="true" name="ok_btn" width="48" /> | ||
10 | <text hidden="true" name="already for sale">Voc no pode leiloar terrenos que j esto configurados para venda.</text> | ||
11 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/pt/floater_avatar_picker.xml b/linden/indra/newview/skins/xui/pt/floater_avatar_picker.xml deleted file mode 100644 index ee2f6ca..0000000 --- a/linden/indra/newview/skins/xui/pt/floater_avatar_picker.xml +++ /dev/null | |||
@@ -1,24 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | |||
3 | <floater bottom="-380" can_close="true" can_drag_on_left="false" can_minimize="true" can_resize="true" height="380" hidden="false" left="400" min_height="340" min_width="200" mouse_opaque="true" name="avatarpicker" title="Escolha de pessoa" width="240"> | ||
4 | |||
5 | |||
6 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-40" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" hidden="false" left="12" mouse_opaque="true" name="Type part of the resident's name:" v_pad="0" width="220">Digite o nome da pessoa:</text> | ||
7 | |||
8 | <line_editor bevel_style="in" border_style="line" border_thickness="1" bottom_delta="-16" follows="left|top|right" font="SansSerifSmall" height="16" hidden="false" left="12" max_length="254" mouse_opaque="true" name="Edit" select_on_focus="false" width="132" /> | ||
9 | |||
10 | <button bottom="-60" follows="top|right" font="SansSerif" halign="center" height="20" hidden="false" label="Encontrar" label_selected="Encontrar" left_delta="140" mouse_opaque="true" name="Find" scale_image="TRUE" width="80" /> | ||
11 | |||
12 | <scroll_list background_visible="true" bottom="-224" column_padding="5" draw_border="true" draw_heading="false" draw_stripes="true" follows="left|top|right" height="160" hidden="false" left="12" mouse_opaque="true" multi_select="false" name="Names" width="220" /> | ||
13 | |||
14 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-24" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" hidden="false" left="12" mouse_opaque="true" name="Or select their calling card:" v_pad="0" width="220">Ou selecione um carto:</text> | ||
15 | |||
16 | <inventory_panel allow_multi_select="false" border="true" bottom_delta="-100" follows="left|top|right|bottom" height="100" hidden="false" left="12" mouse_opaque="true" name="Inventory Panel" sort_order="AvatarPickerSortOrder" width="220" /> | ||
17 | |||
18 | <button bottom_delta="-28" follows="left|bottom" font="SansSerif" halign="center" height="20" hidden="false" label="Selecionar" label_selected="Selecionar" left="12" mouse_opaque="true" name="Select" scale_image="TRUE" width="80" /> | ||
19 | |||
20 | <button bottom="-376" follows="left|bottom" font="SansSerif" halign="center" height="20" hidden="false" label="Fechar" label_selected="Fechar" left_delta="88" mouse_opaque="true" name="Close" scale_image="TRUE" width="80" /> | ||
21 | |||
22 | <text hidden="true" name="NotFound">'[TEXT]' no encontrado</text> | ||
23 | |||
24 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/pt/floater_avatar_textures.xml b/linden/indra/newview/skins/xui/pt/floater_avatar_textures.xml deleted file mode 100644 index 19107f0..0000000 --- a/linden/indra/newview/skins/xui/pt/floater_avatar_textures.xml +++ /dev/null | |||
@@ -1,25 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <floater can_close="true" can_drag_on_left="false" can_minimize="true" can_resize="false" height="800" name="avatar_texture_debug" title="Textura do Avatar" width="960"><text bottom="-40" height="16" left="10" name="" width="80">Texturas prontas</text> | ||
3 | <text bottom="-40" height="16" left="150" name="" width="120">Texturas Compostas</text> | ||
4 | <texture_picker bottom_delta="-150" height="143" label="Cabea" left="10" name="baked_head" width="128" /> | ||
5 | <texture_picker bottom_delta="0" height="143" label="Maquiagem" left_delta="135" name="head_bodypaint" width="128" /> | ||
6 | <texture_picker bottom_delta="0" height="143" label="Cabelo" left_delta="270" name="hair" width="128" /> | ||
7 | <button bottom_delta="0" font="SansSerif" halign="center" height="20" hidden="false" label="Tombar" label_selected="Tombar" left_delta="125" mouse_opaque="true" name="Dump" scale_image="TRUE" width="80" /> | ||
8 | <texture_picker bottom_delta="-150" height="143" label="Olhos" left="10" name="baked_eyes" width="128" /> | ||
9 | <texture_picker bottom_delta="0" height="143" label="Olho" left_delta="135" name="eye_texture" width="128" /> | ||
10 | <texture_picker bottom_delta="-150" height="143" label="Parte de cima" left="10" name="baked_upper_body" width="128" /> | ||
11 | <texture_picker bottom_delta="0" height="143" label="Tatuagem para partes de cima" left_delta="135" name="upper_bodypaint" width="128" /> | ||
12 | <texture_picker bottom_delta="0" height="143" label="Camiseta" left_delta="135" name="undershirt" width="128" /> | ||
13 | <texture_picker bottom_delta="0" height="143" label="Luvas" left_delta="135" name="gloves" width="128" /> | ||
14 | <texture_picker bottom_delta="0" height="143" label="Camisa" left_delta="135" name="shirt" width="128" /> | ||
15 | <texture_picker bottom_delta="0" height="143" label="Jaqueta" left_delta="135" name="upper_jacket" width="128" /> | ||
16 | <texture_picker bottom_delta="-150" height="143" label="Parte de baixo" left="10" name="baked_lower_body" width="128" /> | ||
17 | <texture_picker bottom_delta="0" height="143" label="Tatuagem para partes de baixo" left_delta="135" name="lower_bodypaint" width="128" /> | ||
18 | <texture_picker bottom_delta="0" height="143" label="Roupas de baixo" left_delta="135" name="underpants" width="128" /> | ||
19 | <texture_picker bottom_delta="0" height="143" label="Meias" left_delta="135" name="socks" width="128" /> | ||
20 | <texture_picker bottom_delta="0" height="143" label="Calados" left_delta="135" name="shoes" width="128" /> | ||
21 | <texture_picker bottom_delta="0" height="143" label="Calas" left_delta="135" name="pants" width="128" /> | ||
22 | <texture_picker bottom_delta="0" height="143" label="Jaqueta" left_delta="135" name="jacket" width="128" /> | ||
23 | <texture_picker bottom_delta="-150" height="143" label="Saia" left="10" name="baked_skirt" width="128" /> | ||
24 | <texture_picker bottom_delta="0" height="143" label="Saia" left_delta="135" name="skirt_texture" width="128" /> | ||
25 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/pt/floater_build_options.xml b/linden/indra/newview/skins/xui/pt/floater_build_options.xml deleted file mode 100644 index 45e7874..0000000 --- a/linden/indra/newview/skins/xui/pt/floater_build_options.xml +++ /dev/null | |||
@@ -1,8 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <floater bottom="-297" can_close="true" can_drag_on_left="false" can_minimize="true" can_resize="false" follows="right" height="130" left="298" min_height="130" min_width="272" mouse_opaque="true" name="build options floater" rect_control="FloaterBuildOptionsRect" title="Opes de grade" width="272"><spinner bottom="-53" control_name="GridResolution" decimal_digits="3" follows="left|top" height="16" increment="0.1" initial_val="1" label="Uni. Grade (metros)" label_width="110" left="14" max_val="5" min_val="0.01" mouse_opaque="true" name="GridResolution" width="170" /> | ||
3 | |||
4 | |||
5 | <spinner bottom_delta="-21" control_name="GridDrawSize" decimal_digits="1" follows="left|top" height="16" increment="0.5" initial_val="5" label="Ext. da Grade (metros)" label_width="110" left="14" max_val="50" min_val="1" mouse_opaque="true" name="GridDrawSize" width="170" /> | ||
6 | <check_box bottom_delta="-21" control_name="GridSubUnit" follows="left|top" font="SansSerifSmall" height="16" initial_value="false" label="Habilitar ajuste de sub-grade" left="14" mouse_opaque="true" name="GridSubUnit" width="200" /> | ||
7 | <slider bottom_delta="-21" can_edit_text="false" control_name="GridOpacity" decimal_digits="3" follows="left" height="16" increment="0.05" initial_val="0.7" label="Opacidade da grade" left="14" max_val="1" min_val="0" mouse_opaque="true" name="GridOpacity" show_text="false" value="0.7" width="200" /> | ||
8 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/pt/floater_bumps.xml b/linden/indra/newview/skins/xui/pt/floater_bumps.xml deleted file mode 100644 index bced111..0000000 --- a/linden/indra/newview/skins/xui/pt/floater_bumps.xml +++ /dev/null | |||
@@ -1,9 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <floater bottom="-572" can_close="true" can_drag_on_left="false" can_minimize="true" can_resize="false" enabled="true" height="180" hidden="false" left="0" min_height="100" min_width="100" mouse_opaque="true" name="floater_bumps" rect_control="FloaterBumpRect" title="Colises, impulsos e batidas" width="400"><scroll_list background_visible="true" bottom="-172" column_padding="5" draw_border="false" draw_heading="false" draw_stripes="true" enabled="true" follows="left|top|right|bottom" height="152" hidden="false" left="6" mouse_opaque="true" multi_select="true" name="bump_list" width="388" /> | ||
3 | <text hidden="true" name="none_detected">Nada detectado</text> | ||
4 | <text hidden="true" name="bump">[TIME] [FIRST] [LAST] conflitou com voc</text> | ||
5 | <text hidden="true" name="llpushobject">[TIME] [FIRST] [LAST] empurrou voc com um script</text> | ||
6 | <text hidden="true" name="selected_object_collide">[TIME] [FIRST] [LAST] o atingiu com um objeto</text> | ||
7 | <text hidden="true" name="scripted_object_collide">[TIME] [FIRST] [LAST] o atingiu com um objeto programado (scripted)</text> | ||
8 | <text hidden="true" name="physical_object_collide">[TIME] [FIRST] [LAST] o atingiu com um objeto fsico</text> | ||
9 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/pt/floater_buy_contents.xml b/linden/indra/newview/skins/xui/pt/floater_buy_contents.xml deleted file mode 100644 index 6fc1e04..0000000 --- a/linden/indra/newview/skins/xui/pt/floater_buy_contents.xml +++ /dev/null | |||
@@ -1,10 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <floater can_close="true" can_drag_on_left="false" can_minimize="true" can_resize="true" height="250" min_height="150" min_width="200" name="floater_buy_contents" rect_control="FloaterBuyContentsRect" title="Comprar contedo" width="300"><text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-40" drop_shadow_visible="true" follows="left|top|right" font="SansSerif" h_pad="0" halign="left" height="16" left="15" mouse_opaque="true" name="contains_text" v_pad="0" width="281">[NAME] contm:</text> | ||
3 | <scroll_list background_visible="false" bottom_delta="-152" column_padding="5" draw_border="true" fg_disable_color="1, 1, 1, 1" fg_selected_color="1, 1, 1, 1" fg_unselected_color="1, 1, 1, 1" follows="left|top|right|bottom" height="148" left="15" mouse_opaque="true" multi_select="false" name="item_list" width="281"><column name="icon" width="16" /> | ||
4 | <column name="text" width="300" /> | ||
5 | </scroll_list> | ||
6 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-28" drop_shadow_visible="true" follows="left|right|bottom" font="SansSerif" h_pad="0" halign="left" height="24" left="15" mouse_opaque="true" name="buy_text" v_pad="0" width="281">Comprar por L$[AMOUNT] de(a) [NAME]?</text> | ||
7 | <button bottom="-244" follows="right|bottom" font="SansSerif" halign="center" height="20" label="Cancelar" label_selected="Cancelar" left="216" mouse_opaque="true" name="cancel_btn" width="60" /> | ||
8 | <button bottom="-244" follows="right|bottom" font="SansSerif" halign="center" height="20" label="Comprar" label_selected="Comprar" left_delta="-64" mouse_opaque="true" name="buy_btn" width="60" /> | ||
9 | <check_box bottom="-244" follows="left|bottom" font="SansSerifSmall" height="20" initial_value="false" label="Vestir roupa agora" left_delta="-139" mouse_opaque="true" name="wear_check" width="135" /> | ||
10 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/pt/floater_buy_currency.xml b/linden/indra/newview/skins/xui/pt/floater_buy_currency.xml deleted file mode 100644 index a999690..0000000 --- a/linden/indra/newview/skins/xui/pt/floater_buy_currency.xml +++ /dev/null | |||
@@ -1,11 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <floater can_close="true" can_drag_on_left="false" can_minimize="false" can_resize="false" height="110" min_height="270" min_width="350" name="buy currency" title="Adquira Lindens (L$)" width="335"> | ||
3 | |||
4 | <text bottom_delta="-50" follows="top|left" height="32" left="10" name="cp" right="-20" text_color="white">A partir de agora voc j pode comprar seus Lindens. | ||
5 | |||
6 | Para isso, siga at o menu superior e clique no item | ||
7 | Sevios e em seguida selecione "Compra de Lindens". | ||
8 | </text> | ||
9 | <button bottom_delta="-55" follows="top|left" height="20" label="Fechar" left="-100" name="cancel_btn" width="60" /> | ||
10 | |||
11 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/pt/floater_buy_land.xml b/linden/indra/newview/skins/xui/pt/floater_buy_land.xml deleted file mode 100644 index b63db68..0000000 --- a/linden/indra/newview/skins/xui/pt/floater_buy_land.xml +++ /dev/null | |||
@@ -1,93 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <floater can_close="true" can_drag_on_left="false" can_minimize="false" can_resize="false" height="484" min_height="484" min_width="440" name="buy land" title="Comprar terreno" width="740"><text bg_readonly_color="clear" bottom_delta="-35" follows="left|top" font="SansSerifSmall" height="14" left="440" name="region_name_label" right="725" text_readonly_color="white" width="60" word_wrap="true">Regio:</text> | ||
3 | <text bg_readonly_color="clear" bottom_delta="0" follows="left|top" font="SansSerifSmall" height="14" left="540" name="region_name_text" text_readonly_color="white" width="130">(desconhecido)</text> | ||
4 | <text bg_readonly_color="clear" follows="left|top" font="SansSerifSmall" height="14" left="440" name="estate_name_label" right="725" text_readonly_color="white" width="60" word_wrap="true">Estado:</text> | ||
5 | <text bg_readonly_color="clear" bottom_delta="0" follows="left|top" font="SansSerifSmall" height="14" left="540" name="estate_name_text" text_readonly_color="white" width="130">(desconhecido)</text> | ||
6 | <text bg_readonly_color="clear" follows="left|top" font="SansSerifSmall" height="20" left="440" name="estate_owner_label" right="540" text_readonly_color="white" width="100" word_wrap="true">Proprietrio da Regio:</text> | ||
7 | <text bg_readonly_color="clear" bottom_delta="0" follows="left|top" font="SansSerifSmall" height="20" left="540" name="estate_owner_text" text_readonly_color="white" width="130">(desconhecido)</text> | ||
8 | <text bg_readonly_color="clear" follows="left|top" font="SansSerif" height="16" left="440" name="resellable_changeable_label" right="725" text_readonly_color="white" width="260" word_wrap="true">Adquiriu um lote nesta regio:</text> | ||
9 | <text bg_readonly_color="clear" follows="left|top" font="SansSerifSmall" height="16" left="470" name="resellable_clause" right="725" text_readonly_color="white" width="260" word_wrap="true">O lote adquirido nesta regio pode, ou no, ser revendido.</text> | ||
10 | <text bg_readonly_color="clear" follows="left|top" font="SansSerifSmall" height="16" left="470" name="changeable_clause" right="725" text_readonly_color="white" width="260" word_wrap="true">Pode, ou no, ser unido ou subdividido.</text> | ||
11 | <text follows="" height="16" left="440" name="covenant_text" right="725" text_color="white" width="260">Voc deve concordar com o Corretor da Regio:</text> | ||
12 | <text bg_readonly_color="clear" bottom_delta="-12" follows="left|top" font="SansSerifSmall" height="12" left="515" name="covenant_timestamp_text" right="725" text_readonly_color="white" width="260" word_wrap="true" /> | ||
13 | <text_editor bg_readonly_color="clear" bottom_delta="-260" enabled="false" follows="top|right" font="SansSerifSmall" height="255" left="440" max_length="65535" name="covenant_editor" right="725" text_readonly_color="white" width="275" word_wrap="true">Carregando...</text_editor> | ||
14 | <check_box follows="left|top" height="20" label="Eu concordo com as definies do Corretor feitas acima." left="440" name="agree_covenant" right="725" width="275" /> | ||
15 | <texture_picker bottom_delta="290" enabled="false" follows="top|left" height="135" left="224" name="info_image" right="404" width="180" /> | ||
16 | <text bottom_delta="119" follows="top|left" font="SansSerifSmall" left="16" name="info_parcel_label" text_color="white" width="48">Lote:</text> | ||
17 | <text bottom_delta="-5" follows="top|left" font="SansSerif" height="16" left="56" name="info_parcel" right="400" text_color="white">Scotopteryx 138,204</text> | ||
18 | <text follows="top|left" font="SansSerifSmall" left="16" name="info_size_label" text_color="white" width="48">Tamanho:</text> | ||
19 | <text bottom_delta="-21" follows="top|left" font="SansSerif" height="32" left="56" name="info_size" right="400" text_color="white">1024 m</text> | ||
20 | <text follows="top|left" font="SansSerifSmall" left="16" name="info_price_label" text_color="white" width="48">Preo:</text> | ||
21 | <text bottom_delta="-5" follows="top|left" font="SansSerif" height="16" left="56" name="info_price" right="400" text_color="white">L$ 1500, objetos inclusos</text> | ||
22 | <pad height="18" /> | ||
23 | <text follows="top|left" font="SansSerifHuge" height="24" left="16" name="info_action" text_color="white" width="200">Comprar este lote ir:</text> | ||
24 | <pad height="10" /> | ||
25 | <icon follows="top|left" height="64" image_name="badge_note.tga" left="0" name="step_error" width="64" /> | ||
26 | <text bottom_delta="-110" follows="top|left" height="160" left="72" name="error_message" right="400" text_color="white" width="180">Algo ainda no est correto.</text> | ||
27 | <button bottom_delta="-4" follows="bottom|left" height="20" label="Ir para a pgina" left="72" name="error_web" width="120" /> | ||
28 | <pad height="-188" /> | ||
29 | <icon follows="top|left" height="64" image_name="badge_ok.tga" left="0" name="step_1" width="64" /> | ||
30 | <text bottom_delta="38" follows="top|left" height="16" left="72" name="account_action" right="400" text_color="white" width="180">Evoluir sua conta para membro Premium</text> | ||
31 | <text follows="top|left" height="16" left="72" name="account_reason" right="400" width="180">Somente membros Premium podem possuir um lote.</text> | ||
32 | <combo_box follows="top|left" height="16" left="80" name="account_level" width="336"><combo_item name="US$9.95/month,billedmonthly">US$9.95/ms, debitado mensalmente</combo_item> | ||
33 | <combo_item name="US$7.50/month,billedquarterly">US$7.50/ms, debitado trimestralmente</combo_item> | ||
34 | <combo_item name="US$6.00/month,billedannually">US$6.00/ms, debitado anualmente </combo_item> | ||
35 | </combo_box> | ||
36 | <pad height="20" /> | ||
37 | <icon follows="top|left" height="64" image_name="badge_note.tga" left="0" name="step_2" width="64" /> | ||
38 | <text bottom_delta="38" follows="top|left" height="16" left="72" name="land_use_action" right="400" text_color="white" width="180">Aumente sua taxa de locao de lote para US$ 40/ms.</text> | ||
39 | <text follows="top|left" height="32" left="72" name="land_use_reason" right="400" width="180">Voc possui 1,309 metros quadrados de terra. Este lote tem 512 metros quadrados.</text> | ||
40 | <pad height="20" /> | ||
41 | <icon follows="top|left" height="64" image_name="badge_note.tga" left="0" name="step_3" width="64" /> | ||
42 | <text bottom_delta="38" follows="top|left" height="16" left="72" name="purchase_action" right="400" text_color="white">Pagar ao Residente Joe L$4000 pelo lote</text> | ||
43 | <text follows="top|left" height="16" left="72" name="currency_reason" right="400">Voc tem L$2,100.</text> | ||
44 | <text bottom_delta="-25" follows="top|left" height="16" left="74" name="currency_action" text_color="white" width="90">Compre L$ adicionais</text> | ||
45 | <pad height="0" width="8" /> | ||
46 | <line_editor bottom_delta="5" follows="top|right" height="16" left="170" name="currency_amt" width="80">1000</line_editor> | ||
47 | <pad height="0" width="8" /> | ||
48 | <text bottom_delta="3" follows="top|right" height="16" left="260" name="currency_est" text_color="white" width="180">por aproximadamente US$ [AMOUNT2]</text> | ||
49 | <text follows="top|left" height="16" left="72" name="currency_balance" right="400">Voc tem L$2,100.</text> | ||
50 | <check_box bottom_delta="-18" follows="bottom|left" height="20" label="Remover Contribuio do Grupo nas Aquisies" left="75" name="remove_contribution" visible="false" width="275" /> | ||
51 | <button bottom_delta="-20" follows="bottom|left" height="20" label="Adquirir" left="70" name="buy_btn" width="100" /> | ||
52 | <button bottom_delta="0" follows="bottom|right" height="20" label="Cancelar" left="-70" name="cancel_btn" width="60" /> | ||
53 | <text hidden="true" name="can_resell">Pode ser revendida.</text> | ||
54 | <text hidden="true" name="can_not_resell">No pode ser revendida.</text> | ||
55 | <text hidden="true" name="can_change">Pode ser unida ou subdivida.</text> | ||
56 | <text hidden="true" name="can_not_change">No pode ser unida ou subdividida.</text> | ||
57 | <text hidden="true" name="cant_buy_for_group">Voc no tem permisso para comprar um lote para seu grupo ativo.</text> | ||
58 | <text hidden="true" name="no_land_selected">Nenhum lote selecionado.</text> | ||
59 | <text hidden="true" name="multiple_parcels_selected">Vrios lotes diferentes selecionados. Tente selecionar uma rea menor.</text> | ||
60 | <text hidden="true" name="no_permission">Voc no tem permisso para comprar um lote para seu grupo ativo.</text> | ||
61 | <text hidden="true" name="parcel_not_for_sale">O lote selecionado no est a venda.</text> | ||
62 | <text hidden="true" name="group_already_owns">O grupo j possui o lote.</text> | ||
63 | <text hidden="true" name="you_already_own">Voc j possui o lote.</text> | ||
64 | <text hidden="true" name="set_to_sell_to_other">O lote selecionado est configurado para ser vendido para outro grupo.</text> | ||
65 | <text hidden="true" name="no_public_land">A rea selecionada no um lote pblico.</text> | ||
66 | <text hidden="true" name="not_owned_by_you">O lote possudo por outro proprietrio est selecionado. Tente uma rea menor.</text> | ||
67 | <text hidden="true" name="for_first_time_group">Este lote est reservado para Residentes que nunca compraram um terreno. Voc no pode compr-lo para um grupo.</text> | ||
68 | <text hidden="true" name="for_first_time">Este lote est reservado para Residentes que nunca compraram um terreno. Voc j adquiriu um lote.</text> | ||
69 | <text hidden="true" name="processing">Processando sua compra... (Isso pode levar um minuto)</text> | ||
70 | <text hidden="true" name="fetching_error">Houve um erro ao buscar informaes sobre compra de lotes.</text> | ||
71 | <text hidden="true" name="buying_will">Comprar este lote ir:</text> | ||
72 | <text hidden="true" name="buying_for_group">Comprar terra para o grupo:</text> | ||
73 | <text hidden="true" name="cannot_buy_now">No foi possvel comprar agora:</text> | ||
74 | <text hidden="true" name="not_for_sale">No disponvel para venda:</text> | ||
75 | <text hidden="true" name="none_needed">no necessrio</text> | ||
76 | <text hidden="true" name="must_upgrade">Sua conta deve ser evoluda para adquirir um lote.</text> | ||
77 | <text hidden="true" name="cant_own_land">Sua conta pode possuir um lote.</text> | ||
78 | <text hidden="true" name="first_purchase">Esta ser sua primeira compra de lote. Ser a nica vez que voc poder adquirir um lote reservado para "Primeira Compra".</text> | ||
79 | <text hidden="true" name="first_time_but_not_first_land">Esta ser sua primeira compra de lote, mas este terreno no est reservado para primeiros compradores. Voc pode desejar utilizar a Busca para localizar lotes "Primeira Compra" mais baratos.</text> | ||
80 | <text hidden="true" name="land_holdings">Voc possui [BUYER] metros quadrados de terra.</text> | ||
81 | <text hidden="true" name="pay_to_for_land">Pagar L$ [AMOUNT] para [SELLER] por este lote</text> | ||
82 | <text hidden="true" name="buy_for_US">Comprar L$ [AMOUNT] por aproximadamente US$ [AMOUNT2] ,</text> | ||
83 | <text hidden="true" name="parcel_meters">Este lote est a [AMOUNT] metros quadrados.</text> | ||
84 | <text hidden="true" name="premium_land">Este lote Premium, e ir cobrar como [AMOUNT] metros quadrados.</text> | ||
85 | <text hidden="true" name="discounted_land">Este lote promocional, e ser cobrado como [AMOUNT] metros quadrados.</text> | ||
86 | <text hidden="true" name="meters_supports_object">[AMOUNT] metros quadrados suporta [AMOUNT2] objetos</text> | ||
87 | <text hidden="true" name="sold_with_objects">vendido com objetos</text> | ||
88 | <text hidden="true" name="insufficient_land_credits">O grupo [GROUP] precisar de fundos suficientes de terras contribudas para cobrir este lote antes da aquisio se completar.</text> | ||
89 | <text hidden="true" name="have_enough_lindens">Voc tem L$ [AMOUNT], o qual suficiente para comprar este lote.</text> | ||
90 | <text hidden="true" name="not_enough_lindens">Voc tem somente L$ [AMOUNT], e precisa de mais L$ [AMOUNT2].</text> | ||
91 | <text hidden="true" name="balance_left">Aps a compra, restar L$ [AMOUNT].</text> | ||
92 | <text hidden="true" name="balance_needed">Voc precisa comprar pelo menos L$ [AMOUNT] para ter recursos para este lote.</text> | ||
93 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/pt/floater_buy_object.xml b/linden/indra/newview/skins/xui/pt/floater_buy_object.xml deleted file mode 100644 index bfb48a0..0000000 --- a/linden/indra/newview/skins/xui/pt/floater_buy_object.xml +++ /dev/null | |||
@@ -1,12 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <floater can_close="true" can_drag_on_left="false" can_minimize="true" can_resize="true" height="250" min_height="175" min_width="154" name="contents" rect_control="FloaterBuyRect" title="Comprar cpia do objeto" width="300"><scroll_list background_visible="false" bottom="-60" column_padding="5" draw_border="true" fg_disable_color="1, 1, 1, 1" fg_selected_color="1, 1, 1, 1" fg_unselected_color="1, 1, 1, 1" follows="left|top|right" height="36" left="15" mouse_opaque="true" multi_select="false" name="object_list" width="281"><column name="icon" width="16" /> | ||
3 | <column name="text" width="300" /> | ||
4 | </scroll_list> | ||
5 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-20" drop_shadow_visible="true" follows="left|top|right" font="SansSerif" h_pad="0" halign="left" height="16" left="15" mouse_opaque="true" name="contents_text" v_pad="0" width="281">e isso contm:</text> | ||
6 | <scroll_list background_visible="false" bottom_delta="-112" column_padding="5" draw_border="true" fg_disable_color="1, 1, 1, 1" fg_selected_color="1, 1, 1, 1" fg_unselected_color="1, 1, 1, 1" follows="left|top|right|bottom" height="108" left="15" mouse_opaque="true" multi_select="false" name="item_list" width="281"><column name="icon" width="16" /> | ||
7 | <column name="text" width="300" /> | ||
8 | </scroll_list> | ||
9 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-28" drop_shadow_visible="true" follows="left|right|bottom" font="SansSerif" h_pad="0" halign="left" height="24" left="15" mouse_opaque="true" name="buy_text" v_pad="0" width="281">Comprar por L$[AMOUNT] de(a) [NAME]?</text> | ||
10 | <button bottom="-244" follows="right|bottom" font="SansSerif" halign="center" height="20" label="Cancelar" label_selected="Cancelar" left="216" mouse_opaque="true" name="cancel_btn" width="60" /> | ||
11 | <button bottom="-244" follows="right|bottom" font="SansSerif" halign="center" height="20" label="Comprar" label_selected="Comprar" left_delta="-64" mouse_opaque="true" name="buy_btn" width="60" /> | ||
12 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/pt/floater_chat_history.xml b/linden/indra/newview/skins/xui/pt/floater_chat_history.xml deleted file mode 100644 index 9c14c8d..0000000 --- a/linden/indra/newview/skins/xui/pt/floater_chat_history.xml +++ /dev/null | |||
@@ -1,8 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <floater bottom="27" can_close="true" can_drag_on_left="false" can_minimize="false" can_resize="true" can_tear_off="true" enabled="true" height="235" hidden="false" left="15" min_height="100" min_width="440" mouse_opaque="true" name="chat floater" rect_control="FloaterChatRect" title="Histrico de chat" width="440" default_tab_group="1"><button bottom="-42" enabled="true" follows="left|top" font="SansSerif" halign="center" height="20" hidden="false" label="Chat" left="6" mouse_opaque="true" name="Chat" scale_image="true" width="55" /> | ||
3 | <button bottom="-42" enabled="false" follows="left|top" font="SansSerif" halign="center" height="20" hidden="false" label="Mudo" left="63" mouse_opaque="true" name="Mute resident" scale_image="true" width="55" /> | ||
4 | <combo_box allow_text_entry="false" bottom="-42" enabled="true" follows="left|top" height="20" hidden="false" left="122" max_chars="20" mouse_opaque="true" name="chatter combobox" width="200" /> | ||
5 | <check_box bottom="-42" enabled="true" follows="left|top" font="SansSerifSmall" height="20" hidden="false" initial_value="false" label="Exibir texto silenciado" left="328" mouse_opaque="true" name="show mutes" radio_style="false" width="116" /> | ||
6 | <text_editor type="string" length="1" bottom="-229" embedded_items="false" enabled="false" follows="left|top|right|bottom" font="SansSerif" height="181" hidden="false" left="6" max_length="2147483647" mouse_opaque="true" name="Chat History Editor" tab_group="1" text_color="1 1 1 1" text_readonly_color="1 1 1 1" width="428" word_wrap="true" /> | ||
7 | <text_editor type="string" length="1" bottom="-229" embedded_items="false" enabled="false" follows="left|top|right|bottom" font="SansSerif" height="181" hidden="false" left="6" max_length="2147483647" mouse_opaque="true" name="Chat History Editor with mute" tab_group="1" text_color="1 1 1 1" text_readonly_color="1 1 1 1" width="428" word_wrap="true" /> | ||
8 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/pt/floater_choose_group.xml b/linden/indra/newview/skins/xui/pt/floater_choose_group.xml deleted file mode 100644 index a8de9bd..0000000 --- a/linden/indra/newview/skins/xui/pt/floater_choose_group.xml +++ /dev/null | |||
@@ -1,7 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <floater can_close="true" can_drag_on_left="false" can_minimize="true" can_resize="false" height="258" min_height="100" min_width="100" name="groups" title="Grupos" width="280"><text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-40" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" left="12" mouse_opaque="true" name="groupdesc" v_pad="0" width="248">Escolha um grupo:</text> | ||
3 | <scroll_list background_visible="true" bottom_delta="-168" column_padding="5" draw_border="true" height="160" left="12" mouse_opaque="true" multi_select="false" name="group list" width="248"><column name="name" width="248" /> | ||
4 | </scroll_list> | ||
5 | <button bottom_delta="-28" font="SansSerif" halign="center" height="20" label="OK" label_selected="OK" left="12" mouse_opaque="true" name="OK" width="80" /> | ||
6 | <button bottom="-236" font="SansSerif" halign="center" height="20" label="Cancelar" label_selected="Cancelar" left_delta="88" mouse_opaque="true" name="Cancel" width="80" /> | ||
7 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/pt/floater_clothing.xml b/linden/indra/newview/skins/xui/pt/floater_clothing.xml deleted file mode 100644 index 193715c..0000000 --- a/linden/indra/newview/skins/xui/pt/floater_clothing.xml +++ /dev/null | |||
@@ -1,8 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <floater can_close="true" can_drag_on_left="false" can_minimize="true" can_resize="true" height="435" min_height="200" min_width="325" name="clothing" rect_control="FloaterClothingRect" title="Roupa" width="325"><scroll_list bottom="-395" draw_border="true" draw_heading="true" follows="top|left|bottom|right" height="370" left="15" multi_select="false" name="clothing_list" width="295"><column label="" name="icon" width="16" /> | ||
3 | <column label="Nome" name="name" width="250" /> | ||
4 | <column name="sort" width="-1" /> | ||
5 | </scroll_list> | ||
6 | <button bottom_delta="-30" follows="bottom|right" height="20" label="Remover" left="-200" name="take_off_btn" width="80" /> | ||
7 | <button bottom_delta="0" follows="bottom|right" height="20" label="Vestir" left="-100" name="wear_btn" width="80" /> | ||
8 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/pt/floater_color_picker.xml b/linden/indra/newview/skins/xui/pt/floater_color_picker.xml deleted file mode 100644 index 93452ae..0000000 --- a/linden/indra/newview/skins/xui/pt/floater_color_picker.xml +++ /dev/null | |||
@@ -1,20 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <floater bottom="-613" can_close="true" can_drag_on_left="false" can_minimize="false" can_resize="false" follows="left|top" height="380" left="272" min_height="388" min_width="440" mouse_opaque="true" name="ColorPicker" title="Color Picker" width="440"><text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-45" drop_shadow_visible="true" follows="left|top" font="SansSerif" h_pad="0" halign="left" height="10" left="12" mouse_opaque="false" name="r_val_text" v_pad="0" width="413">Vermelho:</text> | ||
3 | <spinner bottom="-51" decimal_digits="0" follows="left" height="16" increment="1" initial_val="128" left="70" max_val="255" min_val="0" mouse_opaque="true" name="rspin" width="50" /> | ||
4 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-66" drop_shadow_visible="true" follows="left|top" font="SansSerif" h_pad="0" halign="left" height="10" left="12" mouse_opaque="false" name="g_val_text" v_pad="0" width="413">Verde:</text> | ||
5 | <spinner bottom="-72" decimal_digits="0" follows="left" height="16" increment="1" initial_val="128" left="70" max_val="255" min_val="0" mouse_opaque="true" name="gspin" width="50" /> | ||
6 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-87" drop_shadow_visible="true" follows="left|top" font="SansSerif" h_pad="0" halign="left" height="10" left="12" mouse_opaque="false" name="b_val_text" v_pad="0" width="413">Azul:</text> | ||
7 | <spinner bottom="-93" decimal_digits="0" follows="left" height="16" increment="1" initial_val="128" left="70" max_val="255" min_val="0" mouse_opaque="true" name="bspin" width="50" /> | ||
8 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-118" drop_shadow_visible="true" follows="left|top" font="SansSerif" h_pad="0" halign="left" height="10" left="12" mouse_opaque="false" name="h_val_text" v_pad="0" width="413">Luminosidade:</text> | ||
9 | <spinner bottom="-124" decimal_digits="0" follows="left" height="16" increment="1" initial_val="180" left="70" max_val="360" min_val="0" mouse_opaque="true" name="hspin" width="50" /> | ||
10 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-139" drop_shadow_visible="true" follows="left|top" font="SansSerif" h_pad="0" halign="left" height="10" left="12" mouse_opaque="false" name="s_val_text" v_pad="0" width="413">Sat:</text> | ||
11 | <spinner bottom="-145" decimal_digits="0" follows="left" height="16" increment="1" initial_val="50" left="70" max_val="100" min_val="0" mouse_opaque="true" name="sspin" width="50" /> | ||
12 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-160" drop_shadow_visible="true" follows="left|top" font="SansSerif" h_pad="0" halign="left" height="10" left="12" mouse_opaque="false" name="l_val_text" v_pad="0" width="413">Lum:</text> | ||
13 | <spinner bottom="-166" decimal_digits="0" follows="left" height="16" increment="1" initial_val="50" left="70" max_val="100" min_val="0" mouse_opaque="true" name="lspin" width="50" /> | ||
14 | <check_box bottom="-373" follows="left|bottom" font="SansSerifSmall" height="20" initial_value="false" label="Aplicar imediatamente" left="12" mouse_opaque="true" name="apply_immediate" width="100" /> | ||
15 | <button bottom="-373" follows="left|top" font="SansSerif" halign="center" height="32" label="" label_selected="" left_delta="130" mouse_opaque="true" name="color_pipette" width="32" /> | ||
16 | <button bottom="-373" follows="right|bottom" font="SansSerif" halign="center" height="20" label="Cancelar" label_selected="Cancelar" left_delta="75" mouse_opaque="true" name="cancel_btn" width="100" /> | ||
17 | <button bottom="-373" follows="right|bottom" font="SansSerif" halign="center" height="20" label="Selecionar" label_selected="Selecionar" left_delta="104" mouse_opaque="true" name="select_btn" width="100" /> | ||
18 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-208" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" left="12" mouse_opaque="true" name="Current color:" v_pad="0" width="110">Cor atual:</text> | ||
19 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-77" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" left="12" mouse_opaque="true" name="(Drag below to save.)" v_pad="0" width="110">(Arraste abaixo para salvar.)</text> | ||
20 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/pt/floater_critical.xml b/linden/indra/newview/skins/xui/pt/floater_critical.xml deleted file mode 100644 index 27ae4f6..0000000 --- a/linden/indra/newview/skins/xui/pt/floater_critical.xml +++ /dev/null | |||
@@ -1,13 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <floater can_close="false" can_drag_on_left="false" can_minimize="false" can_resize="false" height="500" min_height="100" min_width="100" name="modal container" title=" " width="600"><button bottom="-484" font="SansSerif" halign="center" height="20" label="Continuar" label_selected="Continuar" left="376" mouse_opaque="true" name="Continue" width="100" /> | ||
3 | |||
4 | <button bottom="-484" font="SansSerif" halign="center" height="20" label="Cancelar" label_selected="Cancelar" left_delta="108" mouse_opaque="true" name="Cancel" width="100" /> | ||
5 | |||
6 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-31" drop_shadow_visible="true" follows="left|top" font="SansSerif" h_pad="0" halign="left" height="15" left="16" mouse_opaque="true" name="tos_title" v_pad="0" width="568">Mensagem Crtica</text> | ||
7 | |||
8 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-77" drop_shadow_visible="true" follows="left|top" font="SansSerif" h_pad="0" halign="left" height="30" left="32" mouse_opaque="true" name="tos_heading" v_pad="0" width="552">Por favor, leia a mensagem seguir cuidadosamente.</text> | ||
9 | |||
10 | <text_editor bottom="-376" embedded_items="false" follows="left|top" font="SansSerif" height="283" left="16" max_length="65536" mouse_opaque="true" name="tos_text" text_readonly_color="1, 1, 1, 1" width="568" word_wrap="true">TOS_TEXT</text_editor> | ||
11 | |||
12 | |||
13 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/pt/floater_customize.xml b/linden/indra/newview/skins/xui/pt/floater_customize.xml deleted file mode 100644 index 4788642..0000000 --- a/linden/indra/newview/skins/xui/pt/floater_customize.xml +++ /dev/null | |||
@@ -1,252 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <floater bottom="-562" can_close="true" can_drag_on_left="false" can_minimize="false" can_resize="false" follows="left|top" height="540" hidden="false" left="12" min_height="0" min_width="0" mouse_opaque="true" name="floater customize" rect_control="FloaterCustomizeAppearanceRect" title="Aparncia" width="494"><tab_container bottom="-507" height="483" hidden="false" left="0" mouse_opaque="false" name="customize tab container" tab_position="left" width="492"><panel label="Partes de Corpo" placeholder="true" /> | ||
3 | <panel border="true" bottom="-482" follows="left|top|right|bottom" height="481" hidden="false" label="Forma" left="102" mouse_opaque="true" name="Shape" width="389"><icon bottom="-21" color="1 1 1 1" follows="top|right" height="16" hidden="false" image_name="icon_lock.tga" left="333" mouse_opaque="true" name="square" width="16" /> | ||
4 | <icon bottom="-24" color="1 1 1 1" follows="left|top" height="16" hidden="false" left="8" mouse_opaque="true" name="icon" width="16" /> | ||
5 | <button bottom="-478" follows="right|bottom" font="SansSerif" halign="center" height="20" hidden="false" label="Reverter" label_selected="Reverter" left="299" mouse_opaque="true" name="Revert" scale_image="true" width="82" /> | ||
6 | <button bottom="-81" follows="left|top" font="SansSerifSmall" halign="center" height="16" hidden="false" label="Corpo" label_selected="Corpo" left="8" mouse_opaque="true" name="Body" scale_image="true" width="82" /> | ||
7 | <button bottom="-113" follows="left|top" font="SansSerifSmall" halign="center" height="16" hidden="false" label="Cabea" label_selected="Cabea" left="8" mouse_opaque="true" name="Head" scale_image="true" width="82" /> | ||
8 | <button bottom="-145" follows="left|top" font="SansSerifSmall" halign="center" height="16" hidden="false" label="Olhos" label_selected="Olhos" left="8" mouse_opaque="true" name="Eyes" scale_image="true" width="82" /> | ||
9 | <button bottom="-177" follows="left|top" font="SansSerifSmall" halign="center" height="16" hidden="false" label="Orelhas" label_selected="Orelhas" left="8" mouse_opaque="true" name="Ears" scale_image="true" width="82" /> | ||
10 | <button bottom="-209" follows="left|top" font="SansSerifSmall" halign="center" height="16" hidden="false" label="Nariz" label_selected="Nariz" left="8" mouse_opaque="true" name="Nose" scale_image="true" width="82" /> | ||
11 | <button bottom="-241" follows="left|top" font="SansSerifSmall" halign="center" height="16" hidden="false" label="Boca" label_selected="Boca" left="8" mouse_opaque="true" name="Mouth" scale_image="true" width="82" /> | ||
12 | <button bottom="-273" follows="left|top" font="SansSerifSmall" halign="center" height="16" hidden="false" label="Queixo" label_selected="Queixo" left="8" mouse_opaque="true" name="Chin" scale_image="true" width="82" /> | ||
13 | <button bottom="-305" follows="left|top" font="SansSerifSmall" halign="center" height="16" hidden="false" label="Trax" label_selected="Trax" left="8" mouse_opaque="true" name="Torso" scale_image="true" width="82" /> | ||
14 | <button bottom="-337" follows="left|top" font="SansSerifSmall" halign="center" height="16" hidden="false" label="Pernas" label_selected="Pernas" left="8" mouse_opaque="true" name="Legs" scale_image="true" width="82" /> | ||
15 | <radio_group bottom="-387" control_name="AvatarSex" draw_border="true" follows="left|top" height="34" hidden="false" left="8" mouse_opaque="true" name="sex radio" width="82"><radio_item type="string" length="1" bottom="-17" follows="left|top" height="16" hidden="false" left="1" mouse_opaque="true" name="radio" width="82">Feminino</radio_item> | ||
16 | <radio_item type="string" length="1" bottom="-33" follows="left|top" height="16" hidden="false" left="1" mouse_opaque="true" name="radio2" width="82">Masculino</radio_item> | ||
17 | </radio_group> | ||
18 | <button bottom="-433" follows="left|top" font="SansSerifSmall" halign="center" height="16" hidden="false" label="Aleatrio" label_selected="Aleatrio" left="8" mouse_opaque="true" name="Randomize" scale_image="true" width="82" /> | ||
19 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-24" drop_shadow_visible="true" follows="left|top|right" font="SansSerif" h_pad="0" halign="left" height="16" hidden="false" left="26" mouse_opaque="true" name="title" v_pad="0" width="355">[DESC]</text> | ||
20 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-24" drop_shadow_visible="true" follows="left|top|right" font="SansSerif" h_pad="0" halign="left" height="16" hidden="false" left="26" mouse_opaque="true" name="title_no_modify" v_pad="0" width="355">[DESC]: no foi possvel modificar</text> | ||
21 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-24" drop_shadow_visible="true" follows="left|top|right" font="SansSerif" h_pad="0" halign="left" height="16" hidden="false" left="26" mouse_opaque="true" name="title_loading" v_pad="0" width="355">[DESC]: carregando...</text> | ||
22 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-24" drop_shadow_visible="true" follows="left|top|right" font="SansSerif" h_pad="0" halign="left" height="16" hidden="false" left="26" mouse_opaque="true" name="title_not_worn" v_pad="0" width="355">[DESC]: no vestido</text> | ||
23 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-38" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="14" hidden="false" left="8" mouse_opaque="true" name="path" v_pad="0" width="373">Localizado em [PATH]</text> | ||
24 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-74" drop_shadow_visible="true" follows="left|top|right" font="SansSerifSmall" h_pad="0" halign="left" height="28" hidden="false" left="8" mouse_opaque="true" name="not worn instructions" v_pad="0" width="373">Coloque um novo formato arrastando um dos seus de seu inventrio para seu avatar. Alternativamente, voc pode criar um novo a partir deste e us-lo.</text> | ||
25 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-74" drop_shadow_visible="true" follows="left|top|right" font="SansSerifSmall" h_pad="0" halign="left" height="28" hidden="false" left="8" mouse_opaque="true" name="no modify instructions" v_pad="0" width="373">Voc no tem permisso para modificar esta vestimenta.</text> | ||
26 | <button bottom="-128" follows="left|top" halign="center" height="24" hidden="false" label="Criar Nova Forma" label_selected="Criar Nova Forma" left="8" mouse_opaque="true" name="Create New" scale_image="true" width="120" /> | ||
27 | <button bottom="-478" follows="right|bottom" font="SansSerif" halign="center" height="20" hidden="false" label="Remover" label_selected="Remover" left="35" mouse_opaque="true" name="Take Off" scale_image="true" width="82" /> | ||
28 | <button bottom="-478" follows="right|bottom" font="SansSerif" halign="center" height="20" hidden="false" label="Salvar" label_selected="Salvar" left="123" mouse_opaque="true" name="Save" scale_image="true" width="82" /> | ||
29 | <button bottom="-478" follows="right|bottom" font="SansSerif" halign="center" height="20" hidden="false" label="Salvar Como" label_selected="Salvar Como" left="211" mouse_opaque="true" name="Save As" scale_image="true" width="82" /> | ||
30 | </panel> | ||
31 | <panel border="true" bottom="-482" follows="left|top|right|bottom" height="481" hidden="false" label="Pele" left="102" mouse_opaque="true" name="Skin" width="389"><icon bottom="-21" color="1 1 1 1" follows="top|right" height="16" hidden="false" image_name="icon_lock.tga" left="333" mouse_opaque="true" name="square" width="16" /> | ||
32 | <icon bottom="-24" color="1 1 1 1" follows="left|top" height="16" hidden="false" left="8" mouse_opaque="true" name="icon" width="16" /> | ||
33 | <button bottom="-81" follows="left|top" font="SansSerifSmall" halign="center" height="16" hidden="false" label="Cor de Pele" label_selected="Cor de Pele" left="8" mouse_opaque="true" name="Skin Color" scale_image="true" width="82" /> | ||
34 | <button bottom="-113" follows="left|top" font="SansSerifSmall" halign="center" height="16" hidden="false" label="Detalhes Faciais" label_selected="Detalhes Faciais" left="8" mouse_opaque="true" name="Face Detail" scale_image="true" width="82" /> | ||
35 | <button bottom="-145" follows="left|top" font="SansSerifSmall" halign="center" height="16" hidden="false" label="Maquiagem" label_selected="Maquiagem" left="8" mouse_opaque="true" name="Makeup" scale_image="true" width="82" /> | ||
36 | <button bottom="-177" follows="left|top" font="SansSerifSmall" halign="center" height="16" hidden="false" label="Detalhes do Corpo" label_selected="Detalhes do Corpo" left="8" mouse_opaque="true" name="Body Detail" scale_image="true" width="82" /> | ||
37 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-24" drop_shadow_visible="true" follows="left|top|right" font="SansSerif" h_pad="0" halign="left" height="16" hidden="false" left="26" mouse_opaque="true" name="title" v_pad="0" width="355">[DESC]</text> | ||
38 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-24" drop_shadow_visible="true" follows="left|top|right" font="SansSerif" h_pad="0" halign="left" height="16" hidden="false" left="26" mouse_opaque="true" name="title_no_modify" v_pad="0" width="355">[DESC]: no foi possvel modificar</text> | ||
39 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-24" drop_shadow_visible="true" follows="left|top|right" font="SansSerif" h_pad="0" halign="left" height="16" hidden="false" left="26" mouse_opaque="true" name="title_loading" v_pad="0" width="355">[DESC]: carregando..</text> | ||
40 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-24" drop_shadow_visible="true" follows="left|top|right" font="SansSerif" h_pad="0" halign="left" height="16" hidden="false" left="26" mouse_opaque="true" name="title_not_worn" v_pad="0" width="355">[DESC]: no vestido</text> | ||
41 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-38" drop_shadow_visible="true" follows="left|top|right" font="SansSerifSmall" h_pad="0" halign="left" height="14" hidden="false" left="8" mouse_opaque="true" name="path" v_pad="0" width="373">Localizada em [PATH]</text> | ||
42 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-74" drop_shadow_visible="true" follows="left|top|right" font="SansSerifSmall" h_pad="0" halign="left" height="28" hidden="false" left="8" mouse_opaque="true" name="not worn instructions" v_pad="0" width="373">Coloque uma nova pele arrastando uma de seu inventrio para seu avatar. Alternativamente, voc pode criar uma nova forma a partir deste e us-lo.</text> | ||
43 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-74" drop_shadow_visible="true" follows="left|top|right" font="SansSerifSmall" h_pad="0" halign="left" height="28" hidden="false" left="8" mouse_opaque="true" name="no modify instructions" v_pad="0" width="373">Voc no tem permisso para modificar esta vestimenta.</text> | ||
44 | <texture_picker allow_no_texture="true" bottom="-273" can_apply_immediately="true" default_image_name="Default" follows="left|top" height="80" hidden="false" label="Tatuagens para cabea" left="8" mouse_opaque="true" name="Head Tattoos" tool_tip="Clique para escolher um desenho" width="64" /> | ||
45 | <texture_picker allow_no_texture="true" bottom="-353" can_apply_immediately="true" default_image_name="Default" follows="left|top" height="80" hidden="false" label="Tattoos Superiores" left="8" mouse_opaque="true" name="Upper Tattoos" tool_tip="Clique para escolher um desenho" width="64" /> | ||
46 | <texture_picker allow_no_texture="true" bottom="-433" can_apply_immediately="true" default_image_name="Default" follows="left|top" height="80" hidden="false" label="Tattoos Inferiores" left="8" mouse_opaque="true" name="Lower Tattoos" tool_tip="Clique para escolher um desenho" width="64" /> | ||
47 | <button bottom="-449" follows="left|top" font="SansSerifSmall" halign="center" height="16" hidden="false" label="Aleatrio" label_selected="Aleatrio" left="8" mouse_opaque="true" name="Randomize" scale_image="true" width="82" /> | ||
48 | <button bottom="-128" follows="left|top" halign="center" height="24" hidden="false" label="Criar Nova Pele" label_selected="Criar Nova Pele" left="8" mouse_opaque="true" name="Create New" scale_image="true" width="120" /> | ||
49 | <button bottom="-478" follows="right|bottom" font="SansSerif" halign="center" height="20" hidden="false" label="Remover" label_selected="Remover" left="35" mouse_opaque="true" name="Take Off" scale_image="true" width="82" /> | ||
50 | <button bottom="-478" follows="right|bottom" font="SansSerif" halign="center" height="20" hidden="false" label="Salvar" label_selected="Salvar" left="123" mouse_opaque="true" name="Save" scale_image="true" width="82" /> | ||
51 | <button bottom="-478" follows="right|bottom" font="SansSerif" halign="center" height="20" hidden="false" label="Salvar Como" label_selected="Salvar Como" left="211" mouse_opaque="true" name="Save As" scale_image="true" width="82" /> | ||
52 | <button bottom="-478" follows="right|bottom" font="SansSerif" halign="center" height="20" hidden="false" label="Reverter" label_selected="Reverter" left="299" mouse_opaque="true" name="Revert" scale_image="true" width="82" /> | ||
53 | </panel> | ||
54 | <panel border="true" bottom="-482" follows="left|top|right|bottom" height="481" hidden="false" label="Cabelo" left="102" mouse_opaque="true" name="Hair" width="389"><icon bottom="-21" color="1 1 1 1" follows="top|right" height="16" hidden="false" image_name="icon_lock.tga" left="333" mouse_opaque="true" name="square" width="16" /> | ||
55 | <icon bottom="-24" color="1 1 1 1" follows="left|top" height="16" hidden="false" left="8" mouse_opaque="true" name="icon" width="16" /> | ||
56 | <button bottom="-81" follows="left|top" font="SansSerifSmall" halign="center" height="16" hidden="false" label="Cor" label_selected="Cor" left="8" mouse_opaque="true" name="Color" scale_image="true" width="82" /> | ||
57 | <button bottom="-113" follows="left|top" font="SansSerifSmall" halign="center" height="16" hidden="false" label="Estilo" label_selected="Estilo" left="8" mouse_opaque="true" name="Style" scale_image="true" width="82" /> | ||
58 | <button bottom="-145" follows="left|top" font="SansSerifSmall" halign="center" height="16" hidden="false" label="Sombrancelhas" label_selected="Sombrancelhas" left="8" mouse_opaque="true" name="Eyebrows" scale_image="true" width="82" /> | ||
59 | <button bottom="-177" follows="left|top" font="SansSerifSmall" halign="center" height="16" hidden="false" label="Rosto" label_selected="Rosto" left="8" mouse_opaque="true" name="Facial" scale_image="true" width="82" /> | ||
60 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-24" drop_shadow_visible="true" follows="left|top|right" font="SansSerif" h_pad="0" halign="left" height="16" hidden="false" left="26" mouse_opaque="true" name="title" v_pad="0" width="355">[DESC]</text> | ||
61 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-24" drop_shadow_visible="true" follows="left|top|right" font="SansSerif" h_pad="0" halign="left" height="16" hidden="false" left="26" mouse_opaque="true" name="title_no_modify" v_pad="0" width="355">[DESC]: no foi possvel modificar</text> | ||
62 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-24" drop_shadow_visible="true" follows="left|top|right" font="SansSerif" h_pad="0" halign="left" height="16" hidden="false" left="26" mouse_opaque="true" name="title_loading" v_pad="0" width="355">[DESC]: carregando...</text> | ||
63 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-24" drop_shadow_visible="true" follows="left|top|right" font="SansSerif" h_pad="0" halign="left" height="16" hidden="false" left="26" mouse_opaque="true" name="title_not_worn" v_pad="0" width="355">[DESC]: no vestido</text> | ||
64 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-38" drop_shadow_visible="true" follows="left|top|right" font="SansSerifSmall" h_pad="0" halign="left" height="14" hidden="false" left="8" mouse_opaque="true" name="path" v_pad="0" width="373">Localizado em [PATH]</text> | ||
65 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-74" drop_shadow_visible="true" follows="left|top|right" font="SansSerifSmall" h_pad="0" halign="left" height="28" hidden="false" left="8" mouse_opaque="true" name="not worn instructions" v_pad="0" width="373">Ponha um novo cabelo em seu avatar arrastando um do seu inventrio. Alternativamente, voc pode criar um novo modelo a partir deste e us-lo.</text> | ||
66 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-74" drop_shadow_visible="true" follows="left|top|right" font="SansSerifSmall" h_pad="0" halign="left" height="28" hidden="false" left="8" mouse_opaque="true" name="no modify instructions" v_pad="0" width="373">Voc no ter permisso para modificar essa vestimenta.</text> | ||
67 | <texture_picker allow_no_texture="false" bottom="-273" can_apply_immediately="true" default_image_name="Default" follows="left|top" height="80" hidden="false" label="Texture" left="8" mouse_opaque="true" name="Texture" tool_tip="Clique para escolher uma imagem" width="64" /> | ||
68 | <button bottom="-305" follows="left|top" font="SansSerifSmall" halign="center" height="16" hidden="false" label="Aleatrio" label_selected="Aleatrio" left="8" mouse_opaque="true" name="Randomize" scale_image="true" width="82" /> | ||
69 | <button bottom="-128" follows="left|top" halign="center" height="24" hidden="false" label="Criar Novo Cabelo" label_selected="Criar Novo Cabelo" left="8" mouse_opaque="true" name="Create New" scale_image="true" width="120" /> | ||
70 | <button bottom="-478" follows="right|bottom" font="SansSerif" halign="center" height="20" hidden="false" label="Remover" label_selected="Remover" left="35" mouse_opaque="true" name="Take Off" scale_image="true" width="82" /> | ||
71 | <button bottom="-478" follows="right|bottom" font="SansSerif" halign="center" height="20" hidden="false" label="Salvar" label_selected="Salvar" left="123" mouse_opaque="true" name="Save" scale_image="true" width="82" /> | ||
72 | <button bottom="-478" follows="right|bottom" font="SansSerif" halign="center" height="20" hidden="false" label="Salvar Como" label_selected="Salvar Como" left="211" mouse_opaque="true" name="Save As" scale_image="true" width="82" /> | ||
73 | <button bottom="-478" follows="right|bottom" font="SansSerif" halign="center" height="20" hidden="false" label="Reverter" label_selected="Reverter" left="299" mouse_opaque="true" name="Revert" scale_image="true" width="82" /> | ||
74 | </panel> | ||
75 | <panel border="true" bottom="-482" follows="left|top|right|bottom" height="481" hidden="false" label="Olhos" left="102" mouse_opaque="true" name="Eyes" width="389"><icon bottom="-21" color="1 1 1 1" follows="top|right" height="16" hidden="false" image_name="icon_lock.tga" left="333" mouse_opaque="true" name="square" width="16" /> | ||
76 | <icon bottom="-24" color="1 1 1 1" follows="left|top" height="16" hidden="false" left="8" mouse_opaque="true" name="icon" width="16" /> | ||
77 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-24" drop_shadow_visible="true" follows="left|top|right" font="SansSerif" h_pad="0" halign="left" height="16" hidden="false" left="26" mouse_opaque="true" name="title" v_pad="0" width="355">[DESC]</text> | ||
78 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-24" drop_shadow_visible="true" follows="left|top|right" font="SansSerif" h_pad="0" halign="left" height="16" hidden="false" left="26" mouse_opaque="true" name="title_no_modify" v_pad="0" width="355">[DESC]: no foi possvel modificar</text> | ||
79 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-24" drop_shadow_visible="true" follows="left|top|right" font="SansSerif" h_pad="0" halign="left" height="16" hidden="false" left="26" mouse_opaque="true" name="title_loading" v_pad="0" width="355">[DESC]: carregando...</text> | ||
80 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-24" drop_shadow_visible="true" follows="left|top|right" font="SansSerif" h_pad="0" halign="left" height="16" hidden="false" left="26" mouse_opaque="true" name="title_not_worn" v_pad="0" width="355">[DESC]: no vestido</text> | ||
81 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-38" drop_shadow_visible="true" follows="left|top|right" font="SansSerifSmall" h_pad="0" halign="left" height="14" hidden="false" left="8" mouse_opaque="true" name="path" v_pad="0" width="373">Localizado em [PATH]</text> | ||
82 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-74" drop_shadow_visible="true" follows="left|top|right" font="SansSerifSmall" h_pad="0" halign="left" height="28" hidden="false" left="8" mouse_opaque="true" name="not worn instructions" v_pad="0" width="373">Para colocar novos olhos, arraste um do seu inventrio para seu avatar. Alternativamente, voc pode criar um novo modelo a partir deste e us-lo.</text> | ||
83 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-74" drop_shadow_visible="true" follows="left|top|right" font="SansSerifSmall" h_pad="0" halign="left" height="28" hidden="false" left="8" mouse_opaque="true" name="no modify instructions" v_pad="0" width="373">Voc no tem permisso para alterar esta vestimenta.</text> | ||
84 | <texture_picker allow_no_texture="false" bottom="-145" can_apply_immediately="true" default_image_name="Default" follows="left|top" height="80" hidden="false" label="Iris" left="8" mouse_opaque="true" name="Iris" tool_tip="Clique para escolher uma imagem" width="64" /> | ||
85 | <button bottom="-177" follows="left|top" font="SansSerifSmall" halign="center" height="16" hidden="false" label="Aleatrio" label_selected="Aleatrio" left="8" mouse_opaque="true" name="Randomize" scale_image="true" width="82" /> | ||
86 | <button bottom="-128" follows="left|top" halign="center" height="24" hidden="false" label="Criar Novos Olhos" label_selected="Criar Novos Olhos" left="8" mouse_opaque="true" name="Create New" scale_image="true" width="120" /> | ||
87 | <button bottom="-478" follows="right|bottom" font="SansSerif" halign="center" height="20" hidden="false" label="Remover" label_selected="Remover" left="35" mouse_opaque="true" name="Take Off" scale_image="true" width="82" /> | ||
88 | <button bottom="-478" follows="right|bottom" font="SansSerif" halign="center" height="20" hidden="false" label="Salvar" label_selected="Salvar" left="123" mouse_opaque="true" name="Save" scale_image="true" width="82" /> | ||
89 | <button bottom="-478" follows="right|bottom" font="SansSerif" halign="center" height="20" hidden="false" label="Salvar Como" label_selected="Salvar Como" left="211" mouse_opaque="true" name="Save As" scale_image="true" width="82" /> | ||
90 | <button bottom="-478" follows="right|bottom" font="SansSerif" halign="center" height="20" hidden="false" label="Reverter" label_selected="Reverter" left="299" mouse_opaque="true" name="Revert" scale_image="true" width="82" /> | ||
91 | </panel> | ||
92 | <panel label="Roupas" placeholder="true" /> | ||
93 | <panel border="true" bottom="-482" follows="left|top|right|bottom" height="481" hidden="false" label="Camisa" left="102" mouse_opaque="true" name="Shirt" width="389"><icon bottom="-21" color="1 1 1 1" follows="top|right" height="16" hidden="false" image_name="icon_lock.tga" left="333" mouse_opaque="true" name="square" width="16" /> | ||
94 | <icon bottom="-24" color="1 1 1 1" follows="left|top" height="16" hidden="false" left="8" mouse_opaque="true" name="icon" width="16" /> | ||
95 | <texture_picker allow_no_texture="false" bottom="-145" can_apply_immediately="true" default_image_name="Default" follows="left|top" height="80" hidden="false" label="Tecido" left="8" mouse_opaque="true" name="Fabric" tool_tip="Clique para escolher uma imagem" width="64" /> | ||
96 | <color_swatch border_color="0.45098 0.517647 0.607843 1" bottom="-225" can_apply_immediately="true" color="1 1 1 1" follows="left|top" height="80" hidden="false" label="Cor/Tint" left="8" mouse_opaque="true" name="Color/Tint" tool_tip="Clique para pegar o conta-gotas" width="64" /> | ||
97 | <button bottom="-128" follows="left|top" halign="center" height="24" hidden="false" label="Criar Nova Camisa" label_selected="Criar Nova Camisa" left="8" mouse_opaque="true" name="Create New" scale_image="true" width="120" /> | ||
98 | <button bottom="-478" follows="right|bottom" font="SansSerif" halign="center" height="20" hidden="false" label="Remover" label_selected="Remover" left="35" mouse_opaque="true" name="Take Off" scale_image="true" width="82" /> | ||
99 | <button bottom="-478" follows="right|bottom" font="SansSerif" halign="center" height="20" hidden="false" label="Salvar" label_selected="Salvar" left="123" mouse_opaque="true" name="Save" scale_image="true" width="82" /> | ||
100 | <button bottom="-478" follows="right|bottom" font="SansSerif" halign="center" height="20" hidden="false" label="Salvar Como" label_selected="Salvar Como" left="211" mouse_opaque="true" name="Save As" scale_image="true" width="82" /> | ||
101 | <button bottom="-478" follows="right|bottom" font="SansSerif" halign="center" height="20" hidden="false" label="Reverter" label_selected="Reverter" left="299" mouse_opaque="true" name="Revert" scale_image="true" width="82" /> | ||
102 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-24" drop_shadow_visible="true" follows="left|top|right" font="SansSerif" h_pad="0" halign="left" height="16" hidden="false" left="26" mouse_opaque="true" name="title" v_pad="0" width="355">[DESC]</text> | ||
103 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-24" drop_shadow_visible="true" follows="left|top|right" font="SansSerif" h_pad="0" halign="left" height="16" hidden="false" left="26" mouse_opaque="true" name="title_no_modify" v_pad="0" width="355">[DESC]: no foi possvel modificar</text> | ||
104 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-24" drop_shadow_visible="true" follows="left|top|right" font="SansSerif" h_pad="0" halign="left" height="16" hidden="false" left="26" mouse_opaque="true" name="title_loading" v_pad="0" width="355">[DESC]: carregando...</text> | ||
105 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-24" drop_shadow_visible="true" follows="left|top|right" font="SansSerif" h_pad="0" halign="left" height="16" hidden="false" left="26" mouse_opaque="true" name="title_not_worn" v_pad="0" width="355">[DESC]: no vestido</text> | ||
106 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-38" drop_shadow_visible="true" follows="left|top|right" font="SansSerifSmall" h_pad="0" halign="left" height="14" hidden="false" left="8" mouse_opaque="true" name="path" v_pad="0" width="373">Localizado em [PATH]</text> | ||
107 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-74" drop_shadow_visible="true" follows="left|top|right" font="SansSerifSmall" h_pad="0" halign="left" height="28" hidden="false" left="8" mouse_opaque="true" name="not worn instructions" v_pad="0" width="373">Para por uma nova camisa em seu avatar, arraste uma nova do seu inventrio para seu avatar. Alternativamente, voc pode criar um novo modelo a partir deste e us-lo.</text> | ||
108 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-74" drop_shadow_visible="true" follows="left|top|right" font="SansSerifSmall" h_pad="0" halign="left" height="28" hidden="false" left="8" mouse_opaque="true" name="no modify instructions" v_pad="0" width="373">Voc no ter permisso para modificar esta vestimenta.</text> | ||
109 | </panel> | ||
110 | <panel border="true" bottom="-482" follows="left|top|right|bottom" height="481" hidden="false" label="Calas" left="102" mouse_opaque="true" name="Pants" width="389"><icon bottom="-21" color="1 1 1 1" follows="top|right" height="16" hidden="false" image_name="icon_lock.tga" left="333" mouse_opaque="true" name="square" width="16" /> | ||
111 | <icon bottom="-24" color="1 1 1 1" follows="left|top" height="16" hidden="false" left="8" mouse_opaque="true" name="icon" width="16" /> | ||
112 | <texture_picker allow_no_texture="false" bottom="-145" can_apply_immediately="true" default_image_name="Default" follows="left|top" height="80" hidden="false" label="Tecido" left="8" mouse_opaque="true" name="Fabric" tool_tip="Clique para escolher uma imagem" width="64" /> | ||
113 | <color_swatch border_color="0.45098 0.517647 0.607843 1" bottom="-225" can_apply_immediately="true" color="1 1 1 1" follows="left|top" height="80" hidden="false" label="Cor/Tint" left="8" mouse_opaque="true" name="Color/Tint" tool_tip="Clique para abrir o conta-gotas." width="64" /> | ||
114 | <button bottom="-128" follows="left|top" halign="center" height="24" hidden="false" label="Criar Novas Calas" label_selected="Criar Novas Calas" left="8" mouse_opaque="true" name="Create New" scale_image="true" width="120" /> | ||
115 | <button bottom="-478" follows="right|bottom" font="SansSerif" halign="center" height="20" hidden="false" label="Remover" label_selected="Remover" left="35" mouse_opaque="true" name="Take Off" scale_image="true" width="82" /> | ||
116 | <button bottom="-478" follows="right|bottom" font="SansSerif" halign="center" height="20" hidden="false" label="Salvar" label_selected="Salvar" left="123" mouse_opaque="true" name="Save" scale_image="true" width="82" /> | ||
117 | <button bottom="-478" follows="right|bottom" font="SansSerif" halign="center" height="20" hidden="false" label="Salvar como" label_selected="Salvar Como" left="211" mouse_opaque="true" name="Save As" scale_image="true" width="82" /> | ||
118 | <button bottom="-478" follows="right|bottom" font="SansSerif" halign="center" height="20" hidden="false" label="Reverter" label_selected="Reverter" left="299" mouse_opaque="true" name="Revert" scale_image="true" width="82" /> | ||
119 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-24" drop_shadow_visible="true" follows="left|top|right" font="SansSerif" h_pad="0" halign="left" height="16" hidden="false" left="26" mouse_opaque="true" name="title" v_pad="0" width="355">[DESC]</text> | ||
120 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-24" drop_shadow_visible="true" follows="left|top|right" font="SansSerif" h_pad="0" halign="left" height="16" hidden="false" left="26" mouse_opaque="true" name="title_no_modify" v_pad="0" width="355">[DESC]: no foi possvel modificar</text> | ||
121 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-24" drop_shadow_visible="true" follows="left|top|right" font="SansSerif" h_pad="0" halign="left" height="16" hidden="false" left="26" mouse_opaque="true" name="title_loading" v_pad="0" width="355">[DESC]: carregando...</text> | ||
122 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-24" drop_shadow_visible="true" follows="left|top|right" font="SansSerif" h_pad="0" halign="left" height="16" hidden="false" left="26" mouse_opaque="true" name="title_not_worn" v_pad="0" width="355">[DESC]: no vestindo</text> | ||
123 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-38" drop_shadow_visible="true" follows="left|top|right" font="SansSerifSmall" h_pad="0" halign="left" height="14" hidden="false" left="8" mouse_opaque="true" name="path" v_pad="0" width="373">Localizado em [PATH]</text> | ||
124 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-74" drop_shadow_visible="true" follows="left|top|right" font="SansSerifSmall" h_pad="0" halign="left" height="28" hidden="false" left="8" mouse_opaque="true" name="not worn instructions" v_pad="0" width="373">Para por uma nova cala em seu avatar, basta arrastar uma outra do seu inventrio. Alternativamente, voc pode criar um novo modelo a partir deste e us-lo.</text> | ||
125 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-74" drop_shadow_visible="true" follows="left|top|right" font="SansSerifSmall" h_pad="0" halign="left" height="28" hidden="false" left="8" mouse_opaque="true" name="no modify instructions" v_pad="0" width="373">Voc no tem permisso para modificar esta vestimenta.</text> | ||
126 | </panel> | ||
127 | <panel border="true" bottom="-482" follows="left|top|right|bottom" height="481" hidden="false" label="Calados" left="102" mouse_opaque="true" name="Shoes" width="389"><icon bottom="-21" color="1 1 1 1" follows="top|right" height="16" hidden="false" image_name="icon_lock.tga" left="333" mouse_opaque="true" name="square" width="16" /> | ||
128 | <icon bottom="-24" color="1 1 1 1" follows="left|top" height="16" hidden="false" left="8" mouse_opaque="true" name="icon" width="16" /> | ||
129 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-24" drop_shadow_visible="true" follows="left|top|right" font="SansSerif" h_pad="0" halign="left" height="16" hidden="false" left="26" mouse_opaque="true" name="title" v_pad="0" width="355">[DESC]</text> | ||
130 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-24" drop_shadow_visible="true" follows="left|top|right" font="SansSerif" h_pad="0" halign="left" height="16" hidden="false" left="26" mouse_opaque="true" name="title_no_modify" v_pad="0" width="355">[DESC]: no foi possvel modificar</text> | ||
131 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-24" drop_shadow_visible="true" follows="left|top|right" font="SansSerif" h_pad="0" halign="left" height="16" hidden="false" left="26" mouse_opaque="true" name="title_loading" v_pad="0" width="355">[DESC]: carregando...</text> | ||
132 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-24" drop_shadow_visible="true" follows="left|top|right" font="SansSerif" h_pad="0" halign="left" height="16" hidden="false" left="26" mouse_opaque="true" name="title_not_worn" v_pad="0" width="355">[DESC]: no vestido</text> | ||
133 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-38" drop_shadow_visible="true" follows="left|top|right" font="SansSerifSmall" h_pad="0" halign="left" height="14" hidden="false" left="8" mouse_opaque="true" name="path" v_pad="0" width="373">Localizado em [PATH]</text> | ||
134 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-74" drop_shadow_visible="true" follows="left|top|right" font="SansSerifSmall" h_pad="0" halign="left" height="28" hidden="false" left="8" mouse_opaque="true" name="not worn instructions" v_pad="0" width="373">Para por novos calados em seu avatar, basta arrastar um novo do seu inventrio. Alternativamente, voc pode criar um novo modelo a partir deste e us-lo.</text> | ||
135 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-74" drop_shadow_visible="true" follows="left|top|right" font="SansSerifSmall" h_pad="0" halign="left" height="28" hidden="false" left="8" mouse_opaque="true" name="no modify instructions" v_pad="0" width="373">Voc no tem permisso para modificar esta vestimenta.</text> | ||
136 | <texture_picker allow_no_texture="false" bottom="-145" can_apply_immediately="true" default_image_name="Default" follows="left|top" height="80" hidden="false" label="Tecido" left="8" mouse_opaque="true" name="Fabric" tool_tip="Clique para escolher uma imagem" width="64" /> | ||
137 | <color_swatch border_color="0.45098 0.517647 0.607843 1" bottom="-225" can_apply_immediately="true" color="1 1 1 1" follows="left|top" height="80" hidden="false" label="Cor/Tint" left="8" mouse_opaque="true" name="Color/Tint" tool_tip="Clique para pegar o conta-gotas" width="64" /> | ||
138 | <button bottom="-128" follows="left|top" halign="center" height="24" hidden="false" label="Criar Novos Sapatos" label_selected="Criar Novos Sapatos" left="8" mouse_opaque="true" name="Create New" scale_image="true" width="120" /> | ||
139 | <button bottom="-478" follows="right|bottom" font="SansSerif" halign="center" height="20" hidden="false" label="Despir" label_selected="Despir" left="35" mouse_opaque="true" name="Take Off" scale_image="true" width="82" /> | ||
140 | <button bottom="-478" follows="right|bottom" font="SansSerif" halign="center" height="20" hidden="false" label="Salvar" label_selected="Salvar" left="123" mouse_opaque="true" name="Save" scale_image="true" width="82" /> | ||
141 | <button bottom="-478" follows="right|bottom" font="SansSerif" halign="center" height="20" hidden="false" label="Salvar Como" label_selected="Salvar Como" left="211" mouse_opaque="true" name="Save As" scale_image="true" width="82" /> | ||
142 | <button bottom="-478" follows="right|bottom" font="SansSerif" halign="center" height="20" hidden="false" label="Reverter" label_selected="Reverter" left="299" mouse_opaque="true" name="Revert" scale_image="true" width="82" /> | ||
143 | </panel> | ||
144 | <panel border="true" bottom="-482" follows="left|top|right|bottom" height="481" hidden="false" label="Meias" left="102" mouse_opaque="true" name="Socks" width="389"><icon bottom="-21" color="1 1 1 1" follows="top|right" height="16" hidden="false" image_name="icon_lock.tga" left="333" mouse_opaque="true" name="square" width="16" /> | ||
145 | <icon bottom="-24" color="1 1 1 1" follows="left|top" height="16" hidden="false" left="8" mouse_opaque="true" name="icon" width="16" /> | ||
146 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-24" drop_shadow_visible="true" follows="left|top|right" font="SansSerif" h_pad="0" halign="left" height="16" hidden="false" left="26" mouse_opaque="true" name="title" v_pad="0" width="355">[DESC]</text> | ||
147 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-24" drop_shadow_visible="true" follows="left|top|right" font="SansSerif" h_pad="0" halign="left" height="16" hidden="false" left="26" mouse_opaque="true" name="title_no_modify" v_pad="0" width="355">[DESC]: no foi possvel modificar</text> | ||
148 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-24" drop_shadow_visible="true" follows="left|top|right" font="SansSerif" h_pad="0" halign="left" height="16" hidden="false" left="26" mouse_opaque="true" name="title_loading" v_pad="0" width="355">[DESC]: carregando...</text> | ||
149 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-24" drop_shadow_visible="true" follows="left|top|right" font="SansSerif" h_pad="0" halign="left" height="16" hidden="false" left="26" mouse_opaque="true" name="title_not_worn" v_pad="0" width="355">[DESC]: no vestido.</text> | ||
150 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-38" drop_shadow_visible="true" follows="left|top|right" font="SansSerifSmall" h_pad="0" halign="left" height="14" hidden="false" left="8" mouse_opaque="true" name="path" v_pad="0" width="373">Localizado em [PATH]</text> | ||
151 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-74" drop_shadow_visible="true" follows="left|top|right" font="SansSerifSmall" h_pad="0" halign="left" height="28" hidden="false" left="8" mouse_opaque="true" name="not worn instructions" v_pad="0" width="373">Para por uma nova meia em seu avatar, basta arrastar uma nova do seu inventrio. Alternativamente, voc pode criar um novo modelo a partir deste e us-lo.</text> | ||
152 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-74" drop_shadow_visible="true" follows="left|top|right" font="SansSerifSmall" h_pad="0" halign="left" height="28" hidden="false" left="8" mouse_opaque="true" name="no modify instructions" v_pad="0" width="373">Voc no tem permisso para modificar essa vestimenta.</text> | ||
153 | <texture_picker allow_no_texture="false" bottom="-145" can_apply_immediately="true" default_image_name="Default" follows="left|top" height="80" hidden="false" label="Tecido" left="8" mouse_opaque="true" name="Fabric" tool_tip="Clique para escolher uma imagem" width="64" /> | ||
154 | <color_swatch border_color="0.45098 0.517647 0.607843 1" bottom="-225" can_apply_immediately="true" color="1 1 1 1" follows="left|top" height="80" hidden="false" label="Cor/Tint" left="8" mouse_opaque="true" name="Color/Tint" tool_tip="Clique para pegar o conta-gotas" width="64" /> | ||
155 | <button bottom="-128" follows="left|top" halign="center" height="24" hidden="false" label="Criar Novas Meias" label_selected="Criar Novas Meias" left="8" mouse_opaque="true" name="Create New" scale_image="true" width="120" /> | ||
156 | <button bottom="-478" follows="right|bottom" font="SansSerif" halign="center" height="20" hidden="false" label="Remover" label_selected="Remover" left="35" mouse_opaque="true" name="Take Off" scale_image="true" width="82" /> | ||
157 | <button bottom="-478" follows="right|bottom" font="SansSerif" halign="center" height="20" hidden="false" label="Salvar" label_selected="Salvar" left="123" mouse_opaque="true" name="Save" scale_image="true" width="82" /> | ||
158 | <button bottom="-478" follows="right|bottom" font="SansSerif" halign="center" height="20" hidden="false" label="Salvar Como" label_selected="Salvar Como" left="211" mouse_opaque="true" name="Save As" scale_image="true" width="82" /> | ||
159 | <button bottom="-478" follows="right|bottom" font="SansSerif" halign="center" height="20" hidden="false" label="Reverter" label_selected="Reverter" left="299" mouse_opaque="true" name="Revert" scale_image="true" width="82" /> | ||
160 | </panel> | ||
161 | <panel border="true" bottom="-482" follows="left|top|right|bottom" height="481" hidden="false" label="Jaqueta" left="102" mouse_opaque="true" name="Jacket" width="389"><icon bottom="-21" color="1 1 1 1" follows="top|right" height="16" hidden="false" image_name="icon_lock.tga" left="333" mouse_opaque="true" name="square" width="16" /> | ||
162 | <icon bottom="-24" color="1 1 1 1" follows="left|top" height="16" hidden="false" left="8" mouse_opaque="true" name="icon" width="16" /> | ||
163 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-24" drop_shadow_visible="true" follows="left|top|right" font="SansSerif" h_pad="0" halign="left" height="16" hidden="false" left="26" mouse_opaque="true" name="title" v_pad="0" width="355">[DESC]</text> | ||
164 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-24" drop_shadow_visible="true" follows="left|top|right" font="SansSerif" h_pad="0" halign="left" height="16" hidden="false" left="26" mouse_opaque="true" name="title_no_modify" v_pad="0" width="355">[DESC]: No foi possvel modificar</text> | ||
165 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-24" drop_shadow_visible="true" follows="left|top|right" font="SansSerif" h_pad="0" halign="left" height="16" hidden="false" left="26" mouse_opaque="true" name="title_loading" v_pad="0" width="355">[DESC]: carregando...</text> | ||
166 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-24" drop_shadow_visible="true" follows="left|top|right" font="SansSerif" h_pad="0" halign="left" height="16" hidden="false" left="26" mouse_opaque="true" name="title_not_worn" v_pad="0" width="355">[DESC]: no vestido</text> | ||
167 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-38" drop_shadow_visible="true" follows="left|top|right" font="SansSerifSmall" h_pad="0" halign="left" height="14" hidden="false" left="8" mouse_opaque="true" name="path" v_pad="0" width="373">Localizado em [PATH]</text> | ||
168 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-74" drop_shadow_visible="true" follows="left|top|right" font="SansSerifSmall" h_pad="0" halign="left" height="28" hidden="false" left="8" mouse_opaque="true" name="not worn instructions" v_pad="0" width="373">Para por uma nova jaqueta em seu avatar, basta arrastar um novo modelo do seu inventrio. Alternativamente, voc pode criar um novo modelo a partir deste e us-lo.</text> | ||
169 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-74" drop_shadow_visible="true" follows="left|top|right" font="SansSerifSmall" h_pad="0" halign="left" height="28" hidden="false" left="8" mouse_opaque="true" name="no modify instructions" v_pad="0" width="373">Voc no tem permisso para modificar esta vestimenta.</text> | ||
170 | <texture_picker allow_no_texture="false" bottom="-145" can_apply_immediately="true" default_image_name="Default" follows="left|top" height="80" hidden="false" label="Tecido Superior" left="8" mouse_opaque="true" name="Upper Fabric" tool_tip="Clique para escolher uma imagem." width="64" /> | ||
171 | <texture_picker allow_no_texture="false" bottom="-225" can_apply_immediately="true" default_image_name="Default" follows="left|top" height="80" hidden="false" label="Tecido Inferior" left="8" mouse_opaque="true" name="Lower Fabric" tool_tip="Clique para escolher uma imagem." width="64" /> | ||
172 | <color_swatch border_color="0.45098 0.517647 0.607843 1" bottom="-305" can_apply_immediately="true" color="1 1 1 1" follows="left|top" height="80" hidden="false" label="Cor/Tint" left="8" mouse_opaque="true" name="Color/Tint" tool_tip="Clique para pegar o conta-gotas" width="64" /> | ||
173 | <button bottom="-128" follows="left|top" halign="center" height="24" hidden="false" label="Criar Nova Jaqueta" label_selected="Criar Nova Jaqueta" left="8" mouse_opaque="true" name="Create New" scale_image="true" width="140" /> | ||
174 | <button bottom="-478" follows="right|bottom" font="SansSerif" halign="center" height="20" hidden="false" label="Remover" label_selected="Remover" left="35" mouse_opaque="true" name="Take Off" scale_image="true" width="82" /> | ||
175 | <button bottom="-478" follows="right|bottom" font="SansSerif" halign="center" height="20" hidden="false" label="Salvar" label_selected="Salvar" left="123" mouse_opaque="true" name="Save" scale_image="true" width="82" /> | ||
176 | <button bottom="-478" follows="right|bottom" font="SansSerif" halign="center" height="20" hidden="false" label="Salvar Como" label_selected="Salvar Como" left="211" mouse_opaque="true" name="Save As" scale_image="true" width="82" /> | ||
177 | <button bottom="-478" follows="right|bottom" font="SansSerif" halign="center" height="20" hidden="false" label="Reverter" label_selected="Reverter" left="299" mouse_opaque="true" name="Revert" scale_image="true" width="82" /> | ||
178 | </panel> | ||
179 | <panel border="true" bottom="-482" follows="left|top|right|bottom" height="481" hidden="false" label="Luvas" left="102" mouse_opaque="true" name="Gloves" width="389"><icon bottom="-21" color="1 1 1 1" follows="top|right" height="16" hidden="false" image_name="icon_lock.tga" left="333" mouse_opaque="true" name="square" width="16" /> | ||
180 | <icon bottom="-24" color="1 1 1 1" follows="left|top" height="16" hidden="false" left="8" mouse_opaque="true" name="icon" width="16" /> | ||
181 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-24" drop_shadow_visible="true" follows="left|top|right" font="SansSerif" h_pad="0" halign="left" height="16" hidden="false" left="26" mouse_opaque="true" name="title" v_pad="0" width="355">[DESC]</text> | ||
182 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-24" drop_shadow_visible="true" follows="left|top|right" font="SansSerif" h_pad="0" halign="left" height="16" hidden="false" left="26" mouse_opaque="true" name="title_no_modify" v_pad="0" width="355">[DESC]: no foi possvel modificar</text> | ||
183 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-24" drop_shadow_visible="true" follows="left|top|right" font="SansSerif" h_pad="0" halign="left" height="16" hidden="false" left="26" mouse_opaque="true" name="title_loading" v_pad="0" width="355">[DESC]: carregando....</text> | ||
184 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-24" drop_shadow_visible="true" follows="left|top|right" font="SansSerif" h_pad="0" halign="left" height="16" hidden="false" left="26" mouse_opaque="true" name="title_not_worn" v_pad="0" width="355">[DESC]: no vestido</text> | ||
185 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-38" drop_shadow_visible="true" follows="left|top|right" font="SansSerifSmall" h_pad="0" halign="left" height="14" hidden="false" left="8" mouse_opaque="true" name="path" v_pad="0" width="373">Localizado em [PATH]</text> | ||
186 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-74" drop_shadow_visible="true" follows="left|top|right" font="SansSerifSmall" h_pad="0" halign="left" height="28" hidden="false" left="8" mouse_opaque="true" name="not worn instructions" v_pad="0" width="373">Pra por uma nova jaqueta em seu avatar, basta arastar um novo modelo do seu inventrio. Alternativamente, voc pode criar uma novo modlo a partir deste e us-lo.</text> | ||
187 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-74" drop_shadow_visible="true" follows="left|top|right" font="SansSerifSmall" h_pad="0" halign="left" height="28" hidden="false" left="8" mouse_opaque="true" name="no modify instructions" v_pad="0" width="373">Voc no tem permisso para modificar essa vestimenta.</text> | ||
188 | <texture_picker allow_no_texture="false" bottom="-145" can_apply_immediately="true" default_image_name="Default" follows="left|top" height="80" hidden="false" label="Tecido" left="8" mouse_opaque="true" name="Fabric" tool_tip="Clique para escolher uma imagem" width="64" /> | ||
189 | <color_swatch border_color="0.45098 0.517647 0.607843 1" bottom="-225" can_apply_immediately="true" color="1 1 1 1" follows="left|top" height="80" hidden="false" label="Cor/Tint" left="8" mouse_opaque="true" name="Color/Tint" tool_tip="Clique para abrir o conta-gotas" width="64" /> | ||
190 | <button bottom="-128" follows="left|top" halign="center" height="24" hidden="false" label="Criar Novas Luvas" label_selected="Criar Novas Luvas" left="8" mouse_opaque="true" name="Create New" scale_image="true" width="130" /> | ||
191 | <button bottom="-478" follows="right|bottom" font="SansSerif" halign="center" height="20" hidden="false" label="Remover" label_selected="Remover" left="35" mouse_opaque="true" name="Take Off" scale_image="true" width="82" /> | ||
192 | <button bottom="-478" follows="right|bottom" font="SansSerif" halign="center" height="20" hidden="false" label="Salvar" label_selected="Salvar" left="123" mouse_opaque="true" name="Save" scale_image="true" width="82" /> | ||
193 | <button bottom="-478" follows="right|bottom" font="SansSerif" halign="center" height="20" hidden="false" label="Salvar Como" label_selected="Salvar Como" left="211" mouse_opaque="true" name="Save As" scale_image="true" width="82" /> | ||
194 | <button bottom="-478" follows="right|bottom" font="SansSerif" halign="center" height="20" hidden="false" label="Reverter" label_selected="Reverter" left="299" mouse_opaque="true" name="Revert" scale_image="true" width="82" /> | ||
195 | </panel> | ||
196 | <panel border="true" bottom="-482" follows="left|top|right|bottom" height="481" hidden="false" label="Camiseta" left="102" mouse_opaque="true" name="Undershirt" width="389"><icon bottom="-21" color="1 1 1 1" follows="top|right" height="16" hidden="false" image_name="icon_lock.tga" left="333" mouse_opaque="true" name="square" width="16" /> | ||
197 | <icon bottom="-24" color="1 1 1 1" follows="left|top" height="16" hidden="false" left="8" mouse_opaque="true" name="icon" width="16" /> | ||
198 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-24" drop_shadow_visible="true" follows="left|top|right" font="SansSerif" h_pad="0" halign="left" height="16" hidden="false" left="26" mouse_opaque="true" name="title" v_pad="0" width="355">[DESC]</text> | ||
199 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-24" drop_shadow_visible="true" follows="left|top|right" font="SansSerif" h_pad="0" halign="left" height="16" hidden="false" left="26" mouse_opaque="true" name="title_no_modify" v_pad="0" width="355">[DESC]: no foi possvel modificar</text> | ||
200 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-24" drop_shadow_visible="true" follows="left|top|right" font="SansSerif" h_pad="0" halign="left" height="16" hidden="false" left="26" mouse_opaque="true" name="title_loading" v_pad="0" width="355">[DESC]: carregando...</text> | ||
201 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-24" drop_shadow_visible="true" follows="left|top|right" font="SansSerif" h_pad="0" halign="left" height="16" hidden="false" left="26" mouse_opaque="true" name="title_not_worn" v_pad="0" width="355">[DESC]: no vestido</text> | ||
202 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-38" drop_shadow_visible="true" follows="left|top|right" font="SansSerifSmall" h_pad="0" halign="left" height="14" hidden="false" left="8" mouse_opaque="true" name="path" v_pad="0" width="373">Localizado em [PATH]</text> | ||
203 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-74" drop_shadow_visible="true" follows="left|top|right" font="SansSerifSmall" h_pad="0" halign="left" height="28" hidden="false" left="8" mouse_opaque="true" name="not worn instructions" v_pad="0" width="373">Para por uma nova Camiseta em seu avatar, basta arrastar um novo modelo de seu inventrio. Alternativamente, voc pode criar um novo modelo a partir deste e us-lo.</text> | ||
204 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-74" drop_shadow_visible="true" follows="left|top|right" font="SansSerifSmall" h_pad="0" halign="left" height="28" hidden="false" left="8" mouse_opaque="true" name="no modify instructions" v_pad="0" width="373">Voc no ter permisso para modificar essa vestimenta.</text> | ||
205 | <texture_picker allow_no_texture="false" bottom="-145" can_apply_immediately="true" default_image_name="Default" follows="left|top" height="80" hidden="false" label="Tecido" left="8" mouse_opaque="true" name="Fabric" tool_tip="Clique para escolher uma imagem" width="64" /> | ||
206 | <color_swatch border_color="0.45098 0.517647 0.607843 1" bottom="-225" can_apply_immediately="true" color="1 1 1 1" follows="left|top" height="80" hidden="false" label="Cor/Tint" left="8" mouse_opaque="true" name="Color/Tint" tool_tip="Clique para abrir o conta-gotas" width="64" /> | ||
207 | <button bottom="-128" follows="left|top" halign="center" height="24" hidden="false" label="Criar Nova Roupa de Baixo" label_selected="Criar Nova Roupa de Baixo" left="8" mouse_opaque="true" name="Create New" scale_image="true" width="160" /> | ||
208 | <button bottom="-478" follows="right|bottom" font="SansSerif" halign="center" height="20" hidden="false" label="Remover" label_selected="Remover" left="35" mouse_opaque="true" name="Take Off" scale_image="true" width="82" /> | ||
209 | <button bottom="-478" follows="right|bottom" font="SansSerif" halign="center" height="20" hidden="false" label="Salvar" label_selected="Salvar" left="123" mouse_opaque="true" name="Save" scale_image="true" width="82" /> | ||
210 | <button bottom="-478" follows="right|bottom" font="SansSerif" halign="center" height="20" hidden="false" label="Salvar Como" label_selected="Salvar Como" left="211" mouse_opaque="true" name="Save As" scale_image="true" width="82" /> | ||
211 | <button bottom="-478" follows="right|bottom" font="SansSerif" halign="center" height="20" hidden="false" label="Reverter" label_selected="Reverter" left="299" mouse_opaque="true" name="Revert" scale_image="true" width="82" /> | ||
212 | </panel> | ||
213 | <panel border="true" bottom="-482" follows="left|top|right|bottom" height="481" hidden="false" label="Roupas de Baixo" left="102" mouse_opaque="true" name="Underpants" width="389"><icon bottom="-21" color="1 1 1 1" follows="top|right" height="16" hidden="false" image_name="icon_lock.tga" left="333" mouse_opaque="true" name="square" width="16" /> | ||
214 | <icon bottom="-24" color="1 1 1 1" follows="left|top" height="16" hidden="false" left="8" mouse_opaque="true" name="icon" width="16" /> | ||
215 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-24" drop_shadow_visible="true" follows="left|top|right" font="SansSerif" h_pad="0" halign="left" height="16" hidden="false" left="26" mouse_opaque="true" name="title" v_pad="0" width="355">[DESC]</text> | ||
216 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-24" drop_shadow_visible="true" follows="left|top|right" font="SansSerif" h_pad="0" halign="left" height="16" hidden="false" left="26" mouse_opaque="true" name="title_no_modify" v_pad="0" width="355">[DESC]: no foi possvel modificar</text> | ||
217 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-24" drop_shadow_visible="true" follows="left|top|right" font="SansSerif" h_pad="0" halign="left" height="16" hidden="false" left="26" mouse_opaque="true" name="title_loading" v_pad="0" width="355">[DESC]: carregando...</text> | ||
218 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-24" drop_shadow_visible="true" follows="left|top|right" font="SansSerif" h_pad="0" halign="left" height="16" hidden="false" left="26" mouse_opaque="true" name="title_not_worn" v_pad="0" width="355">[DESC]: no vestido</text> | ||
219 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-38" drop_shadow_visible="true" follows="left|top|right" font="SansSerifSmall" h_pad="0" halign="left" height="14" hidden="false" left="8" mouse_opaque="true" name="path" v_pad="0" width="373">Localizado em [PATH]</text> | ||
220 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-74" drop_shadow_visible="true" follows="left|top|right" font="SansSerifSmall" h_pad="0" halign="left" height="28" hidden="false" left="8" mouse_opaque="true" name="not worn instructions" v_pad="0" width="373">Para por novas roupas de baixo em seu avatar, basta arrastar um novo modelo do seu inventrio. Alternativamente, voc pode criar um novo modelo a partir deste e us-lo.</text> | ||
221 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-74" drop_shadow_visible="true" follows="left|top|right" font="SansSerifSmall" h_pad="0" halign="left" height="28" hidden="false" left="8" mouse_opaque="true" name="no modify instructions" v_pad="0" width="373">Voc no tem permisso para modificar essa vestimenta.</text> | ||
222 | <texture_picker allow_no_texture="false" bottom="-145" can_apply_immediately="true" default_image_name="Default" follows="left|top" height="80" hidden="false" label="Tecido" left="8" mouse_opaque="true" name="Fabric" tool_tip="Clique para escolher uma imagem" width="64" /> | ||
223 | <color_swatch border_color="0.45098 0.517647 0.607843 1" bottom="-225" can_apply_immediately="true" color="1 1 1 1" follows="left|top" height="80" hidden="false" label="Cor/Tint" left="8" mouse_opaque="true" name="Color/Tint" tool_tip="Clique para pegar o conta-gotas" width="64" /> | ||
224 | <button bottom="-128" follows="left|top" halign="center" height="24" hidden="false" label="Criar Novas Roupas de Baixo" label_selected="Criar Novas Roupas de Baixo" left="8" mouse_opaque="true" name="Create New" scale_image="true" width="160" /> | ||
225 | <button bottom="-478" follows="right|bottom" font="SansSerif" halign="center" height="20" hidden="false" label="Remover" label_selected="Remover" left="35" mouse_opaque="true" name="Take Off" scale_image="true" width="82" /> | ||
226 | <button bottom="-478" follows="right|bottom" font="SansSerif" halign="center" height="20" hidden="false" label="Salvar" label_selected="Salvar" left="123" mouse_opaque="true" name="Save" scale_image="true" width="82" /> | ||
227 | <button bottom="-478" follows="right|bottom" font="SansSerif" halign="center" height="20" hidden="false" label="Salvar Como" label_selected="Salvar Como" left="211" mouse_opaque="true" name="Save As" scale_image="true" width="82" /> | ||
228 | <button bottom="-478" follows="right|bottom" font="SansSerif" halign="center" height="20" hidden="false" label="Reverter" label_selected="Reverter" left="299" mouse_opaque="true" name="Revert" scale_image="true" width="82" /> | ||
229 | </panel> | ||
230 | <panel border="true" bottom="-482" follows="left|top|right|bottom" height="481" hidden="false" label="Saia" left="102" mouse_opaque="true" name="Skirt" width="389"><icon bottom="-21" color="1 1 1 1" follows="top|right" height="16" hidden="false" image_name="icon_lock.tga" left="333" mouse_opaque="true" name="square" width="16" /> | ||
231 | <icon bottom="-24" color="1 1 1 1" follows="left|top" height="16" hidden="false" left="8" mouse_opaque="true" name="icon" width="16" /> | ||
232 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-24" drop_shadow_visible="true" follows="left|top|right" font="SansSerif" h_pad="0" halign="left" height="16" hidden="false" left="26" mouse_opaque="true" name="title" v_pad="0" width="355">[DESC]</text> | ||
233 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-24" drop_shadow_visible="true" follows="left|top|right" font="SansSerif" h_pad="0" halign="left" height="16" hidden="false" left="26" mouse_opaque="true" name="title_no_modify" v_pad="0" width="355">[DESC]: no foi possvel modificar</text> | ||
234 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-24" drop_shadow_visible="true" follows="left|top|right" font="SansSerif" h_pad="0" halign="left" height="16" hidden="false" left="26" mouse_opaque="true" name="title_loading" v_pad="0" width="355">[DESC]: carregando...</text> | ||
235 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-24" drop_shadow_visible="true" follows="left|top|right" font="SansSerif" h_pad="0" halign="left" height="16" hidden="false" left="26" mouse_opaque="true" name="title_not_worn" v_pad="0" width="355">[DESC]: no vestido</text> | ||
236 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-38" drop_shadow_visible="true" follows="left|top|right" font="SansSerifSmall" h_pad="0" halign="left" height="14" hidden="false" left="8" mouse_opaque="true" name="path" v_pad="0" width="373">Localizado em [PATH]</text> | ||
237 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-74" drop_shadow_visible="true" follows="left|top|right" font="SansSerifSmall" h_pad="0" halign="left" height="28" hidden="false" left="8" mouse_opaque="true" name="not worn instructions" v_pad="0" width="373">Para por uma nova saia em seu avatar, basta arrastar um novo modelo do seu inventrio. Alternativamente, voc pode criar um novo modelo a partir deste e us-lo.</text> | ||
238 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-74" drop_shadow_visible="true" follows="left|top|right" font="SansSerifSmall" h_pad="0" halign="left" height="28" hidden="false" left="8" mouse_opaque="true" name="no modify instructions" v_pad="0" width="373">Voc no tem permisso para modificar essa vestimenta.</text> | ||
239 | <texture_picker allow_no_texture="false" bottom="-145" can_apply_immediately="true" default_image_name="Default" follows="left|top" height="80" hidden="false" label="Tecido" left="8" mouse_opaque="true" name="Fabric" tool_tip="Clique para escolher uma imagem" width="64" /> | ||
240 | <color_swatch border_color="0.45098 0.517647 0.607843 1" bottom="-225" can_apply_immediately="true" color="1 1 1 1" follows="left|top" height="80" hidden="false" label="Cor/Tint" left="8" mouse_opaque="true" name="Color/Tint" tool_tip="Click to open Color Picker" width="64" /> | ||
241 | <button bottom="-128" follows="left|top" halign="center" height="24" hidden="false" label="Criar Nova Saia" label_selected="Criar Nova Saia" left="8" mouse_opaque="true" name="Create New" scale_image="true" width="120" /> | ||
242 | <button bottom="-478" follows="right|bottom" font="SansSerif" halign="center" height="20" hidden="false" label="Remover" label_selected="Remover" left="35" mouse_opaque="true" name="Take Off" scale_image="true" width="82" /> | ||
243 | <button bottom="-478" follows="right|bottom" font="SansSerif" halign="center" height="20" hidden="false" label="Salvar" label_selected="Salvar" left="123" mouse_opaque="true" name="Save" scale_image="true" width="82" /> | ||
244 | <button bottom="-478" follows="right|bottom" font="SansSerif" halign="center" height="20" hidden="false" label="Salvar Como" label_selected="Salvar Como" left="211" mouse_opaque="true" name="Save As" scale_image="true" width="82" /> | ||
245 | <button bottom="-478" follows="right|bottom" font="SansSerif" halign="center" height="20" hidden="false" label="Reverter" label_selected="Reverter" left="299" mouse_opaque="true" name="Revert" scale_image="true" width="82" /> | ||
246 | </panel> | ||
247 | </tab_container> | ||
248 | <scroll_container bottom="-476" follows="left|top|right|bottom" height="382" hidden="false" left="197" mouse_opaque="false" name="panel_container" opaque="false" width="292" /> | ||
249 | <button bottom="-536" follows="right|bottom" font="SansSerifSmall" halign="center" height="16" hidden="false" label="Criar Visual" label_selected="Criar Visual" left="140" mouse_opaque="true" name="Make Outfit" scale_image="true" width="82" /> | ||
250 | <button bottom="-538" follows="right|bottom" font="SansSerif" halign="center" height="20" hidden="false" label="Salvar Tudo" label_selected="Salvar Tudo" left="228" mouse_opaque="true" name="Save All" scale_image="true" width="82" /> | ||
251 | <button bottom="-538" follows="right|bottom" font="SansSerif" halign="center" height="20" hidden="false" label="Fechar" label_selected="Fechar" left="316" mouse_opaque="true" name="Close" scale_image="true" width="82" /> | ||
252 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/pt/floater_directory.xml b/linden/indra/newview/skins/xui/pt/floater_directory.xml deleted file mode 100644 index de296a6..0000000 --- a/linden/indra/newview/skins/xui/pt/floater_directory.xml +++ /dev/null | |||
@@ -1,214 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <floater can_close="true" can_drag_on_left="false" can_minimize="true" can_resize="false" height="570" min_height="200" min_width="400" name="directory" rect_control="FloaterFindRect2" title="Procurar" width="780"><tab_container bottom="-570" follows="left|top|right|bottom" height="550" left="0" mouse_opaque="false" name="Directory Tabs" tab_position="top" width="780"><panel border="true" bottom="-549" follows="left|top|right|bottom" height="533" label="Tudo" left="1" mouse_opaque="false" name="all_panel" width="778"><button bottom="-533" follows="left|bottom" font="SansSerif" halign="center" height="20" label="< Prev" label_selected="< Prev" left="80" mouse_opaque="true" name="< Prev" width="60" /> | ||
3 | <button bottom="-533" follows="left|bottom" font="SansSerif" halign="center" height="20" label="Prximo >" label_selected="Prximo >" mouse_opaque="true" name="Next >" width="60" /> | ||
4 | |||
5 | |||
6 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-24" drop_shadow_visible="true" follows="left|top" font="SansSerif" h_pad="0" halign="left" height="16" left="4" mouse_opaque="true" name="find" v_pad="0" width="70">Encontrar:</text> | ||
7 | |||
8 | <line_editor bevel_style="in" border_style="line" border_thickness="1" bottom="-24" follows="left|top" font="SansSerif" height="18" left_delta="65" max_length="63" mouse_opaque="true" name="name" width="128" /> | ||
9 | |||
10 | <button bottom="-26" follows="left|top" font="SansSerif" halign="center" height="20" label="Buscar" label_selected="Buscar" left_delta="136" mouse_opaque="true" name="Search" width="70" /> | ||
11 | |||
12 | <check_box bottom="-22" control_name="ShowMatureFindAll" follows="left|top" | ||
13 | font="SansSerifSmall" height="16" initial_value="false" | ||
14 | label="Incluir contedo adulto" left_delta="78" mouse_opaque="true" | ||
15 | name="incmature" width="156" /> | ||
16 | |||
17 | |||
18 | |||
19 | <scroll_list background_visible="false" bottom="-513" column_padding="0" draw_border="true" draw_heading="false" fg_disable_color="1, 1, 1, 1" fg_selected_color="1, 1, 1, 1" fg_unselected_color="1, 1, 1, 1" follows="left|top|right|bottom" height="464" left="4" mouse_opaque="true" multi_select="false" name="results" search_column="1" width="339"><column label="" name="icon" width="24" /> | ||
20 | <column label="Nome" name="name" width="235" /> | ||
21 | <column label="Preo" name="price" width="90" /> | ||
22 | <column label="Tempo (PDT)" name="date" width="90" /> | ||
23 | <column label="Tempo" name="time" width="-1" /> | ||
24 | <column label="Trfego" name="dwell" width="90" /> | ||
25 | <column label="rea" name="area" width="90" /> | ||
26 | <column label="L$/m" name="per_meter" width="90" /> | ||
27 | <column label="Online" name="online" width="90" /> | ||
28 | <column label="Membros" name="members" width="90" /> | ||
29 | <column label="" name="score" width="-1"/> | ||
30 | </scroll_list> | ||
31 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-20" drop_shadow_visible="true" follows="left|bottom" font="SansSerifSmall" h_pad="0" halign="left" height="16" left="4" mouse_opaque="true" name="result_text" v_pad="0" width="328" /> | ||
32 | </panel> | ||
33 | <panel border="true" bottom="-549" follows="left|top|right|bottom" height="533" label="Anncios" left="1" left_delta="68" mouse_opaque="false" name="classified_panel" width="778"><button bottom="-533" follows="left|bottom" font="SansSerif" halign="center" height="20" label="< Prev" label_selected="< Prev" left="80" mouse_opaque="true" name="< Prev" width="60" /> | ||
34 | <button bottom="-533" follows="left|bottom" font="SansSerif" halign="center" height="20" label="Prximo >" label_selected="Prximo >" left_delta="68" mouse_opaque="true" name="Next >" width="60" /> | ||
35 | |||
36 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-24" drop_shadow_visible="true" follows="left|top" font="SansSerif" h_pad="0" halign="left" height="16" left="4" mouse_opaque="true" name="find" v_pad="0" width="70">Encontrar:</text> | ||
37 | |||
38 | <line_editor bevel_style="in" border_style="line" border_thickness="1" bottom="-24" follows="left|top" font="SansSerif" height="18" left_delta="65" max_length="63" mouse_opaque="true" name="name" width="128" /> | ||
39 | |||
40 | <check_box bottom_delta="-18" control_name="ShowMatureClassifieds" follows="left|top" font="SansSerifSmall" height="16" initial_value="true" label="Incluir Contedo Adulto" left="42" mouse_opaque="true" name="incmature" width="156" /> | ||
41 | |||
42 | <combo_box allow_text_entry="false" bottom="-24" follows="left|top" height="18" left="200" max_chars="20" mouse_opaque="true" name="Category" width="128"><combo_item name="AnyCategory" value="0">Qualquer Categoria</combo_item> | ||
43 | <combo_item name="Shopping" value="1">Shopping</combo_item> | ||
44 | <combo_item name="LandRental" value="2">Alugul de Terras</combo_item> | ||
45 | <combo_item name="PropertyRental" value="3">Alugul de Propriedades</combo_item> | ||
46 | <combo_item name="SpecialAttraction" value="4">Atrao Especial</combo_item> | ||
47 | <combo_item name="NewProducts" value="5">Novos Produtos</combo_item> | ||
48 | <combo_item name="Employment" value="6">Emprego</combo_item> | ||
49 | <combo_item name="Wanted" value="7">Procura-se</combo_item> | ||
50 | <combo_item name="Service" value="8">Servio</combo_item> | ||
51 | <combo_item name="Personal" value="9">Pessoal</combo_item> | ||
52 | </combo_box> | ||
53 | <button bottom="-26" follows="left|top" font="SansSerif" halign="center" height="20" label="Buscar" label_selected="Buscar" left_delta="142" mouse_opaque="true" name="Search" width="70" /> | ||
54 | <button bottom="-26" follows="left|top" font="SansSerif" halign="center" height="20" label="Colocar Anncio" label_selected="Colocar Anncio" left_delta="320" mouse_opaque="true" name="Place an Ad..." width="100" /> | ||
55 | <button bottom="-533" follows="left|bottom" font="SansSerif" halign="center" height="20" label="Apagar" label_selected="Apagar" left="212" mouse_opaque="true" name="Delete" width="80" /> | ||
56 | <scroll_list background_visible="false" bottom="-513" column_padding="0" draw_border="true" draw_heading="true" fg_disable_color="1, 1, 1, 1" fg_selected_color="1, 1, 1, 1" fg_unselected_color="1, 1, 1, 1" follows="left|top|right|bottom" height="464" left="4" mouse_opaque="true" multi_select="false" name="results" search_column="2" width="339"><column label="" name="icon" width="24" /> | ||
57 | <column label="" name="type" width="-1" /> | ||
58 | <column label="Nome" name="name" width="225" /> | ||
59 | <column label="Preo" name="price" width="55" /> | ||
60 | </scroll_list> | ||
61 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-20" drop_shadow_visible="true" follows="left|bottom" font="SansSerifSmall" h_pad="0" halign="left" height="16" left="4" mouse_opaque="true" name="result_text" v_pad="0" width="328" /> | ||
62 | </panel> | ||
63 | <panel border="true" bottom="-549" default_tab_group="1" follows="left|top|right|bottom" height="533" label="Eventos" left="1" mouse_opaque="false" name="events_panel" width="778"><radio_group bottom="-40" draw_border="false" follows="left|top" height="40" left="4" mouse_opaque="true" name="date_mode" width="300"><radio_item bottom="-20" follows="left|top" height="20" left="0" mouse_opaque="true" name="current" width="174">Em progresso e processando</radio_item> | ||
64 | <radio_item bottom_delta="-10" follows="left|top" height="20" left="0" mouse_opaque="true" name="date" width="56">Data</radio_item> | ||
65 | </radio_group> | ||
66 | <button bottom="-40" follows="left|top" font="SansSerif" halign="center" height="20" label="<<" label_selected="<<" left_delta="54" mouse_opaque="true" name="<<" tool_tip="Voltar um dia" width="36" /> | ||
67 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-36" drop_shadow_visible="true" follows="left|top" font="SansSerif" h_pad="0" halign="center" height="14" left_delta="40" mouse_opaque="true" name="date_text" text_color="1, 1, 1, 1" v_pad="0" width="48">6/6</text> | ||
68 | <button bottom="-40" follows="left|top" font="SansSerif" halign="center" height="20" label=">>" label_selected=">>" left_delta="52" mouse_opaque="true" name=">>" tool_tip="Avanar um dia" width="36" /> | ||
69 | <button bottom="-40" follows="left|top" font="SansSerif" halign="center" height="20" label="Hoje" label_selected="Hoje" left_delta="48" mouse_opaque="true" name="Today" tool_tip="Exibir dias dos eventos" width="80" /> | ||
70 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-24" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="20" left="289" mouse_opaque="true" name="text" v_pad="0" width="70">Categoria:</text> | ||
71 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-20" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="20" left="289" mouse_opaque="true" name="text2" v_pad="0" width="70">Nome/Desc:</text> | ||
72 | <combo_box allow_text_entry="false" bottom="-22" follows="left|top" height="18" left="359" max_chars="20" mouse_opaque="true" name="category combo" width="200"><combo_item name="All" value="0">Tudo</combo_item> | ||
73 | <combo_item name="Discussion" value="18">Discusso</combo_item> | ||
74 | <combo_item name="Sports" value="19">Esportes</combo_item> | ||
75 | <combo_item name="LiveMusic" value="20">Msica ao Vivo</combo_item> | ||
76 | <combo_item name="Commercial" value="22">Comercial</combo_item> | ||
77 | <combo_item name="Nightlife/Entertainment" value="23">Vida noturna/Entretenimento</combo_item> | ||
78 | <combo_item name="Games/Contests" value="24">Jogos/Campeonatos</combo_item> | ||
79 | <combo_item name="Pageants" value="25">Espetculos</combo_item> | ||
80 | <combo_item name="Education" value="26">Educao</combo_item> | ||
81 | <combo_item name="ArtsandCulture" value="27">Arte e Cultura</combo_item> | ||
82 | <combo_item name="Charity/SupportGroups" value="28">Caridade/Grupos de Apoio</combo_item> | ||
83 | <combo_item name="Miscellaneous" value="29">Variados</combo_item> | ||
84 | </combo_box> | ||
85 | <line_editor bevel_style="in" border_style="line" border_thickness="1" bottom_delta="-20" follows="left|top" font="SansSerifSmall" height="18" left="359" max_length="32" mouse_opaque="true" name="event_search_text" tab_group="1" width="200" /> | ||
86 | <check_box bottom="-30" control_name="ShowMatureEvents" follows="left|top" font="SansSerifSmall" height="16" initial_value="false" label="Contedo Adulto" left="569" mouse_opaque="true" name="incmature" width="120" /> | ||
87 | <button bottom="-28" follows="left|top" font="SansSerif" halign="center" height="20" label="Buscar" label_selected="Buscar" left_delta="120" mouse_opaque="true" name="Search" tool_tip="Buscar" width="80" /> | ||
88 | <button bottom="-533" follows="left|bottom" font="SansSerif" halign="center" height="20" label="Apagar" label_selected="Apagar" left="212" mouse_opaque="true" name="Delete" width="80" /> | ||
89 | <scroll_list background_visible="false" bottom="-513" column_padding="0" draw_border="true" draw_heading="true" fg_disable_color="1, 1, 1, 1" fg_selected_color="1, 1, 1, 1" fg_unselected_color="1, 1, 1, 1" follows="left|top|right|bottom" height="464" left="4" mouse_opaque="true" multi_select="false" name="results" search_column="2" width="339"><column label="" name="icon" width="24" /> | ||
90 | <column label="" name="type" width="-1" /> | ||
91 | <column label="Nome" name="name" width="178" /> | ||
92 | <column label="Tempo (PDT)" name="date" sort="time" width="106" /> | ||
93 | <column label="" name="event_id" width="-1" /> | ||
94 | <column label="Tempo" name="time" width="-1" /> | ||
95 | </scroll_list> | ||
96 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-20" drop_shadow_visible="true" follows="left|bottom" font="SansSerifSmall" h_pad="0" halign="left" height="16" left="4" mouse_opaque="true" name="result_text" v_pad="0" width="328" /> | ||
97 | <button bottom="-533" follows="left|bottom" font="SansSerif" halign="center" height="20" label="< Prev" label_selected="< Prev" left_delta="76" mouse_opaque="true" name="< Prev" width="60" /> | ||
98 | <button bottom="-533" follows="left|bottom" font="SansSerif" halign="center" height="20" label="Prximo >" label_selected="Prximo >" left_delta="68" mouse_opaque="true" name="Next >" width="60" /> | ||
99 | </panel> | ||
100 | <panel border="true" bottom="-549" follows="left|top|right|bottom" height="533" label="Lugares Populares" left="1" mouse_opaque="false" name="popular_panel" width="778"><button bottom="-533" follows="left|bottom" font="SansSerif" halign="center" height="20" label="< Anterior" label_selected="< Anterior" left_delta="76" mouse_opaque="true" name="< Prev" width="60" /> | ||
101 | <button bottom="-533" follows="left|bottom" font="SansSerif" halign="center" height="20" label="Prximo >" label_selected="Prximo >" left_delta="68" mouse_opaque="true" name="Next >" width="60" /> | ||
102 | <check_box bottom="-22" control_name="FindPlacesPictures" follows="left|top" font="SansSerifSmall" height="16" initial_value="true" label="Exibir somente lugares com foto" left="24" mouse_opaque="true" name="incpictures" width="200" /> | ||
103 | <check_box bottom_delta="-16" control_name="ShowMatureSims" follows="left|top" font="SansSerifSmall" height="16" initial_value="false" label="Incluir lugares em Regies Adultas" left="24" mouse_opaque="true" name="incmature" width="204" /> | ||
104 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-38" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="32" left_delta="326" mouse_opaque="true" name="These are the most popular places in the world, as measured by traffic, the amount of time people spend there." v_pad="0" width="406">Esses so os lugares mais populares no mundo, baseado no trfego e no tempo | ||
105 | que as pessoas permanecem l.</text> | ||
106 | <scroll_list background_visible="false" bottom="-513" column_padding="0" draw_border="true" draw_heading="true" fg_disable_color="1, 1, 1, 1" fg_selected_color="1, 1, 1, 1" fg_unselected_color="1, 1, 1, 1" follows="left|top|right|bottom" height="464" left="4" mouse_opaque="true" multi_select="false" name="results" search_column="2" width="339"><column label="" name="icon" width="24" /> | ||
107 | <column label="" name="type" width="-1" /> | ||
108 | <column label="Nome" name="name" width="215" /> | ||
109 | <column label="Trfego" name="dwell" width="70" /> | ||
110 | </scroll_list> | ||
111 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-20" drop_shadow_visible="true" follows="left|bottom" font="SansSerifSmall" h_pad="0" halign="left" height="16" left="4" mouse_opaque="true" name="result_text" v_pad="0" width="328" /> | ||
112 | </panel> | ||
113 | <panel border="true" bottom="-549" follows="left|top|right|bottom" height="533" label="Venda de Terrenos" left="1" mouse_opaque="false" name="land_sales_panel" width="778"><button bottom="-533" follows="left|bottom" font="SansSerif" halign="center" height="20" label="< Anterior" label_selected="< Anterior" left="80" mouse_opaque="true" name="< Prev" width="60" /> | ||
114 | <button bottom="-533" follows="left|bottom" font="SansSerif" halign="center" height="20" label="Prximo >" label_selected="Prximo >" left_delta="68" mouse_opaque="true" name="Next >" width="60" /> | ||
115 | <combo_box allow_text_entry="false" bottom="-22" follows="left|top" height="18" left="4" max_chars="20" mouse_opaque="true" name="type" width="125"> | ||
116 | |||
117 | |||
118 | <combo_item name="AllTypes" value="All Types">Todos os tipos</combo_item> | ||
119 | |||
120 | |||
121 | <combo_item name="EstateSales" value="Estate Sales"> venda - Regio</combo_item> | ||
122 | <combo_item name="FirstLand" value="First Land">Primeira Compra</combo_item> | ||
123 | </combo_box> | ||
124 | <combo_box allow_text_entry="false" bottom_delta="-18" follows="left|top" height="18" left="4" max_chars="20" mouse_opaque="true" name="rating" width="125"><combo_item name="PG&Mature" value="PG & Mature">PG & Adulto</combo_item> | ||
125 | <combo_item name="PGonly" value="PG only">PG somente</combo_item> | ||
126 | <combo_item name="Matureonly" value="Mature only">Adulto somente</combo_item> | ||
127 | </combo_box> | ||
128 | <check_box bottom="-22" control_name="FindLandPrice" follows="left|top" font="SansSerifSmall" height="16" initial_value="true" label="Preo <= L$" left="132" mouse_opaque="true" name="pricecheck" width="88" /> | ||
129 | <check_box bottom_delta="-16" control_name="FindLandArea" follows="left|top" font="SansSerifSmall" height="16" initial_value="true" label="rea >= m" left="132" mouse_opaque="true" name="areacheck" width="102" /> | ||
130 | <line_editor bevel_style="in" border_style="line" border_thickness="1" bottom="-22" follows="left|top" font="SansSerifSmall" height="16" left="221" max_length="10" mouse_opaque="true" name="priceedit" width="50" /> | ||
131 | <line_editor bevel_style="in" border_style="line" border_thickness="1" bottom_delta="-16" follows="left|top" font="SansSerifSmall" height="16" left="221" max_length="10" mouse_opaque="true" name="areaedit" width="50" /> | ||
132 | <button bottom="-26" follows="left|top" font="SansSerif" halign="center" height="20" label="Buscar" label_selected="Buscar" left="278" mouse_opaque="true" name="Search" width="70" /> | ||
133 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-38" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="32" left="354" mouse_opaque="true" name="land" v_pad="0" width="430">Lotes podem ser adquiridos diretamente atravs de Linden Dollares (L$) ou leilo, | ||
134 | ambos em L$, US$ ou R$. | ||
135 | Para comprar diretamente, visite o lote e clique no nome do lugar na barra ttulo.</text> | ||
136 | <scroll_list background_visible="false" bottom="-513" column_padding="0" draw_border="true" draw_heading="true" fg_disable_color="1, 1, 1, 1" fg_selected_color="1, 1, 1, 1" fg_unselected_color="1, 1, 1, 1" follows="left|top|right|bottom" height="464" left="4" mouse_opaque="true" multi_select="false" name="results" search_column="2" width="387"><column label="" name="icon" width="24" /> | ||
137 | <column label="" name="type" width="-1" /> | ||
138 | <column label="Nome" name="name" width="164" /> | ||
139 | <column label="L$ Preo" name="price" width="65" /> | ||
140 | <column label="rea" name="area" width="50" /> | ||
141 | <column label="L$/m" name="per_meter" width="65" /> | ||
142 | </scroll_list> | ||
143 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-20" drop_shadow_visible="true" follows="left|bottom" font="SansSerifSmall" h_pad="0" halign="left" height="16" left="4" mouse_opaque="true" name="result_text" v_pad="0" width="328" /> | ||
144 | </panel> | ||
145 | <panel border="true" bottom="-549" follows="left|top|right|bottom" height="533" label="Lugares" left="1" mouse_opaque="false" name="places_panel" width="778"><button bottom="-533" follows="left|bottom" font="SansSerif" halign="center" height="20" label="< Anterior" label_selected="< Anterior" left="80" mouse_opaque="true" name="< Prev" width="60" /> | ||
146 | <button bottom="-533" follows="left|bottom" font="SansSerif" halign="center" height="20" label="Prximo >" label_selected="Prximo >" left_delta="68" mouse_opaque="true" name="Next >" width="60" /> | ||
147 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-24" drop_shadow_visible="true" follows="left|top" font="SansSerif" h_pad="0" halign="left" height="16" left="4" mouse_opaque="true" name="find" v_pad="0" width="70">Encontrar:</text> | ||
148 | |||
149 | <line_editor bevel_style="in" border_style="line" border_thickness="1" bottom="-24" follows="left|top" font="SansSerif" height="18" left_delta="65" max_length="63" mouse_opaque="true" name="name" width="128" /> | ||
150 | |||
151 | <check_box bottom_delta="-18" control_name="ShowMatureSims" follows="left|top" font="SansSerifSmall" height="16" initial_value="false" label="Incluir lugares em Regies Adultas" left="42" mouse_opaque="true" name="incmature" width="204" /> | ||
152 | |||
153 | <combo_box allow_text_entry="false" bottom="-24" follows="left|top" height="18" left="200" max_chars="20" mouse_opaque="true" name="Category" width="128"><combo_item name="AnyCategory" value="any">Qualquer Categoria</combo_item> | ||
154 | <combo_item name="LindenLocation" value="linden">Localizao de Lindens</combo_item> | ||
155 | <combo_item name="Adult" value="adult">Adulto</combo_item> | ||
156 | <combo_item name="Arts&Culture" value="arts">Artes & Cultura</combo_item> | ||
157 | <combo_item name="Business" value="store">Negcios</combo_item> | ||
158 | <combo_item name="Educational" value="educational">Educacional</combo_item> | ||
159 | <combo_item name="Gaming" value="game">Jogos</combo_item> | ||
160 | <combo_item name="Hangout" value="gather">Recreao</combo_item> | ||
161 | <combo_item name="NewcomerFriendly" value="newcomer">Bem-vindo Iniciante</combo_item> | ||
162 | <combo_item name="Parks&Nature" value="park">Parques & Natureza</combo_item> | ||
163 | <combo_item name="Residential" value="home">Residencial</combo_item> | ||
164 | <combo_item name="Shopping" value="shopping">Shopping</combo_item> | ||
165 | <combo_item name="Other" value="other">Outros</combo_item> | ||
166 | </combo_box> | ||
167 | |||
168 | <button bottom="-26" follows="left|top" font="SansSerif" halign="center" height="20" label="Buscar" label_selected="Buscar" left_delta="136" mouse_opaque="true" name="Search" width="70" /> | ||
169 | <scroll_list background_visible="false" bottom="-513" column_padding="0" draw_border="true" draw_heading="true" fg_disable_color="1, 1, 1, 1" fg_selected_color="1, 1, 1, 1" fg_unselected_color="1, 1, 1, 1" follows="left|top|right|bottom" height="464" left="4" mouse_opaque="true" multi_select="false" name="results" search_column="2" width="339"><column label="" name="icon" width="24" /> | ||
170 | <column label="" name="type" width="-1" /> | ||
171 | <column label="Nome" name="name" width="215" /> | ||
172 | <column label="Trfego" name="dwell" width="75" /> | ||
173 | </scroll_list> | ||
174 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-20" drop_shadow_visible="true" follows="left|bottom" font="SansSerifSmall" h_pad="0" halign="left" height="16" left="4" mouse_opaque="true" name="result_text" v_pad="0" width="328" /> | ||
175 | </panel> | ||
176 | <panel border="true" bottom="-549" follows="left|top|right|bottom" height="533" label="Pessoas" left="1" mouse_opaque="false" name="people_panel" width="778"><button bottom="-533" follows="left|bottom" font="SansSerif" halign="center" height="20" label="< Anterior" label_selected="< Anterior" left="80" mouse_opaque="true" name="< Prev" width="60" /> | ||
177 | <button bottom="-533" follows="left|bottom" font="SansSerif" halign="center" height="20" label="Prximo >" label_selected="Prximo >" left_delta="68" mouse_opaque="true" name="Next >" width="60" /> | ||
178 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-24" drop_shadow_visible="true" follows="left|top" font="SansSerif" h_pad="0" halign="left" height="16" left="4" mouse_opaque="true" name="find" v_pad="0" width="70">Encontrar:</text> | ||
179 | <line_editor bevel_style="in" border_style="line" border_thickness="1" bottom="-24" follows="left|top" font="SansSerif" height="18" left_delta="65" max_length="63" mouse_opaque="true" name="name" width="200" /> | ||
180 | <button bottom="-26" follows="left|top" font="SansSerif" halign="center" height="20" label="Buscar" label_selected="Buscar" left_delta="210" mouse_opaque="true" name="Search" width="70" /> | ||
181 | <scroll_list background_visible="false" bottom="-513" column_padding="0" draw_border="true" draw_heading="true" fg_disable_color="1, 1, 1, 1" fg_selected_color="1, 1, 1, 1" fg_unselected_color="1, 1, 1, 1" follows="left|top|right|bottom" height="464" left="4" mouse_opaque="true" multi_select="false" name="results" search_column="2" width="326"><column label="" name="icon" width="24" /> | ||
182 | <column label="" name="type" width="-1" /> | ||
183 | <column label="Nome" name="name" width="274" /> | ||
184 | </scroll_list> | ||
185 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-20" drop_shadow_visible="true" follows="left|bottom" font="SansSerifSmall" h_pad="0" halign="left" height="16" left="4" mouse_opaque="true" name="result_text" v_pad="0" width="328" /> | ||
186 | </panel> | ||
187 | <panel border="true" bottom="-549" follows="left|top|right|bottom" height="533" label="Grupos" left="1" mouse_opaque="false" name="groups_panel" width="778"><button bottom="-533" follows="left|bottom" font="SansSerif" halign="center" height="20" label="< Anterior" label_selected="< Anterior" left="80" mouse_opaque="true" name="< Prev" width="60" /> | ||
188 | <button bottom="-533" follows="left|bottom" font="SansSerif" halign="center" height="20" label="Prximo >" label_selected="Prximo >" left_delta="68" mouse_opaque="true" name="Next >" width="60" /> | ||
189 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-24" drop_shadow_visible="true" follows="left|top" font="SansSerif" h_pad="0" halign="left" height="16" left="4" mouse_opaque="true" name="find" v_pad="0" width="70">Encontrar:</text> | ||
190 | <line_editor bevel_style="in" border_style="line" border_thickness="1" bottom="-24" follows="left|top" font="SansSerif" height="18" left_delta="65" max_length="63" mouse_opaque="true" name="name" width="128" /> | ||
191 | <button bottom="-26" follows="left|top" font="SansSerif" halign="center" height="20" label="Buscar" label_selected="Buscar" left_delta="136" mouse_opaque="true" name="Search" width="70" /> | ||
192 | |||
193 | <check_box bottom_delta="-16" control_name="ShowMatureGroups" follows="left|top" | ||
194 | font="SansSerifSmall" height="16" initial_value="false" | ||
195 | label="Include Mature groups" left="42" mouse_opaque="true" | ||
196 | name="incmature" width="204" /> | ||
197 | |||
198 | <scroll_list background_visible="false" bottom="-513" column_padding="0" draw_border="true" draw_heading="true" fg_disable_color="1, 1, 1, 1" fg_selected_color="1, 1, 1, 1" fg_unselected_color="1, 1, 1, 1" follows="left|top|right|bottom" height="464" left="4" mouse_opaque="true" multi_select="false" name="results" search_column="2" width="339"> | ||
199 | <column label="" name="icon" width="24" /> | ||
200 | <column label="" name="type" width="-1" /> | ||
201 | <column label="Nome" name="name" width="184" /> | ||
202 | <column label="Membros" name="members" width="100" /> | ||
203 | </scroll_list> | ||
204 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-20" drop_shadow_visible="true" follows="left|bottom" font="SansSerifSmall" h_pad="0" halign="left" height="16" left="4" mouse_opaque="true" name="result_text" v_pad="0" width="328" /> | ||
205 | </panel> | ||
206 | </tab_container> | ||
207 | <panel bottom="0" height="470" left="340" name="classified_details_panel" width="440" /> | ||
208 | <panel bottom="-550" height="486" left="350" name="Panel Avatar" width="430" /> | ||
209 | <panel bottom="0" height="470" left="340" name="event_details_panel" width="440" /> | ||
210 | <panel bottom="0" height="515" left="350" name="group_details_panel_holder" width="430"><panel bottom="0" height="470" left="0" name="group_details_panel" width="430" /> | ||
211 | </panel> | ||
212 | <panel bottom="20" height="470" left="340" name="place_details_panel" width="440" /> | ||
213 | <panel bottom="20" height="470" left="385" name="place_details_small_panel" width="395" /> | ||
214 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/pt/floater_friends.xml b/linden/indra/newview/skins/xui/pt/floater_friends.xml deleted file mode 100644 index 1b76e30..0000000 --- a/linden/indra/newview/skins/xui/pt/floater_friends.xml +++ /dev/null | |||
@@ -1,22 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <floater name="Friends" title="Amigos" can_resize="true" can_minimize="true" can_close="true" can_drag_on_left="false" rect_control="FloaterFriendsRect" min_width="293" min_height="300" ><!-- <text name="help_label" bottom="-30" left="15" font="SansSerifSmall" follows="top|left" > </text> --> | ||
3 | <scroll_list name="friend_list" left="10" right="-10" top="-20" bottom="130" column_padding="0" can_resize="true" follows="left|top|bottom|right" draw_heading="true" multi_select="true" search_column="1" tool_tip="Pressione shift ou control enquanto seleciona vrios amigos." > <column name="icon_online_status" image="ff_online_status_button.tga" width="20"/> | ||
4 | <column name="friend_name" label="Nome" dynamicwidth="true" /> | ||
5 | <column name="icon_visible_online" image="ff_visible_online_button.tga" width="20"/> | ||
6 | <column name="icon_visible_map" image="ff_visible_map_button.tga" width="20"/> | ||
7 | <column name="icon_edit_mine" image="ff_edit_mine_button.tga" width="20"/> | ||
8 | <column name="icon_edit_theirs" image="ff_edit_theirs_button.tga" width="20"/> | ||
9 | </scroll_list> | ||
10 | <panel name="rights_container" left="10" right="-10" height="70" bottom="50" border="true" mouse_opaque="true" bevel_style="in" background_visible="true" background_opaque="true" follows="left|right|bottom" bg_opaque_color="0,0,0,0.3" bg_alpha_color="blue" can_resize="false" ><text name="friend_name_label" bottom_delta="-11" left="10" font="SansSerifSmall" follows="top|left" >Selecionar amigo(s) para alterar direitos...</text> | ||
11 | <check_box height="16" label="Podem ver meu status Online" left="10" bottom_delta="-21" name="online_status_cb" width="200" follows="bottom|left" hidden="false" mouse_opaque="true" font="SansSerifSmall" initial_value="false" enabled="false" radio_style="false" tool_tip="Ajustar para esse amigo ver meu status online na sua lista ou carto" /> | ||
12 | <check_box height="16" label="Podem me ver no mapa" left="25" bottom_delta="-18" name="map_status_cb" width="200" follows="bottom|left" hidden="false" mouse_opaque="true" font="SansSerifSmall" initial_value="false" enabled="false" radio_style="false" tool_tip="Ajustar para esse amigo ver minha localiao no seu mapa" /> | ||
13 | <check_box height="16" label="Pode alterar meus objetos" left="10" bottom_delta="-18" name="modify_status_cb" width="200" follows="bottom|left" hidden="false" mouse_opaque="true" font="SansSerifSmall" initial_value="false" enabled="false" radio_style="false" tool_tip="Ajustar para esse amigo poder alterar meus objetos" /> | ||
14 | <text name="process_rights_label" bottom_delta="25" left="10" font="SansSerif" follows="top|left" >Processando alteraode direitos...</text> | ||
15 | </panel> | ||
16 | <button name="im_btn" label="MI" tool_tip="Abrir seo de Mensagem Instantnea" left="10" bottom_delta="-22" width="70" height="20" font="SansSerifSmall" follows="bottom|left" /> | ||
17 | <button name="offer_teleport_btn" label="Teleportar..." tool_tip="Oferecer a esse amigo um teleporte para minha localizao atual." left="85" bottom_delta="0" width="70" height="20" font="SansSerifSmall" follows="bottom|left" /> | ||
18 | <button name="add_btn" label="Incluir..." tool_tip="Oferecer amizade para um residente" left="165" bottom_delta="0" width="70" height="20" font="SansSerifSmall" follows="bottom|left" /> | ||
19 | <button name="profile_btn" label="Perfil" tool_tip="Exibir imagens, grupos e outras informaes" left="10" bottom_delta="-20" width="70" height="20" font="SansSerifSmall" follows="bottom|left" /> | ||
20 | <button name="pay_btn" label="Pagar..." tool_tip="Dar Linden dollars (L$) para este amigo" left="85" bottom_delta="0" width="70" height="20" font="SansSerifSmall" follows="bottom|left" /> | ||
21 | <button name="remove_btn" label="Remover..." tool_tip="Remover esta pessoa da sua lista de amigos" left="165" bottom_delta="0" width="70" height="20" font="SansSerifSmall" follows="bottom|left" /> | ||
22 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/pt/floater_gesture.xml b/linden/indra/newview/skins/xui/pt/floater_gesture.xml deleted file mode 100644 index e925c23..0000000 --- a/linden/indra/newview/skins/xui/pt/floater_gesture.xml +++ /dev/null | |||
@@ -1,13 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <floater can_close="true" can_drag_on_left="false" can_minimize="true" can_resize="true" height="465" min_height="200" min_width="375" name="gestures" title="Ativar gestos" width="375"><text bottom="-30" follows="top|left" font="SansSerifSmall" left="15" name="help_label">Digite uma palavra-chave ou pressione uma tecla para executar um som ou animao.</text> | ||
3 | <scroll_list bottom_delta="-375" draw_border="true" draw_heading="true" follows="top|left|bottom|right" height="370" left="15" multi_select="false" name="gesture_list" width="345"><column label="Gatilho" name="trigger" width="70" /> | ||
4 | <column label="Tecla" name="shortcut" width="70" /> | ||
5 | <column label="" name="key" width="-1" /> | ||
6 | <column label="Nome" name="name" width="160" /> | ||
7 | </scroll_list> | ||
8 | <button bottom_delta="-30" follows="bottom|right" height="20" label="Novo" left="-365" name="new_gesture_btn" width="80" /> | ||
9 | <button bottom_delta="0" follows="bottom|right" height="20" label="Inventrio" left_delta="90" name="inventory_btn" width="80" /> | ||
10 | <button bottom_delta="0" follows="bottom|right" height="20" label="Editar" left_delta="90" name="edit_btn" width="80" /> | ||
11 | <button bottom_delta="0" follows="bottom|right" height="20" label="Executar" left_delta="90" name="play_btn" width="80" /> | ||
12 | <button bottom_delta="0" follows="bottom|right" height="20" label="Parar" left_delta="0" name="stop_btn" width="80" /> | ||
13 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/pt/floater_god_tools.xml b/linden/indra/newview/skins/xui/pt/floater_god_tools.xml deleted file mode 100644 index 7c37227..0000000 --- a/linden/indra/newview/skins/xui/pt/floater_god_tools.xml +++ /dev/null | |||
@@ -1,67 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <floater bottom="-534" can_close="true" can_drag_on_left="false" can_minimize="true" can_resize="false" height="384" hidden="false" left="433" min_height="384" min_width="400" mouse_opaque="true" name="godtools floater" title="God Tools" width="400"><tab_container bottom="-384" follows="left|top" height="364" hidden="false" left="0" mouse_opaque="false" name="GodTools Tabs" tab_position="top" width="400"><panel border="true" bottom="-363" follows="left|top|right|bottom" height="347" hidden="false" label="Grade" left="1" mouse_opaque="false" name="grid" width="398"><button bottom="-28" follows="left|top" font="SansSerif" halign="center" height="20" hidden="false" label="Desconectar todos os usurios" label_selected="Desconectar todos os usurios" left="10" mouse_opaque="true" name="Kick all users" width="100" /> | ||
3 | <button bottom_delta="-28" follows="left|top" font="SansSerif" halign="center" height="20" hidden="false" label="Limpar essa Regio 's Caches de Visibilidade de Mapa" label_selected="Limpar essa Regio 's Caches de Visibilidade de Mapa" left="10" mouse_opaque="true" name="Flush This Region's Map Visibility Caches" width="250" /> | ||
4 | </panel> | ||
5 | <panel border="true" bottom="-363" follows="left|top|right|bottom" height="347" hidden="false" label="Regio" left="1" mouse_opaque="false" name="region" width="398"><text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-20" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="10" hidden="false" left="10" mouse_opaque="true" name="Sim Name:" v_pad="0" width="50">Sim Nome:</text> | ||
6 | <line_editor bevel_style="in" border_style="line" border_thickness="1" bottom="-26" follows="left|top|right" font="SansSerifSmall" height="16" hidden="false" left="70" max_length="63" mouse_opaque="true" name="region name" width="208" /> | ||
7 | <check_box bottom="-46" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Preludio" left="10" mouse_opaque="true" name="check prelude" tool_tip="Ajustar para tornar esta regio um preldio." width="180" /> | ||
8 | <check_box bottom_delta="-20" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Fixar Sol" left="10" mouse_opaque="true" name="check fixed sun" tool_tip="Fixa a posio do sol (como em Regio/Estados) > Terreno." width="180" /> | ||
9 | <check_box bottom_delta="-20" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Reiniciar Home no Teleporte" left="10" mouse_opaque="true" name="check reset home" tool_tip="Quando um residente teleporta, reinicia sua home para o posicionamento de destino." width="180" /> | ||
10 | <check_box bottom_delta="-20" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Visvel" left="10" mouse_opaque="true" name="check visible" tool_tip="Ajustar para fazer essa regio visvel para os no-deuses" width="180" /> | ||
11 | <check_box bottom_delta="-20" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Dano" left="10" mouse_opaque="true" name="check damage" tool_tip="Ajustar para ativar dano nesta regio" width="180" /> | ||
12 | <check_box bottom_delta="-20" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Bloquear ratreamento do Trfego" left="10" mouse_opaque="true" name="block dwell" tool_tip="Configure isto para fazer a regio no computar o trfego" width="180" /> | ||
13 | <check_box bottom_delta="-20" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Bloquear Terraform" left="10" mouse_opaque="true" name="block terraform" tool_tip="Ajustar para desabilitar as pessoas a terraplanarem seus terrenos" width="180" /> | ||
14 | <check_box bottom_delta="-20" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Sandbox" left="10" mouse_opaque="true" name="is sandbox" tool_tip="Alterar quando esta regio tornar-se uma sand-box" width="180" /> | ||
15 | <button bottom_delta="-52" follows="top|right" font="SansSerifSmall" halign="center" height="20" hidden="false" label="Bake Terrain" label_selected="Bake Terrain" left="8" mouse_opaque="true" name="Bake Terrain" tool_tip="Salva o terreno atual como padro." width="110" /> | ||
16 | <button bottom_delta="-24" follows="top|right" font="SansSerifSmall" halign="center" height="20" hidden="false" label="Reverter Terreno" label_selected="Reverter Terreno" left="8" mouse_opaque="true" name="Revert Terrain" tool_tip="Substituir o terreno atual pelo padro." width="110" /> | ||
17 | <button bottom_delta="-24" follows="top|right" font="SansSerifSmall" halign="center" height="20" hidden="false" label="Trocar Terreno" label_selected="Trocar Terreno" left="8" mouse_opaque="true" name="Swap Terrain" tool_tip="Trocar o terreno atual pelo padro." width="110" /> | ||
18 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-46" drop_shadow_visible="true" follows="left|top" font="SansSerif" h_pad="0" halign="left" height="16" hidden="false" left="200" mouse_opaque="true" name="estate id" v_pad="0" width="190">ID da Regio:</text> | ||
19 | <line_editor bevel_style="in" border_style="line" border_thickness="1" bottom="-46" follows="top|right" font="SansSerifSmall" height="16" hidden="false" left_delta="108" max_length="10" mouse_opaque="true" name="estate" width="50" /> | ||
20 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-66" drop_shadow_visible="true" follows="left|top" font="SansSerif" h_pad="0" halign="left" height="16" hidden="false" left="200" mouse_opaque="true" name="parent id" v_pad="0" width="190">ID do Pai:</text> | ||
21 | <line_editor bevel_style="in" border_style="line" border_thickness="1" bottom="-66" follows="top|right" font="SansSerifSmall" height="16" hidden="false" left_delta="108" max_length="10" mouse_opaque="true" name="parentestate" tool_tip="Este o Estado Pai para esta regio" width="50" /> | ||
22 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-86" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" hidden="false" left="200" mouse_opaque="true" name="Grid Pos: " v_pad="0" width="190">Posio da Grade:</text> | ||
23 | <line_editor bevel_style="in" border_style="line" border_thickness="1" bottom="-86" follows="top|right" font="SansSerifSmall" height="16" hidden="false" left_delta="88" max_length="10" mouse_opaque="true" name="gridposx" tool_tip="Esta a grade x posio para esta regio" width="50" /> | ||
24 | <line_editor bevel_style="in" border_style="line" border_thickness="1" bottom="-86" follows="top|right" font="SansSerifSmall" height="16" hidden="false" left_delta="60" max_length="10" mouse_opaque="true" name="gridposy" tool_tip="Esta a grade y posio para esta regio" width="40" /> | ||
25 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-106" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" hidden="false" left="200" mouse_opaque="true" name="Redirect to Grid: " v_pad="0" width="190">Redirecionar a Grade:</text> | ||
26 | <line_editor bevel_style="in" border_style="line" border_thickness="1" bottom="-106" follows="top|right" font="SansSerifSmall" height="16" hidden="false" left_delta="88" max_length="10" mouse_opaque="true" name="redirectx" width="50" /> | ||
27 | <line_editor bevel_style="in" border_style="line" border_thickness="1" bottom="-106" follows="top|right" font="SansSerifSmall" height="16" hidden="false" left_delta="60" max_length="10" mouse_opaque="true" name="redirecty" width="40" /> | ||
28 | <spinner bottom="-126" decimal_digits="3" follows="top|right" height="16" hidden="false" increment="0.1" initial_val="1" left="308" max_val="4" min_val="0" mouse_opaque="true" name="billable factor" width="80" /> | ||
29 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-126" drop_shadow_visible="true" follows="left|top" font="SansSerif" h_pad="0" halign="left" height="16" hidden="false" left_delta="-108" mouse_opaque="true" name="billable factor text" v_pad="0" width="110">Fator cobrana:</text> | ||
30 | <spinner bottom="-146" decimal_digits="3" follows="top|right" height="16" hidden="false" increment="1" initial_val="1" left="308" max_val="100" min_val="0" mouse_opaque="true" name="land cost" width="80" /> | ||
31 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-146" drop_shadow_visible="true" follows="left|top" font="SansSerif" h_pad="0" halign="left" height="16" hidden="false" left_delta="-108" mouse_opaque="true" name="land cost text" v_pad="0" width="110">L$ por metros quadrados</text> | ||
32 | <button bottom="-170" follows="top|right" font="SansSerifSmall" halign="center" height="20" hidden="false" label="Atualizar" label_selected="Atualizar" left="278" mouse_opaque="true" name="Refresh" tool_tip="Clique aqui para atualizar a informao acima." width="110" /> | ||
33 | <button bottom_delta="-56" follows="top|right" font="SansSerifSmall" halign="center" height="20" hidden="false" label="Aplicar" label_selected="Aplicar" left="278" mouse_opaque="true" name="Apply" tool_tip="Clique aqui para aplicar qualquer mudana acima" width="110" /> | ||
34 | <button bottom="-258" follows="top|right" font="SansSerifSmall" halign="center" height="20" hidden="false" label="Selecionar Regio" label_selected="Selecionar Regio" left="128" mouse_opaque="true" name="Select Region" tool_tip="Selecionar toda a regio com a ferramenta de terreno" width="110" /> | ||
35 | <button bottom_delta="-24" follows="top|right" font="SansSerifSmall" halign="center" height="20" hidden="false" label="Autosalvar Agora" label_selected="Autosalvar Agora" left="128" mouse_opaque="true" name="Autosave now" tool_tip="Salvar estado compactado do diretrio." width="110" /> | ||
36 | </panel> | ||
37 | <panel border="true" bottom="-363" follows="left|top|right|bottom" height="347" hidden="false" label="Objetos" left="1" mouse_opaque="false" name="objects" width="398"><text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-20" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="10" hidden="false" left="10" mouse_opaque="true" name="Sim Name:" v_pad="0" width="50">Sim Nome:</text> | ||
38 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-20" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="10" hidden="false" left_delta="60" mouse_opaque="true" name="region name" v_pad="0" width="320">Welsh</text> | ||
39 | <check_box bottom="-46" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Desativar Scripts" left="10" mouse_opaque="true" name="disable scripts" tool_tip="Ajustar para desativar todos os scripts da regio" width="110" /> | ||
40 | <check_box bottom="-46" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Desartivar Colises" left_delta="120" mouse_opaque="true" name="disable collisions" tool_tip="Ajustar para desativar colises no-agentes nessa regio" width="121" /> | ||
41 | <check_box bottom="-46" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Desativar Fsica" left_delta="120" mouse_opaque="true" name="disable physics" tool_tip="Ajustar para desativar a fsica nessa regio" width="130" /> | ||
42 | <button bottom="-74" follows="top|right" font="SansSerifSmall" halign="center" height="20" hidden="false" label="Aplicar" label_selected="Aplicar" left="278" mouse_opaque="true" name="Apply" tool_tip="Clique aqui para aplicar as alteraes acima." width="110" /> | ||
43 | <button bottom="-98" follows="top|right" font="SansSerifSmall" halign="center" height="20" hidden="false" label="Ajustar Alvo" label_selected="Ajustar Alvo" left="8" mouse_opaque="true" name="Set Target" tool_tip="Configura o avatar alvo para deleo de objetos." width="110" /> | ||
44 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-88" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="10" hidden="false" left="130" mouse_opaque="true" name="target_avatar_name" v_pad="0" width="260">(sem alvo)</text> | ||
45 | <button bottom="-146" follows="top|right" font="SansSerifSmall" halign="center" height="20" hidden="false" label="Apagar objetos programados em outras terras" label_selected="Apagar objetos programados em outras terras" left="8" mouse_opaque="true" name="Delete Target's Scripted Objects On Others Land" tool_tip="Apagar todos os objetos programados possudos pelo alvo nas terras fora do domnio do alvo. (sem cpia) objetos iro retornar." width="380" /> | ||
46 | <button bottom_delta="-48" follows="top|right" font="SansSerifSmall" halign="center" height="20" hidden="false" label="Apagar objetos programados do Alvo em qualquer terreno" label_selected="Apagar objetos programados do Alvo em qualquer terreno" left="8" mouse_opaque="true" name="Delete Target's Scripted Objects On *Any* Land" tool_tip="Apagar todos os objetos programados pelo alvo nesta regio (sem cpia) objetos iro retornar." width="380" /> | ||
47 | <button bottom_delta="-48" follows="top|right" font="SansSerifSmall" halign="center" height="20" hidden="false" label="Apagar *TODOS* os objetos do alvo" label_selected="Apagar *TODOS* os objetos do alvo" left="8" mouse_opaque="true" name="Delete *ALL* Of Target's Objects" tool_tip="Apagar todos os objetes possudos pelo alvo nesta regio (sem cpia) os objetos iro retornar." width="380" /> | ||
48 | <button bottom_delta="-48" follows="top|right" font="SansSerifSmall" halign="center" height="20" hidden="false" label="Pegar colises superiores" label_selected="Pegar colises superiores" left="8" mouse_opaque="true" name="Get Top Colliders" tool_tip="Gets list of objects experiencing the most narrowphase callbacks." width="110" /> | ||
49 | <button bottom_delta="-24" follows="top|right" font="SansSerifSmall" halign="center" height="20" hidden="false" label="Pegar scripts superiores" label_selected="Pegar scripts superiores" left="8" mouse_opaque="true" name="Get Top Scripts" tool_tip="Listar os objetos programados com a maior durao em tempo de execuo." width="110" /> | ||
50 | <button bottom_delta="-24" follows="top|right" font="SansSerifSmall" halign="center" height="20" hidden="false" label="Informaes de Scripts" label_selected="Informaes de Scripts" left="8" mouse_opaque="true" name="Scripts digest" tool_tip="Pegar uma lista d todos os scripts e o nmero de ocorrncias para cada." width="110" /> | ||
51 | </panel> | ||
52 | <panel border="true" bottom="-363" follows="left|top|right|bottom" height="347" hidden="false" label="Requisio" left="1" mouse_opaque="true" name="request" width="398"><text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-14" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="10" hidden="false" left="10" mouse_opaque="true" name="Destination:" v_pad="0" width="80">Destino:</text> | ||
53 | <combo_box allow_text_entry="false" bottom="-20" follows="left|top" height="16" hidden="false" left="100" max_chars="20" mouse_opaque="true" name="destination" width="290"><combo_item name="Selection" value="Selection">Seleo</combo_item> | ||
54 | <combo_item name="AgentRegion" value="Agent Region">Agente da Regio</combo_item> | ||
55 | </combo_box> | ||
56 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-38" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="10" hidden="false" left="10" mouse_opaque="true" name="Request:" v_pad="0" width="80">Requisio:</text> | ||
57 | <combo_box allow_text_entry="true" bottom="-44" follows="left|top" height="16" hidden="false" left="100" max_chars="20" mouse_opaque="true" name="request" width="290"><combo_item name="colliders<steps>" value="colliders <steps>">Passos de Coliso</combo_item> | ||
58 | <combo_item name="scripts<count>,<optionalpattern>" value="scripts <count>,<optional pattern>">Contagem de scripts, Formas opcionais</combo_item> | ||
59 | <combo_item name="objects<pattern>" value="objects <pattern>">Padres de Objetos</combo_item> | ||
60 | <combo_item name="rez<asset_id>" value="rez <asset_id>">rez <asset_id></combo_item> | ||
61 | </combo_box> | ||
62 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-62" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="10" hidden="false" left="10" mouse_opaque="true" name="Parameter:" v_pad="0" width="80">Parametro:</text> | ||
63 | <line_editor bevel_style="in" border_style="line" border_thickness="1" bottom="-68" follows="left|top" font="SansSerifSmall" height="16" hidden="false" left="100" max_length="63" mouse_opaque="true" name="parameter" width="290" /> | ||
64 | <button bottom="-116" follows="left|top" font="SansSerif" halign="center" height="20" hidden="false" label="Fazer Requisio" label_selected="Fazer Requisio" left="10" mouse_opaque="true" name="Make Request" width="100" /> | ||
65 | </panel> | ||
66 | </tab_container> | ||
67 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/pt/floater_group_info.xml b/linden/indra/newview/skins/xui/pt/floater_group_info.xml deleted file mode 100644 index f2f8533..0000000 --- a/linden/indra/newview/skins/xui/pt/floater_group_info.xml +++ /dev/null | |||
@@ -1,146 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <floater can_close="true" can_drag_on_left="false" can_minimize="true" can_resize="false" height="360" min_height="100" min_width="100" name="groupinfo" title="Informaes de Grupo" width="458"><tab_container bottom="-330" height="306" left="0" mouse_opaque="false" name="tab" tab_position="top" width="458"><panel bottom="-305" follows="left|top|right|bottom" height="289" label="Diversos" left="1" mouse_opaque="true" name="gen" width="456"><text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-24" drop_shadow_visible="true" follows="left|top" font="SansSerif" h_pad="0" halign="left" height="16" left="12" mouse_opaque="true" name="title_box" v_pad="0" width="436">Informao do Grupo</text> | ||
3 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-18" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" left="12" mouse_opaque="true" name="txt" v_pad="0" width="436">Grupos so uma maneira divertida de colaborar com seus amigos.</text> | ||
4 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-16" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" left="12" mouse_opaque="true" name="txt2" v_pad="0" width="436">Grupos permitem que voc tenha uma insignia e vote.</text> | ||
5 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-16" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" left="12" mouse_opaque="true" name="txt3" v_pad="0" width="436">Qualquer um pode criar um grupo. Cada pessoa pode pertencer a at 15 grupos.</text> | ||
6 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-16" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" left="12" mouse_opaque="true" name="txt4" v_pad="0" width="436">Grupos precisam ter pelo menos 3 membros ativos para permanecer ativo.</text> | ||
7 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-16" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" left="12" mouse_opaque="true" name="group_create_text" v_pad="0" width="436">Criar um grupo custa L$100.</text> | ||
8 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-32" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="right" height="16" left="12" mouse_opaque="true" name="lbl" v_pad="0" width="70">Nome:</text> | ||
9 | <line_editor bevel_style="in" bg_readonly_color="0, 0, 0, 0" border_style="line" border_thickness="1" bottom="-138" follows="left|top" font="SansSerifSmall" height="16" left_delta="75" max_length="35" mouse_opaque="true" name="name" text_readonly_color="1, 1, 1, 1" width="361" /> | ||
10 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-156" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="right" height="16" left="12" mouse_opaque="true" name="founder_label" v_pad="0" width="70">Fundador:</text> | ||
11 | <name_editor bevel_style="in" bg_readonly_color="0, 0, 0, 0" border_style="line" border_thickness="1" bottom="-156" follows="left|top" font="SansSerifSmall" height="16" left_delta="75" max_length="35" mouse_opaque="true" name="founder" text_readonly_color="1, 1, 1, 1" width="361" /> | ||
12 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-174" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="right" height="16" left="12" mouse_opaque="true" name="lbl2" v_pad="0" width="70">Estatuto:</text> | ||
13 | <text_editor bg_readonly_color="0, 0, 0, 0" bottom="-206" embedded_items="false" follows="left|top" font="SansSerifSmall" height="48" left="87" max_length="511" mouse_opaque="true" name="charter" text_readonly_color="1, 1, 1, 1" width="361" word_wrap="true" /> | ||
14 | <check_box bottom_delta="-18" follows="left|top" font="SansSerifSmall" height="16" initial_value="true" label="Mostrar na Lista do Grupo" left="87" mouse_opaque="true" name="sho" radio_style="false" width="361" /> | ||
15 | <check_box bottom_delta="-18" follows="left|top" font="SansSerifSmall" height="16" initial_value="false" label="Mostrar Membros na Lista do Grupo" left="87" mouse_opaque="true" name="sho_mem" radio_style="false" width="361" /> | ||
16 | <check_box bottom_delta="-18" follows="left|top" font="SansSerifSmall" height="16" initial_value="false" label="Publicar na Web." left="87" mouse_opaque="true" name="allow_publish" radio_style="false" tool_tip="Publicar as informaes do seu perfil na web." width="361" /> | ||
17 | <button bottom="-260" follows="left|top" font="SansSerif" halign="center" height="16" label="?" label_selected="?" left_delta="130" mouse_opaque="true" name="publish_help_btn" width="20" /> | ||
18 | <check_box bottom="-278" follows="left|top" font="SansSerifSmall" height="16" initial_value="false" label="Adulto" left="87" mouse_opaque="true" name="mature" radio_style="false" tool_tip="As informaes do seu perfil so consideradas contedo adulto." width="361" /> | ||
19 | </panel> | ||
20 | <panel bottom="-305" follows="left|top|right|bottom" height="289" label="Ttulos" left="1" mouse_opaque="true" name="tit" width="456"><text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-24" drop_shadow_visible="true" follows="left|top" font="SansSerif" h_pad="0" halign="left" height="16" left="12" mouse_opaque="true" name="txt" v_pad="0" width="436">Ttulos do Grupo</text> | ||
21 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-18" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" left="12" mouse_opaque="true" name="txt2" v_pad="0" width="436">Grupos podem ter gerentes e membros, cada um pode ter ttulos especiais.</text> | ||
22 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-16" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" left="12" mouse_opaque="true" name="txt3" v_pad="0" width="436">Estes ttulos aparecem antes de seus nomes in-World, no chat e nas MI.</text> | ||
23 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-32" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="right" height="16" left="12" mouse_opaque="true" name="lbl" v_pad="0" width="70">Ttulo de Gerente:</text> | ||
24 | <line_editor bevel_style="in" bg_readonly_color="0, 0, 0, 0" border_style="line" border_thickness="1" bottom="-90" follows="left|top" font="SansSerifSmall" height="16" left_delta="75" max_length="20" mouse_opaque="true" name="ohon" text_readonly_color="1, 1, 1, 1" width="105" /> | ||
25 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-90" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="right" height="16" left_delta="110" mouse_opaque="true" name="lbl2" v_pad="0" width="70">Ttulo de Membro:</text> | ||
26 | <line_editor bevel_style="in" bg_readonly_color="0, 0, 0, 0" border_style="line" border_thickness="1" bottom="-90" follows="left|top" font="SansSerifSmall" height="16" left_delta="75" max_length="20" mouse_opaque="true" name="mhon" text_readonly_color="1, 1, 1, 1" width="105" /> | ||
27 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-124" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" left="12" mouse_opaque="true" name="lbl3" v_pad="0" width="436">Arraste uma textura para fora de seu inventrio para definir a insignia do grupo.</text> | ||
28 | <texture_picker bottom="-220" follows="left|top" height="80" left="87" mouse_opaque="true" name="insig" tool_tip="Clique para escolher uma imagem" width="64" /> | ||
29 | </panel> | ||
30 | <panel bottom="-305" follows="left|top|right|bottom" height="289" label="Membros" left="1" mouse_opaque="true" name="mem" width="456"><text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-24" drop_shadow_visible="true" follows="left|top" font="SansSerif" h_pad="0" halign="left" height="16" left="12" mouse_opaque="true" name="txt" v_pad="0" width="436">Membros do Grupo</text> | ||
31 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-18" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" left="12" mouse_opaque="true" name="txt2" v_pad="0" width="436">Gerentes e Membros atuais do Grupo.</text> | ||
32 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-16" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" left="12" mouse_opaque="true" name="txt3" v_pad="0" width="436">Clique no nome para ver o perfil do Membro.</text> | ||
33 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-18" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="right" height="16" left="12" mouse_opaque="true" name="lbl" v_pad="0" width="70">Gerentes:</text> | ||
34 | <name_list allow_calling_card_drop="false" background_visible="false" bg_selected_color="0.243137, 0.243137, 0.243137, 1" bottom="-132" column_padding="0" draw_border="true" fg_disable_color="1, 1, 1, 1" fg_selected_color="1, 1, 1, 1" fg_unselected_color="1, 1, 1, 1" follows="left|top" height="72" left="87" mouse_opaque="true" multi_select="false" name="officers" width="361" /> | ||
35 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-150" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="right" height="16" left="12" mouse_opaque="true" name="members_label" v_pad="0" width="70">Membros:</text> | ||
36 | <name_list allow_calling_card_drop="false" background_visible="false" bottom="-254" column_padding="0" draw_border="true" fg_disable_color="1, 1, 1, 1" fg_selected_color="1, 1, 1, 1" fg_unselected_color="1, 1, 1, 1" follows="left|top" height="120" left="87" mouse_opaque="true" multi_select="false" name="members" width="361" /> | ||
37 | <button bottom_delta="-27" follows="left|bottom" font="SansSerif" halign="center" height="20" label="Excluir Membro" label_selected="Excluir Membro" left="87" mouse_opaque="true" name="eject_member_btn" width="120" /> | ||
38 | </panel> | ||
39 | <panel bottom="-305" follows="left|top|right|bottom" height="289" label="Votar" left="1" mouse_opaque="true" name="voting" width="456"><tab_container bottom="-289" height="285" left="30" mouse_opaque="false" name="tab" tab_position="top" width="400"><panel bottom="-284" follows="left|top|right|bottom" height="268" label="Eleio" left="1" mouse_opaque="true" name="recall" width="398"><text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-18" drop_shadow_visible="true" follows="left|top" font="SansSerif" h_pad="0" halign="left" height="10" left="12" mouse_opaque="false" name="txt" v_pad="0" width="363">Eleio do Grupo</text> | ||
40 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-24" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" left="12" mouse_opaque="false" name="instructions" v_pad="0" width="350">Clique no boto Iniciar Eleio para iniciar uma nova eleio. Os candidatos sero incluidos num grupo de membros no-gerentes.</text> | ||
41 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-26" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="right" height="10" left="12" mouse_opaque="false" name="lbl" v_pad="0" width="70">Candidatos:</text> | ||
42 | <name_list allow_calling_card_drop="false" background_visible="false" bg_selected_color="0.243137, 0.243137, 0.243137, 1" bottom="-150" column_padding="0" draw_border="true" fg_disable_color="1, 1, 1, 1" fg_selected_color="1, 1, 1, 1" fg_unselected_color="1, 1, 1, 1" follows="left|top" height="94" left="87" mouse_opaque="true" multi_select="false" name="candidates" width="290" /> | ||
43 | <button bottom_delta="-116" follows="top" font="SansSerif" halign="center" height="20" label="Votar" label_selected="Votar" left="87" mouse_opaque="true" name="btn_vote" width="60" /> | ||
44 | <button bottom="-266" follows="left|top" font="SansSerif" halign="center" height="20" label="Abster" label_selected="Abster" left_delta="68" mouse_opaque="true" name="btn_abstain" width="60" /> | ||
45 | <button bottom="-260" follows="top|right" font="SansSerif" halign="center" height="20" label="Iniciar Eleio" label_selected="Iniciar Eleio" left="218" mouse_opaque="true" name="btn_start_election" width="160" /> | ||
46 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-172" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="right" height="20" left="12" mouse_opaque="false" name="lbl2" v_pad="0" width="70">Quorum:</text> | ||
47 | <spinner bottom="-172" decimal_digits="0" follows="left|top" height="20" increment="1" initial_val="1" left_delta="75" max_val="111" min_val="1" mouse_opaque="true" name="quorum" tool_tip="# do total de membros votantes necessrio para o resultado da eleio ser aceito" width="40" /> | ||
48 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-172" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="20" left_delta="45" mouse_opaque="false" name="quorum_text" v_pad="0" width="300">acima de 111 membros no grupo</text> | ||
49 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-196" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="right" height="20" left="210" mouse_opaque="false" name="lbl3" v_pad="0" width="65">Maioria:</text> | ||
50 | <radio_group bottom="-232" follows="left|top" height="60" left="270" mouse_opaque="true" name="majority" tool_tip="Maioria do total de votos necessria para ganhar." width="105"><radio_item bottom="-19" follows="left|top" height="15" left="4" mouse_opaque="true" name="radio" width="99">Maioria Simples</radio_item> | ||
51 | <radio_item bottom_delta="-19" follows="left|top" height="15" left="4" mouse_opaque="true" name="radio2" width="93">2/3 Maioria</radio_item> | ||
52 | <radio_item bottom_delta="-19" follows="left|top" height="15" left="4" mouse_opaque="true" name="radio3" width="93">Unanimidade</radio_item> | ||
53 | </radio_group> | ||
54 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-203" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="right" height="20" left="12" mouse_opaque="false" name="duration_lbl" v_pad="0" width="70">Durao:</text> | ||
55 | <spinner bottom="-200" decimal_digits="0" follows="left|top" height="20" increment="1" initial_val="7" left_delta="75" max_val="30" min_val="1" mouse_opaque="true" name="duration" tool_tip="# de dias que a eleio ir durar." width="40" /> | ||
56 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-203" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="20" left_delta="45" mouse_opaque="false" name="duration_days" v_pad="0" width="300">dias</text> | ||
57 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-224" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="right" height="20" left="12" mouse_opaque="false" name="start_lbl" v_pad="0" width="70">Eleio iniciada em:</text> | ||
58 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-224" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="20" left_delta="75" mouse_opaque="false" name="start_date" v_pad="0" width="200" /> | ||
59 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-242" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="right" height="20" left="12" mouse_opaque="false" name="end_lbl" v_pad="0" width="70">Eleio Concluida em:</text> | ||
60 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-242" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="20" left_delta="75" mouse_opaque="false" name="end_date" v_pad="0" width="200" /> | ||
61 | </panel> | ||
62 | <panel bottom="-284" follows="left|top|right|bottom" height="268" label="Proposta" left="1" mouse_opaque="true" name="panel_group_proposals" width="398"><text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-18" drop_shadow_visible="true" follows="left|top" font="SansSerif" h_pad="0" halign="left" height="10" left="12" mouse_opaque="false" name="txt" v_pad="0" width="363">Propostas do Grupo</text> | ||
63 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-24" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" left="12" mouse_opaque="false" name="instructions" v_pad="0" width="350">No h propostas ativas. Clique no boto Criar Proposta para criar uma nova proposta.</text> | ||
64 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-26" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="right" height="10" left="12" mouse_opaque="false" name="proposal_lbl" v_pad="0" width="70">Propostas:</text> | ||
65 | <scroll_list background_visible="false" bg_selected_color="0.243137, 0.243137, 0.243137, 1" bottom="-190" column_padding="5" draw_border="true" fg_disable_color="1, 1, 1, 1" fg_selected_color="0, 0, 0, 1" fg_unselected_color="1, 1, 1, 1" follows="left|top" height="134" left="87" mouse_opaque="true" multi_select="false" name="proposals" width="290" /> | ||
66 | <text_editor bg_readonly_color="0, 0, 0, 0" bg_writeable_color="1, 1, 1, 1" bottom_delta="40" embedded_items="false" follows="left|top" font="SansSerif" height="94" left="87" max_length="255" mouse_opaque="true" name="proposal_text" text_readonly_color="1, 1, 1, 1" width="290" word_wrap="false" /> | ||
67 | <button bottom_delta="-22" follows="top" font="SansSerif" halign="center" height="20" label="Sim" label_selected="Sim" left="87" mouse_opaque="true" name="btn_yes" width="60" /> | ||
68 | <button bottom="-172" follows="left|top" font="SansSerif" halign="center" height="20" label="No" label_selected="No" left_delta="68" mouse_opaque="true" name="btn_no" width="60" /> | ||
69 | <button bottom="-172" follows="left|top" font="SansSerif" halign="center" height="20" label="Abster" label_selected="Abster" left_delta="68" mouse_opaque="true" name="btn_abstain" width="60" /> | ||
70 | <button bottom="-172" follows="left|top" font="SansSerif" halign="center" height="20" label="Ver Lista" label_selected="Ver Lista" left_delta="68" mouse_opaque="true" name="btn_view_list" width="90" /> | ||
71 | <button bottom_delta="-44" follows="left|top" font="SansSerif" halign="center" height="20" label="Ver Item" label_selected="Ver Item" left="291" mouse_opaque="true" name="btn_view_item" width="90" /> | ||
72 | <button bottom="-216" follows="left|top" font="SansSerif" halign="center" height="20" label="Cria Proposta" label_selected="Cria Proposta" left_delta="-204" mouse_opaque="true" name="btn_proposal" width="160" /> | ||
73 | <button bottom_delta="-50" follows="left|top" font="SansSerif" halign="center" height="20" label="Submeter" label_selected="Submeter" left="87" mouse_opaque="true" name="btn_submit" width="60" /> | ||
74 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-200" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="right" height="20" left="12" mouse_opaque="false" name="quorum_lbl" v_pad="0" width="70">Quorum:</text> | ||
75 | <spinner bottom="-200" decimal_digits="0" follows="left|top" height="20" increment="1" initial_val="0" left_delta="75" max_val="111" min_val="1" mouse_opaque="true" name="quorum" tool_tip="# do total de membros necessrio para que o resultado da eleio seja aceito." width="40" /> | ||
76 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-200" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="20" left_delta="45" mouse_opaque="false" name="quorum_text" v_pad="0" width="300">acima de 111 membros no grupo.</text> | ||
77 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-224" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="right" height="20" left="210" mouse_opaque="false" name="majority_lbl" v_pad="0" width="65">Maioria:</text> | ||
78 | <radio_group bottom="-260" follows="left|top" height="60" left="270" mouse_opaque="true" name="majority" tool_tip="Maioria do total de votos necessrios para ganhar." width="105"><radio_item bottom="-19" follows="left|top" height="15" left="4" mouse_opaque="true" name="radio" width="99">Maioria Simples</radio_item> | ||
79 | <radio_item bottom_delta="-19" follows="left|top" height="15" left="4" mouse_opaque="true" name="radio2" width="93">2/3 Maioria</radio_item> | ||
80 | <radio_item bottom_delta="-19" follows="left|top" height="15" left="4" mouse_opaque="true" name="radio3" width="93">Unanimidade</radio_item> | ||
81 | </radio_group> | ||
82 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-227" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="right" height="20" left="12" mouse_opaque="false" name="duration_lbl" v_pad="0" width="70">Durao:</text> | ||
83 | <spinner bottom="-224" decimal_digits="0" follows="left|top" height="20" increment="1" initial_val="7" left_delta="75" max_val="30" min_val="1" mouse_opaque="true" name="duration" tool_tip="# de dias que a eleio ir durar" width="40" /> | ||
84 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-227" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="20" left_delta="45" mouse_opaque="false" name="duration_text" v_pad="0" width="300">dias</text> | ||
85 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-248" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="right" height="20" left="12" mouse_opaque="false" name="start_lbl" v_pad="0" width="70">Inicio da Votao:</text> | ||
86 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-248" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="20" left_delta="75" mouse_opaque="false" name="start_date" v_pad="0" width="200" /> | ||
87 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-266" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="right" height="20" left="12" mouse_opaque="false" name="end_lbl" v_pad="0" width="70">Trmino da Votao:</text> | ||
88 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-266" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="20" left_delta="75" mouse_opaque="false" name="end_date" v_pad="0" width="200" /> | ||
89 | </panel> | ||
90 | <panel bottom="-284" follows="left|top|right|bottom" height="268" label="Histrico" left="1" mouse_opaque="true" name="History" width="398"><text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-18" drop_shadow_visible="true" follows="left|top" font="SansSerif" h_pad="0" halign="left" height="10" left="12" mouse_opaque="false" name="txt" v_pad="0" width="363">Histrico de Votaes do Grupo</text> | ||
91 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-24" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" left="12" mouse_opaque="false" name="instructions" v_pad="0" width="350">Voc pode ver os resultados da votaes anteriores selecionando pelo voto e.</text> | ||
92 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-14" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" left="12" mouse_opaque="false" name="instructions2" v_pad="0" width="350">clicando em Ver Item.</text> | ||
93 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-12" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="right" height="10" left="12" mouse_opaque="false" name="history_list_lbl" v_pad="0" width="70">Votos Antigos:</text> | ||
94 | <scroll_list background_visible="false" bg_selected_color="1, 1, 1, 1" bottom="-230" column_padding="10" draw_border="true" fg_disable_color="1, 1, 1, 1" fg_selected_color="0, 0, 0, 1" fg_unselected_color="1, 1, 1, 1" follows="left|top" height="170" left="87" mouse_opaque="true" multi_select="false" name="history_list" width="300" /> | ||
95 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-68" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="right" height="10" left="12" mouse_opaque="false" name="vote_text_lbl" v_pad="0" width="70">Resultados das Votaes:</text> | ||
96 | <text_editor bg_readonly_color="0, 0, 0, 0" bg_writeable_color="1, 1, 1, 1" bottom="-230" embedded_items="false" follows="left|top" font="SansSerif" height="170" left="87" max_length="1024" mouse_opaque="true" name="vote_text" text_readonly_color="1, 1, 1, 1" width="300" word_wrap="false" /> | ||
97 | <button bottom="-260" follows="top" font="SansSerif" halign="center" height="20" label="Ver Lista" label_selected="Ver Lista" left="291" mouse_opaque="true" name="btn_view_list" width="90" /> | ||
98 | <button bottom_delta="0" follows="top" font="SansSerif" halign="center" height="20" label="Ver Item" label_selected="Ver Item" left_delta="0" mouse_opaque="true" name="btn_view_item" width="90" /> | ||
99 | </panel> | ||
100 | </tab_container> | ||
101 | </panel> | ||
102 | <panel bottom="-305" follows="left|top|right|bottom" height="289" label="Convidar" left="1" mouse_opaque="true" name="inv" width="456"><text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-24" drop_shadow_visible="true" follows="left|top" font="SansSerif" h_pad="0" halign="left" height="16" left="12" mouse_opaque="true" name="txt" v_pad="0" width="436">Convites para grupos</text> | ||
103 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-18" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" left="12" mouse_opaque="true" name="txt2" v_pad="0" width="436">Convites so enviados por Mensagens Instantneas.</text> | ||
104 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-16" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" left="12" mouse_opaque="true" name="txt3" v_pad="0" width="436">Clique no boto Adicionar para adicionar usurios a lista.</text> | ||
105 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-32" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="right" height="16" left="12" mouse_opaque="true" name="lbl" v_pad="0" width="70">Gerentes:</text> | ||
106 | <name_list allow_calling_card_drop="true" background_visible="true" bottom="-134" column_padding="5" draw_border="true" follows="top" height="60" left="87" mouse_opaque="true" multi_select="false" name="inv officers" width="290" /> | ||
107 | <button bottom_delta="-22" follows="top" font="SansSerif" halign="center" height="20" label="Adicionar Gerente..." label_selected="Adicionar Gerente..." left="87" mouse_opaque="true" name="add_officer_btn" width="120" /> | ||
108 | <button bottom="-156" follows="top" font="SansSerif" halign="center" height="20" label="Remover Selecionados" label_selected="Remover Selecionados" left_delta="128" mouse_opaque="true" name="remove_officer_btn" width="120" /> | ||
109 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-174" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="right" height="16" left="12" mouse_opaque="true" name="lbl2" v_pad="0" width="70">Membros:</text> | ||
110 | <name_list allow_calling_card_drop="true" background_visible="true" bottom="-218" column_padding="5" draw_border="true" follows="top" height="60" left="87" mouse_opaque="true" multi_select="false" name="inv members" width="290" /> | ||
111 | <button bottom_delta="-22" follows="top" font="SansSerif" halign="center" height="20" label="Adicionar Membros..." label_selected="Adicionar Membros..." left="87" mouse_opaque="true" name="add_member_btn" width="120" /> | ||
112 | <button bottom="-240" follows="top" font="SansSerif" halign="center" height="20" label="Remover Selecionados" label_selected="Remover Selecionados" left_delta="128" mouse_opaque="true" name="remove_member_btn" width="120" /> | ||
113 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-258" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="right" height="16" left="12" mouse_opaque="true" name="lbl3" v_pad="0" width="70">Taxa de Inscrio:</text> | ||
114 | <spinner bottom="-258" decimal_digits="0" follows="left|top" height="16" increment="1" initial_val="0" left_delta="75" max_val="1e+007" min_val="0" mouse_opaque="true" name="fee" width="60" /> | ||
115 | <check_box bottom_delta="-24" follows="left|top" font="SansSerifSmall" height="16" initial_value="false" label="Abrir Admisses (no precisa de convite)" left="87" mouse_opaque="true" name="open" radio_style="false" width="361" /> | ||
116 | </panel> | ||
117 | <panel bottom="-305" follows="left|top|right|bottom" height="289" label="Terra" left="1" mouse_opaque="true" name="land" width="456"><text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-24" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" left="12" mouse_opaque="true" name="txt" v_pad="0" width="436">Terras pertencentes ao grupo</text> | ||
118 | <scroll_list background_visible="true" bottom_delta="-152" column_padding="5" draw_border="true" follows="top" height="150" left="8" mouse_opaque="true" multi_select="false" name="parcel list" width="440" /> | ||
119 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-18" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" left="12" mouse_opaque="true" name="lbl" v_pad="0" width="180">Total de Contribuies de Terra:</text> | ||
120 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-210" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="32" left="192" mouse_opaque="true" name="total" v_pad="0" width="75" /> | ||
121 | <button bottom="-198" follows="top" font="SansSerif" halign="center" height="20" label="Mapa..." label_selected="Mapa..." left="380" mouse_opaque="true" name="map_btn" width="60" /> | ||
122 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-216" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" left="12" mouse_opaque="true" name="lbl2" v_pad="0" width="180">Total de Terra em Uso:</text> | ||
123 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-232" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="32" left="192" mouse_opaque="true" name="committed" v_pad="0" width="75" /> | ||
124 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-238" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" left="12" mouse_opaque="true" name="lbl3" v_pad="0" width="180">Terra Disponvel:</text> | ||
125 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-254" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="32" left="192" mouse_opaque="true" name="avail" v_pad="0" width="75" /> | ||
126 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-260" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" left="12" mouse_opaque="true" name="your_contrib_label" v_pad="0" width="180" /> | ||
127 | <line_editor bevel_style="in" border_style="line" border_thickness="1" bottom="-260" follows="left|top" font="SansSerifSmall" height="16" left_delta="185" max_length="10" mouse_opaque="true" name="your_contrib" width="60" /> | ||
128 | <button bottom="-264" follows="top" font="SansSerif" halign="center" height="20" label="Ajustar Contribuio" label_selected="Ajustar Contribuio" left_delta="103" mouse_opaque="true" name="set_contrib_btn" width="140" /> | ||
129 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-284" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" left="12" mouse_opaque="true" name="warning_label" v_pad="0" width="436">AVISO: O grupo possui muita terra. Os membros do grupo precisam contribuir mais.</text> | ||
130 | </panel> | ||
131 | <panel bottom="-305" follows="left|top|right|bottom" height="289" label="Dinheiro" left="1" mouse_opaque="true" name="mon" width="456"><tab_container bottom="-289" height="285" left="0" mouse_opaque="false" name="group money history tab" tab_position="top" width="400"><panel bottom="-284" follows="left|top|right|bottom" height="268" label="Planejamento" left="1" mouse_opaque="true" name="money panel" width="398"><text_editor bg_readonly_color="0.784314, 0.819608, 0.8, 1" bottom="-260" embedded_items="false" follows="left|top|right|bottom" font="Monospace" height="252" left="8" max_length="2147483647" mouse_opaque="true" name="money text" width="382" word_wrap="false" /> | ||
132 | </panel> | ||
133 | <panel bottom="-284" follows="left|top|right|bottom" height="268" label="Detalhes" left="1" mouse_opaque="true" name="money panel2" width="398"><text_editor bg_readonly_color="0.784314, 0.819608, 0.8, 1" bottom="-232" embedded_items="false" follows="left|top|right|bottom" font="Monospace" height="224" left="8" max_length="2147483647" mouse_opaque="true" name="money text" width="382" word_wrap="false" /> | ||
134 | <button bottom="-260" follows="left|bottom" font="SansSerif" halign="center" height="20" label="Mais Cedo" label_selected="Mais Cedo" left="24" mouse_opaque="true" name="< Earlier" tool_tip="Voltar no Tempo" width="80" /> | ||
135 | <button bottom="-260" follows="right|bottom" font="SansSerif" halign="center" height="20" label="Mais Tarde" label_selected="Mais Tarde" left_delta="270" mouse_opaque="true" name="Later >" tool_tip="Adiantar o Tempo" width="80" /> | ||
136 | </panel> | ||
137 | <panel bottom="-284" follows="left|top|right|bottom" height="268" label="Vendas" left="1" mouse_opaque="true" name="money panel3" width="398"><text_editor bg_readonly_color="0.784314, 0.819608, 0.8, 1" bottom="-232" embedded_items="false" follows="left|top|right|bottom" font="Monospace" height="224" left="8" max_length="2147483647" mouse_opaque="true" name="money text" width="382" word_wrap="false" /> | ||
138 | <button bottom="-260" follows="left|bottom" font="SansSerif" halign="center" height="20" label="Mais Cedo" label_selected="Mais Cedo" left="24" mouse_opaque="true" name="< Earlier" tool_tip="Voltar no Tempo" width="80" /> | ||
139 | <button bottom="-260" follows="right|bottom" font="SansSerif" halign="center" height="20" label="Mais Tarde" label_selected="Mais Tarde" left_delta="270" mouse_opaque="true" name="Later >" tool_tip="Adiantar o Tempo" width="80" /> | ||
140 | </panel> | ||
141 | </tab_container> | ||
142 | </panel> | ||
143 | </tab_container> | ||
144 | <button bottom="-352" follows="left|bottom" font="SansSerif" halign="center" height="20" label="OK" label_selected="OK" left="320" mouse_opaque="true" name="OK" width="60" /> | ||
145 | <button bottom="-352" follows="left|bottom" font="SansSerif" halign="center" height="20" label="Cancelar" label_selected="Cancelar" left_delta="68" mouse_opaque="true" name="Cancel" width="60" /> | ||
146 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/pt/floater_groups.xml b/linden/indra/newview/skins/xui/pt/floater_groups.xml deleted file mode 100644 index 8c7950b..0000000 --- a/linden/indra/newview/skins/xui/pt/floater_groups.xml +++ /dev/null | |||
@@ -1,12 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <floater can_close="true" can_drag_on_left="false" can_minimize="true" can_resize="false" height="258" min_height="100" min_width="100" name="groups" title="Grupos" width="280"><text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-40" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" left="12" mouse_opaque="true" name="groupdesc" v_pad="0" width="248">Seu grupo ativo atual est em negrito</text> | ||
3 | <scroll_list background_visible="true" bottom_delta="-128" column_padding="5" draw_border="true" height="120" left="12" mouse_opaque="true" multi_select="false" name="group list" width="248"><column name="name" width="248" /> | ||
4 | </scroll_list> | ||
5 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-24" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" left="12" mouse_opaque="true" name="groupcount" v_pad="0" width="248">Voc pertece a [COUNT] grupos (de um mximo de [MAX] ).</text> | ||
6 | <button bottom_delta="-28" font="SansSerif" halign="center" height="20" label="Ativar" label_selected="Ativar" left="12" mouse_opaque="true" name="Activate" width="80" /> | ||
7 | <button bottom="-220" font="SansSerif" halign="center" height="20" label="Informaes" label_selected="Informaes" left_delta="88" mouse_opaque="true" name="Info" width="80" /> | ||
8 | <button bottom="-220" font="SansSerif" halign="center" height="20" label="Deixar" label_selected="Deixar" left_delta="88" mouse_opaque="true" name="Leave" width="80" /> | ||
9 | <button bottom="-248" font="SansSerif" halign="center" height="20" label="Criar" label_selected="Criar" left="12" mouse_opaque="true" name="Create" width="80" /> | ||
10 | <button bottom="-248" font="SansSerif" halign="center" height="20" label="Procurar..." label_selected="Procurar..." left_delta="88" mouse_opaque="true" name="Search..." width="80" /> | ||
11 | <button bottom="-248" font="SansSerif" halign="center" height="20" label="Fechar" label_selected="Fechar" left_delta="88" mouse_opaque="true" name="Close" width="80" /> | ||
12 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/pt/floater_html.xml b/linden/indra/newview/skins/xui/pt/floater_html.xml deleted file mode 100644 index f8ba1e6..0000000 --- a/linden/indra/newview/skins/xui/pt/floater_html.xml +++ /dev/null | |||
@@ -1,7 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <floater name="htmlfloater" title=""> | ||
3 | <text hidden="true" name="f1_help_title">Second Life Help</text> | ||
4 | <text hidden="true" name="f1_help_url"> | ||
5 | http://secondlife.com/app/support/index_pt.html | ||
6 | </text> | ||
7 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/pt/floater_im.xml b/linden/indra/newview/skins/xui/pt/floater_im.xml deleted file mode 100644 index 8d032d1..0000000 --- a/linden/indra/newview/skins/xui/pt/floater_im.xml +++ /dev/null | |||
@@ -1,32 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <multi_floater bottom="-690" can_close="true" can_drag_on_left="false" can_minimize="true" can_resize="true" enabled="true" follows="left|bottom" height="422" hidden="false" left="294" min_height="130" min_width="350" mouse_opaque="true" name="im_floater" rect_control="FloaterIMRect" title="Mensagem Instantnea" width="419"><tab_container border="false" bottom="-422" enabled="true" follows="left|top|right|bottom" height="406" hidden="false" left="1" mouse_opaque="false" name="Preview Tabs" tab_position="bottom" width="417" /> | ||
3 | <text follows="left|bottom" hidden="true" name="only_user_message">Voc o nico usurio desta sesso.</text> | ||
4 | <text follows="left|bottom" hidden="true" name="offline_message">[FIRST] [LAST] est offline.</text> | ||
5 | |||
6 | |||
7 | <text hidden="true" name="generic_request_error"> | ||
8 | Erro na requisio, por favor, tente novamente. | ||
9 | </text> | ||
10 | |||
11 | <text hidden="true" name="insufficient_perms_error"> | ||
12 | Voc no tem permisses suficientes. | ||
13 | </text> | ||
14 | <text hidden="true" name="user_no_help"> | ||
15 | O usurio requisitado no est mais nessa sesso de ajuda. | ||
16 | </text> | ||
17 | <text hidden="true" name="add_session_event"> | ||
18 | Adcionando agentes sesso de conversa com | ||
19 | </text> | ||
20 | <text hidden="true" name="message_session_event"> | ||
21 | sesso de conversa com | ||
22 | </text> | ||
23 | <text hidden="true" name="teleport_session_event"> | ||
24 | teleportando ao criador de | ||
25 | </text> | ||
26 | <text hidden="true" name="removed_from_group"> | ||
27 | Voc foi removido do grupo. | ||
28 | </text> | ||
29 | |||
30 | |||
31 | |||
32 | </multi_floater> | ||
diff --git a/linden/indra/newview/skins/xui/pt/floater_image_preview.xml b/linden/indra/newview/skins/xui/pt/floater_image_preview.xml deleted file mode 100644 index 1599fee..0000000 --- a/linden/indra/newview/skins/xui/pt/floater_image_preview.xml +++ /dev/null | |||
@@ -1,21 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <floater can_close="true" can_drag_on_left="false" can_minimize="false" can_resize="false" height="440" min_height="140" min_width="300" name="Image Preview" title="" width="300"><text bottom_delta="-40" follows="top|left" height="15" left="10" name="name_label">Nome:</text> | ||
3 | <line_editor bottom_delta="-24" follows="top|left|right" height="19" max_length="254" name="name_form" width="280" /> | ||
4 | <text bottom_delta="-20" follows="top|left" height="15" name="description_label">Descrio:</text> | ||
5 | <line_editor bottom_delta="-24" follows="top|left|right" height="19" max_length="254" name="description_form" width="280" /> | ||
6 | <text bottom_delta="-20" follows="top|left" height="15" name="preview_label">Preview da Imagem como:</text> | ||
7 | <combo_box bottom_delta="-6" follows="left|top" height="18" label="Tipo de Roupas" left="120" name="clothing_type_combo" width="160"><combo_item name="Image">Imagem</combo_item> | ||
8 | <combo_item name="Hair">Cabelo</combo_item> | ||
9 | <combo_item name="FemaleHead">Cabea Feminina</combo_item> | ||
10 | <combo_item name="FemaleUpperBody">Parte Superior do Corpo Feminino</combo_item> | ||
11 | <combo_item name="FemaleLowerBody">Parte Inferior do Corpo Feminino</combo_item> | ||
12 | <combo_item name="MaleHead">Cabea Masculina</combo_item> | ||
13 | <combo_item name="MaleUpperBody">Parte Superior do Corpo Masculino</combo_item> | ||
14 | <combo_item name="MaleLowerBody">Parte Inferiro do Corpo Masculino</combo_item> | ||
15 | <combo_item name="Skirt">Saia</combo_item> | ||
16 | <combo_item name="SculptedPrim">Sculpted Prim</combo_item> | ||
17 | </combo_box> | ||
18 | <text bottom="250" follows="top|left" left="10" name="bad_image_text">Incapaz de ler a imagem.Tente salvar a imagem como 24 bit Targa (.tga).</text> | ||
19 | <button bottom="10" follows="bottom|right" height="20" label="Cancelar" left="182" name="cancel_btn" width="64" /> | ||
20 | <button bottom="10" follows="bottom|left" height="20" label="Upload (L$[AMOUNT])" left="31" name="ok_btn" width="110" /> | ||
21 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/pt/floater_import.xml b/linden/indra/newview/skins/xui/pt/floater_import.xml deleted file mode 100644 index df529e8..0000000 --- a/linden/indra/newview/skins/xui/pt/floater_import.xml +++ /dev/null | |||
@@ -1,12 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <floater can_close="true" can_drag_on_left="false" can_minimize="false" can_resize="false" height="440" name="Import" title="" width="680"><text height="15" left="10" name="name_label" top="10">Nome:</text> | ||
3 | <line_editor height="19" max_length="254" name="name_form" width="280" /> | ||
4 | <text height="15" name="description_label">Descrio:</text> | ||
5 | <line_editor height="19" max_length="254" name="description_form" width="280" /> | ||
6 | <text height="15" name="preview_label">Arquivos para carregar:</text> | ||
7 | <scroll_list draw_border="true" height="280" left="10" multi_select="true" name="upload_list" top="-30" width="400" /> | ||
8 | <button bottom="10" height="20" label="Cancelar" left="182" name="cancel_btn" width="64" /> | ||
9 | <button bottom="10" height="20" label="Upload (L$10)" left="31" name="ok_btn" width="110" /> | ||
10 | <text bottom="356" height="15" left="420" name="preview_label2">Preview da Imagem:</text> | ||
11 | <icon height="256" left="420" name="dummy_preview" width="256" /> | ||
12 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/pt/floater_inspect.xml b/linden/indra/newview/skins/xui/pt/floater_inspect.xml deleted file mode 100644 index 36be4de..0000000 --- a/linden/indra/newview/skins/xui/pt/floater_inspect.xml +++ /dev/null | |||
@@ -1,9 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <floater name="inspect" title="Inspecionar Objeto" can_resize="true" can_minimize="true" can_close="true" can_drag_on_left="false" rect_control="FloaterInspectRect" min_width="400" min_height="300" ><scroll_list name="object_list" left="10" right="-10" top="-20" bottom="30" column_padding="0" can_resize="false" follows="top|right|left|bottom" draw_heading="true" multi_select="false" tool_tip="Selecione um objeto nesta lista para destac-lo in-world" ><column name="object_name" label="Nome do Objeto" type="text" dynamicwidth="true" /> | ||
3 | <column name="owner_name" label="Nome do Proprietrio" type="text" dynamicwidth="true" /> | ||
4 | <column name="creator_name" label="Nome do Criador" type="text" dynamicwidth="true" /> | ||
5 | <column name="creation_date" label="Data de Criao" type="text" width="150" /> | ||
6 | </scroll_list> | ||
7 | <button bottom="5" follows="left|bottom" font="SansSerif" halign="center" height="20" hidden="false" label="Ver Perfil do Proprietrio..." label_selected="" left="10" mouse_opaque="true" name="button owner" width="150" tool_tip="Veja o perfil do proprietrio do objeto destacado"/> | ||
8 | <button bottom="5" follows="left|bottom" font="SansSerif" halign="center" height="20" hidden="false" label="Ver perfil do criador..." label_selected="" left="170" mouse_opaque="true" name="button creator" width="150" tool_tip="Veja o perfil do criador original do objeto destacado"/> | ||
9 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/pt/floater_instant_message.xml b/linden/indra/newview/skins/xui/pt/floater_instant_message.xml deleted file mode 100644 index 56f1196..0000000 --- a/linden/indra/newview/skins/xui/pt/floater_instant_message.xml +++ /dev/null | |||
@@ -1,17 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <!-- This is the _embedded_ instant message panel, not the floater that contains all the instant messages. See floater_im.xml. JC --> | ||
3 | <floater border="true" bottom="-298" can_close="true" can_drag_on_left="false" can_minimize="false" can_resize="false" enabled="true" follows="left|top|right|bottom" height="297" hidden="false" label="(desconhecido)" left="1" min_height="130" min_width="200" mouse_opaque="true" name="im_floater" rect_control="" title="(unknown)" width="501" default_tab_group="1"><text_editor type="string" length="1" bg_readonly_color="ChatHistoryBgColor" bg_writeable_color="ChatHistoryBgColor" bottom="-275" embedded_items="false" enabled="false" follows="left|top|right|bottom" font="SansSerif" height="257" hidden="false" left="4" max_length="2147483647" mouse_opaque="true" name="im_history" text_color="ChatHistoryTextColor" text_readonly_color="ChatHistoryTextColor" width="490" word_wrap="true" /> | ||
4 | |||
5 | <line_editor bevel_style="in" border_style="line" border_thickness="1" bottom="-295" enabled="true" follows="left|right|bottom" font="SansSerif" handle_edit_keys_directly="false" height="20" hidden="false" left="4" max_length="1022" mouse_opaque="true" name="chat_editor" select_all_on_focus_received="false" select_on_focus="false" tab_group="1" width="345" label="Clique aqui para mensagens instantneas" /> | ||
6 | |||
7 | |||
8 | |||
9 | <button bottom="-295" enabled="true" follows="right|bottom" font="SansSerif" halign="center" height="20" hidden="false" label="Perfil..." label_selected="Perfil..." left="355" mouse_opaque="true" name="profile_btn" scale_image="true" width="75" /> | ||
10 | <button bottom="-295" enabled="true" follows="right|bottom" font="SansSerif" halign="center" height="20" hidden="false" label="Fechar" label_selected="Fechar" left="435" mouse_opaque="true" name="close_btn" scale_image="true" width="60" /> | ||
11 | <text hidden="true" name="live_help_dialog" wordwrap="false">*** Bem Vindo a Solicitao de Ajuda *** Por favor, cheque primeiro suas pginas de Ajuda do Second Life precionando F1 ou acessando a Base de Conhecimento em http://secondlife.com/knowledgebase/ Se suas respostas no estiverem ali, or favor entre com sua pergunta e aguarde alguns minutos para que algum Ajudante responsa.-=-=- O tempo de resposta pode variar, especialmente em horrios de pico -=-=-</text> | ||
12 | <text hidden="true" name="title_string">Mensagem Instantnea com [NAME]</text> | ||
13 | <text hidden="true" name="typing_start_string">[NAME] est digitando...</text> | ||
14 | <text hidden="true" name="session_start_string"> | ||
15 | Iniciando uma sessao com [NAME] por favor aguarde. | ||
16 | </text> | ||
17 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/pt/floater_inventory.xml b/linden/indra/newview/skins/xui/pt/floater_inventory.xml deleted file mode 100644 index 1c0620f..0000000 --- a/linden/indra/newview/skins/xui/pt/floater_inventory.xml +++ /dev/null | |||
@@ -1,82 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <floater bottom="-720" can_close="true" can_drag_on_left="false" can_minimize="false" can_resize="true" height="563" hidden="false" left="882" min_height="150" min_width="240" mouse_opaque="true" name="Inventory" rect_control="FloaterInventoryRect" title="Inventrio" width="467"><search_editor bottom="-50" follows="left|top|right" height="16" hidden="false" left="6" mouse_opaque="true" name="inventory search editor" width="455" /> | ||
3 | <tab_container bottom_delta="-512" follows="left|top|right|bottom" height="508" hidden="false" left="2" mouse_opaque="false" name="inventory filter tabs" tab_position="top" width="463"><inventory_panel allow_multi_select="true" border="true" bottom="-507" follows="left|top|right|bottom" height="491" hidden="false" label="Todos os Itens" left="1" mouse_opaque="true" name="All Items" sort_order="InventorySortOrder" width="461" /> | ||
4 | <inventory_panel allow_multi_select="true" border="true" bottom_delta="0" follows="left|top|right|bottom" height="491" hidden="false" label="Itens Recentes" left_delta="0" mouse_opaque="true" name="Recent Items" sort_order="RecentItemsSortOrder" width="461" /> | ||
5 | </tab_container> | ||
6 | <menu_bar bottom="-34" drop_shadow="false" follows="left|top|right" height="18" hidden="false" left="2" mouse_opaque="false" name="Inventory Menu" opaque="false" width="461"><menu bottom_delta="16" color="0, 0, 0, 1" drop_shadow="true" height="101" hidden="false" label="Arquivo" left="0" mouse_opaque="false" name="File" opaque="true" tear_off="true" width="128"><menu_item_call bottom_delta="-18" height="18" hidden="false" label="Abrir" left="0" mouse_opaque="true" name="Open" width="128"><on_click filter="" function="Inventory.DoToSelected" userdata="open" /> | ||
7 | </menu_item_call> | ||
8 | <menu_item_separator bottom_delta="-8" height="8" hidden="false" left="0" mouse_opaque="true" name="separator" width="128" /> | ||
9 | <menu_item_call bottom_delta="-18" height="18" hidden="false" label="Nova Janela" left="0" mouse_opaque="true" name="New Window" width="128"><on_click filter="" function="Inventory.NewWindow" userdata="" /> | ||
10 | </menu_item_call> | ||
11 | <menu_item_separator bottom_delta="-8" height="8" hidden="false" left="0" mouse_opaque="true" name="separator2" width="128" /> | ||
12 | <menu_item_call bottom_delta="-18" height="18" hidden="false" label="Mostrar Filtros" left="0" mouse_opaque="true" name="Show Filters" width="128"><on_click filter="" function="Inventory.ShowFilters" userdata="" /> | ||
13 | </menu_item_call> | ||
14 | <menu_item_call bottom_delta="-18" height="18" hidden="false" label="Fechar Todas as Pastas" left="0" mouse_opaque="true" name="Close All Folders" width="128"><on_click filter="" function="Inventory.CloseAllFolders" userdata="" /> | ||
15 | </menu_item_call> | ||
16 | <menu_item_separator bottom_delta="-8" height="8" hidden="false" left="0" mouse_opaque="true" name="separator3" width="128" /> | ||
17 | <menu_item_call bottom_delta="-18" height="18" hidden="false" label="Limpar Lixeira" left="0" mouse_opaque="true" name="Empty Trash" width="128"><on_click filter="" function="Inventory.EmptyTrash" userdata="" /> | ||
18 | </menu_item_call> | ||
19 | </menu> | ||
20 | <menu bottom_delta="80" color="0, 0, 0, 1" drop_shadow="true" height="121" hidden="false" label="Criar" left="0" mouse_opaque="false" name="Create" opaque="true" tear_off="true" width="121"><menu_item_call bottom_delta="-18" height="18" hidden="false" label="Nova Pasta" left="0" mouse_opaque="true" name="New Folder" width="121"><on_click filter="" function="Inventory.DoCreate" userdata="category" /> | ||
21 | </menu_item_call> | ||
22 | <menu_item_call bottom_delta="-18" height="18" hidden="false" label="Novo Script" left="0" mouse_opaque="true" name="New Script" width="121"><on_click filter="" function="Inventory.DoCreate" userdata="lsl" /> | ||
23 | </menu_item_call> | ||
24 | <menu_item_call bottom_delta="-18" height="18" hidden="false" label="Nova Nota" left="0" mouse_opaque="true" name="New Note" width="121"><on_click filter="" function="Inventory.DoCreate" userdata="notecard" /> | ||
25 | </menu_item_call> | ||
26 | <menu_item_call bottom_delta="-18" height="18" hidden="false" label="Novo Gesto" left="0" mouse_opaque="true" name="New Gesture" width="121"><on_click filter="" function="Inventory.DoCreate" userdata="gesture" /> | ||
27 | </menu_item_call> | ||
28 | |||
29 | <menu bottom_delta="-689" color="0, 0, 0, 1" drop_shadow="true" height="175" hidden="false" left="0" mouse_opaque="false" name="New Clothes" label="Nova Roupa" opaque="true" width="125"> | ||
30 | <menu_item_call bottom_delta="-18" height="18" hidden="false" label="Nova Camisa" left="0" mouse_opaque="true" name="New Shirt" width="125"><on_click filter="" function="Inventory.DoCreate" userdata="shirt" /> | ||
31 | |||
32 | </menu_item_call> | ||
33 | <menu_item_call bottom_delta="-18" height="18" hidden="false" label="Nova Cala" left="0" mouse_opaque="true" name="New Pants" width="125"><on_click filter="" function="Inventory.DoCreate" userdata="pants" /> | ||
34 | </menu_item_call> | ||
35 | <menu_item_call bottom_delta="-18" height="18" hidden="false" label="Novos Sapatos" left="0" mouse_opaque="true" name="New Shoes" width="125"><on_click filter="" function="Inventory.DoCreate" userdata="shoes" /> | ||
36 | </menu_item_call> | ||
37 | <menu_item_call bottom_delta="-18" height="18" hidden="false" label="Novas Meias" left="0" mouse_opaque="true" name="New Socks" width="125"><on_click filter="" function="Inventory.DoCreate" userdata="socks" /> | ||
38 | </menu_item_call> | ||
39 | <menu_item_call bottom_delta="-18" height="18" hidden="false" label="Nova Jaqueta" left="0" mouse_opaque="true" name="New Jacket" width="125"><on_click filter="" function="Inventory.DoCreate" userdata="jacket" /> | ||
40 | </menu_item_call> | ||
41 | <menu_item_call bottom_delta="-18" height="18" hidden="false" label="Nova Saia" left="0" mouse_opaque="true" name="New Skirt" width="125"><on_click filter="" function="Inventory.DoCreate" userdata="skirt" /> | ||
42 | </menu_item_call> | ||
43 | <menu_item_call bottom_delta="-18" height="18" hidden="false" label="Novas Luvas" left="0" mouse_opaque="true" name="New Gloves" width="125"><on_click filter="" function="Inventory.DoCreate" userdata="gloves" /> | ||
44 | </menu_item_call> | ||
45 | <menu_item_call bottom_delta="-18" height="18" hidden="false" label="Nova Angua" left="0" mouse_opaque="true" name="New Undershirt" width="125"><on_click filter="" function="Inventory.DoCreate" userdata="undershirt" /> | ||
46 | </menu_item_call> | ||
47 | <menu_item_call bottom_delta="-18" height="18" hidden="false" label="Novas Roupas de Baixo" left="0" mouse_opaque="true" name="New Underpants" width="125"><on_click filter="" function="Inventory.DoCreate" userdata="underpants" /> | ||
48 | </menu_item_call> | ||
49 | </menu> | ||
50 | |||
51 | <menu bottom_delta="-599" color="0, 0, 0, 1" drop_shadow="true" height="85" hidden="false" left="0" mouse_opaque="false" name="New Body Parts" label="Parte do corpo" opaque="true" width="118"><menu_item_call bottom_delta="-18" height="18" hidden="false" label="Nova Forma" left="0" mouse_opaque="true" name="New Shape" width="118"><on_click filter="" function="Inventory.DoCreate" userdata="shape" /> | ||
52 | |||
53 | </menu_item_call> | ||
54 | <menu_item_call bottom_delta="-18" height="18" hidden="false" label="Nova Pele" left="0" mouse_opaque="true" name="New Skin" width="118"><on_click filter="" function="Inventory.DoCreate" userdata="skin" /> | ||
55 | </menu_item_call> | ||
56 | <menu_item_call bottom_delta="-18" height="18" hidden="false" label="Novo Cabelo" left="0" mouse_opaque="true" name="New Hair" width="118"><on_click filter="" function="Inventory.DoCreate" userdata="hair" /> | ||
57 | </menu_item_call> | ||
58 | <menu_item_call bottom_delta="-18" height="18" hidden="false" label="Novos Olhos" left="0" mouse_opaque="true" name="New Eyes" width="118"><on_click filter="" function="Inventory.DoCreate" userdata="eyes" /> | ||
59 | </menu_item_call> | ||
60 | </menu> | ||
61 | </menu> | ||
62 | <menu bottom_delta="64" color="0, 0, 0, 1" drop_shadow="true" height="49" hidden="false" label="Organizar" left="0" mouse_opaque="false" name="Sort" opaque="true" tear_off="true" width="118"><menu_item_check bottom_delta="-18" control_name="Inventory.SortByName" height="18" hidden="false" label="Por Nome" left="0" mouse_opaque="true" name="By Name" width="118"><on_click filter="" function="Inventory.SetSortBy" userdata="name" /> | ||
63 | </menu_item_check> | ||
64 | <menu_item_check bottom_delta="-18" control_name="Inventory.SortByDate" height="18" hidden="false" label="Por Data" left="0" mouse_opaque="true" name="By Date" width="118"><on_click filter="" function="Inventory.SetSortBy" userdata="date" /> | ||
65 | </menu_item_check> | ||
66 | <menu_item_separator bottom_delta="-8" height="8" hidden="false" left="0" mouse_opaque="true" name="separator" width="118" /> | ||
67 | <menu_item_check bottom_delta="-18" control_name="Inventory.FoldersAlwaysByName" height="18" hidden="false" label="Pastas Sempre por Nome" left="0" mouse_opaque="true" name="Folders Always By Name" width="118"><on_click filter="" function="Inventory.SetSortBy" userdata="foldersalwaysbyname" /> | ||
68 | </menu_item_check> | ||
69 | |||
70 | <menu_item_check bottom_delta="-18" control_name="Inventory.SystemFoldersToTop" height="18" | ||
71 | hidden="false" label="Pastas em primeiro" left="0" mouse_opaque="true" | ||
72 | name="System Folders To Top" width="118"> | ||
73 | <on_click filter="" function="Inventory.SetSortBy" userdata="systemfolderstotop" /> | ||
74 | </menu_item_check> | ||
75 | </menu> | ||
76 | <menu bottom_delta="28" color="0, 0, 0, 1" drop_shadow="true" height="49" hidden="false" label="Filtros" left="0" mouse_opaque="false" name="Filters" opaque="true" tear_off="true" width="118"><menu_item_check bottom_delta="-18" control_name="Inventory.ShowFilters" height="18" hidden="false" label="Modificar Contedo" left="0" mouse_opaque="true" name="Modify Current" width="118"><on_click filter="" function="Inventory.ShowFilters" userdata="" /> | ||
77 | </menu_item_check> | ||
78 | <menu_item_call bottom_delta="-18" height="18" hidden="false" label="Reiniciar Atual" left="0" mouse_opaque="true" name="Reset Current" width="118"><on_click filter="" function="Inventory.ResetFilter" userdata="" /> | ||
79 | </menu_item_call> | ||
80 | </menu> | ||
81 | </menu_bar> | ||
82 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/pt/floater_inventory_item_properties.xml b/linden/indra/newview/skins/xui/pt/floater_inventory_item_properties.xml deleted file mode 100644 index f145aef..0000000 --- a/linden/indra/newview/skins/xui/pt/floater_inventory_item_properties.xml +++ /dev/null | |||
@@ -1,37 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <floater can_close="true" can_drag_on_left="false" can_minimize="true" can_resize="false" height="320" min_height="100" min_width="100" name="item properties" rect_control="PropertiesRect" title="Propriedades" width="350"><icon bottom="-21" follows="top|right" height="16" left="294" mouse_opaque="true" name="IconLocked" width="16" /> | ||
3 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-35" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="10" left="10" mouse_opaque="true" name="LabelItemNameTitle" v_pad="0" width="78">Nome:</text> | ||
4 | <line_editor bevel_style="in" border_style="line" border_thickness="1" bottom="-41" enabled="true" follows="left|top|right" font="SansSerifSmall" height="16" is_unicode="false" left="88" max_length="63" mouse_opaque="true" name="LabelItemName" width="252" /> | ||
5 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-55" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="10" left="10" mouse_opaque="true" name="LabelItemDescTitle" v_pad="0" width="78">Descrio:</text> | ||
6 | <line_editor bevel_style="in" border_style="line" border_thickness="1" bottom="-61" enabled="true" follows="left|top|right" font="SansSerifSmall" height="16" is_unicode="false" left="88" max_length="127" mouse_opaque="true" name="LabelItemDesc" width="252" /> | ||
7 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-81" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" left="10" mouse_opaque="true" name="LabelCreatorTitle" v_pad="0" width="78">Criador:</text> | ||
8 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-81" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" left_delta="78" mouse_opaque="true" name="LabelCreatorName" v_pad="0" width="88">Nicole Linden</text> | ||
9 | <button bottom="-81" follows="top|right" font="SansSerifSmall" halign="center" height="16" label="Perfil..." label_selected="" left_delta="174" mouse_opaque="true" name="BtnCreator" width="78" /> | ||
10 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-101" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" left="10" mouse_opaque="true" name="LabelOwnerTitle" v_pad="0" width="78">Dono:</text> | ||
11 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-101" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" left_delta="78" mouse_opaque="true" name="LabelOwnerName" v_pad="0" width="88">Thrax Linden</text> | ||
12 | <button bottom="-101" follows="top|right" font="SansSerifSmall" halign="center" height="16" label="Perfil..." label_selected="" left_delta="174" mouse_opaque="true" name="BtnOwner" width="78" /> | ||
13 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-121" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" left="10" mouse_opaque="true" name="LabelAcquiredTitle" v_pad="0" width="78">Adquirido:</text> | ||
14 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-121" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" left_delta="78" mouse_opaque="true" name="LabelAcquiredDate" v_pad="0" width="252">Qua Mai 24 12:50:46 2006</text> | ||
15 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-135" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="10" left="10" mouse_opaque="true" name="OwnerLabel" v_pad="0" width="78">Voc pode:</text> | ||
16 | <check_box bottom_delta="-20" follows="left|top" font="SansSerifSmall" height="16" initial_value="false" label="Modificar" left="10" mouse_opaque="true" name="CheckOwnerModify" radio_style="false" width="78" /> | ||
17 | <check_box bottom="-155" follows="left|top" font="SansSerifSmall" height="16" initial_value="false" label="Copiar" left_delta="78" mouse_opaque="true" name="CheckOwnerCopy" radio_style="false" width="88" /> | ||
18 | <check_box bottom="-155" follows="left|top" font="SansSerifSmall" height="16" initial_value="false" label="Revender/Doar" left_delta="88" mouse_opaque="true" name="CheckOwnerTransfer" radio_style="false" width="106" /> | ||
19 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-165" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="10" left="10" mouse_opaque="true" name="BaseMaskDebug" v_pad="0" width="330">B:</text> | ||
20 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-165" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="10" left_delta="60" mouse_opaque="true" name="OwnerMaskDebug" v_pad="0" width="270">O:</text> | ||
21 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-165" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="10" left_delta="60" mouse_opaque="true" name="GroupMaskDebug" v_pad="0" width="210">G:</text> | ||
22 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-165" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="10" left_delta="60" mouse_opaque="true" name="EveryoneMaskDebug" v_pad="0" width="150">E:</text> | ||
23 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-165" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="10" left_delta="60" mouse_opaque="true" name="NextMaskDebug" v_pad="0" width="90">N:</text> | ||
24 | <check_box bottom="-187" follows="left|top" font="SansSerifSmall" height="16" initial_value="false" label="Compartilhar com o grupo" left="10" mouse_opaque="true" name="CheckShareWithGroup" radio_style="false" width="106" /> | ||
25 | <check_box bottom_delta="-32" follows="left|top" font="SansSerifSmall" height="16" initial_value="false" label="Permitir qualquer um copiar" left="10" mouse_opaque="true" name="CheckEveryoneCopy" radio_style="false" width="130" /> | ||
26 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-26" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="10" left="10" mouse_opaque="true" name="NextOwnerLabel" v_pad="0" width="88">Prximo dono pode:</text> | ||
27 | <check_box bottom_delta="-20" follows="left|top" font="SansSerifSmall" height="16" initial_value="false" label="Modificar" left="10" mouse_opaque="true" name="CheckNextOwnerModify" radio_style="false" width="78" /> | ||
28 | <check_box bottom="-265" follows="left|top" font="SansSerifSmall" height="16" initial_value="false" label="Copiar" left_delta="78" mouse_opaque="true" name="CheckNextOwnerCopy" radio_style="false" width="88" /> | ||
29 | <check_box bottom="-265" follows="left|top" font="SansSerifSmall" height="16" initial_value="false" label="Revender/Doar" left_delta="88" mouse_opaque="true" name="CheckNextOwnerTransfer" radio_style="false" width="106" /> | ||
30 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-275" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="10" left="10" mouse_opaque="true" name="SaleLabel" v_pad="0" width="330">Marcar Item:</text> | ||
31 | <check_box bottom_delta="-20" follows="left|top" font="SansSerifSmall" height="16" initial_value="false" label="A venda" left="10" mouse_opaque="true" name="CheckPurchase" radio_style="false" width="78" /> | ||
32 | <radio_group bottom="-295" draw_border="false" follows="left|top|right" height="16" left_delta="78" mouse_opaque="true" name="RadioSaleType" width="252"><radio_item bottom="-16" follows="left|top" height="16" left="0" mouse_opaque="true" name="radio" width="70">Original</radio_item> | ||
33 | <radio_item bottom="-16" follows="left|top" height="16" left_delta="60" mouse_opaque="true" name="radio2" width="70">Copia</radio_item> | ||
34 | </radio_group> | ||
35 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-315" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" left="42" mouse_opaque="true" name="TextPrice" v_pad="0" width="56">Price: L$</text> | ||
36 | <line_editor bevel_style="in" border_style="line" border_thickness="1" bottom="-315" enabled="true" follows="left|top|right" font="SansSerifSmall" height="16" is_unicode="false" left_delta="56" max_length="25" mouse_opaque="true" name="EditPrice" width="242" /> | ||
37 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/pt/floater_inventory_view_finder.xml b/linden/indra/newview/skins/xui/pt/floater_inventory_view_finder.xml deleted file mode 100644 index 495a424..0000000 --- a/linden/indra/newview/skins/xui/pt/floater_inventory_view_finder.xml +++ /dev/null | |||
@@ -1,32 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <floater bottom="-495" can_close="true" can_drag_on_left="false" can_minimize="false" can_resize="false" can_tear_off="true" enabled="true" height="408" hidden="false" left="457" min_height="408" min_width="160" mouse_opaque="true" name="Inventory Finder" title="Propriedades de iten recente" width="160"><icon bottom="-36" color="1 1 1 1" enabled="true" follows="left|top" height="16" hidden="false" image_name="inv_item_animation.tga" left="8" mouse_opaque="true" name="icon_animation" width="16" /> | ||
3 | <check_box bottom="-36" enabled="true" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Animao" left="26" mouse_opaque="true" name="check_animation" radio_style="false" width="126" /> | ||
4 | <icon bottom="-56" color="1 1 1 1" enabled="true" follows="left|top" height="16" hidden="false" image_name="inv_item_callingcard_online.tga" left="8" mouse_opaque="true" name="icon_calling_card" width="16" /> | ||
5 | <check_box bottom="-56" enabled="true" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Cartes de chamadas" left="26" mouse_opaque="true" name="check_calling_card" radio_style="false" width="126" /> | ||
6 | <icon bottom="-76" color="1 1 1 1" enabled="true" follows="left|top" height="16" hidden="false" image_name="inv_item_shirt.tga" left="8" mouse_opaque="true" name="icon_clothing" width="16" /> | ||
7 | <check_box bottom="-76" enabled="true" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Roupas" left="26" mouse_opaque="true" name="check_clothing" radio_style="false" width="126" /> | ||
8 | <icon bottom="-96" color="1 1 1 1" enabled="true" follows="left|top" height="16" hidden="false" image_name="inv_item_gesture.tga" left="8" mouse_opaque="true" name="icon_gesture" width="16" /> | ||
9 | <check_box bottom="-96" enabled="true" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Gestos" left="26" mouse_opaque="true" name="check_gesture" radio_style="false" width="126" /> | ||
10 | <icon bottom="-116" color="1 1 1 1" enabled="true" follows="left|top" height="16" hidden="false" image_name="inv_item_landmark_visited.tga" left="8" mouse_opaque="true" name="icon_landmark" width="16" /> | ||
11 | <check_box bottom="-116" enabled="true" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Landmarks" left="26" mouse_opaque="true" name="check_landmark" radio_style="false" width="126" /> | ||
12 | <icon bottom="-136" color="1 1 1 1" enabled="true" follows="left|top" height="16" hidden="false" image_name="inv_item_notecard.tga" left="8" mouse_opaque="true" name="icon_notecard" width="16" /> | ||
13 | <check_box bottom="-136" enabled="true" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Anotaes" left="26" mouse_opaque="true" name="check_notecard" radio_style="false" width="126" /> | ||
14 | <icon bottom="-156" color="1 1 1 1" enabled="true" follows="left|top" height="16" hidden="false" image_name="inv_item_object.tga" left="8" mouse_opaque="true" name="icon_object" width="16" /> | ||
15 | <check_box bottom="-156" enabled="true" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Objetos" left="26" mouse_opaque="true" name="check_object" radio_style="false" width="126" /> | ||
16 | <icon bottom="-176" color="1 1 1 1" enabled="true" follows="left|top" height="16" hidden="false" image_name="inv_item_script.tga" left="8" mouse_opaque="true" name="icon_script" width="16" /> | ||
17 | <check_box bottom="-176" enabled="true" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Scripts" left="26" mouse_opaque="true" name="check_script" radio_style="false" width="126" /> | ||
18 | <icon bottom="-196" color="1 1 1 1" enabled="true" follows="left|top" height="16" hidden="false" image_name="inv_item_sound.tga" left="8" mouse_opaque="true" name="icon_sound" width="16" /> | ||
19 | <check_box bottom="-196" enabled="true" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Sons" left="26" mouse_opaque="true" name="check_sound" radio_style="false" width="126" /> | ||
20 | <icon bottom="-216" color="1 1 1 1" enabled="true" follows="left|top" height="16" hidden="false" image_name="inv_item_texture.tga" left="8" mouse_opaque="true" name="icon_texture" width="16" /> | ||
21 | <check_box bottom="-216" enabled="true" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Texturas" left="26" mouse_opaque="true" name="check_texture" radio_style="false" width="126" /> | ||
22 | <icon bottom="-236" color="1 1 1 1" enabled="true" follows="left|top" height="16" hidden="false" image_name="inv_item_snapshot.tga" left="8" mouse_opaque="true" name="icon_snapshot" width="16" /> | ||
23 | <check_box bottom="-236" enabled="true" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Fotos" left="26" mouse_opaque="true" name="check_snapshot" radio_style="false" width="126" /> | ||
24 | <button bottom="-260" enabled="true" follows="left|top" font="SansSerif" halign="center" height="20" hidden="false" label="Tudo" label_selected="Tudo" left="8" mouse_opaque="true" name="All" scale_image="true" width="100" /> | ||
25 | <button bottom="-284" enabled="true" follows="left|top" font="SansSerif" halign="center" height="20" hidden="false" label="Nenhum" label_selected="Nenhum" left="8" mouse_opaque="true" name="None" scale_image="true" width="100" /> | ||
26 | <check_box bottom="-304" enabled="true" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Sempre mostrar as pastas" left="8" mouse_opaque="true" name="check_show_empty" radio_style="false" width="144" /> | ||
27 | <check_box bottom="-324" enabled="true" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Desde o Logoff" left="8" mouse_opaque="true" name="check_since_logoff" radio_style="false" width="144" /> | ||
28 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-336" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="center" height="12" hidden="false" left="8" mouse_opaque="true" name="- OR -" v_pad="0" width="144">- OR -</text> | ||
29 | <spinner bottom="-356" enabled="true" follows="left|top" height="16" hidden="false" increment="1" initial_val="0" label="Horas Atrs" label_width="64" left="8" max_val="240000" min_val="0" mouse_opaque="true" name="spin_hours_ago" width="144" /> | ||
30 | <spinner bottom="-376" enabled="true" follows="left|top" height="16" hidden="false" increment="1" initial_val="0" label="Dias Atrs" label_width="64" left="8" max_val="10000" min_val="0" mouse_opaque="true" name="spin_days_ago" width="144" /> | ||
31 | <button bottom="-400" enabled="true" follows="top|right" font="SansSerif" halign="center" height="20" hidden="false" label="Fechar" label_selected="Fechar" left="88" mouse_opaque="true" name="Close" scale_image="true" width="62" /> | ||
32 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/pt/floater_joystick.xml b/linden/indra/newview/skins/xui/pt/floater_joystick.xml deleted file mode 100644 index 2fd378e..0000000 --- a/linden/indra/newview/skins/xui/pt/floater_joystick.xml +++ /dev/null | |||
@@ -1,57 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | ||
2 | <floater bottom="-297" can_close="true" can_drag_on_left="false" can_minimize="true" | ||
3 | can_resize="false" follows="right" height="500" left="298" min_height="151" | ||
4 | min_width="240" mouse_opaque="true" name="build options floater" | ||
5 | rect_control="FloaterJoystickRect" title="Cmera em Vo" width="400"> | ||
6 | |||
7 | <text bottom="-40" left="14">X-Axis</text> | ||
8 | <text bottom="-40" left="142">Y-Axis</text> | ||
9 | <text bottom="-40" left="270">Z-Axis</text> | ||
10 | |||
11 | <spinner bottom="-61" left="14" width="120" label_width="64" control_name="FlycamAxis1" label="Traar" decimal_digits="0" increment="1" min_val="-1" max_val="5"/> | ||
12 | <spinner bottom="-61" left="142" width="120" label_width="64" control_name="FlycamAxis2" label="Traar" decimal_digits="0" increment="1" min_val="-1" max_val="5"/> | ||
13 | <spinner bottom="-61" left="270" width="120" label_width="64" control_name="FlycamAxis0" label="Traar" decimal_digits="0" increment="1" min_val="-1" max_val="5"/> | ||
14 | |||
15 | <spinner bottom="-82" left="14" width="120" label_width="64" control_name="FlycamAxisScale1" label="Escala" decimal_digits="2" increment="0.1" min_val="-1024" max_val="1024"/> | ||
16 | <spinner bottom="-82" left="142" width="120" label_width="64" control_name="FlycamAxisScale2" label="Escala" decimal_digits="2" increment="0.1" min_val="-1024" max_val="1024"/> | ||
17 | <spinner bottom="-82" left="270" width="120" label_width="64" control_name="FlycamAxisScale0" label="Escala" decimal_digits="2" increment="0.1" min_val="-1024" max_val="1024"/> | ||
18 | |||
19 | <spinner bottom="-103" left="14" width="120" label_width="64" control_name="FlycamAxisDeadZone1" label="Zona Morta" decimal_digits="2" increment="0.01" min_val="0" max_val="1"/> | ||
20 | <spinner bottom="-103" left="142" width="120" label_width="64" control_name="FlycamAxisDeadZone2" label="Zona Morta" decimal_digits="2" increment="0.01" min_val="0" max_val="1"/> | ||
21 | <spinner bottom="-103" left="270" width="120" label_width="64" control_name="FlycamAxisDeadZone0" label="Zona Morta" decimal_digits="2" increment="0.01" min_val="0" max_val="1"/> | ||
22 | |||
23 | <text bottom="-132" left="14">Yaw</text> | ||
24 | <text bottom="-132" left="142">Pitch</text> | ||
25 | <text bottom="-132" left="270">Roll</text> | ||
26 | |||
27 | <spinner bottom="-153" left="14" width="120" label_width="64" control_name="FlycamAxis5" label="Traar" decimal_digits="0" increment="1" min_val="-1" max_val="5"/> | ||
28 | <spinner bottom="-153" left="142" width="120" label_width="64" control_name="FlycamAxis4" label="Traar" decimal_digits="0" increment="1" min_val="-1" max_val="5"/> | ||
29 | <spinner bottom="-153" left="270" width="120" label_width="64" control_name="FlycamAxis3" label="Traar" decimal_digits="0" increment="1" min_val="-1" max_val="5"/> | ||
30 | |||
31 | <spinner bottom="-174" left="14" width="120" label_width="64" control_name="FlycamAxisScale5" label="Escala" decimal_digits="2" increment="0.1" min_val="-1024" max_val="1024"/> | ||
32 | <spinner bottom="-174" left="142" width="120" label_width="64" control_name="FlycamAxisScale4" label="Escala" decimal_digits="2" increment="0.1" min_val="-1024" max_val="1024"/> | ||
33 | <spinner bottom="-174" left="270" width="120" label_width="64" control_name="FlycamAxisScale3" label="Escala" decimal_digits="2" increment="0.1" min_val="-1024" max_val="1024"/> | ||
34 | |||
35 | <spinner bottom="-195" left="14" width="120" label_width="64" control_name="FlycamAxisDeadZone5" label="Zona Morta" decimal_digits="2" increment="0.01" min_val="0" max_val="1"/> | ||
36 | <spinner bottom="-195" left="142" width="120" label_width="64" control_name="FlycamAxisDeadZone4" label="Zona Morta" decimal_digits="2" increment="0.01" min_val="0" max_val="1"/> | ||
37 | <spinner bottom="-195" left="270" width="120" label_width="64" control_name="FlycamAxisDeadZone3" label="Zona Morta" decimal_digits="2" increment="0.01" min_val="0" max_val="1"/> | ||
38 | |||
39 | <text name="ZoomLabel" bottom="-224" left="14">Zoom</text> | ||
40 | <spinner bottom="-245" left="14" width="120" label_width="64" control_name="FlycamAxis6" label="Traar" decimal_digits="0" increment="1" min_val="-1" max_val="5"/> | ||
41 | <spinner bottom="-266" left="14" width="120" label_width="64" control_name="FlycamAxisScale6" label="Escala" decimal_digits="2" increment="0.1" min_val="-1024" max_val="1024"/> | ||
42 | <spinner bottom="-287" left="14" width="120" label_width="64" control_name="FlycamAxisDeadZone6" label="Zona Morta" decimal_digits="2" increment="0.01" min_val="0" max_val="1"/> | ||
43 | <check_box bottom_delta="-21" control_name="FlycamZoomDirect" label="Direct Zoom" /> | ||
44 | |||
45 | <slider bottom_delta="-29" can_edit_text="false" control_name="FlycamFeathering" | ||
46 | decimal_digits="0" follows="left" height="16" increment="1" | ||
47 | initial_val="0.7" label="Feathering" left="14" max_val="32" min_val="1" | ||
48 | mouse_opaque="true" name="FlycamFeathering" show_text="false" value="0.7" | ||
49 | width="128" /> | ||
50 | |||
51 | <check_box bottom_delta="-21" control_name="FlycamAutoLeveling" label="Auto Level" /> | ||
52 | <check_box bottom_delta="-21" control_name="FlycamAbsolute" label="Cursor 3D" /> | ||
53 | |||
54 | <text hidden="true" name="JoystickMonitor">Visualizador por Joystick</text> | ||
55 | <text hidden="true" name="Axis">Linha Central [NUM]</text> | ||
56 | |||
57 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/pt/floater_land_holdings.xml b/linden/indra/newview/skins/xui/pt/floater_land_holdings.xml deleted file mode 100644 index 99f60b8..0000000 --- a/linden/indra/newview/skins/xui/pt/floater_land_holdings.xml +++ /dev/null | |||
@@ -1,19 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <floater can_close="true" can_drag_on_left="false" can_minimize="true" can_resize="false" height="383" min_height="100" min_width="100" name="land holdings floater" title="Meu terreno" width="500"><scroll_list background_visible="true" bottom="-194" column_padding="5" draw_border="true" draw_heading="true" height="170" left="8" mouse_opaque="true" multi_select="false" name="parcel list" width="484"><column label="Nome" name="name" width="163" /> | ||
3 | <column label="Localizao" name="location" width="175" /> | ||
4 | <column label="rea" name="area" width="127" /> | ||
5 | <column label="" name="hidden" width="-1" /> | ||
6 | </scroll_list> | ||
7 | <button bottom_delta="-24" font="SansSerif" halign="center" height="20" label="Teleporte" label_selected="Teleporte" left="12" mouse_opaque="true" name="Teleport" tool_tip="Teleportar para o centro do terreno." width="100" /> | ||
8 | <button bottom="-218" font="SansSerif" halign="center" height="20" label="Mostrar no mapa" label_selected="Mostrar no mapa" left_delta="104" mouse_opaque="true" name="Show on Map" tool_tip="Mostrar esse terreno no mapa do mundo." width="100" /> | ||
9 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-238" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" left="12" mouse_opaque="true" name="contrib_label" v_pad="0" width="480">Contribuies para os seus grupos:</text> | ||
10 | <scroll_list background_visible="true" bottom_delta="-79" column_padding="5" draw_border="true" draw_heading="true" height="75" left="8" mouse_opaque="true" multi_select="false" name="grant list" width="484"><column label="Grupo" name="group" width="280" /> | ||
11 | <column label="rea" name="area" width="170" /> | ||
12 | </scroll_list> | ||
13 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-20" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" left="12" mouse_opaque="true" name="allowed_label" v_pad="0" width="348">Permitir marcaes no terreno.</text> | ||
14 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-337" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" left_delta="348" mouse_opaque="true" name="allowed_text" v_pad="0" width="132">0 m</text> | ||
15 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-357" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" left="12" mouse_opaque="true" name="current_label" v_pad="0" width="348">Marcaes atuais:</text> | ||
16 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-357" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" left_delta="348" mouse_opaque="true" name="current_text" v_pad="0" width="132">0 m</text> | ||
17 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-377" drop_shadow_visible="true" follows="left|top" font="SansSerifBold" h_pad="0" halign="left" height="16" left="12" mouse_opaque="true" name="available_label" v_pad="0" width="348">Disponivel para compra de terras:</text> | ||
18 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-377" drop_shadow_visible="true" follows="left|top" font="SansSerifBold" h_pad="0" halign="left" height="16" left_delta="348" mouse_opaque="true" name="available_text" v_pad="0" width="132">0 m</text> | ||
19 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/pt/floater_live_lsleditor.xml b/linden/indra/newview/skins/xui/pt/floater_live_lsleditor.xml deleted file mode 100644 index 5b8ce3d..0000000 --- a/linden/indra/newview/skins/xui/pt/floater_live_lsleditor.xml +++ /dev/null | |||
@@ -1,5 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <floater bottom="-668" can_close="true" can_drag_on_left="false" can_minimize="true" can_resize="true" enabled="true" follows="left|top" height="550" hidden="false" left="306" min_height="271" min_width="290" mouse_opaque="true" name="script ed float" rect_control="FloaterOpenObjectRect" title="Script: Novo Script" width="500"><button bottom="-545" enabled="true" follows="right|bottom" font="SansSerif" halign="center" height="20" hidden="false" label="Resetar" label_selected="Resetar" left="362" mouse_opaque="true" name="Reset" width="128" /> | ||
3 | <check_box bottom="-545" enabled="false" follows="left|bottom" font="SansSerif" height="18" hidden="false" initial_value="true" label="Correndo" left="12" mouse_opaque="true" name="running" radio_style="false" width="100" /> | ||
4 | <panel bottom="-527" enabled="true" follows="left|top|right|bottom" height="506" hidden="false" left="1" name="script ed panel" width="498" /> | ||
5 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/pt/floater_lsl_guide.xml b/linden/indra/newview/skins/xui/pt/floater_lsl_guide.xml deleted file mode 100644 index 7b32e4b..0000000 --- a/linden/indra/newview/skins/xui/pt/floater_lsl_guide.xml +++ /dev/null | |||
@@ -1,23 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | ||
2 | <floater bottom="-500" can_close="true" can_drag_on_left="false" can_minimize="true" | ||
3 | can_resize="true" enabled="true" follows="left|top" height="400" | ||
4 | hidden="false" left="306" min_height="271" min_width="350" | ||
5 | mouse_opaque="true" name="script ed float" | ||
6 | title="LSL Wiki" width="370"> | ||
7 | <check_box bottom="-45" enabled="true" follows="top|left" font="SansSerif" | ||
8 | halign="center" height="20" hidden="false" label="Seguir o Cursor" | ||
9 | left="10" mouse_opaque="true" name="lock_check" width="60" /> | ||
10 | <combo_box bottom_delta="0" enabled="true" follows="top|left|right" font="SansSerif" | ||
11 | halign="center" height="20" hidden="false" label="Bloquear" | ||
12 | left_delta="100" mouse_opaque="true" name="history_combo" | ||
13 | width="90" /> | ||
14 | <button bottom_delta="0" enabled="true" follows="top|right" font="SansSerif" | ||
15 | halign="center" height="20" hidden="false" label="Anterior" | ||
16 | left_delta="95" mouse_opaque="true" name="back_btn" | ||
17 | width="70" /> | ||
18 | <button bottom_delta="0" enabled="true" follows="top|right" font="SansSerif" | ||
19 | halign="center" height="20" hidden="false" label="Posterior" | ||
20 | left_delta="75" mouse_opaque="true" name="fwd_btn" | ||
21 | width="70" /> | ||
22 | <web_browser left="10" right="-10" follows="left|right|top|bottom" bottom="10" top="-50" name="lsl_guide_html"/> | ||
23 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/pt/floater_moveview.xml b/linden/indra/newview/skins/xui/pt/floater_moveview.xml deleted file mode 100644 index ee56b3f..0000000 --- a/linden/indra/newview/skins/xui/pt/floater_moveview.xml +++ /dev/null | |||
@@ -1,11 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <floater bottom="-976" can_close="true" can_drag_on_left="false" can_minimize="false" can_resize="false" can_tear_off="true" enabled="true" follows="bottom" height="58" hidden="false" left="521" min_height="100" min_width="100" mouse_opaque="true" name="move floater" rect_control="FloaterMoveRect" title="" width="160"><button bottom="-54" enabled="true" follows="left|bottom" font="SansSerif" halign="center" height="25" hidden="false" image_disabled="UIImgBtnLeftOutUUID" image_disabled_selected="UIImgBtnLeftInUUID" image_selected="UIImgBtnLeftInUUID" image_unselected="UIImgBtnLeftOutUUID" label="" label_selected="" left="20" mouse_opaque="true" name="turn left btn" scale_image="false" tool_tip="Virar a esquerda" width="25" /> | ||
3 | <button bottom="-54" enabled="true" follows="left|bottom" font="SansSerif" halign="center" height="25" hidden="false" image_disabled="UIImgBtnRightOutUUID" image_disabled_selected="UIImgBtnRightInUUID" image_selected="UIImgBtnRightInUUID" image_unselected="UIImgBtnRightOutUUID" label="" label_selected="" left="66" mouse_opaque="true" name="turn right btn" scale_image="false" tool_tip="Virar a direita" width="25" /> | ||
4 | <button bottom="-29" enabled="true" follows="left|bottom" font="SansSerif" halign="center" height="25" hidden="false" image_disabled="UIImgBtnMoveUpOutUUID" image_disabled_selected="UIImgBtnMoveUpInUUID" image_selected="UIImgBtnMoveUpInUUID" image_unselected="UIImgBtnMoveUpOutUUID" label="" label_selected="" left="91" mouse_opaque="true" name="move up btn" scale_image="false" tool_tip="Pular ou Voar" width="25" /> | ||
5 | <button bottom="-54" enabled="true" follows="left|bottom" font="SansSerif" halign="center" height="25" hidden="false" image_disabled="UIImgBtnMoveDownOutUUID" image_disabled_selected="UIImgBtnMoveDownInUUID" image_selected="UIImgBtnMoveDownInUUID" image_unselected="UIImgBtnMoveDownOutUUID" label="" label_selected="" left="91" mouse_opaque="true" name="move down btn" scale_image="false" tool_tip="Agaixar ou pousar." width="25" /> | ||
6 | <button bottom="-54" control_name="FlyBtnState" enabled="true" follows="left|bottom" font="SansSerif" halign="center" height="20" hidden="false" label="Voar" label_selected="Voar" left="116" mouse_opaque="true" name="fly btn" scale_image="true" tool_tip="Comear ou parar de voar." width="40" /> | ||
7 | <joystick_slide bottom="-29" enabled="true" follows="left|bottom" halign="center" height="25" hidden="false" image_selected="UIImgBtnSlideLeftInUUID" image_unselected="UIImgBtnSlideLeftOutUUID" left="20" mouse_opaque="true" name="slide left btn" quadrant="left" scale_image="false" tool_tip="Mover para esquerda" width="25" /> | ||
8 | <joystick_slide bottom="-29" enabled="true" follows="left|bottom" halign="center" height="25" hidden="false" image_selected="UIImgBtnSlideRightInUUID" image_unselected="UIImgBtnSlideRightOutUUID" left="66" mouse_opaque="true" name="slide right btn" quadrant="right" scale_image="false" tool_tip="Mover para direita" width="25" /> | ||
9 | <joystick_turn bottom="-29" enabled="true" follows="left|bottom" halign="center" height="25" hidden="false" image_selected="UIImgBtnForwardInUUID" image_unselected="UIImgBtnForwardOutUUID" left="45" mouse_opaque="true" name="forward btn" quadrant="up" scale_image="false" tool_tip="Mover para frente." width="21" /> | ||
10 | <joystick_turn bottom="-54" enabled="true" follows="left|bottom" halign="center" height="25" hidden="false" image_selected="move_backward_in.tga" image_unselected="move_backward_out.tga" left="45" mouse_opaque="true" name="backward btn" quadrant="down" scale_image="false" tool_tip="Mover para trs." width="21" /> | ||
11 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/pt/floater_mute.xml b/linden/indra/newview/skins/xui/pt/floater_mute.xml deleted file mode 100644 index 50d413b..0000000 --- a/linden/indra/newview/skins/xui/pt/floater_mute.xml +++ /dev/null | |||
@@ -1,6 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <floater bottom="-384" can_close="true" can_drag_on_left="false" can_minimize="true" can_resize="true" can_tear_off="true" enabled="true" height="300" hidden="false" left="45" min_height="140" min_width="220" mouse_opaque="true" name="mute floater" rect_control="FloaterMuteRect3" title="Residentes e Objetos silenciados" width="300"><scroll_list background_visible="false" bottom="-220" column_padding="5" draw_border="true" draw_heading="false" draw_stripes="true" enabled="true" fg_disable_color="1 1 1 1" fg_selected_color="1 1 1 1" fg_unselected_color="1 1 1 1" follows="left|top|right|bottom" height="200" hidden="false" left="4" mouse_opaque="true" multi_select="false" name="mutes" tool_tip="Lista dos residentes slenciados." width="292" /> | ||
3 | <button bottom="-244" enabled="true" follows="left|bottom" font="SansSerif" halign="center" height="20" hidden="false" label="Silnciar residente..." label_selected="Silnciar residente..." left="4" mouse_opaque="true" name="Mute resident..." tool_tip="Slenciar residente..." width="200" /> | ||
4 | <button bottom="-268" enabled="true" follows="left|bottom" font="SansSerif" halign="center" height="20" hidden="false" label="Silencie um objeto pelo nome..." label_selected="Silencie um objeto pelo nome..." left="4" mouse_opaque="true" name="Mute object by name..." width="200" /> | ||
5 | <button bottom="-292" enabled="false" follows="left|bottom" font="SansSerif" halign="center" height="20" hidden="false" label="Deslenciar" label_selected="Deslenciar" left="4" mouse_opaque="true" name="Unmute" tool_tip="Remove um residente ou objecto da lista de silnciados." width="200" /> | ||
6 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/pt/floater_name_description.xml b/linden/indra/newview/skins/xui/pt/floater_name_description.xml deleted file mode 100644 index da63e0f..0000000 --- a/linden/indra/newview/skins/xui/pt/floater_name_description.xml +++ /dev/null | |||
@@ -1,8 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <floater can_close="true" can_drag_on_left="false" can_minimize="false" can_resize="false" height="140" min_height="140" min_width="300" name="Name/Description" title="" width="300"><text follows="top|left" height="15" left="10" name="name_label" top="-20">Nome:</text> | ||
3 | <line_editor follows="top|left|right" height="19" max_length="254" name="name_form" width="280" /> | ||
4 | <text follows="top|left" height="15" name="description_label" right="-10">Descrio:</text> | ||
5 | <line_editor follows="top|left|right" height="19" max_length="254" name="description_form" width="280" /> | ||
6 | <button bottom="10" follows="bottom|right" height="20" label="Cancelar" left="182" name="cancel_btn" width="64" /> | ||
7 | <button bottom="10" follows="bottom|left" height="20" label="Upload (L$10)" left="31" name="ok_btn" width="110" /> | ||
8 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/pt/floater_new_im.xml b/linden/indra/newview/skins/xui/pt/floater_new_im.xml deleted file mode 100644 index c7c3db9..0000000 --- a/linden/indra/newview/skins/xui/pt/floater_new_im.xml +++ /dev/null | |||
@@ -1,7 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <floater border="true" bottom="-297" can_close="false" can_drag_on_left="false" can_minimize="false" can_resize="false" can_tear_off="false" enabled="true" follows="left|top|right|bottom" height="296" hidden="false" label="Nova MI" left="1" min_height="100" min_width="100" mouse_opaque="false" name="New IM" title="Nova MI" width="501"><name_list allow_calling_card_drop="false" background_visible="true" bottom="-293" column_padding="5" draw_border="true" draw_heading="false" draw_stripes="true" enabled="true" follows="left|top|right|bottom" height="290" hidden="false" left="6" mouse_opaque="true" multi_select="false" name="user_list" width="421" /> | ||
3 | <button bottom="-271" enabled="true" follows="right|bottom" font="SansSerif" halign="center" height="20" hidden="false" label="Iniciar" label_selected="Iniciar" left="435" mouse_opaque="true" name="start_btn" scale_image="true" sound_flags="0" width="60" /> | ||
4 | <button bottom="-293" enabled="true" follows="right|bottom" font="SansSerif" halign="center" height="20" hidden="false" label="Fechar" label_selected="Fechar" left="435" mouse_opaque="true" name="close_btn" scale_image="true" sound_flags="0" width="60" /> | ||
5 | <text hidden="true" name="name_format">[FIRST] [LAST]</text> | ||
6 | <text hidden="true" name="online_descriptor">(online)</text> | ||
7 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/pt/floater_new_outfit_dialog.xml b/linden/indra/newview/skins/xui/pt/floater_new_outfit_dialog.xml deleted file mode 100644 index 509113e..0000000 --- a/linden/indra/newview/skins/xui/pt/floater_new_outfit_dialog.xml +++ /dev/null | |||
@@ -1,65 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <floater border="true" bottom="167" can_close="false" can_drag_on_left="false" can_minimize="false" can_resize="false" can_tear_off="true" enabled="true" height="510" hidden="false" left="278" min_height="100" min_width="100" mouse_opaque="true" name="modal container" title=" " width="515"><button bottom="-488" enabled="true" font="SansSerif" halign="center" height="20" hidden="false" label="Salvar" label_selected="Salvar" left="171" mouse_opaque="true" name="Save" scale_image="true" width="82" /> | ||
3 | <button bottom="-488" enabled="true" font="SansSerif" halign="center" height="20" hidden="false" label="Cancelar" label_selected="Cancelar" left="261" mouse_opaque="true" name="Cancel" scale_image="true" width="82" /> | ||
4 | <check_box bottom="-216" enabled="true" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Forma" left="13" mouse_opaque="true" name="checkbox_Shape" radio_style="false" width="100" /> | ||
5 | <check_box bottom="-236" enabled="true" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Pele" left="13" mouse_opaque="true" name="checkbox_Skin" radio_style="false" width="100" /> | ||
6 | <check_box bottom="-256" enabled="true" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Cabelo" left="13" mouse_opaque="true" name="checkbox_Hair" radio_style="false" width="100" /> | ||
7 | <check_box bottom="-276" enabled="true" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Olhos" left="13" mouse_opaque="true" name="checkbox_Eyes" radio_style="false" width="100" /> | ||
8 | <check_box bottom="-434" enabled="true" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Renomear Roupas para Nome da Pasta" left="13" mouse_opaque="true" name="rename" radio_style="false" width="210" /> | ||
9 | <check_box bottom="-216" enabled="true" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Camisa" left="113" mouse_opaque="true" name="checkbox_Shirt" radio_style="false" width="100" /> | ||
10 | <check_box bottom="-236" enabled="true" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Calas" left="113" mouse_opaque="true" name="checkbox_Pants" radio_style="false" width="100" /> | ||
11 | <check_box bottom="-256" enabled="true" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Sapatos" left="113" mouse_opaque="true" name="checkbox_Shoes" radio_style="false" width="100" /> | ||
12 | <check_box bottom="-276" enabled="true" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Meias" left="113" mouse_opaque="true" name="checkbox_Socks" radio_style="false" width="100" /> | ||
13 | <check_box bottom="-296" enabled="true" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Jaqueta" left="113" mouse_opaque="true" name="checkbox_Jacket" radio_style="false" width="100" /> | ||
14 | <check_box bottom="-316" enabled="true" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Luvas" left="113" mouse_opaque="true" name="checkbox_Gloves" radio_style="false" width="100" /> | ||
15 | <check_box bottom="-336" enabled="true" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Angua" left="113" mouse_opaque="true" name="checkbox_Undershirt" radio_style="false" width="100" /> | ||
16 | <check_box bottom="-356" enabled="true" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Roupas de Baixo" left="113" mouse_opaque="true" name="checkbox_Underpants" radio_style="false" width="100" /> | ||
17 | <check_box bottom="-376" enabled="true" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Saia" left="113" mouse_opaque="true" name="checkbox_Skirt" radio_style="false" width="100" /> | ||
18 | <check_box bottom="-216" enabled="false" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Peito" left="213" mouse_opaque="true" name="checkbox_Chest" radio_style="false" width="100" /> | ||
19 | <check_box bottom="-236" enabled="true" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="true" label="Crnio" left="213" mouse_opaque="true" name="checkbox_Skull" radio_style="false" width="100" /> | ||
20 | <check_box bottom="-256" enabled="false" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Ombro Esquerdo" left="213" mouse_opaque="true" name="checkbox_Left Shoulder" radio_style="false" width="100" /> | ||
21 | <check_box bottom="-276" enabled="false" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Ombro Direito" left="213" mouse_opaque="true" name="checkbox_Right Shoulder" radio_style="false" width="106" /> | ||
22 | <check_box bottom="-296" enabled="false" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Mo Esquerda" left="213" mouse_opaque="true" name="checkbox_Left Hand" radio_style="false" width="100" /> | ||
23 | <check_box bottom="-316" enabled="false" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Mo Direita" left="213" mouse_opaque="true" name="checkbox_Right Hand" radio_style="false" width="100" /> | ||
24 | <check_box bottom="-336" enabled="true" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="true" label="P Esquerdo" left="213" mouse_opaque="true" name="checkbox_Left Foot" radio_style="false" width="100" /> | ||
25 | <check_box bottom="-356" enabled="true" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="true" label="P Direito" left="213" mouse_opaque="true" name="checkbox_Right Foot" radio_style="false" width="100" /> | ||
26 | <check_box bottom="-376" enabled="false" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Espinha" left="213" mouse_opaque="true" name="checkbox_Spine" radio_style="false" width="100" /> | ||
27 | <check_box bottom="-396" enabled="false" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Pelvis" left="213" mouse_opaque="true" name="checkbox_Pelvis" radio_style="false" width="100" /> | ||
28 | <check_box bottom="-416" enabled="false" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Boca" left="213" mouse_opaque="true" name="checkbox_Mouth" radio_style="false" width="100" /> | ||
29 | <check_box bottom="-436" enabled="false" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Queixo" left="213" mouse_opaque="true" name="checkbox_Chin" radio_style="false" width="100" /> | ||
30 | <check_box bottom="-456" enabled="false" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Orelha Esquerda" left="213" mouse_opaque="true" name="checkbox_Left Ear" radio_style="false" width="100" /> | ||
31 | <check_box bottom="-216" enabled="false" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Orelha Direita" left="313" mouse_opaque="true" name="checkbox_Right Ear" radio_style="false" width="100" /> | ||
32 | <check_box bottom="-236" enabled="false" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Olho Esquerdo" left="313" mouse_opaque="true" name="checkbox_Left Eyeball" radio_style="false" width="100" /> | ||
33 | <check_box bottom="-256" enabled="false" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Olho Direito" left="313" mouse_opaque="true" name="checkbox_Right Eyeball" radio_style="false" width="100" /> | ||
34 | <check_box bottom="-276" enabled="false" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Nariz" left="313" mouse_opaque="true" name="checkbox_Nose" radio_style="false" width="100" /> | ||
35 | <check_box bottom="-296" enabled="false" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Antebrao Direito" left="313" mouse_opaque="true" name="checkbox_R Upper Arm" radio_style="false" width="100" /> | ||
36 | <check_box bottom="-316" enabled="false" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Brao Direito" left="313" mouse_opaque="true" name="checkbox_R Forearm" radio_style="false" width="100" /> | ||
37 | <check_box bottom="-336" enabled="false" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Antebrao Esquerdo" left="313" mouse_opaque="true" name="checkbox_L Upper Arm" radio_style="false" width="100" /> | ||
38 | <check_box bottom="-356" enabled="false" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Brao Esquerdo" left="313" mouse_opaque="true" name="checkbox_L Forearm" radio_style="false" width="100" /> | ||
39 | <check_box bottom="-376" enabled="false" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Ndega Direita" left="313" mouse_opaque="true" name="checkbox_Right Hip" radio_style="false" width="100" /> | ||
40 | <check_box bottom="-396" enabled="false" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Coxa Direita" left="313" mouse_opaque="true" name="checkbox_R Upper Leg" radio_style="false" width="100" /> | ||
41 | <check_box bottom="-416" enabled="true" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="true" label="Canela Direita" left="313" mouse_opaque="true" name="checkbox_R Lower Leg" radio_style="false" width="100" /> | ||
42 | <check_box bottom="-436" enabled="false" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Ndega Esquerda" left="313" mouse_opaque="true" name="checkbox_Left Hip" radio_style="false" width="100" /> | ||
43 | <check_box bottom="-456" enabled="false" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Coxa Esquerda" left="313" mouse_opaque="true" name="checkbox_L Upper Leg" radio_style="false" width="100" /> | ||
44 | <check_box bottom="-216" enabled="true" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="true" label="Canela Esquerda" left="413" mouse_opaque="true" name="checkbox_L Lower Leg" radio_style="false" width="100" /> | ||
45 | <check_box bottom="-236" enabled="false" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Estomago" left="413" mouse_opaque="true" name="checkbox_Stomach" radio_style="false" width="100" /> | ||
46 | <check_box bottom="-256" enabled="false" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Peito Esquerdo" left="413" mouse_opaque="true" name="checkbox_Left Pec" radio_style="false" width="100" /> | ||
47 | <check_box bottom="-276" enabled="false" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Peito Direito" left="413" mouse_opaque="true" name="checkbox_Right Pec" radio_style="false" width="100" /> | ||
48 | <check_box bottom="-296" enabled="false" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Centro 2" left="413" mouse_opaque="true" name="checkbox_Center 2" radio_style="false" width="100" /> | ||
49 | <check_box bottom="-316" enabled="false" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Superior Direita" left="413" mouse_opaque="true" name="checkbox_Top Right" radio_style="false" width="100" /> | ||
50 | <check_box bottom="-336" enabled="false" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Superior" left="413" mouse_opaque="true" name="checkbox_Top" radio_style="false" width="100" /> | ||
51 | <check_box bottom="-356" enabled="false" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Superior Esquerda" left="413" mouse_opaque="true" name="checkbox_Top Left" radio_style="false" width="100" /> | ||
52 | <check_box bottom="-376" enabled="false" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Centro" left="413" mouse_opaque="true" name="checkbox_Center" radio_style="false" width="100" /> | ||
53 | <check_box bottom="-396" enabled="false" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Inferior Esquerda" left="413" mouse_opaque="true" name="checkbox_Bottom Left" radio_style="false" width="100" /> | ||
54 | <check_box bottom="-416" enabled="false" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Inferior" left="413" mouse_opaque="true" name="checkbox_Bottom" radio_style="false" width="100" /> | ||
55 | <check_box bottom="-436" enabled="false" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Inferior Direita" left="413" mouse_opaque="true" name="checkbox_Bottom Right" radio_style="false" width="100" /> | ||
56 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-24" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerif" h_pad="0" halign="left" height="16" hidden="false" left="13" mouse_opaque="true" name="Make New Outfit" v_pad="0" width="489">Fazer Nova Aparencia</text> | ||
57 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-102" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="70" hidden="false" left="13" mouse_opaque="true" name="Outfits are folders that contain clothing and body parts. Drag an outfit folder onto your avatar to put it on. "Make New Outfit" makes a new folder and saves copies of the items you are now wearing into it." v_pad="0" width="489">Aparencias so pastas que contem roupas e partes do corpo. Arraste uma Aparencia at seu avatar para vest-la. Fazer Nova Aparencia cria uma nova pasta e salva cpias dos itens que voc est vestindo no momento.</text> | ||
58 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-126" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerif" h_pad="0" halign="left" height="16" hidden="false" left="13" mouse_opaque="true" name="Folder name:" v_pad="0" width="489">Nome da Pasta:</text> | ||
59 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-174" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerif" h_pad="0" halign="left" height="16" hidden="false" left="13" mouse_opaque="true" name="Items to include in outfit:" v_pad="0" width="489">Itens que compem a Aparncia:</text> | ||
60 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-196" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="14" hidden="false" left="13" mouse_opaque="true" name="Body Parts:" v_pad="0" width="100">Partes do Corpo:</text> | ||
61 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-196" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="14" hidden="false" left="113" mouse_opaque="true" name="Clothes:" v_pad="0" width="100">Roupas:</text> | ||
62 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-196" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="14" hidden="false" left="213" mouse_opaque="true" name="Attachments:" v_pad="0" width="100">Acessrios:</text> | ||
63 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-414" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="14" hidden="false" left="13" mouse_opaque="true" name="Options:" v_pad="0" width="100">Opes:</text> | ||
64 | <line_editor bevel_style="in" border_style="line" border_thickness="1" bottom="-150" enabled="true" follows="left|top" font="SansSerif" handle_edit_keys_directly="true" height="20" hidden="false" left="13" max_length="63" mouse_opaque="true" name="name ed" select_all_on_focus_received="false" select_on_focus="false" width="489">Nova Aparncia</line_editor> | ||
65 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/pt/floater_openobject.xml b/linden/indra/newview/skins/xui/pt/floater_openobject.xml deleted file mode 100644 index 6568343..0000000 --- a/linden/indra/newview/skins/xui/pt/floater_openobject.xml +++ /dev/null | |||
@@ -1,6 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <floater bottom="-551" can_close="true" can_drag_on_left="false" can_minimize="true" can_resize="true" can_tear_off="true" enabled="true" height="350" hidden="false" left="385" min_height="160" min_width="270" mouse_opaque="true" name="objectcontents" default_tab_group="1" rect_control="FloaterOpenObjectRect" title="Contedo do objeto" width="300"><panel bottom="-320" enabled="true" follows="left|top|right|bottom" height="276" hidden="false" left="8" mouse_opaque="true" name="object_contents" width="284" /> | ||
3 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-40" drop_shadow_visible="true" enabled="true" follows="left|top|right" font="SansSerif" h_pad="0" halign="left" height="16" hidden="false" left="8" mouse_opaque="true" name="object_name" v_pad="0" width="284">[DESC]:</text> | ||
4 | <button bottom="-345" enabled="true" follows="bottom|left" font="SansSerifSmall" halign="center" height="20" hidden="false" label="Copiar para Inventrio" label_selected="Copiar para Inventrio" left="10" mouse_opaque="true" tab_group="1" name="copy_to_inventory_button" scale_image="true" width="120" /> | ||
5 | <button bottom="-345" enabled="true" follows="bottom|left" font="SansSerifSmall" halign="center" height="20" hidden="false" label="Copiar e Vestir" label_selected="Copiar e Vestir" left="140" mouse_opaque="true" name="copy_and_wear_button" scale_image="true" width="120" /> | ||
6 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/pt/floater_pay.xml b/linden/indra/newview/skins/xui/pt/floater_pay.xml deleted file mode 100644 index ce79ffc..0000000 --- a/linden/indra/newview/skins/xui/pt/floater_pay.xml +++ /dev/null | |||
@@ -1,13 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <floater bottom="-197" can_close="true" can_drag_on_left="false" can_minimize="false" can_resize="false" enabled="true" height="140" hidden="false" left="439" min_height="100" min_width="100" mouse_opaque="true" name="Give Money" rect_control="FloaterPayRectB" title="" width="300"><button bottom="-74" enabled="true" font="SansSerif" halign="center" height="20" hidden="false" label="L$1" label_selected="L$1" left="85" mouse_opaque="true" name="fastpay 1" scale_image="true" width="80" /> | ||
3 | <button bottom="-74" enabled="true" font="SansSerif" halign="center" height="20" hidden="false" label="L$5" label_selected="L$5" left="170" mouse_opaque="true" name="fastpay 5" scale_image="true" width="80" /> | ||
4 | <button bottom="-98" enabled="true" font="SansSerif" halign="center" height="20" hidden="false" label="L$10" label_selected="L$10" left="85" mouse_opaque="true" name="fastpay 10" scale_image="true" width="80" /> | ||
5 | <button bottom="-98" enabled="true" font="SansSerif" halign="center" height="20" hidden="false" label="L$20" label_selected="L$20" left="170" mouse_opaque="true" name="fastpay 20" scale_image="true" width="80" /> | ||
6 | <button bottom="-132" enabled="false" font="SansSerif" halign="center" height="20" hidden="false" label="Pagar" label_selected="Pagar" left="150" mouse_opaque="true" name="pay btn" scale_image="true" width="70" /> | ||
7 | <button bottom="-132" enabled="true" font="SansSerif" halign="center" height="20" hidden="false" label="Cancelar" label_selected="Cancelar" left="225" mouse_opaque="true" name="cancel btn" scale_image="true" width="70" /> | ||
8 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-25" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerif" h_pad="0" halign="right" height="18" hidden="false" left="5" mouse_opaque="true" name="payee_label" v_pad="0" width="75">Pagar residente:</text> | ||
9 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-25" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerif" h_pad="0" halign="left" height="18" hidden="false" left="85" mouse_opaque="true" name="payee_name" v_pad="0" width="210">[FIRST] [LAST]</text> | ||
10 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-72" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerif" h_pad="0" halign="right" height="18" hidden="false" left="5" mouse_opaque="true" name="fastpay text" v_pad="0" width="75">Pagamento rpido:</text> | ||
11 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-130" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerif" h_pad="0" halign="right" height="18" hidden="false" left="5" mouse_opaque="true" name="amount text" v_pad="0" width="75">Quantia:</text> | ||
12 | <line_editor bevel_style="in" border_style="line" border_thickness="1" bottom="-130" enabled="true" follows="left|top|right" font="SansSerif" handle_edit_keys_directly="false" height="18" hidden="false" left="85" max_length="9" mouse_opaque="true" name="amount" select_all_on_focus_received="false" select_on_focus="false" width="60" /> | ||
13 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/pt/floater_pay_object.xml b/linden/indra/newview/skins/xui/pt/floater_pay_object.xml deleted file mode 100644 index d4fb0b3..0000000 --- a/linden/indra/newview/skins/xui/pt/floater_pay_object.xml +++ /dev/null | |||
@@ -1,16 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <floater bottom="-521" can_close="true" can_drag_on_left="false" can_minimize="false" can_resize="false" enabled="true" height="140" hidden="false" left="690" min_height="100" min_width="100" mouse_opaque="true" name="Give Money" rect_control="FloaterPayRectB" title="" width="300"><text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-25" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerif" h_pad="0" halign="right" height="18" hidden="false" left="5" mouse_opaque="true" name="payee_group" v_pad="0" width="75">Pagar Grupo:</text> | ||
3 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="0" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerif" h_pad="0" halign="right" height="18" hidden="false" left="5" mouse_opaque="true" name="payee_resident" v_pad="0" width="75">Pagar residente:</text> | ||
4 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-25" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerif" h_pad="0" halign="left" height="18" hidden="false" left="85" mouse_opaque="true" name="payee_name" v_pad="0" width="210">[FIRST] [LAST]</text> | ||
5 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-50" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerif" h_pad="0" halign="right" height="18" hidden="false" left="5" mouse_opaque="true" name="object_name_label" v_pad="0" width="75">Via objeto:</text> | ||
6 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-50" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerif" h_pad="0" halign="left" height="18" hidden="false" left="85" mouse_opaque="true" name="object_name_text" v_pad="0" width="210">...</text> | ||
7 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-72" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerif" h_pad="0" halign="right" height="18" hidden="false" left="5" mouse_opaque="true" name="fastpay text" v_pad="0" width="75">Pagamento Rpido:</text> | ||
8 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-130" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerif" h_pad="0" halign="right" height="18" hidden="false" left="5" mouse_opaque="true" name="amount text" v_pad="0" width="75">Quantia:</text> | ||
9 | <button bottom="-74" enabled="true" font="SansSerif" halign="center" height="20" hidden="false" label="L$1" label_selected="L$1" left="85" mouse_opaque="true" name="fastpay 1" scale_image="true" width="80" /> | ||
10 | <button bottom="-74" enabled="true" font="SansSerif" halign="center" height="20" hidden="false" label="L$5" label_selected="L$5" left="170" mouse_opaque="true" name="fastpay 5" scale_image="true" width="80" /> | ||
11 | <button bottom="-98" enabled="true" font="SansSerif" halign="center" height="20" hidden="false" label="L$10" label_selected="L$10" left="85" mouse_opaque="true" name="fastpay 10" scale_image="true" width="80" /> | ||
12 | <button bottom="-98" enabled="true" font="SansSerif" halign="center" height="20" hidden="false" label="L$20" label_selected="L$20" left="170" mouse_opaque="true" name="fastpay 20" scale_image="true" width="80" /> | ||
13 | <button bottom="-132" enabled="false" follows="right|bottom" font="SansSerif" halign="center" height="20" hidden="false" label="Pagar" label_selected="Pagar" left="140" mouse_opaque="true" name="pay btn" scale_image="true" width="70" /> | ||
14 | <button bottom="-132" enabled="true" follows="right|bottom" font="SansSerif" halign="center" height="20" hidden="false" label="Cancelar" label_selected="Cancelar" left="215" mouse_opaque="true" name="cancel btn" scale_image="true" width="70" /> | ||
15 | <line_editor bevel_style="in" border_style="line" border_thickness="1" bottom="-130" enabled="true" follows="left|top|right" font="SansSerif" handle_edit_keys_directly="false" height="18" hidden="false" left="85" max_length="9" mouse_opaque="true" name="amount" select_all_on_focus_received="false" select_on_focus="false" width="50" /> | ||
16 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/pt/floater_postcard.xml b/linden/indra/newview/skins/xui/pt/floater_postcard.xml deleted file mode 100644 index aa13880..0000000 --- a/linden/indra/newview/skins/xui/pt/floater_postcard.xml +++ /dev/null | |||
@@ -1,18 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <floater can_close="true" can_drag_on_left="false" can_minimize="false" can_resize="true" height="380" min_height="380" min_width="450" name="Postcard" title="Enviar carto postal" width="450"><text bottom="-35" follows="top|left" font="SansSerif" left="12" name="to_label">Email do Destinatrio:</text> | ||
3 | <line_editor bottom_delta="-6" follows="left|top" height="20" left="120" max_length="254" name="to_form" width="150" /> | ||
4 | <text bottom_delta="-23" follows="top|left" font="SansSerif" left="12" name="from_label">Seu Email:</text> | ||
5 | <line_editor bottom_delta="-6" follows="left|top" height="20" left="120" max_length="254" name="from_form" width="150" /> | ||
6 | <text bottom_delta="-23" follows="top|left" font="SansSerif" left="12" name="name_label">Seu nome:</text> | ||
7 | <line_editor bottom_delta="-6" follows="left|top" height="20" left="120" max_length="100" name="name_form" width="150" /> | ||
8 | <text bottom_delta="-23" follows="top|left" font="SansSerif" left="12" name="subject_label">Assunto:</text> | ||
9 | <line_editor bottom_delta="-6" follows="left|top" height="20" left="120" max_length="100" name="subject_form" width="150" /> | ||
10 | <text bottom_delta="-23" follows="top|left" font="SansSerif" left="12" name="msg_label">Mensagem:</text> | ||
11 | <text_editor bottom_delta="-150" follows="left|top|right|bottom" height="140" left="12" max_length="700" name="msg_form" width="420" /> | ||
12 | <check_box bottom_delta="-20" follows="left|bottom" height="18" label="Publicar na Web" left="10" name="allow_publish_check" tool_tip="Publicar este postcard na web" /> | ||
13 | <check_box bottom_delta="0" follows="left|bottom" height="18" label="Contedo Adulto" left="160" name="mature_check" tool_tip="Este postcard possui contedo adulto." /> | ||
14 | <button bottom_delta="-1" follows="left|bottom" height="20" label="?" left="280" name="publish_help_btn" width="20" /> | ||
15 | <text bottom_delta="-16" follows="left|bottom" font="SansSerifSmall" left="12" name="fine_print">Se o destinatrio do seu postcard residente em SL, voc receber um bonus..</text> | ||
16 | <button bottom_delta="-32" follows="right|bottom" height="20" label="Cancelar" left="125" name="cancel_btn" width="150" /> | ||
17 | <button bottom_delta="0" follows="right|bottom" height="20" label="Enviar" left="285" name="send_btn" width="150" /> | ||
18 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/pt/floater_preferences.xml b/linden/indra/newview/skins/xui/pt/floater_preferences.xml deleted file mode 100644 index 81ed809..0000000 --- a/linden/indra/newview/skins/xui/pt/floater_preferences.xml +++ /dev/null | |||
@@ -1,15 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <floater bottom="-666" can_close="true" can_drag_on_left="false" can_minimize="true" can_resize="false" can_tear_off="true" enabled="true" height="460" hidden="false" left="330" min_height="213" min_width="324" default_tab_group="1" mouse_opaque="true" name="Preferences" title="Preferncias" width="620"><button bottom="-455" enabled="true" follows="right|bottom" font="SansSerif" halign="center" height="20" hidden="false" label="OK" label_selected="OK" left="395" mouse_opaque="true" name="OK" scale_image="true" width="70" /> | ||
3 | <button bottom="-455" enabled="true" follows="right|bottom" font="SansSerif" halign="center" height="20" hidden="false" label="Cancelar" label_selected="Cancelar" left="470" mouse_opaque="true" name="Cancel" scale_image="true" width="70" /> | ||
4 | <button bottom="-455" enabled="true" follows="right|bottom" font="SansSerif" halign="center" height="20" hidden="false" label="Aplicar" label_selected="Aplicar" left="545" mouse_opaque="true" name="Apply" scale_image="true" width="70" /> | ||
5 | <button bottom="-455" enabled="true" follows="left|bottom" font="SansSerif" halign="center" height="20" hidden="false" label="Sobre..." label_selected="Sobre..." left="9" mouse_opaque="true" name="About..." scale_image="true" width="70" /> | ||
6 | |||
7 | <button bottom="-455" enabled="true" follows="left|bottom" font="SansSerif" | ||
8 | halign="center" height="20" hidden="false" label="Help" | ||
9 | label_selected="Help" left="84" mouse_opaque="true" name="Help" | ||
10 | scale_image="true" width="70" | ||
11 | help_url="http://www.secondlifebrasil.com.br/app/preferencias.aspx" /> | ||
12 | |||
13 | |||
14 | <tab_container bottom="-431" enabled="true" follows="left|top|right|bottom" height="410" hidden="false" left="0" mouse_opaque="false" name="pref core" tab_group="1" tab_position="left" tab_width="120" width="620" /> | ||
15 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/pt/floater_preview_animation.xml b/linden/indra/newview/skins/xui/pt/floater_preview_animation.xml deleted file mode 100644 index a3f7282..0000000 --- a/linden/indra/newview/skins/xui/pt/floater_preview_animation.xml +++ /dev/null | |||
@@ -1,6 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <floater bottom="-366" can_close="true" can_drag_on_left="false" can_minimize="true" can_resize="false" enabled="true" height="85" hidden="false" left="239" min_height="0" min_width="0" mouse_opaque="true" name="preview_anim" width="300"><line_editor bevel_style="in" border_style="line" border_thickness="1" bottom="-38" enabled="true" follows="left|top|right" font="SansSerif" handle_edit_keys_directly="false" height="19" hidden="false" left="93" max_length="127" mouse_opaque="true" name="desc" select_all_on_focus_received="false" select_on_focus="false" width="194" /> | ||
3 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-38" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerif" h_pad="0" halign="left" height="19" hidden="false" left="13" mouse_opaque="true" name="desc txt" v_pad="0" width="80">Descrio:</text> | ||
4 | <button bottom="-66" enabled="true" font="SansSerif" halign="center" height="19" hidden="false" label="Executar in World" label_selected="Parar" left="27" mouse_opaque="true" name="Anim play btn" scale_image="true" tool_tip="Executar esta animao para que outros vejam.." width="96" /> | ||
5 | <button bottom="-66" enabled="true" font="SansSerif" halign="center" height="19" hidden="false" label="Executar localmente" label_selected="Parar" left="177" mouse_opaque="true" name="Anim audition btn" scale_image="true" tool_tip="Executar esta animao somente para voc ver." width="96" /> | ||
6 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/pt/floater_preview_embedded_texture.xml b/linden/indra/newview/skins/xui/pt/floater_preview_embedded_texture.xml deleted file mode 100644 index 40f8082..0000000 --- a/linden/indra/newview/skins/xui/pt/floater_preview_embedded_texture.xml +++ /dev/null | |||
@@ -1,4 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <floater bottom="-338" can_close="true" can_drag_on_left="false" can_minimize="true" can_resize="true" enabled="true" height="331" hidden="false" left="201" min_height="120" min_width="300" mouse_opaque="true" name="preview_texture" width="300"><button bottom="-325" enabled="true" follows="right|bottom" font="SansSerif" halign="center" height="20" hidden="false" label="Copiar para o Inventrio" left="105" mouse_opaque="true" name="Copy To Inventory" scale_image="true" width="170" /> | ||
3 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="30" drop_shadow_visible="true" enabled="true" follows="left|bottom" font="SansSerifSmall" h_pad="0" halign="left" height="14" hidden="false" left="13" mouse_opaque="true" name="dimensions" v_pad="0" width="163">Dimenses: [WIDTH] x [HEIGHT]</text> | ||
4 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/pt/floater_preview_existing_landmark.xml b/linden/indra/newview/skins/xui/pt/floater_preview_existing_landmark.xml deleted file mode 100644 index bf745a9..0000000 --- a/linden/indra/newview/skins/xui/pt/floater_preview_existing_landmark.xml +++ /dev/null | |||
@@ -1,7 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <floater bottom="-311" can_close="true" can_drag_on_left="false" can_minimize="true" can_resize="false" enabled="true" height="90" hidden="false" left="242" min_height="0" min_width="0" mouse_opaque="true" name="existing_landmark_preview" width="300"><line_editor bevel_style="in" border_style="line" border_thickness="1" bottom="-43" enabled="true" follows="left|top|right" font="SansSerif" handle_edit_keys_directly="false" height="19" hidden="false" left="13" max_length="127" mouse_opaque="true" name="desc" select_all_on_focus_received="false" select_on_focus="false" width="274" /> | ||
3 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-38" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerif" h_pad="0" halign="left" height="19" hidden="false" left="13" mouse_opaque="true" name="desc txt" v_pad="0" width="80">Descrio:</text> | ||
4 | <icon bottom="-21" color="1 1 1 1" enabled="true" follows="left|top" height="16" hidden="false" image_name="inv_item_landmark_visited.tga" left="5" mouse_opaque="true" name="icon_landmark" width="16" /> | ||
5 | <button bottom="-77" enabled="true" font="SansSerif" halign="center" height="20" hidden="false" label="Teleporte" label_selected="" left="13" mouse_opaque="true" name="Teleport btn" width="100" /> | ||
6 | <button bottom="-77" enabled="true" follows="left|bottom" font="SansSerif" halign="center" height="20" hidden="false" label="Mostrar no Mapa" label_selected="" left="126" mouse_opaque="true" name="Show on Map btn" width="100" /> | ||
7 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/pt/floater_preview_gesture.xml b/linden/indra/newview/skins/xui/pt/floater_preview_gesture.xml deleted file mode 100644 index 7ed2d58..0000000 --- a/linden/indra/newview/skins/xui/pt/floater_preview_gesture.xml +++ /dev/null | |||
@@ -1,33 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <floater can_close="true" can_drag_on_left="false" can_minimize="true" can_resize="false" height="350" min_height="350" min_width="450" name="gesture_preview" width="450"><text bottom="-35" follows="top|left" font="SansSerif" left="16" name="desc_label">Descrio:</text> | ||
3 | <line_editor bottom_delta="-6" follows="left|top" height="20" left="100" max_length="254" name="desc" width="330" /> | ||
4 | <text bottom_delta="-23" follows="top|left" font="SansSerif" left="16" name="trigger_label">Gatilho:</text> | ||
5 | <line_editor bottom_delta="-6" follows="left|top" height="20" left="100" max_length="31" name="trigger_editor" width="105" /> | ||
6 | <text bottom_delta="6" follows="top|left" font="SansSerif" left="220" name="replace_text" tool_tip="Substituir a(s) palavra(s) gatilho por estas palavras.">Substituir por:</text> | ||
7 | <line_editor bottom_delta="-6" follows="left|top" height="20" left="300" max_length="31" name="replace_editor" tool_tip="Substituir a(s) palavra(s) gatilho por estas palavras. " width="130" /> | ||
8 | <text bottom_delta="-23" follows="top|left" font="SansSerif" left="16" name="key_label">Tecla de Atalho:</text> | ||
9 | <combo_box bottom_delta="-6" follows="left|top" height="20" label="Nenhum" left="100" name="modifier_combo" width="50" /> | ||
10 | <combo_box bottom_delta="0" follows="left|top" height="20" label="Nenhum" left_delta="60" name="key_combo" width="45" /> | ||
11 | <text bottom_delta="-23" follows="top|left" font="SansSerif" left="16">Biblioteca:</text> | ||
12 | <text bottom_delta="0" follows="top|left" font="SansSerif" left="220">Passos:</text> | ||
13 | <scroll_list bottom_delta="-120" draw_border="true" follows="top|left" height="110" left="16" multi_select="false" name="library_list" width="100">AnimationSoundChatWait</scroll_list> | ||
14 | <button bottom_delta="90" follows="top|left" height="20" label="Incluir" left="130" name="add_btn" width="80" /> | ||
15 | <button bottom_delta="-30" follows="top|left" height="20" label="Mover Para Cima" left_delta="0" name="up_btn" width="80" /> | ||
16 | <button bottom_delta="-30" follows="top|left" height="20" label="Mover Para Baixo" left_delta="0" name="down_btn" width="80" /> | ||
17 | <button bottom_delta="-30" follows="top|left" height="20" label="Remover" left_delta="0" name="delete_btn" width="80" /> | ||
18 | <scroll_list bottom_delta="0" draw_border="true" follows="top|left" height="110" left="220" multi_select="false" name="step_list" width="210" /> | ||
19 | <text bottom_delta="-70" follows="top|left" font="SansSerif" height="60" left="16" name="help_label">Todos os passos acontecem simultaneamente, a menos que voc inclua passos de espera.</text> | ||
20 | <text bottom_delta="0" follows="top|left" height="60" left="222" name="options_text" width="205" /> | ||
21 | <combo_box bottom_delta="20" follows="top|left" height="20" left_delta="10" name="animation_list" width="100" /> | ||
22 | <combo_box bottom_delta="0" follows="top|left" height="20" left_delta="0" name="sound_list" width="100" /> | ||
23 | <line_editor bottom_delta="0" follows="top|left" height="20" left_delta="0" max_length="127" name="chat_editor" width="100" /> | ||
24 | <radio_group bottom_delta="-20" draw_border="false" follows="top|left" height="40" left="340" name="animation_trigger_type" width="80"><radio_item bottom_delta="-5" follows="left|top" height="16" left="3" mouse_opaque="true" width="80">Iniciar</radio_item> | ||
25 | <radio_item bottom_delta="-10" follows="left|top" height="16" left="3" mouse_opaque="true" width="80">Parar</radio_item> | ||
26 | </radio_group> | ||
27 | <check_box bottom_delta="25" follows="top|left" height="20" label="At que a animao esteja concluda" left="232" name="wait_anim_check" width="100" /> | ||
28 | <check_box bottom_delta="-20" follows="top|left" height="20" label="tempo em segundos" left_delta="0" name="wait_time_check" width="100" /> | ||
29 | <line_editor bottom_delta="0" follows="top|left" height="20" left_delta="105" max_length="15" name="wait_time_editor" width="50" /> | ||
30 | <check_box bottom="7" follows="top|left" height="20" label="Ativar" left="140" name="active_check" tool_tip="Gesto ativos pode ser engatilhados escrevendo suas frases gatilho no chat ou atravs de suas teclas de atalho. Gestos normalmente ficam inativos quando existe um conflito nas teclas de atalho." width="100" /> | ||
31 | <button bottom="5" follows="top|left" height="20" label="Preview" left="215" name="preview_btn" width="80" /> | ||
32 | <button bottom="5" follows="top|left" height="20" label="Salvar" left_delta="90" name="save_btn" width="80" /> | ||
33 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/pt/floater_preview_new_landmark.xml b/linden/indra/newview/skins/xui/pt/floater_preview_new_landmark.xml deleted file mode 100644 index 5bb7af3..0000000 --- a/linden/indra/newview/skins/xui/pt/floater_preview_new_landmark.xml +++ /dev/null | |||
@@ -1,8 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <floater bottom="-97" can_close="true" can_drag_on_left="false" can_minimize="true" can_resize="false" enabled="true" height="90" hidden="false" left="201" min_height="0" min_width="0" mouse_opaque="true" name="landmark_preview" width="370"><button bottom="-77" enabled="true" font="SansSerif" halign="center" height="20" hidden="false" label="Teleporte" label_selected="" left="13" mouse_opaque="true" name="Teleport btn" width="100" /> | ||
3 | <button bottom="-77" enabled="true" follows="left|bottom" font="SansSerif" halign="center" height="20" hidden="false" label="Mostrar no Mapa" label_selected="" left="126" mouse_opaque="true" name="Show on Map btn" width="100" /> | ||
4 | <button bottom="-77" enabled="true" follows="right|bottom" font="SansSerif" halign="center" height="20" hidden="false" label="Descartar" label_selected="" left="239" mouse_opaque="true" name="Discard btn" width="100" /> | ||
5 | <icon bottom="-21" color="1 1 1 1" enabled="true" follows="left|top" height="16" hidden="false" image_name="inv_item_landmark_visited.tga" left="5" mouse_opaque="true" name="icon_landmark" width="16" /> | ||
6 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-38" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerif" h_pad="0" halign="left" height="19" hidden="false" left="13" mouse_opaque="true" name="desc txt" v_pad="0" width="80">Descrio:</text> | ||
7 | <line_editor bevel_style="in" border_style="line" border_thickness="1" bottom="-38" enabled="true" follows="left|top|right" font="SansSerif" handle_edit_keys_directly="false" height="19" hidden="false" left="93" max_length="127" mouse_opaque="true" name="desc" select_all_on_focus_received="false" select_on_focus="false" width="264" /> | ||
8 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/pt/floater_preview_notecard.xml b/linden/indra/newview/skins/xui/pt/floater_preview_notecard.xml deleted file mode 100644 index c53f17c..0000000 --- a/linden/indra/newview/skins/xui/pt/floater_preview_notecard.xml +++ /dev/null | |||
@@ -1,7 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <floater bottom="-762" can_close="true" can_drag_on_left="false" can_minimize="true" can_resize="true" enabled="true" follows="left|top" height="361" hidden="false" left="273" min_height="243" min_width="234" mouse_opaque="true" name="preview notecard" title="Nota:" width="400"><button bottom="-352" enabled="false" follows="left|bottom" font="SansSerif" halign="center" height="20" hidden="false" label="Salvar" label_selected="Salvar" left="9" mouse_opaque="false" name="Save" scale_image="true" width="100" /> | ||
3 | <icon bottom="-19" color="1 1 1 1" enabled="true" follows="top|right" height="16" hidden="false" image_name="icon_lock.tga" left="344" mouse_opaque="true" name="lock" width="16" /> | ||
4 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-38" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerif" h_pad="0" halign="left" height="19" hidden="false" left="13" mouse_opaque="true" name="desc txt" v_pad="0" width="80">Descrio:</text> | ||
5 | <line_editor bevel_style="in" border_style="line" border_thickness="1" bottom="-38" enabled="true" follows="left|top|right" font="SansSerif" handle_edit_keys_directly="false" height="19" hidden="false" left="93" max_length="127" mouse_opaque="true" name="desc" select_all_on_focus_received="false" select_on_focus="false" width="294" /> | ||
6 | <text_editor type="string" length="1" bottom="-327" embedded_items="true" enabled="true" follows="left|top|right|bottom" font="SansSerif" height="281" hidden="false" ignore_tab="false" left="4" max_length="65536" mouse_opaque="true" name="Notecard Editor" width="392" word_wrap="true">Carregando...</text_editor> | ||
7 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/pt/floater_preview_notecard_keep_discard.xml b/linden/indra/newview/skins/xui/pt/floater_preview_notecard_keep_discard.xml deleted file mode 100644 index a19f9ce..0000000 --- a/linden/indra/newview/skins/xui/pt/floater_preview_notecard_keep_discard.xml +++ /dev/null | |||
@@ -1,8 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <floater bottom="-484" can_close="true" can_drag_on_left="false" can_minimize="true" can_resize="true" enabled="true" height="400" hidden="false" left="138" min_height="243" min_width="234" mouse_opaque="true" name="preview_notecard" width="400"><text_editor type="string" length="1" bg_readonly_color="0.392157 0.392157 0.392157 1" bottom="-366" embedded_items="true" enabled="true" follows="left|top|right|bottom" font="SansSerif" height="320" hidden="false" ignore_tab="false" left="4" max_length="65536" mouse_opaque="true" name="Notecard Editor" width="392" word_wrap="true">Carregando...</text_editor> | ||
3 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-38" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerif" h_pad="0" halign="left" height="19" hidden="false" left="13" mouse_opaque="true" name="desc txt" v_pad="0" width="80">Descrio:</text> | ||
4 | <icon bottom="-19" color="1 1 1 1" enabled="true" follows="top|right" height="16" hidden="false" image_name="icon_lock.tga" left="344" mouse_opaque="true" name="lock" width="16" /> | ||
5 | <button bottom="-391" enabled="true" follows="left|bottom" font="SansSerif" halign="center" height="20" hidden="false" label="Guardar" label_selected="Guardar" left="9" mouse_opaque="true" name="Keep" scale_image="true" width="100" /> | ||
6 | <button bottom="-391" enabled="true" follows="left|bottom" font="SansSerif" halign="center" height="20" hidden="false" label="Descartar" label_selected="Descartar" left="114" mouse_opaque="true" name="Discard" scale_image="true" width="100" /> | ||
7 | <line_editor bevel_style="in" border_style="line" border_thickness="1" bottom="-38" enabled="true" follows="left|top|right" font="SansSerif" handle_edit_keys_directly="false" height="19" hidden="false" left="93" max_length="127" mouse_opaque="true" name="desc" select_all_on_focus_received="false" select_on_focus="false" width="294" /> | ||
8 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/pt/floater_preview_sound.xml b/linden/indra/newview/skins/xui/pt/floater_preview_sound.xml deleted file mode 100644 index 248de39..0000000 --- a/linden/indra/newview/skins/xui/pt/floater_preview_sound.xml +++ /dev/null | |||
@@ -1,6 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <floater bottom="-85" can_close="true" can_drag_on_left="false" can_minimize="true" can_resize="false" enabled="true" height="85" hidden="false" left="176" min_height="0" min_width="0" mouse_opaque="true" name="preview_sound" width="300"><line_editor bevel_style="in" border_style="line" border_thickness="1" bottom="-38" enabled="true" follows="left|top|right" font="SansSerif" handle_edit_keys_directly="false" height="19" hidden="false" left="93" max_length="127" mouse_opaque="true" name="desc" select_all_on_focus_received="false" select_on_focus="false" width="194" /> | ||
3 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-38" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerif" h_pad="0" halign="left" height="19" hidden="false" left="13" mouse_opaque="true" name="desc txt" v_pad="0" width="80">Descrio:</text> | ||
4 | <button bottom="-66" enabled="true" font="SansSerif" halign="center" height="19" hidden="false" label="Executar in-World" label_selected="Executar in-World" left="27" mouse_opaque="true" name="Sound play btn" scale_image="true" sound_flags="0" tool_tip="Executar este som para que todos possam ouvi-lo." width="96" /> | ||
5 | <button bottom="-66" enabled="true" font="SansSerif" halign="center" height="19" hidden="false" label="Executar Localmente" label_selected="Executar Localmente" left="177" mouse_opaque="true" name="Sound audition btn" scale_image="true" sound_flags="0" tool_tip="Executar este som somente para voc ouvir." width="96" /> | ||
6 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/pt/floater_preview_texture.xml b/linden/indra/newview/skins/xui/pt/floater_preview_texture.xml deleted file mode 100644 index 621247c..0000000 --- a/linden/indra/newview/skins/xui/pt/floater_preview_texture.xml +++ /dev/null | |||
@@ -1,5 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <floater bottom="-300" can_close="true" can_drag_on_left="false" can_minimize="true" can_resize="true" enabled="true" follows="left|bottom" height="324" hidden="false" left="300" min_height="120" min_width="300" mouse_opaque="true" name="preview_texture" width="335"><text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-40" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerif" h_pad="0" halign="left" height="19" hidden="false" left="13" mouse_opaque="true" name="desc txt" v_pad="0" width="80">Descrio:</text> | ||
3 | <line_editor bevel_style="in" border_style="line" border_thickness="1" bottom="-38" enabled="true" follows="left|top|right" font="SansSerif" handle_edit_keys_directly="false" height="19" hidden="false" left="93" max_length="127" mouse_opaque="true" name="desc" select_all_on_focus_received="false" select_on_focus="false" width="229" /> | ||
4 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="10" drop_shadow_visible="true" enabled="true" follows="left|bottom" font="SansSerifSmall" h_pad="0" halign="left" height="14" hidden="false" left="13" mouse_opaque="true" name="dimensions" v_pad="0" width="163">Dimenses: [WIDTH] x [HEIGHT]</text> | ||
5 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/pt/floater_preview_texture_keep_discard.xml b/linden/indra/newview/skins/xui/pt/floater_preview_texture_keep_discard.xml deleted file mode 100644 index 0748121..0000000 --- a/linden/indra/newview/skins/xui/pt/floater_preview_texture_keep_discard.xml +++ /dev/null | |||
@@ -1,7 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <floater bottom="-331" can_close="true" can_drag_on_left="false" can_minimize="true" can_resize="true" enabled="true" height="331" hidden="false" left="176" min_height="120" min_width="300" mouse_opaque="true" name="preview_texture" width="300"><text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-38" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerif" h_pad="0" halign="left" height="19" hidden="false" left="13" mouse_opaque="true" name="desc txt" v_pad="0" width="80">Descrio:</text> | ||
3 | <line_editor bevel_style="in" border_style="line" border_thickness="1" bottom="-38" enabled="true" follows="left|top|right" font="SansSerif" handle_edit_keys_directly="false" height="19" hidden="false" left="93" max_length="127" mouse_opaque="true" name="desc" select_all_on_focus_received="false" select_on_focus="false" width="194" /> | ||
4 | <button bottom="-322" enabled="true" follows="left|bottom" font="SansSerif" halign="center" height="20" hidden="false" label="Guardar" label_selected="Guardar" left="9" mouse_opaque="true" name="Keep" scale_image="true" width="100" /> | ||
5 | <button bottom="-322" enabled="true" follows="left|bottom" font="SansSerif" halign="center" height="20" hidden="false" label="Descartar" label_selected="Descartar" left="114" mouse_opaque="true" name="Discard" scale_image="true" width="100" /> | ||
6 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="30" drop_shadow_visible="true" enabled="true" follows="left|bottom" font="SansSerifSmall" h_pad="0" halign="left" height="14" hidden="false" left="13" mouse_opaque="true" name="dimensions" v_pad="0" width="163">Dimenses: [WIDTH] x [HEIGHT]</text> | ||
7 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/pt/floater_price_for_listing.xml b/linden/indra/newview/skins/xui/pt/floater_price_for_listing.xml deleted file mode 100644 index e92c383..0000000 --- a/linden/indra/newview/skins/xui/pt/floater_price_for_listing.xml +++ /dev/null | |||
@@ -1,7 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <floater can_close="true" can_drag_on_left="false" can_minimize="false" can_resize="false" height="240" min_height="300" min_width="300" name="price_for_listing" title="Classificados" width="320"><text bottom="-200" follows="top|left" font="SansSerif" height="165" left="15" name="explanation_text">Seu anncio classificado ir rodar por uma semana a partir da data de publicao. A posio dos seus anncios nas listas classificadas determinada por quando voc escolheu pagar. O anncio de maior valor pago aparecer no topo da lista e aparece em primeiro nas buscas.</text> | ||
3 | <text bottom="50" follows="top|left" font="SansSerif" height="20" left="15" name="price_text" width="100">Preo por Anncio (L$):</text> | ||
4 | <line_editor bottom_delta="2" follows="top|left" height="20" left="120" max_length="5" name="price_edit" width="50" /> | ||
5 | <button bottom="10" follows="top|left" height="20" label="Ajustar Preo" left="110" name="set_price_btn" width="80" /> | ||
6 | <button bottom_delta="0" follows="top|left" height="20" label="Cancelar" left="200" name="cancel_btn" width="80" /> | ||
7 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/pt/floater_profile.xml b/linden/indra/newview/skins/xui/pt/floater_profile.xml deleted file mode 100644 index c082549..0000000 --- a/linden/indra/newview/skins/xui/pt/floater_profile.xml +++ /dev/null | |||
@@ -1,3 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <floater can_close="true" can_drag_on_left="false" can_minimize="true" can_resize="false" height="520" min_height="0" min_width="0" name="avatarinfo" title="Profile" width="420"><panel bottom="-520" height="486" left="0" name="Panel Avatar" width="430" /> | ||
3 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/pt/floater_rate.xml b/linden/indra/newview/skins/xui/pt/floater_rate.xml deleted file mode 100644 index cf19f81..0000000 --- a/linden/indra/newview/skins/xui/pt/floater_rate.xml +++ /dev/null | |||
@@ -1,19 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <floater bottom="-576" can_close="true" can_drag_on_left="false" can_minimize="true" can_resize="false" enabled="true" height="400" hidden="false" left="380" min_height="100" min_width="100" mouse_opaque="true" name="rate" title="Your Rating of Jeska Linden" width="310"><radio_group bottom="-96" draw_border="false" enabled="true" follows="left|top" height="54" hidden="false" left="32" mouse_opaque="true" name="behavior" width="110"><radio_item type="string" length="1" bottom="-16" enabled="true" follows="left|top" height="16" hidden="false" left="0" mouse_opaque="true" name="Positive" width="100">Positivo</radio_item> | ||
3 | <radio_item type="string" length="1" bottom="-34" enabled="true" follows="left|top" height="16" hidden="false" left="0" mouse_opaque="true" name="No Rating" width="100">Sem Classificao</radio_item> | ||
4 | </radio_group> | ||
5 | <radio_group bottom="-186" draw_border="false" enabled="true" follows="left|top" height="54" hidden="false" left="32" mouse_opaque="true" name="appearance" width="110"><radio_item type="string" length="1" bottom="-16" enabled="true" follows="left|top" height="16" hidden="false" left="0" mouse_opaque="true" name="Positive" width="100">Positivo</radio_item> | ||
6 | <radio_item type="string" length="1" bottom="-34" enabled="true" follows="left|top" height="16" hidden="false" left="0" mouse_opaque="true" name="No Rating" width="100">Sem Classificao</radio_item> | ||
7 | </radio_group> | ||
8 | <radio_group bottom="-276" draw_border="false" enabled="true" follows="left|top" height="54" hidden="false" left="32" mouse_opaque="true" name="building" width="110"><radio_item type="string" length="1" bottom="-16" enabled="true" follows="left|top" height="16" hidden="false" left="0" mouse_opaque="true" name="Positive" width="100">Positivo</radio_item> | ||
9 | <radio_item type="string" length="1" bottom="-34" enabled="true" follows="left|top" height="16" hidden="false" left="0" mouse_opaque="true" name="No Rating" width="100">Sem Classificao</radio_item> | ||
10 | </radio_group> | ||
11 | <line_editor bevel_style="in" border_style="line" border_thickness="1" bottom="-328" enabled="true" follows="left|top" font="SansSerifSmall" handle_edit_keys_directly="false" height="16" hidden="false" left="16" max_length="254" mouse_opaque="true" name="mesg editor" select_all_on_focus_received="false" select_on_focus="false" width="278" /> | ||
12 | <button bottom="-392" enabled="false" font="SansSerif" halign="center" height="20" hidden="false" label="OK" label_selected="OK" left="134" mouse_opaque="true" name="OK" scale_image="true" width="72" /> | ||
13 | <button bottom="-392" enabled="true" font="SansSerif" halign="center" height="20" hidden="false" label="Cancelar" label_selected="Cancelar" left="222" mouse_opaque="true" name="Cancel" scale_image="true" width="72" /> | ||
14 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-40" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" hidden="false" left="16" mouse_opaque="true" name="Overall behavior:" v_pad="0" width="278">Comportamento Geral:</text> | ||
15 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-130" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" hidden="false" left="16" mouse_opaque="true" name="Skill at appearance (clothing and attachments):" v_pad="0" width="278">Habilidade na Aparncia (Roupas e Acessrios):</text> | ||
16 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-220" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" hidden="false" left="16" mouse_opaque="true" name="Skill at building:" v_pad="0" width="278">Habilidades na Construo:</text> | ||
17 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-310" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" hidden="false" left="16" mouse_opaque="true" name="Message:" v_pad="0" width="278">Mensagem:</text> | ||
18 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-362" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" hidden="false" left="16" mouse_opaque="true" name="cost" v_pad="0" width="278">Custo: L$[COST] para alterar cada classificao. Valor total: L$[TOTAL].</text> | ||
19 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/pt/floater_report_abuse.xml b/linden/indra/newview/skins/xui/pt/floater_report_abuse.xml deleted file mode 100644 index 5f13ed4..0000000 --- a/linden/indra/newview/skins/xui/pt/floater_report_abuse.xml +++ /dev/null | |||
@@ -1,39 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <floater can_close="true" can_drag_on_left="false" can_minimize="true" can_resize="false" height="560" min_height="100" min_width="100" name="floater_report_abuse" title="Reportar abuso" width="390"><text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-48" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" left="16" mouse_opaque="true" name="reporter_title" v_pad="0" width="50">Denunciador:</text> | ||
3 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-48" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" left_delta="62" mouse_opaque="true" name="reporter_field" v_pad="0" width="120" /> | ||
4 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-64" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" left="16" mouse_opaque="true" name="sim_title" v_pad="0" width="60">Regio:</text> | ||
5 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-64" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" left_delta="62" mouse_opaque="true" name="sim_field" v_pad="0" width="120" /> | ||
6 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-80" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" left="16" mouse_opaque="true" name="pos_title" v_pad="0" width="50">Posio:</text> | ||
7 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-80" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" left_delta="62" mouse_opaque="true" name="pos_field" v_pad="0" width="120" /> | ||
8 | <texture_picker allow_no_texture="true" bottom="-150" default_image_name="None" follows="left|top" height="114" label="Trabalhando..." left="218" mouse_opaque="true" name="screenshot" width="154" /> | ||
9 | <check_box bottom_delta="-23" follows="left|top" font="SansSerifSmall" height="16" initial_value="false" label="Incluir screenshot" left="218" mouse_opaque="true" name="screen_check" width="116" /> | ||
10 | <button bottom="-120" font="SansSerif" halign="center" height="32" label="" label_selected="" left="16" mouse_opaque="true" name="pick_btn" tool_tip="Object Picker - Identifica um objeto com assunto deste report" width="32" /> | ||
11 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-20" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" left_delta="0" mouse_opaque="true" name="select_object_label" v_pad="0" width="200">Clique no boto e em seguida no objeto:</text> | ||
12 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-16" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" left_delta="0" mouse_opaque="true" name="object_name_label" v_pad="0" width="50">Nome:</text> | ||
13 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="0" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" left_delta="44" mouse_opaque="true" name="object_name" v_pad="0" width="88" /> | ||
14 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-16" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" left_delta="-44" mouse_opaque="true" name="owner_name_label" v_pad="0" width="50">Proprietrio:</text> | ||
15 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="0" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" left_delta="44" mouse_opaque="true" name="owner_name" v_pad="0" width="88" /> | ||
16 | <combo_box bottom_delta="-25" follows="left|top" height="20" left="16" mouse_opaque="true" name="category_combo" tool_tip="Categoria -- Selecione a categoria que melhor descreve este report" width="180"><combo_item name="Selectcategory" value="0">Selecione a Categoria</combo_item> | ||
17 | <combo_item name="Intolerance" value="23">Intolerncia</combo_item> | ||
18 | <combo_item name="Harassment" value="24">Assdio</combo_item> | ||
19 | <combo_item name="Assault" value="25">Assalto</combo_item> | ||
20 | <combo_item name="Disclosure" value="26">Exposio</combo_item> | ||
21 | <combo_item name="Indecency" value="27">Indecncia</combo_item> | ||
22 | <combo_item name="Age" value="28">Idade</combo_item> | ||
23 | <combo_item name="Parcel" value="29">Lote</combo_item> | ||
24 | <combo_item name="Other" value="30"> </combo_item> | ||
25 | </combo_box> | ||
26 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-26" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" left="16" mouse_opaque="true" name="abuser_name_title" v_pad="0" width="180">Nome do Denunciado:</text> | ||
27 | <line_editor bevel_style="in" bg_readonly_color="0, 0, 0, 0" border_style="line" border_thickness="1" bottom_delta="-18" follows="left|top" font="SansSerifSmall" height="16" left="16" max_length="32" mouse_opaque="true" name="abuser_name_edit" text_readonly_color="1, 1, 1, 1" width="180" /> | ||
28 | <button bottom_delta="-2" font="SansSerif" halign="center" height="20" label="Selecione" label_selected="" left_delta="190" mouse_opaque="true" name="select_abuser" tool_tip="Selecione o nome do Denuncionado numa lista" width="100" /> | ||
29 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-24" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" left="16" mouse_opaque="true" name="abuser_name_title2" v_pad="0" width="180">Local do Abuso:</text> | ||
30 | <line_editor bevel_style="in" bg_readonly_color="0, 0, 0, 0" border_style="line" border_thickness="1" bottom_delta="-18" follows="left|top" font="SansSerifSmall" height="16" left="16" max_length="32" mouse_opaque="true" name="abuse_location_edit" text_readonly_color="1, 1, 1, 1" width="180" /> | ||
31 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-24" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" left="16" mouse_opaque="true" name="sum_title" v_pad="0" width="80">Resumo:</text> | ||
32 | <line_editor bevel_style="in" bg_readonly_color="0, 0, 0, 0" border_style="line" border_thickness="1" bottom_delta="-18" follows="left|top" font="SansSerifSmall" height="16" left="16" max_length="64" mouse_opaque="true" name="summary_edit" text_readonly_color="1, 1, 1, 1" width="356" /> | ||
33 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-28" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" left="16" mouse_opaque="true" name="dscr_title" v_pad="0" width="50">Detalhes:</text> | ||
34 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-16" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="32" left="64" mouse_opaque="true" name="bug_aviso" v_pad="0" width="356">Por favor, seja especfico com a data, local , natureza do abuso, texto do chat ou MI relevnte e selecione o objeto se possvel.</text> | ||
35 | <text_editor bg_readonly_color="0, 0, 0, 0" bottom_delta="-116" embedded_items="false" follows="left|top" font="SansSerifSmall" height="112" left="16" max_length="800" mouse_opaque="false" name="details_edit" text_readonly_color="1, 1, 1, 1" width="356" word_wrap="true" /> | ||
36 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-24" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" left="16" mouse_opaque="true" name="incomplete_title" v_pad="0" width="342">Nota: Reports imcompletos no sero investigados</text> | ||
37 | <button bottom="10" follows="right|bottom" font="SansSerif" halign="center" height="20" label="Reportar Abuso" label_selected="Reportar Abuso" left="185" mouse_opaque="true" name="send_btn" width="110" /> | ||
38 | <button bottom="10" follows="right|bottom" font="SansSerif" halign="center" height="20" label="Cancelar" label_selected="Cancelar" left_delta="120" mouse_opaque="true" name="cancel_btn" width="70" /> | ||
39 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/pt/floater_report_bug.xml b/linden/indra/newview/skins/xui/pt/floater_report_bug.xml deleted file mode 100644 index 3bcaad0..0000000 --- a/linden/indra/newview/skins/xui/pt/floater_report_bug.xml +++ /dev/null | |||
@@ -1,43 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <floater can_close="true" can_drag_on_left="false" can_minimize="true" can_resize="false" height="455" min_height="100" min_width="100" name="bug_reporter" title="Reportar Bug" width="374"><text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-48" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" left="16" mouse_opaque="true" name="reporter_title" v_pad="0" width="50">Denunciador:</text> | ||
3 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-48" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" left_delta="62" mouse_opaque="true" name="reporter_field" v_pad="0" width="120" /> | ||
4 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-64" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" left="16" mouse_opaque="true" name="sim_title" v_pad="0" width="50">Simulador:</text> | ||
5 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-64" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" left_delta="62" mouse_opaque="true" name="sim_field" v_pad="0" width="120" /> | ||
6 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-80" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" left="16" mouse_opaque="true" name="pos_title" v_pad="0" width="50">Local:</text> | ||
7 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-80" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" left_delta="62" mouse_opaque="true" name="pos_field" v_pad="0" width="120" /> | ||
8 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-105" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" left="16" mouse_opaque="true" name="select_object_label" v_pad="0" width="200">Clique no boto e em seguida no objeto:</text> | ||
9 | <button bottom_delta="-32" font="SansSerif" halign="center" height="32" label="" label_selected="" left="16" mouse_opaque="true" name="pick_btn" tool_tip="Selecionador de objeto - Identifica um objeto como assunto deste report" width="32" /> | ||
10 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="16" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" left="64" mouse_opaque="true" name="object_name_label" v_pad="0" width="50">Nome:</text> | ||
11 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="0" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" left_delta="50" mouse_opaque="true" name="object_name" v_pad="0" width="88" /> | ||
12 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-16" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" left="64" mouse_opaque="true" name="owner_name_label" v_pad="0" width="50">Proprietrio:</text> | ||
13 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="0" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" left_delta="50" mouse_opaque="true" name="owner_name" v_pad="0" width="88" /> | ||
14 | <check_box bottom="-48" follows="left|top" font="SansSerifSmall" height="16" initial_value="false" label="Incluir screenshot" left="218" mouse_opaque="true" name="screen_check" width="116" /> | ||
15 | <texture_picker allow_no_texture="true" bottom_delta="-109" default_image_name="None" follows="left|top" height="109" label="Trabalhando..." left="218" mouse_opaque="true" name="screenshot" width="140" /> | ||
16 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-160" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" left="16" mouse_opaque="true" name="category_label" v_pad="0" width="50">Categoria:</text> | ||
17 | <combo_box bottom_delta="-20" follows="left|top" height="20" left="16" mouse_opaque="true" name="category_combo" tool_tip="Categoria -- Selecione a categoria que melhor descreve este report" width="125"><combo_item name="Selectcategory" value="0">Selecione a Categoria</combo_item> | ||
18 | <combo_item name="Building" value="9">Construo</combo_item> | ||
19 | <combo_item name="Character" value="8">Personagem</combo_item> | ||
20 | <combo_item name="Chat/IM" value="3">Chat/MI</combo_item> | ||
21 | <combo_item name="Documentation" value="10">Documentao</combo_item> | ||
22 | <combo_item name="Exploit" value="22">Explorao</combo_item> | ||
23 | <combo_item name="Graphics" value="11">Grficos</combo_item> | ||
24 | <combo_item name="Inventory" value="12">Inventrio</combo_item> | ||
25 | <combo_item name="Lag" value="13">Lag</combo_item> | ||
26 | <combo_item name="MissingContent" value="21">Contedo Faltando</combo_item> | ||
27 | <combo_item name="LindenDollars(L$)" value="14">Linden Dollars (L$)</combo_item> | ||
28 | <combo_item name="Permissions" value="15">Permisses</combo_item> | ||
29 | <combo_item name="Physics" value="16">Fsica</combo_item> | ||
30 | <combo_item name="Script" value="17">Script</combo_item> | ||
31 | <combo_item name="Sound" value="6">Sons</combo_item> | ||
32 | <combo_item name="Stipends" value="18">Valor de Entrada</combo_item> | ||
33 | <combo_item name="Userinterface" value="19">Interface do Usurio</combo_item> | ||
34 | <combo_item name="Miscellaneous" value="20">Miscelnia</combo_item> | ||
35 | </combo_box> | ||
36 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-25" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" left="16" mouse_opaque="true" name="sum_title" v_pad="0" width="50">Resumo:</text> | ||
37 | <line_editor bevel_style="in" bg_readonly_color="0, 0, 0, 0" border_style="line" border_thickness="1" bottom_delta="-16" follows="left|top" font="SansSerifSmall" height="16" left="16" max_length="64" mouse_opaque="true" name="summary_edit" text_readonly_color="1, 1, 1, 1" width="342" /> | ||
38 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-20" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" left="16" mouse_opaque="true" name="dscr_title" v_pad="0" width="342">detalhes: (Por favor, fornecea o mximo de informao que puder)</text> | ||
39 | <text_editor bg_readonly_color="0, 0, 0, 0" bottom_delta="-112" embedded_items="false" follows="left|top" font="SansSerifSmall" height="112" left="16" max_length="900" mouse_opaque="false" name="details_edit" text_readonly_color="1, 1, 1, 1" width="342" word_wrap="true">Passos para reproduzir o bug: Resultados Obtido: Resultados Esperados: </text_editor> | ||
40 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-40" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="32" left="16" mouse_opaque="true" name="bug_aviso" v_pad="0" width="342">Nota: Reports incompletos no sero investigados. Se este bug permite que voc faa algo que no poderia fazer, especialmente se isso representa uma ameaa a performace ou segurana, por favor selecione a categoria Explorao. Obrigado!</text> | ||
41 | <button bottom="10" follows="right|bottom" font="SansSerif" halign="center" height="20" label="Reportar Bug" label_selected="Reportar Bug" left="150" mouse_opaque="true" name="send_btn" width="110" /> | ||
42 | <button bottom="10" follows="right|bottom" font="SansSerif" halign="center" height="20" label="Cancelar" label_selected="Cancelar" left_delta="120" mouse_opaque="true" name="cancel_btn" width="70" /> | ||
43 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/pt/floater_script_debug.xml b/linden/indra/newview/skins/xui/pt/floater_script_debug.xml deleted file mode 100644 index 4b3859d..0000000 --- a/linden/indra/newview/skins/xui/pt/floater_script_debug.xml +++ /dev/null | |||
@@ -1,4 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <multi_floater bottom="-463" can_close="true" can_drag_on_left="false" can_minimize="true" can_resize="true" height="233" hidden="false" left="337" min_height="100" min_width="100" mouse_opaque="true" name="script debug floater" rect_control="FloaterScriptDebugRect" title="Script Errors/Warning" width="450"><tab_container border="false" bottom="-233" follows="left|top|right|bottom" height="217" hidden="false" left="1" mouse_opaque="false" name="Preview Tabs" tab_position="bottom" width="448"><floater bottom="-202" can_close="false" can_drag_on_left="false" can_minimize="true" can_resize="false" follows="left|top|right|bottom" height="201" hidden="false" label="Script" left="1" min_height="100" min_width="100" mouse_opaque="true" name="all_scripts" title="[All scripts]" width="446" /> | ||
3 | </tab_container> | ||
4 | </multi_floater> | ||
diff --git a/linden/indra/newview/skins/xui/pt/floater_script_ed_panel.xml b/linden/indra/newview/skins/xui/pt/floater_script_ed_panel.xml deleted file mode 100644 index 819ad0d..0000000 --- a/linden/indra/newview/skins/xui/pt/floater_script_ed_panel.xml +++ /dev/null | |||
@@ -1,30 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <panel bottom="-550" enabled="true" follows="left|top|right|bottom" height="508" hidden="false" left="0" mouse_opaque="true" name="script panel" width="500"><text_editor type="string" length="1" bg_readonly_color="0.392157 0.392157 0.392157 1" bottom="-393" embedded_items="false" enabled="true" follows="left|top|right|bottom" font="Monospace" height="366" hidden="false" ignore_tab="false" left="4" max_length="65536" mouse_opaque="true" name="Script Editor" width="492" word_wrap="true">Loading...</text_editor> | ||
3 | <button bottom="-499" enabled="true" follows="right|bottom" font="SansSerif" halign="center" height="20" hidden="false" label="Salvar" label_selected="Salvar" left="360" mouse_opaque="true" name="Save_btn" width="128" /> | ||
4 | <scroll_list background_visible="true" bottom="-457" column_padding="5" draw_border="true" draw_heading="false" draw_stripes="true" enabled="true" follows="left|right|bottom" height="60" hidden="false" left="4" mouse_opaque="true" multi_select="false" name="lsl errors" width="492" /> | ||
5 | <combo_box allow_text_entry="false" bottom="-499" enabled="true" follows="left|bottom" height="20" hidden="false" left="12" max_chars="20" mouse_opaque="true" name="Insert..." width="128" /> | ||
6 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-473" drop_shadow_visible="true" enabled="true" follows="left|bottom" font="SansSerifSmall" h_pad="0" halign="left" height="12" hidden="false" left="12" mouse_opaque="true" name="line_col" v_pad="0" width="128" /> | ||
7 | <menu_bar bottom="-27" drop_shadow="false" enabled="true" follows="left|top|right" height="18" hidden="false" left="8" mouse_opaque="false" name="script_menu" opaque="false" tear_off="false" width="476"><menu bottom="-18" color="0 0 0 1" drop_shadow="true" enabled="true" height="62" hidden="false" left="0" mouse_opaque="false" name="File" opaque="true" tear_off="false" width="138"><menu_item_call bottom_delta="-30" height="20" hidden="false" label="Salvar" left="0" mouse_opaque="true" name="Save" width="138" /> | ||
8 | <menu_item_separator bottom_delta="-38" height="8" hidden="false" left="0" mouse_opaque="true" name="separator" width="138" /> | ||
9 | <menu_item_call bottom_delta="-58" height="20" hidden="false" label="Desfazer as Mudanas" left="0" mouse_opaque="true" name="Revert All Changes" width="138" /> | ||
10 | </menu> | ||
11 | <menu bottom="665" color="0 0 0 1" drop_shadow="true" enabled="true" height="198" hidden="false" left="222" mouse_opaque="false" name="Edit" opaque="true" tear_off="false" width="139"><menu_item_call bottom_delta="-30" enabled="false" height="20" hidden="false" label="Desfazer" left="0" mouse_opaque="true" name="Undo" width="139" /> | ||
12 | <menu_item_call bottom_delta="-50" enabled="false" height="20" hidden="false" label="Desfazer" left="0" mouse_opaque="true" name="Redo" width="139" /> | ||
13 | <menu_item_separator bottom_delta="-58" enabled="true" height="8" hidden="false" label="-----------" left="0" mouse_opaque="true" name="separator" width="139" /> | ||
14 | <menu_item_call bottom_delta="-78" enabled="false" height="20" hidden="false" label="Recortar" left="0" mouse_opaque="true" name="Cut" width="139" /> | ||
15 | <menu_item_call bottom_delta="-98" enabled="false" height="20" hidden="false" label="Copiar" left="0" mouse_opaque="true" name="Copy" width="139" /> | ||
16 | <menu_item_call bottom_delta="-118" enabled="false" height="20" hidden="false" label="Colar" left="0" mouse_opaque="true" name="Paste" width="139" /> | ||
17 | <menu_item_separator bottom_delta="-126" enabled="true" height="8" hidden="false" label="-----------" left="0" mouse_opaque="true" name="separator2" width="139" /> | ||
18 | <menu_item_call bottom_delta="-146" enabled="true" height="20" hidden="false" label="Selecionar Tudo" left="0" mouse_opaque="true" name="Select All" width="139" /> | ||
19 | <menu_item_call bottom_delta="-166" enabled="false" height="20" hidden="false" label="Retirar seleo" left="0" mouse_opaque="true" name="Deselect" width="139" /> | ||
20 | <menu_item_separator bottom_delta="-174" enabled="true" height="8" hidden="false" label="-----------" left="0" mouse_opaque="true" name="separator3" width="139" /> | ||
21 | <menu_item_call bottom_delta="-194" enabled="true" height="20" hidden="false" label="Buscar / Substituir..." left="0" mouse_opaque="true" name="Search / Replace..." width="139" /> | ||
22 | </menu> | ||
23 | <menu bottom="-18" color="0 0 0 1" drop_shadow="true" enabled="true" height="34" hidden="false" left="0" mouse_opaque="false" name="Help" opaque="true" tear_off="false" width="112"><menu_item_call bottom="-30" enabled="true" height="20" hidden="false" label="Ajuda..." left="0" mouse_opaque="true" name="Help..." width="112" /> | ||
24 | |||
25 | <menu_item_call bottom="-30" enabled="true" height="20" hidden="false" label="Ajuda LSL Wiki..." left="0" | ||
26 | mouse_opaque="true" name="LSL Wiki Help..." width="112" /> | ||
27 | |||
28 | </menu> | ||
29 | </menu_bar> | ||
30 | </panel> | ||
diff --git a/linden/indra/newview/skins/xui/pt/floater_script_preview.xml b/linden/indra/newview/skins/xui/pt/floater_script_preview.xml deleted file mode 100644 index 9bc0d22..0000000 --- a/linden/indra/newview/skins/xui/pt/floater_script_preview.xml +++ /dev/null | |||
@@ -1,6 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <floater bottom="-757" can_close="true" can_drag_on_left="false" can_minimize="true" can_resize="true" enabled="true" height="550" hidden="false" left="358" min_height="271" min_width="290" mouse_opaque="true" name="preview lsl text" rect_control="PreviewScriptRect" title="Script: Rotation Script" width="500"><panel bottom="-550" enabled="true" follows="left|top|right|bottom" height="508" hidden="false" left="0" mouse_opaque="true" name="script panel" width="500" /> | ||
3 | <icon bottom="-19" color="1 1 1 1" enabled="true" follows="top|right" height="16" hidden="false" image_name="icon_lock.tga" left="444" mouse_opaque="true" name="lock" width="16" /> | ||
4 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-38" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerif" h_pad="0" halign="left" height="19" hidden="false" left="13" mouse_opaque="true" name="desc txt" v_pad="0" width="80">Descrio:</text> | ||
5 | <line_editor bevel_style="in" border_style="line" border_thickness="1" bottom="-38" enabled="true" follows="left|top|right" font="SansSerif" handle_edit_keys_directly="false" height="19" hidden="false" left="93" max_length="127" mouse_opaque="true" name="desc" select_all_on_focus_received="false" select_on_focus="false" width="394" /> | ||
6 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/pt/floater_script_queue.xml b/linden/indra/newview/skins/xui/pt/floater_script_queue.xml deleted file mode 100644 index f99238d..0000000 --- a/linden/indra/newview/skins/xui/pt/floater_script_queue.xml +++ /dev/null | |||
@@ -1,4 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <floater bottom="-763" can_close="true" can_drag_on_left="false" can_minimize="true" can_resize="true" enabled="true" height="400" hidden="false" left="408" min_height="100" min_width="100" mouse_opaque="true" name="queue" title="Reset Progress" width="300"><button bottom="-392" enabled="true" follows="right|bottom" font="SansSerif" halign="center" height="24" hidden="false" label="Fechar" label_selected="Fechar" left="220" mouse_opaque="true" name="close" width="64" /> | ||
3 | <scroll_list background_visible="true" bottom="-364" column_padding="5" draw_border="true" draw_heading="false" draw_stripes="true" enabled="true" follows="left|top|right|bottom" height="344" hidden="false" left="4" mouse_opaque="true" multi_select="false" name="queue output" width="292" /> | ||
4 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/pt/floater_script_search.xml b/linden/indra/newview/skins/xui/pt/floater_script_search.xml deleted file mode 100644 index 7f2f60d..0000000 --- a/linden/indra/newview/skins/xui/pt/floater_script_search.xml +++ /dev/null | |||
@@ -1,10 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <floater bottom="-423" can_close="true" can_drag_on_left="false" can_minimize="true" can_resize="false" can_tear_off="true" enabled="true" height="120" hidden="false" left="223" min_height="100" min_width="100" mouse_opaque="true" name="script search" title="Script Search" width="300"><check_box bottom="-77" enabled="true" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="No diferenciar Maiusculas de Minusculas" left="55" mouse_opaque="true" name="case_text" radio_style="false" width="240" /> | ||
3 | <button bottom="-108" enabled="true" font="SansSerif" halign="center" height="24" hidden="false" label="Buscar" label_selected="Buscar" left="10" mouse_opaque="true" name="search_btn" scale_image="true" width="80" /> | ||
4 | <button bottom="-108" enabled="true" font="SansSerif" halign="center" height="24" hidden="false" label="Substituir" label_selected="Substituir" left="100" mouse_opaque="true" name="replace_btn" scale_image="true" width="80" /> | ||
5 | <button bottom="-108" enabled="true" font="SansSerif" halign="center" height="24" hidden="false" label="Substituir Tudo" label_selected="Substituir Tudo" left="190" mouse_opaque="true" name="replace_all_btn" scale_image="true" width="80" /> | ||
6 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-37" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" hidden="false" left="5" mouse_opaque="true" name="txt" v_pad="0" width="45">Buscar</text> | ||
7 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-58" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" hidden="false" left="5" mouse_opaque="true" name="txt2" v_pad="0" width="45">Substituir</text> | ||
8 | <line_editor bevel_style="in" border_style="line" border_thickness="1" bottom="-37" enabled="true" follows="left|top" font="SansSerifSmall" handle_edit_keys_directly="false" height="16" hidden="false" left="55" max_length="254" mouse_opaque="true" name="search_text" select_all_on_focus_received="false" select_on_focus="false" width="240" /> | ||
9 | <line_editor bevel_style="in" border_style="line" border_thickness="1" bottom="-58" enabled="true" follows="left|top" font="SansSerifSmall" handle_edit_keys_directly="false" height="16" hidden="false" left="55" max_length="254" mouse_opaque="true" name="replace_text" select_all_on_focus_received="false" select_on_focus="false" width="240" /> | ||
10 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/pt/floater_sell_land.xml b/linden/indra/newview/skins/xui/pt/floater_sell_land.xml deleted file mode 100644 index a5f300a..0000000 --- a/linden/indra/newview/skins/xui/pt/floater_sell_land.xml +++ /dev/null | |||
@@ -1,37 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <floater can_close="true" can_drag_on_left="false" can_minimize="false" can_resize="false" height="485" min_height="485" min_width="450" name="sell land" title="Vender terreno" width="450"><texture_picker bottom_delta="-155" enabled="false" follows="top|left" height="135" left="244" name="info_image" right="424" width="180" /> | ||
3 | <text bottom_delta="119" follows="top|left" font="SansSerifSmall" left="16" name="info_parcel_label" text_color="white" width="48">Lote:</text> | ||
4 | <text bottom_delta="-5" follows="top|left" font="SansSerif" height="16" left="56" name="info_parcel" right="-20" text_color="white">Nome do Lote</text> | ||
5 | <text follows="top|left" font="SansSerifSmall" left="16" name="info_size_label" text_color="white" width="48">Tamanho:</text> | ||
6 | <text bottom_delta="-21" follows="top|left" font="SansSerif" height="32" left="56" name="info_size" right="-20" text_color="white">[AREA] m2.</text> | ||
7 | <pad height="18" /> | ||
8 | <text follows="top|left" font="SansSerifHuge" height="24" left="16" name="info_action" text_color="white" width="200">Para vender este terreno:</text> | ||
9 | <pad height="10" /> | ||
10 | <icon follows="top|left" height="64" image_name="badge_note.tga" left="0" name="step_price" width="64" /> | ||
11 | <text bottom_delta="38" follows="top|left" height="16" left="72" name="price_label" right="-20" text_color="white">Defina um preo:</text> | ||
12 | <text follows="top|left" height="16" left="72" name="price_text" right="-20">Escolha um preo apropriado para esta terra.</text> | ||
13 | <text height="16" left="72" name="price_ld" width="20">L$</text> | ||
14 | <line_editor bottom_delta="0" follows="top|left" height="16" increment="1" initial_val="0" left_delta="20" max_val="999999999" min_val="0" name="price" width="100" /> | ||
15 | <text bottom_delta="0" height="16" left_delta="110" name="price_per_m" width="200">(L$[PER_METER] por metro quadrado)</text> | ||
16 | <pad height="20" /> | ||
17 | <icon follows="top|left" height="64" image_name="badge_note.tga" left="0" name="step_sell_to" width="64" /> | ||
18 | <text bottom_delta="38" follows="top|left" height="16" left="72" name="sell_to_label" right="-20" text_color="white">Vender esta terra para:</text> | ||
19 | <text follows="top|left" height="16" left="72" name="sell_to_text" right="-20">Escolha se vender para qualquer um ou para um comprador em particular.</text> | ||
20 | <combo_box follows="top|right" height="16" left="72" name="sell_to" width="140"><combo_item enabled="false" name="--selectone--" value="select">-- Selecione um --</combo_item> | ||
21 | <combo_item name="Anyone" value="anyone">Qualquer um</combo_item> | ||
22 | <combo_item name="Specificuser:" value="user">Usurio Especfico:</combo_item> | ||
23 | </combo_box> | ||
24 | <line_editor bottom_delta="-20" enabled="false" follows="top|right" height="16" name="sell_to_agent" text_color="white" width="150" /> | ||
25 | <button bottom_delta="0" height="16" label="Selecione..." left_delta="155" name="sell_to_select_agent" width="60" /> | ||
26 | <icon follows="top|left" height="64" image_name="badge_note.tga" left="0" name="step_sell_objects" width="64" /> | ||
27 | <text bottom_delta="38" follows="top|left" height="16" left="72" name="sell_objects_label" right="-20" text_color="white">Vender os objetos com a Terra?</text> | ||
28 | <text follows="top|left" height="16" left="72" name="sell_objects_text" right="-20">Os objeto tranferiveis do proprietrio d terra neste lote iro mudar de propriedade.</text> | ||
29 | <radio_group follows="top|right" height="40" left="72" name="sell_objects" width="300"><radio_item bottom="0" height="0" left="10" name="none" visible="false" /> | ||
30 | <radio_item bottom="-20" height="16" left="10" name="no">No, manter a propriedade sobre os objetos</radio_item> | ||
31 | <radio_item bottom="-40" height="16" left="10" name="yes">Sim, vender objetos com a terra</radio_item> | ||
32 | </radio_group> | ||
33 | <button bottom_delta="4" height="16" label="Mostrar Objetos" left="245" name="show_objects" width="110" /> | ||
34 | <text bottom_delta="-35" follows="top|left" height="16" left="72" name="nag_message_label" right="-20" text_color="white">LEMBRE-SE: Todas as vendas so finais.</text> | ||
35 | <button bottom_delta="-30" follows="bottom|left" height="20" label="Definir Terra para Venda" left="72" name="sell_btn" width="130" /> | ||
36 | <button bottom_delta="0" follows="bottom|right" height="20" label="Cancelar" left="-70" name="cancel_btn" width="60" /> | ||
37 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/pt/floater_settings_debug.xml b/linden/indra/newview/skins/xui/pt/floater_settings_debug.xml deleted file mode 100644 index a164739..0000000 --- a/linden/indra/newview/skins/xui/pt/floater_settings_debug.xml +++ /dev/null | |||
@@ -1,14 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <floater can_close="true" can_drag_on_left="false" can_minimize="false" can_resize="false" height="190" name="settings_debug" title="Debug configuraes" width="350"><combo_box allow_text_entry="true" bottom="-50" follows="top|left" font="SansSerifSmall" height="20" left="15" max_chars="255" name="settings_combo" /> | ||
3 | <text_editor bottom_delta="-75" enabled="false" height="60" name="comment_text" word_wrap="true" /> | ||
4 | <combo_box bottom_delta="-30" follows="top|left" font="SansSerifSmall" height="20" left="15" name="boolean_combo" visible="false"><combo_item name="TRUE" value="true">Verdadeiro</combo_item> | ||
5 | <combo_item name="FALSE" value="">FALSO</combo_item> | ||
6 | </combo_box> | ||
7 | <line_editor bottom_delta="0" height="20" name="val_text" visible="false" width="300" /> | ||
8 | <color_swatch bottom="5" can_apply_immediately="true" height="55" label="Cor" name="color_swatch" visible="true" width="37" /> | ||
9 | <spinner bottom_delta="25" height="20" label="x" label_width="40" max_val="10000000" name="val_spinner_1" visible="false" width="120" /> | ||
10 | <spinner bottom_delta="0" height="20" label="x" label_width="40" left_delta="135" max_val="10000000" name="val_spinner_2" visible="false" width="120" /> | ||
11 | <spinner bottom_delta="-20" height="20" label="x" label_width="40" left="15" max_val="10000000" name="val_spinner_3" visible="false" width="120" /> | ||
12 | <spinner bottom_delta="0" height="20" label="x" label_width="40" left_delta="135" max_val="10000000" name="val_spinner_4" visible="false" width="120" /> | ||
13 | <button bottom="5" left="15" height="20" width="180" name="default_btn" label="Restaurar padro"/> | ||
14 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/pt/floater_snapshot.xml b/linden/indra/newview/skins/xui/pt/floater_snapshot.xml deleted file mode 100644 index 3baaa05..0000000 --- a/linden/indra/newview/skins/xui/pt/floater_snapshot.xml +++ /dev/null | |||
@@ -1,49 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <floater can_close="true" can_drag_on_left="false" can_minimize="false" can_resize="false" height="410" name="Snapshot" rect_control="FloaterSnapshotRect" title="Visualizar foto" width="215"><text bottom_delta="-40" follows="top|left" height="15" left="10" name="type_label" width="195">O que voc gostaria de fazer?</text> | ||
3 | <radio_group bottom_delta="-65" follows="left|top" height="60" label="Tipo de Foto" left="10" name="snapshot_type_radio" width="195"><radio_item bottom="-19" height="16" name="postcard">Enviar um postcard</radio_item> | ||
4 | <radio_item bottom="-38" height="16" name="texture">Upload de uma foto</radio_item> | ||
5 | <radio_item bottom="-57" height="16" name="local">Salvar foto no seu HD</radio_item> | ||
6 | </radio_group> | ||
7 | <text bottom_delta="-20" follows="top|left" height="15" left="10" name="type_label2" width="195">Que tamanho de imagem voc precisa?</text> | ||
8 | <combo_box bottom_delta="-22" follows="left|top" height="20" label="Resoluo" left="10" name="postcard_size_combo" width="195"><combo_item name="640x480" value="[i640,i480]">640x480</combo_item> | ||
9 | <combo_item name="800x600" value="[i800,i600]">800x600</combo_item> | ||
10 | <combo_item name="1024x768" value="[i1024,i768]">1024x768</combo_item> | ||
11 | <combo_item name="CurrentWindow" value="[i0,i0]">Janela Atual</combo_item> | ||
12 | <combo_item name="Custom" value="[i-1,i-1]">Customizado</combo_item> | ||
13 | </combo_box> | ||
14 | <combo_box bottom_delta="0" follows="left|top" height="20" label="Resoluo" left="10" name="texture_size_combo" width="195"><combo_item name="CurrentWindow" value="[i0,i0]">Janela Atual</combo_item> | ||
15 | <combo_item name="Small(128x128)" value="[i128,i128]">Pequeno (128x128)</combo_item> | ||
16 | <combo_item name="Medium(256x256)" value="[i256,i256]">Mdio (256x256)</combo_item> | ||
17 | <combo_item name="Large(512x512)" value="[i512,i512]">Grande (512x512)</combo_item> | ||
18 | <combo_item name="Custom" value="[i-1,i-1]">Customizado</combo_item> | ||
19 | </combo_box> | ||
20 | <combo_box bottom_delta="0" follows="left|top" height="20" label="Resoluo" left="10" name="local_size_combo" width="195"><combo_item name="CurrentWindow" value="[i0,i0]">Janela Atual</combo_item> | ||
21 | <combo_item name="320x240" value="[i320,i240]">320x240</combo_item> | ||
22 | <combo_item name="640x480" value="[i640,i480]">640x480</combo_item> | ||
23 | <combo_item name="800x600" value="[i800,i600]">800x600</combo_item> | ||
24 | <combo_item name="1024x768" value="[i1024,i768]">1024x768</combo_item> | ||
25 | <combo_item name="1280x1024" value="[i1280,i1024]">1280x1024</combo_item> | ||
26 | <combo_item name="1600x1200" value="[i1600,i1200]">1600x1200</combo_item> | ||
27 | <combo_item name="Custom" value="[i-1,i-1]">Customizado</combo_item> | ||
28 | </combo_box> | ||
29 | <spinner bottom_delta="-25" decimal_digits="0" follows="left|top" height="20" increment="32" label="Largura" label_width="30" left="10" max_val="6016" min_val="32" name="snapshot_width" width="95" /> | ||
30 | <spinner bottom_delta="0" decimal_digits="0" follows="left|top" height="20" increment="32" label="Altura" label_width="35" left="110" max_val="6016" min_val="32" name="snapshot_height" width="95" /> | ||
31 | <slider bottom_delta="-20" decimal_digits="0" follows="left|top" height="15" increment="1" initial_val="75" label="Qualidade da Imagem" left="10" max_val="100" min_val="0" name="image_quality_slider" width="210" /> | ||
32 | <text bottom_delta="-28" follows="left|top" height="20" left="10" name="layer_type_label" width="50">Capturar:</text> | ||
33 | <combo_box bottom_delta="3" follows="left|top" height="20" label="Camadas da Imagem" left="60" name="layer_types" width="145"><combo_item name="Colors" value="colors">Cores</combo_item> | ||
34 | <combo_item name="Depth" value="depth">Formato</combo_item> | ||
35 | <combo_item name="ObjectMattes" value="objects">Decorao do Objeto</combo_item> | ||
36 | </combo_box> | ||
37 | <text bottom_delta="-30" follows="left|top" height="25" left="10" name="file_size_label" width="195">Tamanho do Arquivo: [SIZE]</text> | ||
38 | <check_box bottom_delta="-10" follows="left|top" label="Mostrar interface na Foto" left="10" name="ui_check" /> | ||
39 | <check_box bottom_delta="-20" follows="left|top" label="Mostrar Objetos HUD na Foto" left="10" name="hud_check" /> | ||
40 | <check_box bottom_delta="-20" follows="left|top" label="Manter aberto aps salvar" left="10" name="keep_open_check" /> | ||
41 | <check_box bottom_delta="-20" follows="left|top" label="Manter aparncia selecionada" left="10" name="keep_aspect_check" /> | ||
42 | <check_box bottom_delta="-20" follows="left|top" label="Quadro Congelado" left="10" name="freeze_frame_check" /> | ||
43 | <button bottom_delta="-25" follows="left|top" height="20" label="Nova foto" left="10" name="new_snapshot_btn" width="195" /> | ||
44 | <check_box bottom_delta="-20" follows="left|top" label="Auto-snapshot" left="10" name="auto_snapshot_check" /> | ||
45 | <button bottom_delta="-18" follows="left|bottom" height="20" label="Upload (L$10)" left="10" name="upload_btn" width="105" /> | ||
46 | <button bottom="10" follows="left|bottom" height="20" label="Enviar" left="10" name="send_btn" width="105" /> | ||
47 | <button bottom_delta="0" follows="left|bottom" height="20" label="Salvar" left="10" name="save_btn" width="105" /> | ||
48 | <button bottom_delta="0" follows="left|bottom" height="20" label="Descartar" left="120" name="discard_btn" width="85" /> | ||
49 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/pt/floater_sound_preview.xml b/linden/indra/newview/skins/xui/pt/floater_sound_preview.xml deleted file mode 100644 index 43e582e..0000000 --- a/linden/indra/newview/skins/xui/pt/floater_sound_preview.xml +++ /dev/null | |||
@@ -1,14 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <floater can_close="true" can_drag_on_left="false" can_minimize="true" can_resize="false" height="190" min_height="140" min_width="300" name="Name/Description" title="sound.wav" width="300"><text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-35" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="15" left="10" mouse_opaque="false" name="name_label" v_pad="0" width="275">Nome:</text> | ||
3 | <line_editor bevel_style="in" border_style="line" border_thickness="1" bottom_delta="-23" follows="left|top|right" font="SansSerifSmall" height="19" left="10" max_length="63" mouse_opaque="true" name="name_form" width="280" /> | ||
4 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-19" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="15" left="10" mouse_opaque="false" name="description_label" v_pad="0" width="270">Descrio:</text> | ||
5 | <line_editor bevel_style="in" border_style="line" border_thickness="1" bottom_delta="-23" follows="left|top|right" font="SansSerifSmall" height="19" left="10" max_length="127" mouse_opaque="true" name="description_form" width="280" /> | ||
6 | <button bottom="-180" follows="right|bottom" font="SansSerif" halign="center" height="20" label="Cancelar" label_selected="Cancelar" left="182" mouse_opaque="true" name="cancel_btn" width="64" /> | ||
7 | <button bottom="-180" follows="left|bottom" font="SansSerif" halign="center" height="20" label="Upload (L$10)" label_selected="Upload (L$10)" left_delta="-151" mouse_opaque="true" name="ok_btn" width="110" /> | ||
8 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-120" drop_shadow_visible="true" follows="left|top" font="SansSerif" h_pad="0" halign="left" height="19" left="13" mouse_opaque="true" name="text" v_pad="0" width="87">Taxa de Bits (kbps):</text> | ||
9 | <radio_group bottom_delta="-22" follows="left|top" height="22" left="13" mouse_opaque="true" name="bitrate" width="274"><radio_item bottom="-21" follows="left|top" height="19" left="20" mouse_opaque="true" name="32" width="60">32</radio_item> | ||
10 | <radio_item bottom="-21" follows="left|top" height="19" left="80" mouse_opaque="true" name="64" width="60">64</radio_item> | ||
11 | <radio_item bottom="-21" follows="left|top" height="19" left="140" mouse_opaque="true" name="96" width="60">96</radio_item> | ||
12 | <radio_item bottom="-21" follows="left|top" height="19" left="200" mouse_opaque="true" name="128" width="60">128</radio_item> | ||
13 | </radio_group> | ||
14 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/pt/floater_telehub.xml b/linden/indra/newview/skins/xui/pt/floater_telehub.xml deleted file mode 100644 index 799df4c..0000000 --- a/linden/indra/newview/skins/xui/pt/floater_telehub.xml +++ /dev/null | |||
@@ -1,13 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <floater can_close="true" can_drag_on_left="false" can_minimize="true" can_resize="false" height="250" min_height="220" min_width="83" name="telehub" title="Telehub" width="272"><text bottom_delta="-40" follows="left|top" font="SansSerifSmall" height="16" left="10" name="status_text_connected" width="200">Telehub conectado ao objeto [OBJECT]</text> | ||
3 | <text bottom_delta="0" follows="left|top" font="SansSerifSmall" height="16" left="10" name="status_text_not_connected" width="200">Sem telehub conectado.</text> | ||
4 | <text bottom_delta="-20" follows="left|top" font="SansSerifSmall" height="20" left="10" name="help_text_connected" width="260">Para remover, clique em Desconectar.</text> | ||
5 | <text bottom_delta="0" follows="left|top" font="SansSerifSmall" height="20" left="10" name="help_text_not_connected" width="260">Selecione um objeto e clique em Conectar Telehub.</text> | ||
6 | <button bottom_delta="-20" follows="top|left" font="SansSerifSmall" height="20" label="Conectar Telehub" left="10" name="connect_btn" width="110" /> | ||
7 | <button bottom_delta="0" follows="top|left" font="SansSerifSmall" height="20" label="Desconectar" left="130" name="disconnect_btn" width="110" /> | ||
8 | <text bottom_delta="-20" follows="left|top" font="SansSerifSmall" height="16" left="10" name="spawn_points_text" width="200">Pontos de Nascimento (posies, no objetos):</text> | ||
9 | <scroll_list bottom_delta="-60" draw_border="true" follows="left|top" font="SansSerifSmall" height="60" left="10" multi_select="false" name="spawn_points_list" width="230" /> | ||
10 | <button bottom_delta="-25" follows="top|left" font="SansSerifSmall" height="20" label="Adicionar Nascimento" left="10" name="add_spawn_point_btn" width="110" /> | ||
11 | <button bottom_delta="0" follows="top|left" font="SansSerifSmall" height="20" label="Remover Nascimento" left="130" name="remove_spawn_point_btn" width="110" /> | ||
12 | <text bottom_delta="-85" follows="top|left" font="SansSerifSmall" height="80" left="10" name="spawn_point_help" width="260">Selecione um objeto e clique Adicionar para especificar a posio. Em seguida, voc pode mover ou apagar o objeto. As posies so relativas ao centro do telehub. Selecione um item na lista para mostrar a posio in-world.</text> | ||
13 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/pt/floater_texture_ctrl.xml b/linden/indra/newview/skins/xui/pt/floater_texture_ctrl.xml deleted file mode 100644 index 4a96436..0000000 --- a/linden/indra/newview/skins/xui/pt/floater_texture_ctrl.xml +++ /dev/null | |||
@@ -1,14 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <floater bottom="-516" can_close="true" can_drag_on_left="false" can_minimize="false" can_resize="true" can_tear_off="true" enabled="true" height="290" hidden="false" left="478" min_height="290" min_width="410" mouse_opaque="true" name="texture picker" title="Pegar: Textura" width="410"><text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-110" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="center" height="14" hidden="false" left="4" mouse_opaque="true" name="Multiple" v_pad="0" width="163">Multiplo</text> | ||
3 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-204" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="14" hidden="false" left="4" mouse_opaque="true" name="unknown" v_pad="0" width="163">Dimenes: 512 x 512</text> | ||
4 | <button bottom="-228" enabled="false" follows="left|bottom" font="SansSerifSmall" halign="center" height="20" hidden="false" label="Padro" label_selected="Padro" left="4" mouse_opaque="true" name="Default" scale_image="true" width="64" /> | ||
5 | <button bottom="-228" enabled="false" follows="left|bottom" font="SansSerifSmall" halign="center" height="20" hidden="false" label="Nenhum" label_selected="Nenhum" left="72" mouse_opaque="true" name="None" scale_image="true" width="64" /> | ||
6 | <button bottom="-252" enabled="true" follows="left|bottom" font="SansSerifSmall" halign="center" height="20" hidden="false" label="Branco" label_selected="Branco" left="4" mouse_opaque="true" name="Blank" scale_image="true" width="64" /> | ||
7 | <check_box bottom="-44" enabled="true" follows="left|top" font="SansSerifSmall" height="24" hidden="false" initial_value="true" label="Mostrar Pastas" left="175" mouse_opaque="true" name="show_folders_check" radio_style="false" width="201" /> | ||
8 | <search_editor bottom="-36" enabled="true" follows="left|top|right" height="16" hidden="false" left="175" mouse_opaque="true" name="inventory search editor" width="231" /> | ||
9 | <inventory_panel allow_multi_select="false" border="true" bottom="-256" enabled="true" follows="left|top|right|bottom" height="216" hidden="false" left="175" mouse_opaque="true" name="inventory panel" sort_order="TexturePickerSortOrder" width="231" /> | ||
10 | <check_box bottom="-282" enabled="true" follows="left|bottom" font="SansSerifSmall" height="20" hidden="false" initial_value="true" label="Aplicar Imediatamente" left="4" mouse_opaque="true" name="apply_immediate_check" radio_style="false" width="150" /> | ||
11 | <button bottom="-282" enabled="true" follows="left|bottom" font="SansSerif" halign="center" height="32" hidden="false" image_selected="eye_button_active.tga" image_unselected="eye_button_inactive.tga" label="" label_selected="" left="139" mouse_opaque="true" name="Pipette" scale_image="true" width="32" /> | ||
12 | <button bottom="-282" enabled="true" follows="right|bottom" font="SansSerif" halign="center" height="20" hidden="false" label="Cancelar" label_selected="Cancelar" left="186" mouse_opaque="true" name="Cancel" scale_image="true" width="100" /> | ||
13 | <button bottom="-282" enabled="true" follows="right|bottom" font="SansSerif" halign="center" height="20" hidden="false" label="Selecionar" label_selected="Selecionar" left="290" mouse_opaque="true" name="Select" scale_image="true" width="100" /> | ||
14 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/pt/floater_tools.xml b/linden/indra/newview/skins/xui/pt/floater_tools.xml deleted file mode 100644 index 0dca9b7..0000000 --- a/linden/indra/newview/skins/xui/pt/floater_tools.xml +++ /dev/null | |||
@@ -1,302 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <floater bottom="-359" can_close="true" can_drag_on_left="false" can_minimize="true" can_resize="false" follows="left|top" height="550" hidden="false" left="308" min_height="100" min_width="100" mouse_opaque="true" name="toolbox floater" rect_control="ToolboxRect" sound_flags="0" title="" width="272"><button bottom="-34" follows="left|top" font="SansSerif" halign="center" height="32" hidden="false" image_disabled="tool_zoom.tga" image_disabled_selected="tool_zoom_active.tga" image_selected="tool_zoom_active.tga" image_unselected="tool_zoom.tga" label="" label_selected="" left="4" mouse_opaque="true" name="button focus" width="32" /> | ||
3 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-14" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="14" hidden="false" left="5" mouse_opaque="true" name="tool label" v_pad="0" width="30">Foco</text> | ||
4 | <button bottom="-34" follows="left|top" font="SansSerif" halign="center" height="32" hidden="false" image_disabled="UIImgGrabUUID" image_disabled_selected="UIImgGrabSelectedUUID" image_selected="UIImgGrabSelectedUUID" image_unselected="UIImgGrabUUID" label="" label_selected="" left="40" mouse_opaque="true" name="button move" width="32" /> | ||
5 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-14" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="14" hidden="false" left="43" mouse_opaque="true" name="tool label2" v_pad="0" width="27">Mover</text> | ||
6 | <button bottom="-34" follows="left|top" font="SansSerif" halign="center" height="32" hidden="false" image_disabled="UIImgFaceUUID" image_disabled_selected="UIImgFaceSelectedUUID" image_selected="UIImgFaceSelectedUUID" image_unselected="UIImgFaceUUID" label="" label_selected="" left="76" mouse_opaque="true" name="button edit" width="32" /> | ||
7 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-48" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="14" hidden="false" left="82" mouse_opaque="true" name="tool label3" v_pad="0" width="20">Editar</text> | ||
8 | <button bottom="-34" follows="left|top" font="SansSerif" halign="center" height="32" hidden="false" image_disabled="UIImgCreateUUID" image_disabled_selected="UIImgCreateSelectedUUID" image_selected="UIImgCreateSelectedUUID" image_unselected="UIImgCreateUUID" label="" label_selected="" left="112" mouse_opaque="true" name="button create" width="32" /> | ||
9 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-14" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="14" hidden="false" left="112" mouse_opaque="true" name="tool label4" v_pad="0" width="33">Criar</text> | ||
10 | <button bottom="-34" follows="left|top" font="SansSerif" halign="center" height="32" hidden="false" image_disabled="tool_dozer.tga" image_disabled_selected="tool_dozer_active.tga" image_selected="tool_dozer_active.tga" image_unselected="tool_dozer.tga" label="" label_selected="" left="148" mouse_opaque="true" name="button land" width="32" /> | ||
11 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-14" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="14" hidden="false" left="152" mouse_opaque="true" name="tool label5" v_pad="0" width="24">Terra</text> | ||
12 | <check_box bottom="-79" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Zoom" left="4" mouse_opaque="true" name="radio zoom" radio_style="true" width="114" /> | ||
13 | <volume_slider bottom="-79" follows="left|top" height="14" hidden="false" increment="0.01" initial_val="0.125" left="114" max_val="0.5" min_val="0" mouse_opaque="true" name="slider zoom" width="134" /> | ||
14 | <check_box bottom="-94" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Orbita (Ctrl)" left="4" mouse_opaque="true" name="radio orbit" radio_style="true" width="114" /> | ||
15 | <check_box bottom_delta="-15" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Pan (Ctrl-Shift)" left="4" mouse_opaque="true" name="radio pan" radio_style="true" width="114" /> | ||
16 | <check_box bottom_delta="30" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Mover" left="4" mouse_opaque="true" name="radio move" radio_style="true" width="114" /> | ||
17 | <check_box bottom_delta="-15" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Suspender (Ctrl)" left="4" mouse_opaque="true" name="radio lift" radio_style="true" width="114" /> | ||
18 | <check_box bottom_delta="-15" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Girar (Ctrl-Shift)" left="4" mouse_opaque="true" name="radio spin" radio_style="true" width="114" /> | ||
19 | <check_box bottom_delta="30" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Posio" left="4" mouse_opaque="true" name="radio position" radio_style="true" width="114" /> | ||
20 | <check_box bottom_delta="-15" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Rotacionar (Ctrl)" left="4" mouse_opaque="true" name="radio rotate" radio_style="true" width="114" /> | ||
21 | <check_box bottom_delta="-15" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Esticar (Ctrl-Shift)" left="4" mouse_opaque="true" name="radio stretch" radio_style="true" width="123" /> | ||
22 | <check_box bottom_delta="-15" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Selecionar Textura" left="4" mouse_opaque="true" name="radio select face" radio_style="true" width="114" /> | ||
23 | <check_box bottom_delta="-15" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Editar partes linkadas" left="4" mouse_opaque="true" name="checkbox edit linked parts" width="114" /> | ||
24 | <check_box bottom="-79" control_name="SnapEnabled" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="true" label="Grade" left="118" mouse_opaque="true" name="checkbox snap to grid" width="134" /> | ||
25 | <button bottom="-78" follows="left|top" font="SansSerifSmall" halign="center" height="16" hidden="false" label="Opes..." label_selected="Opes..." left_delta="68" mouse_opaque="true" name="Options..." scale_image="TRUE" width="80" /> | ||
26 | <check_box bottom="-94" control_name="ScaleUniform" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Esticar ambos os lados" left="118" mouse_opaque="true" name="checkbox uniform" width="134" /> | ||
27 | <check_box bottom_delta="-15" control_name="ScaleStretchTextures" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="true" label="Esticar Texturas" left="118" mouse_opaque="true" name="checkbox stretch textures" width="134" /> | ||
28 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-20" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="14" hidden="false" left="150" mouse_opaque="true" name="text ruler mode" v_pad="0" width="64">Modo</text> | ||
29 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-64" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" hidden="false" left="4" mouse_opaque="true" name="text status" v_pad="0" width="264">Arraste para mover, shift+Arrastar para Copiar</text> | ||
30 | |||
31 | <combo_box allow_text_entry="false" bottom="-132" follows="left|top" height="20" hidden="false" left="186" max_chars="20" mouse_opaque="true" name="combobox grid mode" width="80"> | ||
32 | <combo_item name="World" value="World">Mundo</combo_item> | ||
33 | <combo_item name="Local" value="Local">Local</combo_item> | ||
34 | <combo_item name="Reference" value="Reference">Referncia</combo_item> | ||
35 | </combo_box> | ||
36 | <button bottom="-93" follows="left|top" font="SansSerif" halign="center" height="24" hidden="false" image_disabled="object_cube.tga" image_disabled_selected="object_cube_active.tga" image_selected="object_cube_active.tga" image_unselected="object_cube.tga" label="" label_selected="" left="4" mouse_opaque="true" name="ToolCube" scale_image="TRUE" width="24" /> | ||
37 | <button bottom="-93" follows="left|top" font="SansSerif" halign="center" height="24" hidden="false" image_disabled="object_prism.tga" image_disabled_selected="object_prism_active.tga" image_selected="object_prism_active.tga" image_unselected="object_prism.tga" label="" label_selected="" left_delta="23" mouse_opaque="true" name="ToolPrism" scale_image="TRUE" width="24" /> | ||
38 | <button bottom="-93" follows="left|top" font="SansSerif" halign="center" height="24" hidden="false" image_disabled="object_pyramid.tga" image_disabled_selected="object_pyramid_active.tga" image_selected="object_pyramid_active.tga" image_unselected="object_pyramid.tga" label="" label_selected="" left_delta="23" mouse_opaque="true" name="ToolPyramid" scale_image="TRUE" width="24" /> | ||
39 | <button bottom="-93" follows="left|top" font="SansSerif" halign="center" height="24" hidden="false" image_disabled="object_tetrahedron.tga" image_disabled_selected="object_tetrahedron_active.tga" image_selected="object_tetrahedron_active.tga" image_unselected="object_tetrahedron.tga" label="" label_selected="" left_delta="23" mouse_opaque="true" name="ToolTetrahedron" scale_image="TRUE" width="24" /> | ||
40 | <button bottom="-93" follows="left|top" font="SansSerif" halign="center" height="24" hidden="false" image_disabled="object_cylinder.tga" image_disabled_selected="object_cylinder_active.tga" image_selected="object_cylinder_active.tga" image_unselected="object_cylinder.tga" label="" label_selected="" left_delta="23" mouse_opaque="true" name="ToolCylinder" scale_image="TRUE" width="24" /> | ||
41 | <button bottom="-93" follows="left|top" font="SansSerif" halign="center" height="24" hidden="false" image_disabled="object_hemi_cylinder.tga" image_disabled_selected="object_hemi_cylinder_active.tga" image_selected="object_hemi_cylinder_active.tga" image_unselected="object_hemi_cylinder.tga" label="" label_selected="" left_delta="23" mouse_opaque="true" name="ToolHemiCylinder" scale_image="TRUE" width="24" /> | ||
42 | <button bottom="-93" follows="left|top" font="SansSerif" halign="center" height="24" hidden="false" image_disabled="object_cone.tga" image_disabled_selected="object_cone_active.tga" image_selected="object_cone_active.tga" image_unselected="object_cone.tga" label="" label_selected="" left_delta="23" mouse_opaque="true" name="ToolCone" scale_image="TRUE" width="24" /> | ||
43 | <button bottom="-93" follows="left|top" font="SansSerif" halign="center" height="24" hidden="false" image_disabled="object_hemi_cone.tga" image_disabled_selected="object_hemi_cone_active.tga" image_selected="object_hemi_cone_active.tga" image_unselected="object_hemi_cone.tga" label="" label_selected="" left_delta="23" mouse_opaque="true" name="ToolHemiCone" scale_image="TRUE" width="24" /> | ||
44 | <button bottom="-93" follows="left|top" font="SansSerif" halign="center" height="24" hidden="false" image_disabled="object_sphere.tga" image_disabled_selected="object_sphere_active.tga" image_selected="object_sphere_active.tga" image_unselected="object_sphere.tga" label="" label_selected="" left_delta="23" mouse_opaque="true" name="ToolSphere" scale_image="TRUE" width="24" /> | ||
45 | <button bottom="-93" follows="left|top" font="SansSerif" halign="center" height="24" hidden="false" image_disabled="object_hemi_sphere.tga" image_disabled_selected="object_hemi_sphere_active.tga" image_selected="object_hemi_sphere_active.tga" image_unselected="object_hemi_sphere.tga" label="" label_selected="" left_delta="23" mouse_opaque="true" name="ToolHemiSphere" scale_image="TRUE" width="24" /> | ||
46 | <check_box bottom="-112" control_name="CreateToolCopySelection" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Copiar Seleo" left="126" mouse_opaque="true" name="checkbox copy selection" width="134" /> | ||
47 | <button bottom="-121" follows="left|top" font="SansSerif" halign="center" height="24" hidden="false" image_disabled="object_torus.tga" image_disabled_selected="object_torus_active.tga" image_selected="object_torus_active.tga" image_unselected="object_torus.tga" label="" label_selected="" left="4" mouse_opaque="true" name="ToolTorus" scale_image="TRUE" width="24" /> | ||
48 | <button bottom="-121" follows="left|top" font="SansSerif" halign="center" height="24" hidden="false" image_disabled="object_tube.tga" image_disabled_selected="object_tube_active.tga" image_selected="object_tube_active.tga" image_unselected="object_tube.tga" label="" label_selected="" left_delta="23" mouse_opaque="true" name="ToolTube" scale_image="TRUE" width="24" /> | ||
49 | <button bottom="-121" follows="left|top" font="SansSerif" halign="center" height="24" hidden="false" image_disabled="object_ring.tga" image_disabled_selected="object_ring_active.tga" image_selected="object_ring_active.tga" image_unselected="object_ring.tga" label="" label_selected="" left_delta="23" mouse_opaque="true" name="ToolRing" scale_image="TRUE" width="24" /> | ||
50 | <button bottom="-121" follows="left|top" font="SansSerif" halign="center" height="24" hidden="false" image_disabled="object_tree.tga" image_disabled_selected="object_tree_active.tga" image_selected="object_tree_active.tga" image_unselected="object_tree.tga" label="" label_selected="" left_delta="23" mouse_opaque="true" name="ToolTree" scale_image="TRUE" width="24" /> | ||
51 | <button bottom="-121" follows="left|top" font="SansSerif" halign="center" height="24" hidden="false" image_disabled="object_grass.tga" image_disabled_selected="object_grass_active.tga" image_selected="object_grass_active.tga" image_unselected="object_grass.tga" label="" label_selected="" left_delta="23" mouse_opaque="true" name="ToolGrass" scale_image="TRUE" width="24" /> | ||
52 | <check_box bottom="-157" control_name="CreateToolKeepSelected" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Manter ferramenta selecionada" left="4" mouse_opaque="true" name="checkbox sticky" width="128" /> | ||
53 | <check_box bottom="-127" control_name="CreateToolCopyCenters" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="true" label="Copiar Centro" left="146" mouse_opaque="true" name="checkbox copy centers" width="134" /> | ||
54 | <check_box bottom_delta="-15" control_name="CreateToolCopyRotates" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Rotacionar Copia" left="146" mouse_opaque="true" name="checkbox copy rotates" width="134" /> | ||
55 | <check_box bottom="-79" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Selecionar Terra" left="4" mouse_opaque="true" name="radio select land" radio_style="true" width="114" /> | ||
56 | <check_box bottom_delta="-14" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Aplainar Terra" left="4" mouse_opaque="true" name="radio flatten" radio_style="true" width="114" /> | ||
57 | <check_box bottom_delta="-14" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Elevar Terra" left="4" mouse_opaque="true" name="radio raise" radio_style="true" width="114" /> | ||
58 | <check_box bottom_delta="-14" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Baixar Terra" left="4" mouse_opaque="true" name="radio lower" radio_style="true" width="114" /> | ||
59 | <check_box bottom_delta="-14" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Suavizar Terra" left="4" mouse_opaque="true" name="radio smooth" radio_style="true" width="114" /> | ||
60 | <check_box bottom_delta="-14" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Terrano Rgido" left="4" mouse_opaque="true" name="radio noise" radio_style="true" width="114" /> | ||
61 | <check_box bottom_delta="-14" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Reverter Terra" left="4" mouse_opaque="true" name="radio revert" radio_style="true" width="114" /> | ||
62 | <combo_box allow_text_entry="false" bottom="-85" follows="left|top" height="18" hidden="false" left="118" max_chars="20" mouse_opaque="true" name="combobox brush size" width="134"><combo_item name="Small" value="Small">Pequeno</combo_item> | ||
63 | <combo_item name="Medium" value="Medium">Mdio</combo_item> | ||
64 | <combo_item name="Large" value="Large">Grande</combo_item> | ||
65 | </combo_box> | ||
66 | <button bottom_delta="-20" follows="left|top" font="SansSerifSmall" halign="center" height="16" hidden="false" label="Aplicar no selecionado" label_selected="Aplicar no selecionado" left="118" mouse_opaque="true" name="button apply to selection" scale_image="TRUE" tool_tip="Modificar Terra Selecionada" width="134" /> | ||
67 | <check_box bottom_delta="-20" control_name="ShowParcelOwners" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Mostrar Proprietrios" left="118" mouse_opaque="true" name="checkbox show owners" width="134" /> | ||
68 | <button bottom="-163" follows="left|top" font="SansSerifSmall" halign="center" height="20" hidden="false" label="Mais >>" left="186" mouse_opaque="true" name="button more" scale_image="TRUE" tool_tip="Opes Avanadas" width="80" /> | ||
69 | <button bottom_delta="0" follows="left|top" font="SansSerifSmall" halign="center" height="20" hidden="false" label="<< Menos" left_delta="0" mouse_opaque="true" name="button less" scale_image="TRUE" tool_tip="Opes Avanadas" width="80" /> | ||
70 | <tab_container bottom="-550" follows="left|top" height="384" hidden="false" left="0" mouse_opaque="false" name="Object Info Tabs" tab_max_width="52" tab_min_width="60" tab_position="top" width="272"><panel border="true" bottom="-383" follows="left|top|right|bottom" height="367" hidden="false" label="Comum" left="1" mouse_opaque="false" name="General" width="270"><text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-20" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="10" hidden="false" left="10" mouse_opaque="true" name="Name:" v_pad="0" width="78">Nome:</text> | ||
71 | <line_editor bevel_style="in" border_style="line" border_thickness="1" bottom="-26" follows="left|top|right" font="SansSerifSmall" height="16" hidden="false" left="88" max_length="63" mouse_opaque="true" name="Object Name" select_all_on_focus_received="true" width="172" /> | ||
72 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-40" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="10" hidden="false" left="10" mouse_opaque="true" name="Description:" v_pad="0" width="78">Descrio:</text> | ||
73 | <line_editor bevel_style="in" border_style="line" border_thickness="1" bottom="-46" follows="left|top|right" font="SansSerifSmall" height="16" hidden="false" left="88" max_length="127" mouse_opaque="true" name="Object Description" select_all_on_focus_received="true" width="172" /> | ||
74 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-66" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" hidden="false" left="10" mouse_opaque="true" name="Creator:" v_pad="0" width="78">Criador:</text> | ||
75 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-66" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" hidden="false" left_delta="78" mouse_opaque="true" name="Creator Name" v_pad="0" width="88">Thrax Linden</text> | ||
76 | <button bottom="-66" follows="top|right" font="SansSerifSmall" halign="center" height="16" hidden="false" label="Perfil..." label_selected="Perfil..." left_delta="94" mouse_opaque="true" name="button creator profile" scale_image="TRUE" width="78" /> | ||
77 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-86" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" hidden="false" left="10" mouse_opaque="true" name="Owner:" v_pad="0" width="78">Proprietrio:</text> | ||
78 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-86" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" hidden="false" left_delta="78" mouse_opaque="true" name="Owner Name" v_pad="0" width="88">Thrax Linden</text> | ||
79 | <button bottom="-86" follows="top|right" font="SansSerifSmall" halign="center" height="16" hidden="false" label="Perfil..." label_selected="Perfil..." left_delta="94" mouse_opaque="true" name="button owner profile" scale_image="TRUE" width="78" /> | ||
80 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-106" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" hidden="false" left="10" mouse_opaque="true" name="Group:" v_pad="0" width="78">Grupo:</text> | ||
81 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-106" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" hidden="true" left_delta="78" mouse_opaque="true" name="Group Name Proxy" v_pad="0" width="88">Os Lindens</text> | ||
82 | |||
83 | <button bottom="-106" follows="top|right" font="SansSerifSmall" halign="center" height="16" hidden="false" label="Selecionar..." label_selected="Selecionar..." left_delta="94" mouse_opaque="true" name="button set group" scale_image="TRUE" width="78" /> | ||
84 | |||
85 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-126" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" hidden="false" left="10" mouse_opaque="true" name="prim info" v_pad="0" width="166">1 Objeto, 1 Primitiva</text> | ||
86 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-20" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" hidden="false" left="10" mouse_opaque="true" name="Permissions:" v_pad="0" width="78">Permisses:</text> | ||
87 | |||
88 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-20" drop_shadow_visible="true" follows="left|top|right" font="SansSerifSmall" h_pad="0" halign="left" height="16" hidden="false" left="10" mouse_opaque="true" name="perm_modify" v_pad="0" width="250">Voc pode modificar este objeto.</text> | ||
89 | |||
90 | |||
91 | <check_box bottom_delta="-20" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Compartilhar com o Grupo" left="10" mouse_opaque="true" name="checkbox share with group" tool_tip="Permitir que o membros do grupo movam, modifiquem, copiem e apaguem" width="166" /> | ||
92 | <text hidden="true" name="text deed continued">Acionar...</text> | ||
93 | <text hidden="true" name="text deed">Acionar</text> | ||
94 | <button bottom="-186" follows="top|right" font="SansSerifSmall" halign="center" height="16" hidden="false" label="Acionar..." label_selected="Acionar..." left_delta="172" mouse_opaque="true" name="button deed" scale_image="TRUE" tool_tip="Objetos compartilhados do Grupo pode ser acionados pelo gerente do grupo." width="78" /> | ||
95 | <check_box bottom="-206" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Permitir que qualquer um mova" left="10" mouse_opaque="true" name="checkbox allow everyone move" width="142" /> | ||
96 | <check_box bottom_delta="-20" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Permitir que qualquer um copie" left="10" mouse_opaque="true" name="checkbox allow everyone copy" width="141" /> | ||
97 | <check_box bottom_delta="-20" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="A Venda" left="10" mouse_opaque="true" name="checkbox for sale" width="78" /> | ||
98 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-262" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" hidden="false" left="42" mouse_opaque="true" name="Price: L$" v_pad="0" width="56">Preo: L$</text> | ||
99 | <line_editor bevel_style="in" border_style="line" border_thickness="1" bottom="-262" follows="left|top|right" font="SansSerifSmall" height="16" hidden="false" left_delta="56" max_length="25" mouse_opaque="true" name="EdCost" width="84" /> | ||
100 | <radio_group bottom="-286" draw_border="false" follows="left|top|right" height="16" hidden="false" left="42" mouse_opaque="true" name="sale type" width="218"><radio_item bottom="-16" follows="left|top" height="16" hidden="false" left="0" mouse_opaque="true" name="Original" width="70">Original</radio_item> | ||
101 | <radio_item bottom="-16" follows="left|top" height="16" hidden="false" left="70" mouse_opaque="true" name="Copy" width="70">Copiar</radio_item> | ||
102 | <radio_item bottom="-16" follows="left|top" height="16" hidden="false" left="140" mouse_opaque="true" name="Contents" width="76">Contedo</radio_item> | ||
103 | </radio_group> | ||
104 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-300" drop_shadow_visible="true" follows="left|top|right" font="SansSerifSmall" h_pad="0" halign="left" height="10" hidden="false" left="10" mouse_opaque="true" name="Next owner can:" v_pad="0" width="250">Prximo Proprietrio pode:</text> | ||
105 | |||
106 | |||
107 | <check_box bottom_delta="-20" follows="left|top|right" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Modificar" left="10" mouse_opaque="true" name="checkbox next owner can modify" width="250" /> | ||
108 | |||
109 | <check_box bottom="-320" follows="left|top|right" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Copiar" left_delta="80" mouse_opaque="true" name="checkbox next owner can copy" width="190" /> | ||
110 | |||
111 | <check_box bottom="-320" follows="left|top|right" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Revender/Dar" left_delta="60" mouse_opaque="true" name="checkbox next owner can transfer" width="130" /> | ||
112 | |||
113 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-334" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="10" hidden="false" left="10" mouse_opaque="true" name="label click action" v_pad="0" width="150">Quando clicado com o boto esquerdo:</text> | ||
114 | <combo_box allow_text_entry="false" bottom_delta="-22" follows="left|top" height="18" hidden="false" left="10" max_chars="20" mouse_opaque="true" name="clickaction" width="150"><combo_item name="Touch/grab(default)" value="Touch/grab (default)">Tocar/Pegar (padro)</combo_item> | ||
115 | <combo_item name="Sitonobject" value="Sit on object">Sentar no objeto</combo_item> | ||
116 | <combo_item name="Buyobject" value="Buy object">Comprar objeto</combo_item> | ||
117 | <combo_item name="Payobject" value="Pay object">Pagar Objeto</combo_item> | ||
118 | <combo_item name="Open" value="Open">Abrir</combo_item> | ||
119 | </combo_box> | ||
120 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-135" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="10" hidden="false" left="88" mouse_opaque="true" name="B:" v_pad="0" width="174">B:</text> | ||
121 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-135" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="10" hidden="false" left_delta="50" mouse_opaque="true" name="O:" v_pad="0" width="124">O;</text> | ||
122 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-135" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="10" hidden="false" left_delta="50" mouse_opaque="true" name="G:" v_pad="0" width="74">G:</text> | ||
123 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-147" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="10" hidden="false" left="88" mouse_opaque="true" name="E:" v_pad="0" width="174">E:</text> | ||
124 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-147" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="10" hidden="false" left_delta="50" mouse_opaque="true" name="N:" v_pad="0" width="124">N:</text> | ||
125 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-147" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="10" hidden="false" left_delta="50" mouse_opaque="true" name="F:" v_pad="0" width="74">F:</text> | ||
126 | <text hidden="true" name="text modify info 1">Voc pode modificar este objeto.</text> | ||
127 | <text hidden="true" name="text modify info 2">Voc pode modificar estes objetos.</text> | ||
128 | <text hidden="true" name="text modify info 3">Voc no pode modificar este objeto.</text> | ||
129 | <text hidden="true" name="text modify info 4">Voc no pode modificar estes objetos.</text> | ||
130 | <text hidden="true" name="text modify warning">Voc precisa selecionar o objeto todo para ajustar as permisses.</text> | ||
131 | </panel> | ||
132 | <panel border="true" bottom="-383" follows="left|top|right|bottom" height="367" hidden="false" label="Objeto" left="1" mouse_opaque="false" name="Object" width="270"><text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-20" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="10" hidden="false" left="10" mouse_opaque="true" name="select_single" v_pad="0" width="252">Selecione apenas uma primitiva para editar os parmetros.</text> | ||
133 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="0" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="10" hidden="false" left_delta="0" mouse_opaque="true" name="edit_object" v_pad="0" width="252">Editar os parmetros do Objeto:</text> | ||
134 | <check_box bottom_delta="-26" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Travado" left="8" mouse_opaque="true" name="checkbox locked" tool_tip="Previne que o objeto seja movido ou apagado. Muito til para evitar edies no intencionais durante a construo." width="123" /> | ||
135 | <check_box bottom_delta="-18" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Fsica" left="8" mouse_opaque="true" name="Physical Checkbox Ctrl" tool_tip="Permite que os objetos sejam empurrados sofram efeito da gravidade" width="123" /> | ||
136 | <check_box bottom_delta="-18" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Temporrio" left="8" mouse_opaque="true" name="Temporary Checkbox Ctrl" tool_tip="Faz com que o objeto seja apagado 1 minuto aps ser criado." width="123" /> | ||
137 | <check_box bottom_delta="-18" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Fantasma" left="8" mouse_opaque="true" name="Phantom Checkbox Ctrl" tool_tip="Faz com que o objeto no colida com outros objetos ou avatares" width="123" /> | ||
138 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-14" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="10" hidden="false" left="10" mouse_opaque="true" name="label position" v_pad="0" width="121">Posio (metros)</text> | ||
139 | <spinner bottom_delta="-20" decimal_digits="3" follows="left|top" height="16" hidden="false" increment="0.01" initial_val="0" label="X" label_width="10" left="10" max_val="512" min_val="-256" mouse_opaque="true" name="Pos X" text_enabled_color="1, 0.25, 0, 1" width="87" /> | ||
140 | <spinner bottom_delta="-18" decimal_digits="3" follows="left|top" height="16" hidden="false" increment="0.01" initial_val="0" label="Y" label_width="10" left="10" max_val="512" min_val="-256" mouse_opaque="true" name="Pos Y" text_enabled_color="0, 1, 0, 1" width="87" /> | ||
141 | <spinner bottom_delta="-18" decimal_digits="3" follows="left|top" height="16" hidden="false" increment="0.01" initial_val="0" label="Z" label_width="10" left="10" max_val="768" min_val="0" mouse_opaque="true" name="Pos Z" text_enabled_color="0, 0.5, 1, 1" width="87" /> | ||
142 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-16" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="10" hidden="false" left="10" mouse_opaque="true" name="label size" v_pad="0" width="121">Tamanho (metros)</text> | ||
143 | <spinner bottom_delta="-20" decimal_digits="3" follows="left|top" height="16" hidden="false" increment="0.01" initial_val="0" label="X" label_width="10" left="10" max_val="10" min_val="0.01" mouse_opaque="true" name="Scale X" text_enabled_color="1, 1, 1, 1" width="87" /> | ||
144 | <spinner bottom_delta="-18" decimal_digits="3" follows="left|top" height="16" hidden="false" increment="0.01" initial_val="0" label="Y" label_width="10" left="10" max_val="10" min_val="0.01" mouse_opaque="true" name="Scale Y" text_enabled_color="1, 1, 1, 1" width="87" /> | ||
145 | <spinner bottom_delta="-18" decimal_digits="3" follows="left|top" height="16" hidden="false" increment="0.01" initial_val="0" label="Z" label_width="10" left="10" max_val="10" min_val="0.01" mouse_opaque="true" name="Scale Z" text_enabled_color="1, 1, 1, 1" width="87" /> | ||
146 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-16" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="10" hidden="false" left="10" mouse_opaque="true" name="label rotation" v_pad="0" width="121">Rotao (graus)</text> | ||
147 | <spinner bottom_delta="-22" decimal_digits="2" follows="left|top" height="16" hidden="false" increment="1" initial_val="0" label="X" label_width="10" left="10" max_val="9999" min_val="-9999" mouse_opaque="true" name="Rot X" text_enabled_color="1, 1, 1, 1" width="87" /> | ||
148 | <spinner bottom_delta="-18" decimal_digits="2" follows="left|top" height="16" hidden="false" increment="1" initial_val="0" label="Y" label_width="10" left="10" max_val="9999" min_val="-9999" mouse_opaque="true" name="Rot Y" text_enabled_color="1, 1, 1, 1" width="87" /> | ||
149 | <spinner bottom_delta="-18" decimal_digits="2" follows="left|top" height="16" hidden="false" increment="1" initial_val="0" label="Z" label_width="10" left="10" max_val="9999" min_val="-9999" mouse_opaque="true" name="Rot Z" text_enabled_color="1, 1, 1, 1" width="87" /> | ||
150 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-16" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="10" hidden="false" left="10" mouse_opaque="true" name="label material" v_pad="0" width="121">Material</text> | ||
151 | <combo_box allow_text_entry="false" bottom_delta="-22" follows="left|top" height="18" hidden="false" left="10" max_chars="20" mouse_opaque="true" name="material" width="87"><combo_item name="Stone" value="Stone">Pedra</combo_item> | ||
152 | <combo_item name="Metal" value="Metal">Metal</combo_item> | ||
153 | <combo_item name="Glass" value="Glass">Vidro</combo_item> | ||
154 | <combo_item name="Wood" value="Wood">Madeira</combo_item> | ||
155 | <combo_item name="Flesh" value="Flesh">Carne</combo_item> | ||
156 | <combo_item name="Plastic" value="Plastic">Plstico</combo_item> | ||
157 | <combo_item name="Rubber" value="Rubber">Couro</combo_item> | ||
158 | </combo_box> | ||
159 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-36" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="10" hidden="false" left="121" mouse_opaque="true" name="label basetype" v_pad="0" width="141">Forma bsica</text> | ||
160 | <combo_box allow_text_entry="false" bottom_delta="-24" follows="left|top" height="18" hidden="false" left="121" max_chars="20" mouse_opaque="true" name="comboBaseType" width="141"><combo_item name="Box" value="Box">Caixa</combo_item> | ||
161 | <combo_item name="Cylinder" value="Cylinder">Cilindro</combo_item> | ||
162 | <combo_item name="Prism" value="Prism">Prisma</combo_item> | ||
163 | <combo_item name="Sphere" value="Sphere">Esfera</combo_item> | ||
164 | <combo_item name="Torus" value="Torus">Tora</combo_item> | ||
165 | <combo_item name="Tube" value="Tube">Tubo</combo_item> | ||
166 | <combo_item name="Ring" value="Ring">Anel</combo_item> | ||
167 | <combo_item name="Sculpted" value="Sculpted">Sculpted</combo_item> | ||
168 | |||
169 | </combo_box> | ||
170 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-12" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="10" hidden="false" left="121" mouse_opaque="true" name="text cut" v_pad="0" width="141">Recorte inicial e final</text> | ||
171 | <spinner bottom_delta="-22" decimal_digits="3" follows="left|top" height="16" hidden="false" increment="0.05" initial_val="0" label="B" label_width="10" left="121" max_val="0.98" min_val="0" mouse_opaque="true" name="cut begin" width="68" /> | ||
172 | <spinner bottom_delta="0" decimal_digits="3" follows="left|top" height="16" hidden="false" increment="0.05" initial_val="1" label="E" label_width="10" left_delta="73" max_val="1" min_val="0.02" mouse_opaque="true" name="cut end" width="68" /> | ||
173 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-14" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="10" hidden="false" left="121" mouse_opaque="true" name="text hollow" v_pad="0" width="68">Vazio</text> | ||
174 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="0" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="10" hidden="false" left_delta="78" mouse_opaque="true" name="text skew" v_pad="0" width="63">Torcer</text> | ||
175 | <spinner bottom_delta="-20" decimal_digits="0" follows="left|top" height="16" hidden="false" increment="5" initial_val="0" left="121" max_val="95" min_val="0" mouse_opaque="true" name="Scale 1" width="68" /> | ||
176 | <spinner bottom_delta="0" decimal_digits="2" follows="left|top" height="16" hidden="false" increment="0.05" initial_val="0" left_delta="73" max_val="0.95" min_val="-0.95" mouse_opaque="true" name="Skew" width="68" /> | ||
177 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-15" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="10" hidden="false" left="121" mouse_opaque="true" name="Hollow Shape" v_pad="0" width="141">Forma Vazia</text> | ||
178 | <combo_box allow_text_entry="false" bottom_delta="-24" follows="left|top" height="18" hidden="false" left="121" max_chars="20" mouse_opaque="true" name="hole" width="141"><combo_item name="Default" value="Default">Padro</combo_item> | ||
179 | <combo_item name="Circle" value="Circle">Circulo</combo_item> | ||
180 | <combo_item name="Square" value="Square">Quadrado</combo_item> | ||
181 | <combo_item name="Triangle" value="Triangle">Trigulo</combo_item> | ||
182 | </combo_box> | ||
183 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-12" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="10" hidden="false" left="121" mouse_opaque="true" name="text twist" v_pad="0" width="141">Torcer no Inicio e final</text> | ||
184 | <spinner bottom_delta="-22" decimal_digits="0" follows="left|top" height="16" hidden="false" increment="9" initial_val="0" label="B" label_width="10" left="121" max_val="180" min_val="-180" mouse_opaque="true" name="Twist Begin" width="68" /> | ||
185 | <spinner bottom_delta="0" decimal_digits="0" follows="left|top" height="16" hidden="false" increment="9" initial_val="0" label="E" label_width="10" left_delta="73" max_val="180" min_val="-180" mouse_opaque="true" name="Twist End" width="68" /> | ||
186 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-14" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="10" hidden="false" left="121" mouse_opaque="true" name="scale_taper" v_pad="0" width="141">Afinar</text> | ||
187 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="0" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="10" hidden="false" left="121" mouse_opaque="true" name="scale_hole" v_pad="0" width="141">Tamanho do Buraco</text> | ||
188 | <spinner bottom_delta="-20" decimal_digits="2" follows="left|top" height="16" hidden="false" increment="0.05" initial_val="0" label="X" label_width="10" left="121" max_val="1" min_val="-1" mouse_opaque="true" name="Taper Scale X" width="68" /> | ||
189 | <spinner bottom_delta="0" decimal_digits="2" follows="left|top" height="16" hidden="false" increment="0.05" initial_val="0" label="Y" label_width="10" left_delta="73" max_val="1" min_val="-1" mouse_opaque="true" name="Taper Scale Y" width="68" /> | ||
190 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-14" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="10" hidden="false" left="121" mouse_opaque="true" name="text topshear" v_pad="0" width="141">Inclinar</text> | ||
191 | <spinner bottom_delta="-20" decimal_digits="2" follows="left|top" height="16" hidden="false" increment="0.05" initial_val="0" label="X" label_width="10" left="121" max_val="0.5" min_val="-0.5" mouse_opaque="true" name="Shear X" width="68" /> | ||
192 | <spinner bottom_delta="0" decimal_digits="2" follows="left|top" height="16" hidden="false" increment="0.05" initial_val="0" label="Y" label_width="10" left_delta="73" max_val="0.5" min_val="-0.5" mouse_opaque="true" name="Shear Y" width="68" /> | ||
193 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-14" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="10" hidden="false" left="121" mouse_opaque="true" name="advanced_cut" v_pad="0" width="141">Perfil Recortado no Incio e Final</text> | ||
194 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="0" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="10" hidden="false" left_delta="0" mouse_opaque="true" name="advanced_dimple" v_pad="0" width="141">Cova Inicio e Final</text> | ||
195 | <spinner bottom_delta="-19" decimal_digits="2" follows="left|top" height="16" hidden="false" increment="0.05" initial_val="0" label="B" label_width="10" left="121" max_val="0.95" min_val="0" mouse_opaque="true" name="Path Limit Begin" width="68" /> | ||
196 | <spinner bottom_delta="0" decimal_digits="2" follows="left|top" height="16" hidden="false" increment="0.05" initial_val="1" label="E" label_width="10" left_delta="73" max_val="1" min_val="0.05" mouse_opaque="true" name="Path Limit End" width="68" /> | ||
197 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-14" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="10" hidden="false" left="121" mouse_opaque="true" name="text taper2" v_pad="0" width="141">Afinar</text> | ||
198 | <spinner bottom_delta="-19" decimal_digits="2" follows="left|top" height="16" hidden="false" increment="0.05" initial_val="0" label="X" label_width="10" left="121" max_val="1" min_val="-1" mouse_opaque="true" name="Taper X" width="68" /> | ||
199 | <spinner bottom_delta="0" decimal_digits="2" follows="left|top" height="16" hidden="false" increment="0.05" initial_val="0" label="Y" label_width="10" left_delta="73" max_val="1" min_val="-1" mouse_opaque="true" name="Taper Y" width="68" /> | ||
200 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-12" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="10" hidden="false" left="121" mouse_opaque="true" name="text radius delta" v_pad="0" width="78">Radius Delta</text> | ||
201 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="0" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="10" hidden="false" left_delta="73" mouse_opaque="true" name="text revolutions" v_pad="0" width="68">Revolues</text> | ||
202 | <spinner bottom_delta="-19" decimal_digits="3" follows="left|top" height="16" hidden="false" increment="0.05" initial_val="0" left="121" max_val="1" min_val="-1" mouse_opaque="true" name="Radius Offset" width="68" /> | ||
203 | <spinner bottom_delta="0" decimal_digits="2" follows="left|top" height="16" hidden="false" increment="0.1" initial_val="1" left_delta="73" max_val="4" min_val="1" mouse_opaque="true" name="Revolutions" width="68" /> | ||
204 | |||
205 | |||
206 | |||
207 | <texture_picker allow_no_texture="false" bottom="-211" can_apply_immediately="true" | ||
208 | default_image_name="Default" follows="left|top" height="141" hidden="false" | ||
209 | label="Sculpt Texture" left="121" mouse_opaque="true" name="sculpt texture control" | ||
210 | tool_tip="Click to choose a picture" width="141" /> | ||
211 | |||
212 | |||
213 | </panel> | ||
214 | |||
215 | |||
216 | <panel border="true" bottom="-383" follows="left|top|right|bottom" height="367" hidden="false" label="Recursos" left="1" mouse_opaque="false" name="Features" width="270"> | ||
217 | |||
218 | |||
219 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-20" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="10" hidden="false" left="10" mouse_opaque="true" name="select_single" v_pad="0" width="252">Selecione uma primitiva para editar seus recursos.</text> | ||
220 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="0" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="10" hidden="false" left="10" mouse_opaque="true" name="edit_object" v_pad="0" width="252">Editar recursos do Objeto:</text> | ||
221 | <check_box bottom_delta="-26" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Flexbilidade" left="10" mouse_opaque="true" name="Flexible1D Checkbox Ctrl" tool_tip="Permite que o objeto flexione no eixo Z. (Somente no lado do Cliente)" width="121" /> | ||
222 | <spinner bottom_delta="-20" decimal_digits="3" follows="left|top" height="16" hidden="false" increment="1" initial_val="2" label="Suavidade" label_width="58" left="10" max_val="3" min_val="0" mouse_opaque="true" name="FlexNumSections" width="121" /> | ||
223 | <spinner bottom_delta="-20" decimal_digits="3" follows="left|top" height="16" hidden="false" increment="0.5" initial_val="0.3" label="Gravidade" label_width="58" left="10" max_val="10" min_val="-10" mouse_opaque="true" name="FlexGravity" width="121" /> | ||
224 | <spinner bottom_delta="-20" decimal_digits="3" follows="left|top" height="16" hidden="false" increment="0.5" initial_val="2" label="Arrastar" label_width="58" left="10" max_val="10" min_val="0" mouse_opaque="true" name="FlexFriction" width="121" /> | ||
225 | <spinner bottom_delta="-20" decimal_digits="3" follows="left|top" height="16" hidden="false" increment="0.5" initial_val="0" label="Vento" label_width="58" left="10" max_val="10" min_val="0" mouse_opaque="true" name="FlexWind" width="121" /> | ||
226 | <spinner bottom_delta="-20" decimal_digits="3" follows="left|top" height="16" hidden="false" increment="0.5" initial_val="1" label="Tenso" label_width="58" left="10" max_val="10" min_val="0" mouse_opaque="true" name="FlexTension" width="121" /> | ||
227 | <spinner bottom_delta="-20" decimal_digits="3" follows="left|top" height="16" hidden="false" increment="0.01" initial_val="0" label="Fora X" label_width="58" left="10" max_val="10" min_val="-10" mouse_opaque="true" name="FlexForceX" width="121" /> | ||
228 | <spinner bottom_delta="-20" decimal_digits="3" follows="left|top" height="16" hidden="false" increment="0.01" initial_val="0" label="Fora Y" label_width="58" left="10" max_val="10" min_val="-10" mouse_opaque="true" name="FlexForceY" width="121" /> | ||
229 | <spinner bottom_delta="-20" decimal_digits="3" follows="left|top" height="16" hidden="false" increment="0.01" initial_val="0" label="Fora Z" label_width="58" left="10" max_val="10" min_val="-10" mouse_opaque="true" name="FlexForceZ" width="121" /> | ||
230 | <check_box bottom="-46" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Luz" left="141" mouse_opaque="true" name="Light Checkbox Ctrl" tool_tip="Faz com que o objeto emita luz" width="121" /> | ||
231 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-18" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="10" hidden="false" left="141" mouse_opaque="true" name="label color" v_pad="0" width="58">Cor</text> | ||
232 | <color_swatch border_color="0.45098, 0.517647, 0.607843, 1" bottom="-86" can_apply_immediately="true" color="0.5, 0.5, 0.5, 1" follows="left|top" height="48" hidden="false" label="" left="204" mouse_opaque="true" name="colorswatch" tool_tip="Clique para abrir o seletor de Cores" width="32" /> | ||
233 | <spinner bottom="-90" decimal_digits="3" follows="left|top" height="16" hidden="false" increment="0.1" initial_val="0.5" label="Intensidade" label_width="58" left="141" max_val="1" min_val="0" mouse_opaque="true" name="Light Intensity" width="121" /> | ||
234 | <spinner bottom_delta="-20" decimal_digits="3" follows="left|top" height="16" hidden="false" increment="0.1" initial_val="5" label="Radius" label_width="58" left="141" max_val="20" min_val="0" mouse_opaque="true" name="Light Radius" width="121" /> | ||
235 | <spinner bottom_delta="-20" decimal_digits="3" follows="left|top" height="16" hidden="false" increment="0.25" initial_val="1" label="Queda" label_width="58" left="141" max_val="2" min_val="0" mouse_opaque="true" name="Light Falloff" width="121" /> | ||
236 | </panel> | ||
237 | <panel border="true" bottom="-383" follows="left|top|right|bottom" height="367" hidden="false" label="Textura" left="1" mouse_opaque="false" name="Texture" width="270"><texture_picker allow_no_texture="false" bottom="-90" can_apply_immediately="true" default_image_name="Default" follows="left|top" height="80" hidden="false" label="Textura" left="10" mouse_opaque="true" name="texture control" tool_tip="Clique para escolher uma imagem" width="64" /> | ||
238 | <color_swatch border_color="0.45098, 0.517647, 0.607843, 1" bottom="-90" can_apply_immediately="true" color="1, 1, 1, 1" follows="left|top" height="80" hidden="false" label="Cor" left_delta="90" mouse_opaque="true" name="colorswatch" tool_tip="Clique para abrir o seletor de cores" width="64" /> | ||
239 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-20" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="10" hidden="false" left="180" mouse_opaque="true" name="color trans" v_pad="0" width="80">Transparncia %</text> | ||
240 | <spinner bottom_delta="-20" decimal_digits="0" follows="left|top" height="16" hidden="false" increment="2" initial_val="0" left="180" max_val="90" min_val="0" mouse_opaque="true" name="ColorTrans" width="80" /> | ||
241 | <check_box bottom_delta="-28" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Claridade" left="180" mouse_opaque="true" name="checkbox fullbright" width="81" /> | ||
242 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-104" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="10" hidden="false" left="10" mouse_opaque="true" name="tex gen" v_pad="0" width="90">Mapeamento</text> | ||
243 | <combo_box allow_text_entry="false" bottom_delta="-22" follows="left|top" height="18" hidden="false" left="10" max_chars="20" mouse_opaque="true" name="combobox texgen" width="80"><combo_item name="Default" value="Default">Padro</combo_item> | ||
244 | <combo_item name="Planar" value="Planar">Planar</combo_item> | ||
245 | </combo_box> | ||
246 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-104" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="10" hidden="false" left="100" mouse_opaque="true" name="label shininess" v_pad="0" width="70">Brilho</text> | ||
247 | <combo_box allow_text_entry="false" bottom_delta="-22" follows="left|top" height="18" hidden="false" left="100" max_chars="20" mouse_opaque="true" name="combobox shininess" width="70"><combo_item name="None" value="None">Nenhum</combo_item> | ||
248 | <combo_item name="Low" value="Low">Baixo</combo_item> | ||
249 | <combo_item name="Medium" value="Medium">Mdio</combo_item> | ||
250 | <combo_item name="High" value="High">Alto</combo_item> | ||
251 | </combo_box> | ||
252 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-104" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="10" hidden="false" left="180" mouse_opaque="true" name="label bumpiness" v_pad="0" width="80">Bumpiness</text> | ||
253 | <combo_box allow_text_entry="false" bottom_delta="-22" follows="left|top" height="18" hidden="false" left="180" max_chars="20" mouse_opaque="true" name="combobox bumpiness" width="80"><combo_item name="None" value="None">Nenhum</combo_item> | ||
254 | <combo_item name="Brightness" value="Brightness">Claridade</combo_item> | ||
255 | <combo_item name="Darkness" value="Darkness">Escurido</combo_item> | ||
256 | <combo_item name="woodgrain" value="woodgrain">woodgrain</combo_item> | ||
257 | <combo_item name="bark" value="bark">bark</combo_item> | ||
258 | <combo_item name="bricks" value="bricks">Tijolos</combo_item> | ||
259 | <combo_item name="checker" value="checker">Caixa</combo_item> | ||
260 | <combo_item name="concrete" value="concrete">Concreto</combo_item> | ||
261 | <combo_item name="crustytile" value="crustytile">Encaroado</combo_item> | ||
262 | <combo_item name="cutstone" value="cutstone">Pedra Cortante</combo_item> | ||
263 | <combo_item name="discs" value="discs">Discos</combo_item> | ||
264 | <combo_item name="gravel" value="gravel">Cascalho</combo_item> | ||
265 | <combo_item name="petridish" value="petridish">Pedrisco</combo_item> | ||
266 | <combo_item name="siding" value="siding">Revetimento</combo_item> | ||
267 | <combo_item name="stonetile" value="stonetile">stonetile</combo_item> | ||
268 | <combo_item name="stucco" value="stucco">Grafiato</combo_item> | ||
269 | <combo_item name="suction" value="suction">Sulcos</combo_item> | ||
270 | <combo_item name="weave" value="weave">weave</combo_item> | ||
271 | </combo_box> | ||
272 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-158" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="10" hidden="false" left="10" mouse_opaque="true" name="tex scale" v_pad="0" width="160">Repetir por Face</text> | ||
273 | <spinner bottom="-178" decimal_digits="3" follows="left|top" height="16" hidden="false" increment="0.1" initial_val="0" label="Horizontal (U)" label_width="90" left="20" max_val="100" min_val="0" mouse_opaque="true" name="TexScaleU" width="160" /> | ||
274 | <check_box bottom="-179" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Flip" left_delta="170" mouse_opaque="true" name="checkbox flip s" width="70" /> | ||
275 | <spinner bottom="-196" decimal_digits="3" follows="left|top" height="16" hidden="false" increment="0.1" initial_val="0" label="Vertical (V)" label_width="90" left="20" max_val="100" min_val="0" mouse_opaque="true" name="TexScaleV" width="160" /> | ||
276 | <check_box bottom="-197" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Flip" left_delta="170" mouse_opaque="true" name="checkbox flip t" width="70" /> | ||
277 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-228" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="10" hidden="false" left="10" mouse_opaque="true" name="tex rotate" v_pad="0" width="102">Rotao (graus)</text> | ||
278 | <spinner bottom="-234" decimal_digits="2" follows="left|top" height="16" hidden="false" increment="1" initial_val="0" left="112" max_val="9999" min_val="-9999" mouse_opaque="true" name="TexRot" width="68" /> | ||
279 | <text hidden="true" name="string repeats per meter">Repetir por Metro</text> | ||
280 | <text hidden="true" name="string repeats per face">Repetir por Face</text> | ||
281 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-250" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="10" hidden="false" left="10" mouse_opaque="true" name="rpt" v_pad="0" width="160">Repetir por Metro</text> | ||
282 | <spinner bottom="-256" decimal_digits="1" follows="left|top" height="16" hidden="false" increment="0.1" initial_val="1" left="112" max_val="10" min_val="0.1" mouse_opaque="true" name="rptctrl" width="68" /> | ||
283 | <button bottom="-256" follows="left|top" font="SansSerifSmall" halign="center" height="16" hidden="false" label="Aplicar" label_selected="Aplicar" left_delta="78" mouse_opaque="true" name="button apply" scale_image="TRUE" width="60" /> | ||
284 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-288" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="10" hidden="false" left="10" mouse_opaque="true" name="tex offset" v_pad="0" width="160">Offset</text> | ||
285 | <spinner bottom="-308" decimal_digits="3" follows="left|top" height="16" hidden="false" increment="0.1" initial_val="0" label="Horizontal (U)" label_width="90" left="20" max_val="1" min_val="-1" mouse_opaque="true" name="TexOffsetU" width="160" /> | ||
286 | <spinner bottom_delta="-18" decimal_digits="3" follows="left|top" height="16" hidden="false" increment="0.1" initial_val="0" label="Vertical (V)" label_width="90" left="20" max_val="1" min_val="-1" mouse_opaque="true" name="TexOffsetV" width="160" /> | ||
287 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-352" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="20" hidden="false" left="10" mouse_opaque="true" name="textbox autofix" v_pad="0" width="260">Alinhar Texturas (precisa ser carregada primeiro)</text> | ||
288 | <button bottom="-360" follows="left|top" font="SansSerifSmall" halign="center" height="16" hidden="false" label="Alinhar" label_selected="Alinhar" left="112" mouse_opaque="true" name="button align" scale_image="TRUE" width="68" /> | ||
289 | </panel> | ||
290 | <panel border="true" bottom="-383" follows="left|top|right|bottom" height="367" hidden="false" label="Contedo" left="1" mouse_opaque="false" name="Contents" width="270"><button bottom="-30" follows="left|top" font="SansSerif" halign="center" height="20" hidden="false" label="Novo Script..." label_selected="Novo Script..." left="10" mouse_opaque="true" name="button new script" scale_image="TRUE" width="100" /> | ||
291 | <panel bottom_delta="-330" follows="left|top" height="325" hidden="false" left="10" mouse_opaque="true" name="ContentsInventory" width="252" /> | ||
292 | </panel> | ||
293 | </tab_container> | ||
294 | <panel bottom="-550" follows="left|top" height="384" hidden="false" left="0" mouse_opaque="true" name="land info panel" width="272"><text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-18" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" hidden="false" left="4" mouse_opaque="true" name="label_area_price" v_pad="0" width="150">Preo: L$[PRICE] por [AREA] m2.</text> | ||
295 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="0" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" hidden="false" left="4" mouse_opaque="true" name="label_area" v_pad="0" width="72">rea: [AREA] m2.</text> | ||
296 | <button bottom_delta="-38" follows="left|top" font="SansSerif" halign="center" height="20" hidden="false" label="Comprar Terra..." label_selected="Comprar Terra.." left="76" mouse_opaque="true" name="button buy land" scale_image="TRUE" width="102" /> | ||
297 | <button bottom_delta="-24" follows="left|top" font="SansSerif" halign="center" height="20" hidden="false" label="Abandonar Terra..." label_selected="Abandonar Terra..." left="76" mouse_opaque="true" name="button abandon land" scale_image="TRUE" width="102" /> | ||
298 | <button bottom_delta="-24" follows="left|top" font="SansSerif" halign="center" height="20" hidden="false" label="Sub-Dividir..." label_selected="Subdivide..." left="76" mouse_opaque="true" name="button subdivide land" scale_image="TRUE" width="102" /> | ||
299 | <button bottom_delta="-24" follows="left|top" font="SansSerif" halign="center" height="20" hidden="false" label="Unir..." label_selected="Unir..." left="76" mouse_opaque="true" name="button join land" scale_image="TRUE" width="102" /> | ||
300 | <button bottom_delta="-40" follows="left|top" font="SansSerif" halign="center" height="20" hidden="false" label="Sobre a Terra..." label_selected="Sobre a Terra..." left="76" mouse_opaque="true" name="button about land" scale_image="TRUE" width="102" /> | ||
301 | </panel> | ||
302 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/pt/floater_top_objects.xml b/linden/indra/newview/skins/xui/pt/floater_top_objects.xml deleted file mode 100644 index efc004b..0000000 --- a/linden/indra/newview/skins/xui/pt/floater_top_objects.xml +++ /dev/null | |||
@@ -1,29 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <floater can_close="true" can_drag_on_left="false" can_minimize="true" can_resize="true" height="350" min_height="300" min_width="450" name="top_objects" title="Carregando..." width="450"><text bottom="-50" follows="left|top" font="SansSerif" height="20" left="10" name="title_text" width="400">Carregando...</text> | ||
3 | <scroll_list name="objects_list" bottom_delta="-150" left="10" width="430" height="150" multi_select="true" draw_border="true" draw_heading="true" follows="left|top|bottom|right"> <column name="score" label="Placar" width="55" /> | ||
4 | <column name="name" label="Nome" dynamicwidth="true" /> | ||
5 | <column name="owner" label="Proprietrio" width="105" /> | ||
6 | <column name="location" label="Local" width="130" /> | ||
7 | </scroll_list> | ||
8 | <text name="id_text" left="10" bottom_delta="-30" width="100" height="20" follows="left|bottom" font="SansSerifSmall" >ID do Objeto:</text> | ||
9 | <line_editor bg_readonly_color="clear" bottom_delta="3" enabled="false" follows="left|bottom|right" font="SansSerifSmall" height="20" left="80" name="id_editor" text_readonly_color="white" width="250" /> | ||
10 | <button bottom_delta="0" follows="bottom|right" height="20" label="Mostrar Avisos" name="show_beacon_btn" right="-10" width="100" /> | ||
11 | <text bottom_delta="-30" follows="left|bottom" font="SansSerifSmall" height="20" left="10" name="obj_name_text" width="100">Nome do Objeto:</text> | ||
12 | <line_editor bg_readonly_color="clear" bottom_delta="3" enabled="true" follows="left|bottom|right" font="SansSerifSmall" height="20" left="80" name="object_name_editor" text_readonly_color="white" width="250" /> | ||
13 | <button bottom_delta="0" follows="bottom|right" height="20" label="Filtro" name="filter_object_btn" right="-10" width="100" /> | ||
14 | <text bottom_delta="-30" follows="left|bottom" font="SansSerifSmall" height="20" left="10" name="owner_name_text" width="100">Nome do Proprietrio:</text> | ||
15 | <line_editor bg_readonly_color="clear" bottom_delta="3" enabled="true" follows="left|bottom|right" font="SansSerifSmall" height="20" left="80" name="owner_name_editor" text_readonly_color="white" width="250" /> | ||
16 | <button bottom_delta="0" follows="bottom|right" height="20" label="Filtro" name="filter_owner_btn" right="-10" width="100" /> | ||
17 | <button bottom="35" follows="bottom|left" height="20" label="Retornar Selecionado" left="10" name="return_selected_btn" width="130" /> | ||
18 | <button bottom="35" follows="bottom|left" height="20" label="Retornar Tudo" left="150" name="return_all_btn" width="130" /> | ||
19 | <button bottom="10" follows="bottom|left" height="20" label="Desabilitar Selecionado" left="10" name="disable_selected_btn" width="130" /> | ||
20 | <button bottom="10" follows="bottom|left" height="20" label="Desabilitar Tudo" left="150" name="disable_all_btn" width="130" /> | ||
21 | <button bottom="35" follows="bottom|right" height="20" label="Atualizar" name="refresh_btn" right="-10" width="100" /> | ||
22 | <text hidden="true" name="top_scripts_title">Top Scripts</text> | ||
23 | <text hidden="true" name="top_scripts_text">[COUNT] scripts tomando um total de [TIME] ms</text> | ||
24 | <text hidden="true" name="scripts_score_label">Tempo</text> | ||
25 | <text hidden="true" name="top_colliders_title">Top Colises</text> | ||
26 | <text hidden="true" name="top_colliders_text">Top [COUNT] objetos experimentando muitas colises em potencial</text> | ||
27 | <text hidden="true" name="colliders_score_label">Placar</text> | ||
28 | <text hidden="true" name="none_descriptor">Nenhum encotrado.</text> | ||
29 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/pt/floater_tos.xml b/linden/indra/newview/skins/xui/pt/floater_tos.xml deleted file mode 100644 index 397117d..0000000 --- a/linden/indra/newview/skins/xui/pt/floater_tos.xml +++ /dev/null | |||
@@ -1,12 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <floater can_close="false" can_drag_on_left="false" can_minimize="false" can_resize="false" height="500" min_height="100" min_width="100" name="modal container" title=" " width="600"><button bottom="-484" enabled="false" font="SansSerif" halign="center" height="20" label="Continuar" label_selected="Continuar" left="376" mouse_opaque="true" name="Continue" width="100" /> | ||
3 | <button bottom="-484" font="SansSerif" halign="center" height="20" label="Cancelar" label_selected="Cancelar" left_delta="108" mouse_opaque="true" name="Cancel" width="100" /> | ||
4 | <radio_group bottom="-440" draw_border="false" follows="left|top|right" height="40" left="16" mouse_opaque="true" name="tos_agreement" width="568"><radio_item bottom="-16" follows="left|top" height="16" left="0" mouse_opaque="true" name="radio_disagree" width="187">Eu no concordo com os Termos de Servio</radio_item> | ||
5 | <radio_item bottom="-40" follows="left|top" height="16" left="0" mouse_opaque="true" name="radio_agree" width="216">Eu concordo com os Termos de Servio</radio_item> | ||
6 | </radio_group> | ||
7 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-31" drop_shadow_visible="true" follows="left|top" font="SansSerif" h_pad="0" halign="left" height="15" left="16" mouse_opaque="true" name="tos_title" v_pad="0" width="568">Contrato dos Termos de Servio</text> | ||
8 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-77" drop_shadow_visible="true" follows="left|top" font="SansSerif" h_pad="0" halign="left" height="30" left="32" mouse_opaque="true" name="tos_heading" v_pad="0" width="552">Por favor, leia os seguintes Termos de Servio cuidadosamente. Para continuar acessando Second Life, voc precisa aceitar o acordo.</text> | ||
9 | <text_editor bottom="-376" embedded_items="false" follows="left|top" font="SansSerif" height="283" left="16" max_length="65536" mouse_opaque="true" name="tos_text" text_readonly_color="1, 1, 1, 1" width="568" word_wrap="true">TOS_TEXT</text_editor> | ||
10 | <web_browser bottom="-376" embedded_items="false" follows="left|top" font="SansSerif" height="283" left="16" max_length="65536" mouse_opaque="true" name="tos_html" start_url="data:text/html,%3Chtml%3E%3Chead%3E%3C/head%3E%3Cbody bgcolor=%22#ffffff%22 text=%22000000%22%3E%3Ch1%3E%3Ctt%3Eloading...%3C/tt%3E%3C/h1%3E %3C/body%3E %3C/html%3E" text_readonly_color="1, 1, 1, 1" width="568" word_wrap="true" /> | ||
11 | <text hidden="true" name="real_url">http://www.secondlifebrasil.com.br/suporte/ts.aspx</text> | ||
12 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/pt/floater_wearable_save_as.xml b/linden/indra/newview/skins/xui/pt/floater_wearable_save_as.xml deleted file mode 100644 index 4f0c775..0000000 --- a/linden/indra/newview/skins/xui/pt/floater_wearable_save_as.xml +++ /dev/null | |||
@@ -1,6 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <floater border="true" bottom="372" can_close="false" can_drag_on_left="false" can_minimize="false" can_resize="false" can_tear_off="true" enabled="true" height="100" hidden="false" left="415" min_height="100" min_width="100" mouse_opaque="true" name="modal container" title=" " width="240"><button bottom="-90" enabled="true" font="SansSerif" halign="center" height="20" hidden="false" label="Salvar" label_selected="Salvar" left="20" mouse_opaque="true" name="Save" scale_image="true" width="82" /> | ||
3 | <button bottom="-90" enabled="true" font="SansSerif" halign="center" height="20" hidden="false" label="Cancelar" label_selected="Cancelar" left="138" mouse_opaque="true" name="Cancel" scale_image="true" width="82" /> | ||
4 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-26" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerif" h_pad="0" halign="left" height="16" hidden="false" left="20" mouse_opaque="true" name="Save item as:" v_pad="0" width="200">Salvar Item como:</text> | ||
5 | <line_editor bevel_style="in" border_style="line" border_thickness="1" bottom="-50" enabled="true" follows="left|top" font="SansSerif" handle_edit_keys_directly="true" height="20" hidden="false" left="20" max_length="63" mouse_opaque="true" name="name ed" select_all_on_focus_received="false" select_on_focus="false" width="200">Novo [DESC]</line_editor> | ||
6 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/pt/floater_world_map.xml b/linden/indra/newview/skins/xui/pt/floater_world_map.xml deleted file mode 100644 index 0c81e19..0000000 --- a/linden/indra/newview/skins/xui/pt/floater_world_map.xml +++ /dev/null | |||
@@ -1,61 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <floater can_close="true" can_drag_on_left="false" can_minimize="true" can_resize="true" height="711" min_height="520" min_width="410" name="worldmap" rect_control="FloaterWorldMapRect" title="Mapa Mundi" width="1243"><tab_container bottom="-701" follows="left|top|right|bottom" height="681" left="15" mouse_opaque="false" name="maptab" tab_position="top" width="995"><panel bottom="-680" follows="left|top|right|bottom" height="664" label="Objetos" left="1" mouse_opaque="true" name="objects_mapview" width="993" /> | ||
3 | <panel bottom="-680" follows="left|top|right|bottom" height="664" label="Terreno" left="1" mouse_opaque="true" name="terrain_mapview" width="993" /> | ||
4 | </tab_container> | ||
5 | <icon bottom="-158" color="1, 1, 0.25, 1" follows="top|right" height="16" image_name="legend.tga" left="1013" mouse_opaque="true" name="square" width="16" /> | ||
6 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-156" drop_shadow_visible="true" follows="top|right" font="SansSerif" h_pad="0" halign="left" height="16" left_delta="20" mouse_opaque="true" name="land_for_sale_label" v_pad="0" width="145">Terra a venda</text> | ||
7 | <icon bottom="-158" color="0.5, 0.25, 1, 1" follows="top|right" height="16" image_name="legend.tga" left="1123" mouse_opaque="true" name="square2" width="16" /> | ||
8 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-156" drop_shadow_visible="true" follows="top|right" font="SansSerif" h_pad="0" halign="left" height="16" left_delta="20" mouse_opaque="true" name="auction_label" v_pad="0" width="145">Leilo</text> | ||
9 | <icon bottom="-56" color="1, 1, 1, 1" follows="top|right" height="16" image_name="map_avatar_16.tga" left="1013" mouse_opaque="true" name="self" width="16" /> | ||
10 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-56" drop_shadow_visible="true" follows="top|right" font="SansSerif" h_pad="0" halign="left" height="16" left_delta="20" mouse_opaque="true" name="you_label" v_pad="0" width="145">Voc</text> | ||
11 | <icon bottom="-56" color="1, 1, 1, 1" follows="top|right" height="16" image_name="map_home.tga" left="1073" mouse_opaque="true" name="home" width="16" /> | ||
12 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-56" drop_shadow_visible="true" follows="top|right" font="SansSerif" h_pad="0" halign="left" height="16" left_delta="20" mouse_opaque="true" name="home_label" v_pad="0" width="145">Casa</text> | ||
13 | <button bottom="-56" follows="top|right" font="SansSerifSmall" halign="center" height="16" label="Ir para Casa" label_selected="Ir para casa" left_delta="50" mouse_opaque="true" name="Go Home" tool_tip="Teleportar para sua Casa" width="95" /> | ||
14 | <icon bottom="-76" color="1, 1, 1, 1" follows="top|right" height="16" image_name="icon_top_pick.tga" left="1013" mouse_opaque="true" name="classifieds" width="16" /> | ||
15 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-76" drop_shadow_visible="true" follows="top|right" font="SansSerif" h_pad="0" halign="left" height="16" left_delta="20" mouse_opaque="true" name="classifieds_label" v_pad="0" width="145">Classificados</text> | ||
16 | <check_box bottom="-76" control_name="MapShowClassifieds" follows="top|right" font="SansSerifSmall" height="16" initial_value="false" label=" " left_delta="70" mouse_opaque="true" name="class_chk" width="55" /> | ||
17 | <icon bottom="-92" color="1, 1, 1, 1" follows="top|right" height="8" image_name="map_avatar_8.tga" left="1017" mouse_opaque="true" name="person" width="8" /> | ||
18 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-96" drop_shadow_visible="true" follows="top|right" font="SansSerif" h_pad="0" halign="left" height="16" left_delta="16" mouse_opaque="true" name="person_label" v_pad="0" width="145">Pessoa</text> | ||
19 | <check_box bottom="-96" control_name="MapShowPeople" follows="top|right" font="SansSerifSmall" height="16" initial_value="false" label=" " left_delta="70" mouse_opaque="true" name="people_chk" width="55" /> | ||
20 | <icon bottom="-116" color="1, 1, 1, 1" follows="top|right" height="16" image_name="map_infohub.tga" left="1013" mouse_opaque="true" name="infohub" width="16" /> | ||
21 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-116" drop_shadow_visible="true" follows="top|right" font="SansSerif" h_pad="0" halign="left" height="16" left_delta="20" mouse_opaque="true" name="infohub_label" v_pad="0" width="145">Infohub</text> | ||
22 | <check_box bottom="-116" control_name="MapShowInfohubs" follows="top|right" font="SansSerifSmall" height="16" initial_value="false" label=" " left_delta="70" mouse_opaque="true" name="infohub_chk" width="55" /> | ||
23 | <icon bottom="-136" color="1, 1, 1, 1" follows="top|right" height="16" image_name="map_telehub.tga" left="1013" mouse_opaque="true" name="telehub" width="16" /> | ||
24 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-136" drop_shadow_visible="true" follows="top|right" font="SansSerif" h_pad="0" halign="left" height="16" left_delta="20" mouse_opaque="true" name="telehub_label" v_pad="0" width="145">Telehub</text> | ||
25 | <check_box bottom="-136" control_name="MapShowTelehubs" follows="top|right" font="SansSerifSmall" height="16" initial_value="false" label=" " left_delta="70" mouse_opaque="true" name="telehubchk" width="55" /> | ||
26 | <icon bottom="-76" color="1, 1, 1, 1" follows="top|right" height="16" image_name="icon_popular.tga" left="1123" mouse_opaque="true" name="popular" width="16" /> | ||
27 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-76" drop_shadow_visible="true" follows="top|right" font="SansSerif" h_pad="0" halign="left" height="16" left_delta="20" mouse_opaque="true" name="popular_label" v_pad="0" width="145">Popular</text> | ||
28 | <check_box bottom="-76" control_name="MapShowPopular" follows="top|right" font="SansSerifSmall" height="16" initial_value="false" label=" " left_delta="80" mouse_opaque="true" name="popular_chk" width="55" /> | ||
29 | <icon bottom="-96" color="1, 1, 1, 1" follows="top|right" height="16" image_name="icon_for_sale.tga" left="1123" mouse_opaque="true" name="landforsale" width="16" /> | ||
30 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-96" drop_shadow_visible="true" follows="top|right" font="SansSerif" h_pad="0" halign="left" height="16" left_delta="20" mouse_opaque="true" name="land_for_sale_label2" v_pad="0" width="145">Terra a Venda</text> | ||
31 | <check_box bottom="-96" control_name="MapShowLandForSale" follows="top|right" font="SansSerifSmall" height="16" initial_value="false" label=" " left_delta="80" mouse_opaque="true" name="land_for_sale_chk" width="55" /> | ||
32 | <icon bottom="-116" color="1, 1, 1, 1" follows="top|right" height="16" image_name="map_event.tga" left="1123" mouse_opaque="true" name="event" width="16" /> | ||
33 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-116" drop_shadow_visible="true" follows="top|right" font="SansSerif" h_pad="0" halign="left" height="16" left_delta="20" mouse_opaque="true" name="events_label" v_pad="0" width="145">Eventos</text> | ||
34 | <check_box bottom="-116" control_name="MapShowEvents" follows="top|right" font="SansSerifSmall" height="16" initial_value="false" label=" " left_delta="80" mouse_opaque="true" name="event_chk" width="55" /> | ||
35 | <icon bottom="-136" color="1, 1, 1, 1" follows="top|right" height="16" image_name="map_event_mature.tga" left="1123" mouse_opaque="true" name="events_mature_icon" width="16" /> | ||
36 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-136" drop_shadow_visible="true" follows="top|right" font="SansSerif" h_pad="0" halign="left" height="16" left_delta="20" mouse_opaque="true" name="events_mature_label" v_pad="0" width="145">Eventos (M)</text> | ||
37 | <check_box bottom="-136" control_name="ShowMatureEvents" follows="top|right" font="SansSerifSmall" height="16" initial_value="true" label=" " left_delta="80" mouse_opaque="true" name="event_mature_chk" width="55" /> | ||
38 | <icon bottom="-181" color="0.5, 0, 0, 1" follows="top|right" height="16" image_name="map_track_16.tga" left="1013" mouse_opaque="true" name="avatar_icon" width="16" /> | ||
39 | <combo_box allow_text_entry="true" bottom_delta="0" follows="top|right" height="20" label="Meus Amigos" left_delta="20" max_chars="60" mouse_opaque="true" name="friend combo" tool_tip="Amigos para mostrar no Mapa" width="202"><combo_item name="none_selected" value="None">Meus Amigos</combo_item> | ||
40 | </combo_box> | ||
41 | <icon bottom_delta="-25" color="0.5, 0, 0, 1" follows="top|right" height="16" image_name="map_track_16.tga" left="1013" mouse_opaque="true" name="landmark_icon" width="16" /> | ||
42 | <combo_box allow_text_entry="true" bottom_delta="0" follows="top|right" height="20" label="Minhas Landmarks" left_delta="20" max_chars="60" mouse_opaque="true" name="landmark combo" tool_tip="Landmark para mostrar no Mapa" width="202"><combo_item name="none_selected" value="None">Minhas Landmarks</combo_item> | ||
43 | </combo_box> | ||
44 | <icon bottom_delta="-25" color="0.5, 0, 0, 1" follows="top|right" height="16" image_name="map_track_16.tga" left="1013" mouse_opaque="true" name="location_icon" width="16" /> | ||
45 | <line_editor bottom_delta="0" follows="top|right" height="20" label="Procurar por nome de regio" left_delta="20" name="location" select_on_focus="true" tool_tip="Digite o nome de uma Regio" width="140" /> | ||
46 | <button bottom_delta="0" follows="top|right" font="SansSerif" halign="center" height="20" label="Procurar" left_delta="145" mouse_opaque="true" name="DoSearch" tool_tip="Procurar por uma Regio" width="60" /> | ||
47 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-20" drop_shadow_visible="true" follows="top|right" font="SansSerif" h_pad="0" halign="left" height="16" left="1013" mouse_opaque="true" name="search_label" v_pad="0" width="222">Resultados da Procura:</text> | ||
48 | <scroll_list background_visible="false" bottom_delta="-306" draw_border="true" draw_stripes="false" fg_disable_color="1, 1, 1, 1" fg_selected_color="1, 1, 1, 1" fg_unselected_color="1, 1, 1, 1" follows="top|right|bottom" height="300" left="1013" multi_select="false" name="search_results" width="222"><column label="" name="icon" width="16" /> | ||
49 | <column label="" name="sim_name" width="206" /> | ||
50 | </scroll_list> | ||
51 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-20" drop_shadow_visible="true" follows="bottom|right" font="SansSerif" h_pad="0" halign="left" height="16" left="1013" mouse_opaque="true" name="location_label" v_pad="0" width="222">Localizao:</text> | ||
52 | <spinner bottom_delta="-20" decimal_digits="0" follows="bottom|right" height="16" increment="1" initial_val="128" left="1033" max_val="255" min_val="0" mouse_opaque="true" name="spin x" tool_tip="Coordenada X da posio mostrada no mapa" width="66" /> | ||
53 | <spinner bottom_delta="0" decimal_digits="0" follows="bottom|right" height="16" increment="1" initial_val="128" left_delta="68" max_val="255" min_val="0" mouse_opaque="true" name="spin y" tool_tip="Coordenada Y da posio mostrada no mapa" width="66" /> | ||
54 | <spinner bottom_delta="0" decimal_digits="0" follows="bottom|right" height="16" increment="1" initial_val="0" left_delta="68" max_val="768" min_val="0" mouse_opaque="true" name="spin z" tool_tip="Coordenada Z da posio mostrada no Mapa" width="66" /> | ||
55 | <button bottom="-625" follows="right|bottom" font="SansSerif" halign="center" height="20" label="Teleporte" label_selected="Teleporte" left="-230" mouse_opaque="true" name="Teleport" tool_tip="Teleportar para a posio selecionada" width="90" /> | ||
56 | <button bottom_delta="0" follows="right|bottom" font="SansSerif" halign="center" height="20" label="Mostrar Destino" label_selected="Mostrar Destino" left_delta="100" mouse_opaque="true" name="Show Destination" tool_tip="Centralizar mapa na posio selecionada" width="125" /> | ||
57 | <button bottom_delta="-24" follows="right|bottom" font="SansSerif" halign="center" height="20" label="Limpar" label_selected="Limpar" left="-230" mouse_opaque="true" name="Clear" tool_tip="Parar de percorrer" width="90" /> | ||
58 | <button bottom_delta="0" follows="right|bottom" font="SansSerif" halign="center" height="20" label="Minha localizao" label_selected="Minha localizao" left_delta="100" mouse_opaque="true" name="Show My Location" tool_tip="Centraliza o mapa na posio do seu Avatar" width="125" /> | ||
59 | <button bottom_delta="-24" enabled="false" follows="bottom|right" height="20" label="Copiar SLURL para rea de transf." left="-230" width="222" name="copy_slurl" tool_tip="Copia a posio atual como SLURL para ser usada na Web"/> | ||
60 | <slider bottom="-697" can_edit_text="false" decimal_digits="3" follows="right|bottom" height="16" increment="0.2" initial_val="48.5029" label="Zoom" left="-230" max_val="0" min_val="-8" mouse_opaque="true" name="zoom slider" show_text="false" value="48.5029" width="222" /> | ||
61 | </floater> | ||
diff --git a/linden/indra/newview/skins/xui/pt/menu_inventory.xml b/linden/indra/newview/skins/xui/pt/menu_inventory.xml deleted file mode 100644 index dd40627..0000000 --- a/linden/indra/newview/skins/xui/pt/menu_inventory.xml +++ /dev/null | |||
@@ -1,146 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <menu bottom="100" color="0, 0, 0, 1" drop_shadow="true" height="101" hidden="false" left="100" mouse_opaque="false" name="Popup" opaque="true" width="128"><menu_item_call bottom_delta="-18" height="18" hidden="false" label="Comprar" left="0" mouse_opaque="true" name="Task Buy" width="128"><on_click filter="" function="Inventory.DoToSelected" userdata="task_buy" /> | ||
3 | </menu_item_call> | ||
4 | <menu_item_call bottom_delta="-18" height="18" hidden="false" label="Abrir" left="0" mouse_opaque="true" name="Task Open" width="128"><on_click filter="" function="Inventory.DoToSelected" userdata="task_open" /> | ||
5 | </menu_item_call> | ||
6 | <menu_item_call bottom_delta="-18" height="18" hidden="false" label="Executar" left="0" mouse_opaque="true" name="Task Play" width="128"><on_click filter="" function="Inventory.DoToSelected" userdata="task_play" /> | ||
7 | </menu_item_call> | ||
8 | <menu_item_call bottom_delta="-18" height="18" hidden="false" label="Propriedades" left="0" mouse_opaque="true" name="Task Properties" width="128"><on_click filter="" function="Inventory.DoToSelected" userdata="task_properties" /> | ||
9 | </menu_item_call> | ||
10 | <menu_item_call bottom_delta="-18" height="18" hidden="false" label="Renomear" left="0" mouse_opaque="true" name="Task Rename" width="128"><on_click filter="" function="Inventory.DoToSelected" userdata="rename" /> | ||
11 | </menu_item_call> | ||
12 | <menu_item_call bottom_delta="-18" height="18" hidden="false" label="Apagar" left="0" mouse_opaque="true" name="Task Remove" width="128"><on_click filter="" function="Inventory.DoToSelected" userdata="delete" /> | ||
13 | </menu_item_call> | ||
14 | |||
15 | <menu_item_call bottom_delta="-18" height="18" hidden="false" label="Limpar Lixeira" left="0" mouse_opaque="true" name="Empty Trash" width="128"><on_click filter="" function="Inventory.EmptyTrash" userdata="rename" /> | ||
16 | </menu_item_call> | ||
17 | |||
18 | <menu_item_call bottom_delta="-18" height="18" hidden="false" label="Limpar Achados e perdidos" | ||
19 | left="0" mouse_opaque="true" name="Empty Lost And Found" width="128"> | ||
20 | <on_click filter="" function="Inventory.EmptyLostAndFound" userdata="rename" /> | ||
21 | </menu_item_call> | ||
22 | |||
23 | <menu_item_call bottom_delta="-18" height="18" hidden="false" label="Nova Pasta" left="0" mouse_opaque="true" name="New Folder" width="128"><on_click filter="" function="Inventory.DoCreate" userdata="category" /> | ||
24 | </menu_item_call> | ||
25 | <menu_item_call bottom_delta="-18" height="18" hidden="false" label="Novo Script" left="0" mouse_opaque="true" name="New Script" width="128"><on_click filter="" function="Inventory.DoCreate" userdata="lsl" /> | ||
26 | </menu_item_call> | ||
27 | <menu_item_call bottom_delta="-18" height="18" hidden="false" label="Nova Nota" left="0" mouse_opaque="true" name="New Note" width="128"><on_click filter="" function="Inventory.DoCreate" userdata="notecard" /> | ||
28 | </menu_item_call> | ||
29 | <menu_item_call bottom_delta="-18" height="18" hidden="false" label="Novo Gesto" left="0" mouse_opaque="true" name="New Gesture" width="128"><on_click filter="" function="Inventory.DoCreate" userdata="gesture" /> | ||
30 | </menu_item_call> | ||
31 | <menu bottom_delta="0" color="0, 0, 0, 1" drop_shadow="true" height="175" hidden="false" left="0" mouse_opaque="false" name="New Clothes" label="Nova Roupa" opaque="true" tear_off="false" width="125"><menu_item_call bottom_delta="-18" height="18" hidden="false" label="Nova Camisa" left="0" mouse_opaque="true" name="New Shirt" width="128"><on_click filter="" function="Inventory.DoCreate" userdata="shirt" /> | ||
32 | </menu_item_call> | ||
33 | <menu_item_call bottom_delta="-18" height="18" hidden="false" label="Nova Cala" left="0" mouse_opaque="true" name="New Pants" width="128"><on_click filter="" function="Inventory.DoCreate" userdata="pants" /> | ||
34 | </menu_item_call> | ||
35 | <menu_item_call bottom_delta="-18" height="18" hidden="false" label="Novos Calados" left="0" mouse_opaque="true" name="New Shoes" width="128"><on_click filter="" function="Inventory.DoCreate" userdata="shoes" /> | ||
36 | </menu_item_call> | ||
37 | <menu_item_call bottom_delta="-18" height="18" hidden="false" label="Novas Meias" left="0" mouse_opaque="true" name="New Socks" width="128"><on_click filter="" function="Inventory.DoCreate" userdata="socks" /> | ||
38 | </menu_item_call> | ||
39 | <menu_item_call bottom_delta="-18" height="18" hidden="false" label="Nova Jaqueta" left="0" mouse_opaque="true" name="New Jacket" width="128"><on_click filter="" function="Inventory.DoCreate" userdata="jacket" /> | ||
40 | </menu_item_call> | ||
41 | <menu_item_call bottom_delta="-18" height="18" hidden="false" label="Nova Saia" left="0" mouse_opaque="true" name="New Skirt" width="128"><on_click filter="" function="Inventory.DoCreate" userdata="skirt" /> | ||
42 | </menu_item_call> | ||
43 | <menu_item_call bottom_delta="-18" height="18" hidden="false" label="Novas Luvas" left="0" mouse_opaque="true" name="New Gloves" width="128"><on_click filter="" function="Inventory.DoCreate" userdata="gloves" /> | ||
44 | </menu_item_call> | ||
45 | <menu_item_call bottom_delta="-18" height="18" hidden="false" label="Angua" left="0" mouse_opaque="true" name="New Undershirt" width="128"><on_click filter="" function="Inventory.DoCreate" userdata="undershirt" /> | ||
46 | </menu_item_call> | ||
47 | <menu_item_call bottom_delta="-18" height="18" hidden="false" label="Roupa de baixo" left="0" mouse_opaque="true" name="New Underpants" width="128"><on_click filter="" function="Inventory.DoCreate" userdata="underpants" /> | ||
48 | </menu_item_call> | ||
49 | </menu> | ||
50 | <menu bottom_delta="0" color="0, 0, 0, 1" drop_shadow="true" height="175" hidden="false" left="0" mouse_opaque="false" name="New Body Parts" label="Parte do corpo" opaque="true" tear_off="false" width="125"><menu_item_call bottom_delta="-18" height="18" hidden="false" label="Nova forma" left="0" mouse_opaque="true" name="New Shape" width="128"><on_click filter="" function="Inventory.DoCreate" userdata="shape" /> | ||
51 | </menu_item_call> | ||
52 | <menu_item_call bottom_delta="-18" height="18" hidden="false" label="Nova pele." left="0" mouse_opaque="true" name="New Skin" width="128"><on_click filter="" function="Inventory.DoCreate" userdata="skin" /> | ||
53 | </menu_item_call> | ||
54 | <menu_item_call bottom_delta="-18" height="18" hidden="false" label="Novo cabelo" left="0" mouse_opaque="true" name="New Hair" width="128"><on_click filter="" function="Inventory.DoCreate" userdata="hair" /> | ||
55 | </menu_item_call> | ||
56 | <menu_item_call bottom_delta="-18" height="18" hidden="false" label="Novos olhos" left="0" mouse_opaque="true" name="New Eyes" width="128"><on_click filter="" function="Inventory.DoCreate" userdata="eyes" /> | ||
57 | </menu_item_call> | ||
58 | </menu> | ||
59 | <menu_item_call bottom_delta="-18" height="18" hidden="false" label="Abrir" left="0" mouse_opaque="true" name="Landmark Open" width="128"><on_click filter="" function="Inventory.DoToSelected" userdata="open" /> | ||
60 | </menu_item_call> | ||
61 | <menu_item_call bottom_delta="-18" height="18" hidden="false" label="Abrir" left="0" mouse_opaque="true" name="Animation Open" width="128"><on_click filter="" function="Inventory.DoToSelected" userdata="open" /> | ||
62 | </menu_item_call> | ||
63 | <menu_item_call bottom_delta="-18" height="18" hidden="false" label="Abrir" left="0" mouse_opaque="true" name="Sound Open" width="128"><on_click filter="" function="Inventory.DoToSelected" userdata="open" /> | ||
64 | </menu_item_call> | ||
65 | <menu_item_call bottom_delta="-18" height="18" hidden="false" label="Remover item." left="0" mouse_opaque="true" name="Purge Item" width="128"><on_click filter="" function="Inventory.DoToSelected" userdata="purge" /> | ||
66 | </menu_item_call> | ||
67 | <menu_item_call bottom_delta="-18" height="18" hidden="false" label="Restaurar item" left="0" mouse_opaque="true" name="Restore Item" width="128"><on_click filter="" function="Inventory.DoToSelected" userdata="restore" /> | ||
68 | </menu_item_call> | ||
69 | <menu_item_call bottom_delta="-18" height="18" hidden="false" label="Abrir" left="0" mouse_opaque="true" name="Open" width="128"><on_click filter="" function="Inventory.DoToSelected" userdata="open" /> | ||
70 | </menu_item_call> | ||
71 | <menu_item_call bottom_delta="-18" height="18" hidden="false" label="Propriedades" left="0" mouse_opaque="true" name="Properties" width="128"><on_click filter="" function="Inventory.DoToSelected" userdata="properties" /> | ||
72 | </menu_item_call> | ||
73 | <menu_item_call bottom_delta="-18" height="18" hidden="false" label="Renomear" left="0" mouse_opaque="true" name="Rename" width="128"><on_click filter="" function="Inventory.DoToSelected" userdata="rename" /> | ||
74 | </menu_item_call> | ||
75 | <menu_item_call bottom_delta="-18" height="18" hidden="false" label="Copy Asset UUID" left="0" mouse_opaque="true" name="Copy Asset UUID" width="128"><on_click filter="" function="Inventory.DoToSelected" userdata="copy_uuid" /> | ||
76 | </menu_item_call> | ||
77 | <menu_item_separator name="Copy Separator" /> | ||
78 | <menu_item_call bottom_delta="-18" height="18" hidden="false" label="Copiar" left="0" mouse_opaque="true" name="Copy" width="128"><on_click filter="" function="Inventory.DoToSelected" userdata="copy" /> | ||
79 | </menu_item_call> | ||
80 | <menu_item_call bottom_delta="-18" height="18" hidden="false" label="Colar" left="0" mouse_opaque="true" name="Paste" width="128"><on_click filter="" function="Inventory.DoToSelected" userdata="paste" /> | ||
81 | </menu_item_call> | ||
82 | <menu_item_separator name="Paste Separator" /> | ||
83 | <menu_item_call bottom_delta="-18" height="18" hidden="false" label="Apagar" left="0" mouse_opaque="true" name="Delete" width="128"><on_click filter="" function="Inventory.DoToSelected" userdata="delete" /> | ||
84 | </menu_item_call> | ||
85 | <menu_item_separator name="Folder Wearables Separator" /> | ||
86 | <menu_item_call bottom_delta="-18" height="18" hidden="false" label="Adicionar ao equipamento" left="0" mouse_opaque="true" name="Add To Outfit" width="128"><on_click filter="" function="Inventory.DoToSelected" userdata="addtooutfit" /> | ||
87 | </menu_item_call> | ||
88 | <menu_item_call bottom_delta="-18" height="18" hidden="false" label="Substituir equipamento." left="0" mouse_opaque="true" name="Replace Outfit" width="128"><on_click filter="" function="Inventory.DoToSelected" userdata="replaceoutfit" /> | ||
89 | </menu_item_call> | ||
90 | <menu_item_call bottom_delta="-18" height="18" hidden="false" label="Remover os itens" left="0" mouse_opaque="true" name="Take Off Items" width="128"><on_click filter="" function="Inventory.DoToSelected" userdata="removefromoutfit" /> | ||
91 | </menu_item_call> | ||
92 | <menu_item_separator name="Calling Card Separator" /> | ||
93 | |||
94 | <menu_item_call bottom_delta="-18" height="18" hidden="false" | ||
95 | label="Iniciar conversa em conferncia" left="0" mouse_opaque="true" | ||
96 | name="Conference Chat Folder" width="128"> | ||
97 | <on_click filter="" function="Inventory.BeginIMSession" userdata="everyone" /> | ||
98 | </menu_item_call> | ||
99 | |||
100 | <menu_item_call bottom_delta="-18" height="18" hidden="false" label="Contatos IM Online na pasta." left="0" mouse_opaque="true" name="IM Online Contacts In Folder" width="128"><on_click filter="" function="Inventory.BeginIMSession" userdata="everyone" /> | ||
101 | </menu_item_call> | ||
102 | <menu_item_call bottom_delta="-18" height="18" hidden="false" label="Todos contantos MI na pasta." left="0" mouse_opaque="true" name="IM All Contacts In Folder" width="128"><on_click filter="" function="Inventory.BeginIMSession" userdata="online" /> | ||
103 | </menu_item_call> | ||
104 | <menu_item_separator name="Sound Separator" /> | ||
105 | <menu_item_call bottom_delta="-18" height="18" hidden="false" label="Executar" left="0" mouse_opaque="true" name="Sound Play" width="128"><on_click filter="" function="Inventory.DoToSelected" userdata="open" /> | ||
106 | </menu_item_call> | ||
107 | <menu_item_separator name="Landmark Separator" /> | ||
108 | <menu_item_call bottom_delta="-18" height="18" hidden="false" label="Teleportar para Landmark" left="0" mouse_opaque="true" name="Teleport To Landmark" width="128"><on_click filter="" function="Inventory.DoToSelected" userdata="teleport" /> | ||
109 | </menu_item_call> | ||
110 | <menu_item_separator name="Animation Separator" /> | ||
111 | <menu_item_call bottom_delta="-18" height="18" hidden="false" label="Executar in World" left="0" mouse_opaque="true" name="Animation Play" width="128"><on_click filter="" function="Inventory.DoToSelected" userdata="playworld" /> | ||
112 | </menu_item_call> | ||
113 | <menu_item_call bottom_delta="-18" height="18" hidden="false" label="Executar localmente." left="0" mouse_opaque="true" name="Animation Audition" width="128"><on_click filter="" function="Inventory.DoToSelected" userdata="playlocal" /> | ||
114 | </menu_item_call> | ||
115 | <menu_item_call bottom_delta="-18" height="18" hidden="false" label="Mandar Mensagem Instantnea" left="0" mouse_opaque="true" name="Send Instant Message" width="128"><on_click filter="" function="Inventory.DoToSelected" userdata="begin_im" /> | ||
116 | </menu_item_call> | ||
117 | <menu_item_call bottom_delta="-18" height="18" hidden="false" label="Oferecer teleporte..." left="0" mouse_opaque="true" name="Offer Teleport..." width="128"><on_click filter="" function="Inventory.DoToSelected" userdata="lure" /> | ||
118 | </menu_item_call> | ||
119 | |||
120 | <menu_item_call bottom_delta="-18" height="18" hidden="false" | ||
121 | label="Iniciar conversa em conferncia" left="0" mouse_opaque="true" | ||
122 | name="Conference Chat" width="128"> | ||
123 | <on_click filter="" function="Inventory.BeginIMSession" userdata="selected" /> | ||
124 | </menu_item_call> | ||
125 | |||
126 | <menu_item_separator name="Gesture Separator" /> | ||
127 | <menu_item_call bottom_delta="-18" height="18" hidden="false" label="Ativar" left="0" mouse_opaque="true" name="Activate" width="128"><on_click filter="" function="Inventory.DoToSelected" userdata="activate" /> | ||
128 | </menu_item_call> | ||
129 | <menu_item_call bottom_delta="-18" height="18" hidden="false" label="Desativar" left="0" mouse_opaque="true" name="Deactivate" width="128"><on_click filter="" function="Inventory.DoToSelected" userdata="deactivate" /> | ||
130 | </menu_item_call> | ||
131 | <menu_item_separator name="Attach Separator" /> | ||
132 | <menu_item_call bottom_delta="-18" height="18" hidden="false" label="Retirar de voc" left="0" mouse_opaque="true" name="Detach From Yourself" width="128"><on_click filter="" function="Inventory.DoToSelected" userdata="detach" /> | ||
133 | </menu_item_call> | ||
134 | <menu_item_call bottom_delta="-18" height="18" hidden="false" label="Vestir" left="0" mouse_opaque="true" name="Object Wear" width="128"><on_click filter="" function="Inventory.DoToSelected" userdata="attach" /> | ||
135 | </menu_item_call> | ||
136 | <menu bottom_delta="-18" height="18" hidden="false" label="Anexo a" left="0" mouse_opaque="true" name="Attach To" opaque="true" tear_off="false" width="128" /> | ||
137 | <menu bottom_delta="-18" height="18" hidden="false" label="Anexo a HUD" left="0" mouse_opaque="true" name="Attach To HUD" opaque="true" tear_off="false" width="128" /> | ||
138 | <menu_item_separator name="Wearable Separator" /> | ||
139 | <menu_item_call bottom_delta="-18" height="18" hidden="false" label="Vestir" left="0" mouse_opaque="true" name="Wearable Wear" width="128"><on_click filter="" function="Inventory.DoToSelected" userdata="wear" /> | ||
140 | </menu_item_call> | ||
141 | <menu_item_call bottom_delta="-18" height="18" hidden="false" label="Editar" left="0" mouse_opaque="true" name="Wearable Edit" width="128"><on_click filter="" function="Inventory.DoToSelected" userdata="edit" /> | ||
142 | </menu_item_call> | ||
143 | <menu_item_call bottom_delta="-18" height="18" hidden="false" label="Retirar" left="0" mouse_opaque="true" name="Take Off" width="128"><on_click filter="" function="Inventory.DoToSelected" userdata="take_off" /> | ||
144 | </menu_item_call> | ||
145 | <menu_item_call bottom_delta="-18" height="18" hidden="false" label="--Sem opes--" left="0" mouse_opaque="true" name="--no options--" width="128" /> | ||
146 | </menu> | ||
diff --git a/linden/indra/newview/skins/xui/pt/menu_pie_attachment.xml b/linden/indra/newview/skins/xui/pt/menu_pie_attachment.xml deleted file mode 100644 index 9e8975f..0000000 --- a/linden/indra/newview/skins/xui/pt/menu_pie_attachment.xml +++ /dev/null | |||
@@ -1,16 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <pie_menu name="Attachment Pie"><menu_item_call enabled="false" hidden="false" label="Deixar" mouse_opaque="true" name="Drop"><on_click function="Attachment.Drop" /> | ||
3 | <on_enable function="Attachment.EnableDrop" /> | ||
4 | </menu_item_call> | ||
5 | <menu_item_separator /> | ||
6 | <menu_item_separator /> | ||
7 | <menu_item_separator /> | ||
8 | <menu_item_separator /> | ||
9 | <menu_item_separator /> | ||
10 | <menu_item_call enabled="false" hidden="false" label="Desanexar" mouse_opaque="true" name="Detach"><on_click function="Attachment.Detach" /> | ||
11 | <on_enable function="Attachment.EnableDetach" /> | ||
12 | </menu_item_call> | ||
13 | <menu_item_call enabled="false" hidden="false" label="Editar" mouse_opaque="true" name="Edit"><on_click function="Object.Edit" /> | ||
14 | <on_enable function="EnableEdit" /> | ||
15 | </menu_item_call> | ||
16 | </pie_menu> | ||
diff --git a/linden/indra/newview/skins/xui/pt/menu_pie_avatar.xml b/linden/indra/newview/skins/xui/pt/menu_pie_avatar.xml deleted file mode 100644 index 1ef7806..0000000 --- a/linden/indra/newview/skins/xui/pt/menu_pie_avatar.xml +++ /dev/null | |||
@@ -1,37 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <pie_menu name="Avatar Pie"><menu_item_call enabled="false" hidden="false" label="Perfil.." mouse_opaque="true" name="Profile..."><on_click function="ShowAgentProfile" userdata="hit object" /> | ||
3 | </menu_item_call> | ||
4 | <menu_item_call enabled="false" hidden="false" label="Mudo" mouse_opaque="true" name="Avatar Mute"><on_click function="Avatar.Mute" /> | ||
5 | <on_enable function="Avatar.EnableMute" /> | ||
6 | </menu_item_call> | ||
7 | <menu_item_call enabled="false" hidden="false" label="Ir para" mouse_opaque="true" name="Go To"><on_click function="GoToObject" /> | ||
8 | </menu_item_call> | ||
9 | <menu_item_call enabled="false" hidden="false" label="Taxa" mouse_opaque="true" name="Rate"><on_click function="Avatar.Rate" /> | ||
10 | </menu_item_call> | ||
11 | <menu_item_call enabled="false" hidden="false" label="Adicionar Amigo" mouse_opaque="true" name="Add Friend"><on_click function="Avatar.AddFriend" /> | ||
12 | <on_enable function="Avatar.EnableAddFriend" /> | ||
13 | </menu_item_call> | ||
14 | <menu_item_call enabled="false" hidden="false" label="Pagar..." mouse_opaque="true" name="Pay..."><on_click function="PayObject" /> | ||
15 | <on_enable function="EnablePayObject" /> | ||
16 | </menu_item_call> | ||
17 | <pie_menu label="Mais >" name="More >"><menu_item_call enabled="false" hidden="false" label="Paralizar..." mouse_opaque="true" name="Freeze..."><on_click function="Avatar.Freeze" /> | ||
18 | <on_enable function="Avatar.EnableFreezeEject" /> | ||
19 | </menu_item_call> | ||
20 | <menu_item_separator /> | ||
21 | <menu_item_call enabled="false" hidden="false" label="Dar Carto" mouse_opaque="true" name="Give Card"><on_click function="Avatar.GiveCard" /> | ||
22 | </menu_item_call> | ||
23 | <menu_item_separator /> | ||
24 | <menu_item_call enabled="false" hidden="false" label="Ejetar..." mouse_opaque="true" name="Eject..."><on_click function="Avatar.Eject" /> | ||
25 | <on_enable function="Avatar.EnableFreezeEject" /> | ||
26 | </menu_item_call> | ||
27 | <menu_item_call enabled="false" hidden="false" label="Debug..." mouse_opaque="true" name="Debug..."><on_click function="Avatar.Debug" /> | ||
28 | <on_visible function="Avatar.VisibleDebug" /> | ||
29 | <on_enable function="Avatar.EnableDebug" /> | ||
30 | </menu_item_call> | ||
31 | <menu_item_call enabled="true" hidden="false" label="Inspecionar" mouse_opaque="true" name="Object Inspect"><on_click function="Object.Inspect" /> | ||
32 | <on_enable function="Object.EnableInspect" /> | ||
33 | </menu_item_call> | ||
34 | </pie_menu> | ||
35 | <menu_item_call enabled="false" hidden="false" label="Enviar Mi..." mouse_opaque="true" name="Send IM..."><on_click function="Avatar.SendIM" /> | ||
36 | </menu_item_call> | ||
37 | </pie_menu> | ||
diff --git a/linden/indra/newview/skins/xui/pt/menu_pie_land.xml b/linden/indra/newview/skins/xui/pt/menu_pie_land.xml deleted file mode 100644 index dcca319..0000000 --- a/linden/indra/newview/skins/xui/pt/menu_pie_land.xml +++ /dev/null | |||
@@ -1,21 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <pie_menu name="Land Pie"><menu_item_call enabled="false" hidden="false" label="Sobre o terreno..." mouse_opaque="true" name="About Land..."><on_click function="ShowFloater" userdata="about land" /> | ||
3 | </menu_item_call> | ||
4 | <menu_item_call enabled="false" hidden="false" label="Criar" mouse_opaque="true" name="Create"><on_click function="Land.Build" /> | ||
5 | <on_enable function="EnableEdit" /> | ||
6 | </menu_item_call> | ||
7 | <menu_item_call enabled="false" hidden="false" label="Ir para" mouse_opaque="true" name="Go Here"><on_click function="GoToObject" /> | ||
8 | </menu_item_call> | ||
9 | <menu_item_call enabled="false" hidden="false" label="Sentar" mouse_opaque="true" name="Sit Here"><on_click function="Land.Sit" /> | ||
10 | </menu_item_call> | ||
11 | <menu_item_separator /> | ||
12 | <menu_item_call enabled="false" hidden="false" label="Comprar passe..." mouse_opaque="true" name="Land Buy Pass"><on_click function="Land.BuyPass" /> | ||
13 | <on_enable function="Land.EnableBuyPass" /> | ||
14 | </menu_item_call> | ||
15 | <menu_item_call enabled="false" hidden="false" label="Editar terreno" mouse_opaque="true" name="Edit Terrain"><on_click function="Land.Edit" /> | ||
16 | <on_enable function="EnableEdit" /> | ||
17 | </menu_item_call> | ||
18 | <menu_item_call enabled="false" hidden="false" label="Comprar Terras..." mouse_opaque="true" name="Land Buy"><on_click function="ShowFloater" userdata="buy land" /> | ||
19 | <on_enable function="World.EnableBuyLand" /> | ||
20 | </menu_item_call> | ||
21 | </pie_menu> | ||
diff --git a/linden/indra/newview/skins/xui/pt/menu_pie_object.xml b/linden/indra/newview/skins/xui/pt/menu_pie_object.xml deleted file mode 100644 index 40b1a17..0000000 --- a/linden/indra/newview/skins/xui/pt/menu_pie_object.xml +++ /dev/null | |||
@@ -1,60 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <pie_menu name="Object Pie"><menu_item_call enabled="false" hidden="false" label="Abrir" mouse_opaque="true" name="Open"><on_click function="Object.Open" /> | ||
3 | <on_enable function="Object.EnableOpen" /> | ||
4 | </menu_item_call> | ||
5 | <menu_item_call enabled="false" hidden="false" label="Criar" mouse_opaque="true" name="Create"><on_click function="Object.Build" /> | ||
6 | <on_enable function="EnableEdit" /> | ||
7 | </menu_item_call> | ||
8 | <menu_item_call enabled="false" hidden="false" label="Tocar" mouse_opaque="true" name="Object Touch"><on_click function="Object.Touch" /> | ||
9 | <on_enable function="Object.EnableTouch" userdata="Touch" /> | ||
10 | </menu_item_call> | ||
11 | <menu_item_call enabled="false" hidden="false" label="Sentar" mouse_opaque="true" name="Object Sit"><on_click function="Object.SitOrStand" /> | ||
12 | <on_enable function="Object.EnableSitOrStand" userdata="Sentar-se,Levantar-se" /> | ||
13 | </menu_item_call> | ||
14 | <menu_item_call enabled="false" hidden="false" label="Pegar" mouse_opaque="true" name="Pie Object Take"><on_click function="Tools.BuyOrTake" /> | ||
15 | <on_enable function="Tools.EnableBuyOrTake" userdata="Comprar,Pegar" /> | ||
16 | </menu_item_call> | ||
17 | <menu_item_call enabled="false" hidden="false" label="Pagar..." mouse_opaque="true" name="Pay..."><on_click function="PayObject" /> | ||
18 | <on_enable function="EnablePayObject" /> | ||
19 | </menu_item_call> | ||
20 | <pie_menu label="Mais >" name="More >"><menu_item_call enabled="false" hidden="false" label="Apagar" mouse_opaque="true" name="Delete"><on_click function="Object.Delete" /> | ||
21 | <on_enable function="Object.EnableDelete" /> | ||
22 | </menu_item_call> | ||
23 | <menu_item_call enabled="false" hidden="false" label="Vestir" mouse_opaque="true" name="Wear"><on_click function="Object.AttachToAvatar" /> | ||
24 | <on_enable function="Object.EnableWear" /> | ||
25 | </menu_item_call> | ||
26 | <menu_item_call enabled="false" hidden="false" label="Copiar" mouse_opaque="true" name="Take Copy"><on_click function="Tools.TakeCopy" /> | ||
27 | <on_enable function="Tools.EnableTakeCopy" /> | ||
28 | </menu_item_call> | ||
29 | <pie_menu label="Anexar HUD >" name="Object Attach HUD" /> | ||
30 | <pie_menu label="Anexar >" name="Object Attach" /> | ||
31 | <menu_item_call enabled="false" hidden="false" label="Retornar..." mouse_opaque="true" name="Return..."><on_click function="Object.Return" /> | ||
32 | <on_enable function="Object.EnableReturn" /> | ||
33 | </menu_item_call> | ||
34 | <pie_menu label="Mais >" name="Rate Menu"><menu_item_call enabled="false" hidden="false" label="Avaliar proprietrio..." mouse_opaque="true" name="Rate Owner..."><on_click function="Object.RateOwner" /> | ||
35 | <on_enable function="Object.EnableRateOwner" /> | ||
36 | </menu_item_call> | ||
37 | <menu_item_separator /> | ||
38 | <menu_item_call enabled="false" hidden="false" label="Reportar Abuso..." mouse_opaque="true" name="Report Abuse..."><on_click function="Object.ReportAbuse" /> | ||
39 | <on_enable function="Object.EnableReportAbuse" /> | ||
40 | </menu_item_call> | ||
41 | <menu_item_separator /> | ||
42 | <menu_item_call enabled="false" hidden="false" label="Avaliar Criador..." mouse_opaque="true" name="Rate Creator..."><on_click function="Object.RateCreator" /> | ||
43 | <on_enable function="Object.EnableRateCreator" /> | ||
44 | </menu_item_call> | ||
45 | <menu_item_separator /> | ||
46 | <menu_item_call enabled="false" hidden="false" label="Mudo" mouse_opaque="true" name="Object Mute"><on_click function="Object.Mute" /> | ||
47 | <on_enable function="Object.EnableMute" /> | ||
48 | </menu_item_call> | ||
49 | <menu_item_call enabled="true" hidden="false" label="Inspecionar" mouse_opaque="true" name="Object Inspect"><on_click function="Object.Inspect" /> | ||
50 | <on_enable function="Object.EnableInspect" /> | ||
51 | </menu_item_call> | ||
52 | </pie_menu> | ||
53 | <menu_item_call enabled="false" hidden="false" label="Comprar..." mouse_opaque="true" name="Buy..."><on_click function="Object.Buy" /> | ||
54 | <on_enable function="Object.EnableBuy" /> | ||
55 | </menu_item_call> | ||
56 | </pie_menu> | ||
57 | <menu_item_call enabled="false" hidden="false" label="Editar..." mouse_opaque="true" name="Edit..."><on_click function="Object.Edit" /> | ||
58 | <on_enable function="EnableEdit" /> | ||
59 | </menu_item_call> | ||
60 | </pie_menu> | ||
diff --git a/linden/indra/newview/skins/xui/pt/menu_pie_self.xml b/linden/indra/newview/skins/xui/pt/menu_pie_self.xml deleted file mode 100644 index ef2bef5..0000000 --- a/linden/indra/newview/skins/xui/pt/menu_pie_self.xml +++ /dev/null | |||
@@ -1,59 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <pie_menu name="Self Pie"><menu_item_call enabled="true" label="Perfil..." name="Profile..."><on_click function="ShowAgentProfile" userdata="agent" /> | ||
3 | </menu_item_call> | ||
4 | <menu_item_call enabled="true" label="Grupos..." name="Groups..."><on_click function="ShowAgentGroups" userdata="agent" /> | ||
5 | </menu_item_call> | ||
6 | <menu_item_call enabled="true" label="Ir..." name="Go..."><on_click function="ShowFloater" userdata="movement controls" /> | ||
7 | </menu_item_call> | ||
8 | <menu_item_call enabled="true" label="Levantar" name="Stand Up"><on_click function="Self.StandUp" userdata="" /> | ||
9 | <on_enable function="Self.EnableStandUp" /> | ||
10 | </menu_item_call> | ||
11 | <menu_item_call enabled="true" label="Amigos..." name="Friends..."><on_click function="ShowFloater" userdata="friends" /> | ||
12 | </menu_item_call> | ||
13 | <menu_item_call enabled="true" label="Gestos..." name="Gestures..."><on_click function="ShowFloater" userdata="gestures" /> | ||
14 | </menu_item_call> | ||
15 | <pie_menu enabled="true" label="Tirar >" name="Take Off >"><pie_menu enabled="true" label="Roupas >" name="Clothes >"><menu_item_call bottom="-29" enabled="false" height="19" hidden="false" label="Camisa" left="0" mouse_opaque="true" name="Shirt" width="118"><on_click function="Edit.TakeOff" userdata="shirt" /> | ||
16 | <on_enable function="Edit.EnableTakeOff" userdata="shirt" /> | ||
17 | </menu_item_call> | ||
18 | <menu_item_call bottom="-48" enabled="false" height="19" hidden="false" label="Cala" left="0" mouse_opaque="true" name="Pants" width="118"><on_click function="Edit.TakeOff" userdata="pants" /> | ||
19 | <on_enable function="Edit.EnableTakeOff" userdata="pants" /> | ||
20 | </menu_item_call> | ||
21 | <menu_item_call bottom="-67" enabled="false" height="19" hidden="false" label="Sapatos" left="0" mouse_opaque="true" name="Shoes" width="118"><on_click function="Edit.TakeOff" userdata="shoes" /> | ||
22 | <on_enable function="Edit.EnableTakeOff" userdata="shoes" /> | ||
23 | </menu_item_call> | ||
24 | <menu_item_call bottom="-86" enabled="false" height="19" hidden="false" label="Meias" left="0" mouse_opaque="true" name="Socks" width="118"><on_click function="Edit.TakeOff" userdata="socks" /> | ||
25 | <on_enable function="Edit.EnableTakeOff" userdata="socks" /> | ||
26 | </menu_item_call> | ||
27 | <menu_item_call bottom="-105" enabled="false" height="19" hidden="false" label="Jaqueta" left="0" mouse_opaque="true" name="Jacket" width="118"><on_click function="Edit.TakeOff" userdata="jacket" /> | ||
28 | <on_enable function="Edit.EnableTakeOff" userdata="jacket" /> | ||
29 | </menu_item_call> | ||
30 | <menu_item_call bottom="-124" enabled="false" height="19" hidden="false" label="Luvas" left="0" mouse_opaque="true" name="Gloves" width="118"><on_click function="Edit.TakeOff" userdata="gloves" /> | ||
31 | <on_enable function="Edit.EnableTakeOff" userdata="gloves" /> | ||
32 | </menu_item_call> | ||
33 | <pie_menu enabled="true" label="Mais >" name="More >"><menu_item_call bottom="-143" enabled="false" height="19" hidden="false" label="Angoas" left="0" mouse_opaque="true" name="Self Undershirt" width="118"><on_click function="Edit.TakeOff" userdata="undershirt" /> | ||
34 | <on_enable function="Edit.EnableTakeOff" userdata="undershirt" /> | ||
35 | </menu_item_call> | ||
36 | <menu_item_separator /> | ||
37 | <menu_item_call bottom="-200" enabled="true" height="19" hidden="false" label="Todas as roupas" left="0" mouse_opaque="true" name="All Clothes" width="118"><on_click function="Edit.TakeOff" userdata="all" /> | ||
38 | </menu_item_call> | ||
39 | <menu_item_separator /> | ||
40 | <menu_item_call bottom="-162" enabled="false" height="19" hidden="false" label="Roupa de baixo" left="0" mouse_opaque="true" name="Self Underpants" width="118"><on_click function="Edit.TakeOff" userdata="underpants" /> | ||
41 | <on_enable function="Edit.EnableTakeOff" userdata="underpants" /> | ||
42 | </menu_item_call> | ||
43 | </pie_menu> | ||
44 | <menu_item_call bottom="-181" enabled="false" height="19" hidden="false" label="Saia" left="0" mouse_opaque="true" name="Skirt" width="118"><on_click function="Edit.TakeOff" userdata="skirt" /> | ||
45 | <on_enable function="Edit.EnableTakeOff" userdata="skirt" /> | ||
46 | </menu_item_call> | ||
47 | </pie_menu> | ||
48 | <menu_item_separator /> | ||
49 | <pie_menu enabled="true" label="HUD >" name="Object Detach HUD" /> | ||
50 | <menu_item_separator /> | ||
51 | <pie_menu enabled="true" label="Desanexar >" name="Object Detach" /> | ||
52 | <menu_item_separator /> | ||
53 | <menu_item_call enabled="true" label="Desanexar todos" name="Detach All"><on_click function="Self.RemoveAllAttachments" userdata="" /> | ||
54 | <on_enable function="Self.EnableRemoveAllAttachments" /> | ||
55 | </menu_item_call> | ||
56 | </pie_menu> | ||
57 | <menu_item_call enabled="true" label="Aparncia..." name="Appearance..."><on_click function="ShowFloater" userdata="appearance" /> | ||
58 | </menu_item_call> | ||
59 | </pie_menu> | ||
diff --git a/linden/indra/newview/skins/xui/pt/menu_viewer.xml b/linden/indra/newview/skins/xui/pt/menu_viewer.xml deleted file mode 100644 index a86fe25..0000000 --- a/linden/indra/newview/skins/xui/pt/menu_viewer.xml +++ /dev/null | |||
@@ -1,504 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <menu_bar bottom="-18" color="0.501961 0 0 1" drop_shadow="true" enabled="true" follows="left|top|right" height="18" hidden="false" left="0" mouse_opaque="true" name="Main Menu" opaque="true" tear_off="false" width="802"><menu bottom="273" color="0 0 0 1" drop_shadow="true" enabled="true" height="263" hidden="false" label="Arquivo" left="0" mouse_opaque="false" name="File" opaque="true" tear_off="true" create_jump_keys="true" width="243"><tearoff_menu bottom="-10" enabled="true" height="10" hidden="false" label="~~~~~~~~~~~" left="0" mouse_opaque="true" name="~~~~~~~~~~~" width="243" /> | ||
3 | <menu_item_call bottom="-29" enabled="true" height="19" hidden="false" label="Upload de imagem (L$[COST])..." left="0" mouse_opaque="true" name="Upload Image" shortcut="control|U" width="243"><on_click function="File.UploadImage" userdata="" /> | ||
4 | <on_enable function="File.EnableUpload" /> | ||
5 | </menu_item_call> | ||
6 | <menu_item_call bottom="-48" enabled="true" height="19" hidden="false" label="Upload de som(L$[COST])..." left="0" mouse_opaque="true" name="Upload Sound" width="243"><on_click function="File.UploadSound" userdata="" /> | ||
7 | <on_enable function="File.EnableUpload" /> | ||
8 | </menu_item_call> | ||
9 | <menu_item_call bottom="-67" enabled="true" height="19" hidden="false" label="Upload de animao (L$[COST])..." left="0" mouse_opaque="true" name="Upload Animation" width="243"><on_click function="File.UploadAnim" userdata="" /> | ||
10 | <on_enable function="File.EnableUpload" /> | ||
11 | </menu_item_call> | ||
12 | <menu_item_call bottom="-86" enabled="true" height="19" hidden="false" label="Upload de Arquivo (L$[COST] por arquivo)..." left="0" mouse_opaque="true" name="Bulk Upload" width="243"><on_click function="File.UploadBulk" userdata="" /> | ||
13 | </menu_item_call> | ||
14 | <menu_item_separator bottom="-94" enabled="true" height="8" hidden="false" label="-----------" left="0" mouse_opaque="true" name="separator" width="243" /> | ||
15 | |||
16 | |||
17 | |||
18 | <menu_item_call bottom="-113" enabled="true" height="19" hidden="false" label="Fechar janela" | ||
19 | left="0" mouse_opaque="true" name="Close Window" shortcut="control|W" | ||
20 | width="243"> | ||
21 | <on_click function="File.CloseWindow" userdata="" /> | ||
22 | <on_enable function="File.EnableCloseWindow" userdata="" /> | ||
23 | </menu_item_call> | ||
24 | |||
25 | <menu_item_call bottom="-113" enabled="true" height="19" hidden="false" label="Fechar todas as janelas" | ||
26 | left="0" mouse_opaque="true" name="Close All Windows" shortcut="control|shift|W" | ||
27 | width="243"> | ||
28 | <on_click function="File.CloseAllWindows" userdata="" /> | ||
29 | <on_enable function="File.EnableCloseWindow" userdata="" /> | ||
30 | </menu_item_call> | ||
31 | |||
32 | |||
33 | |||
34 | <menu_item_separator bottom="-121" enabled="true" height="8" hidden="false" label="-----------" left="0" mouse_opaque="true" name="separator2" width="243" /> | ||
35 | <menu_item_call bottom="-140" enabled="true" height="19" hidden="false" label="Salvar textura como" left="0" mouse_opaque="true" name="Save Texture As..." width="243"><on_click function="File.SaveTexture" userdata="" /> | ||
36 | <on_enable function="File.EnableSaveAs" /> | ||
37 | </menu_item_call> | ||
38 | <menu_item_separator bottom="-148" enabled="true" height="8" hidden="false" label="-----------" left="0" mouse_opaque="true" name="separator3" width="243" /> | ||
39 | <menu_item_call bottom="-167" enabled="true" height="19" hidden="false" label="Tirar Foto" left="0" mouse_opaque="true" name="Take Snapshot" shortcut="control|shift|S" width="243"><on_click function="File.TakeSnapshot" userdata="" /> | ||
40 | </menu_item_call> | ||
41 | <menu_item_call bottom="-186" enabled="true" height="19" hidden="false" label="Salvar Foto no disco" left="0" mouse_opaque="true" name="Snapshot to Disk" shortcut="control|`" width="243"><on_click function="File.TakeSnapshotToDisk" userdata="" /> | ||
42 | </menu_item_call> | ||
43 | <menu_item_separator bottom="-194" enabled="true" height="8" hidden="false" label="-----------" left="0" mouse_opaque="true" name="separator4" width="243" /> | ||
44 | <menu_item_call bottom="-213" enabled="true" height="19" hidden="false" label="Parar/Iniciar animao no disco" left="0" mouse_opaque="true" name="Start/Stop Movie to Disk" shortcut="control|shift|A" width="243"><on_click function="File.SaveMovie" userdata="" /> | ||
45 | </menu_item_call> | ||
46 | <menu bottom="-554" color="0 0 0 1" drop_shadow="true" enabled="true" height="117" hidden="false" label="Ajustar o tamanho da janela" left="0" mouse_opaque="false" name="Set Window Size" opaque="true" tear_off="true" create_jump_keys="true" width="125"><menu_item_call bottom="-29" enabled="true" height="19" hidden="false" label="320x240" left="0" mouse_opaque="true" name="320x240" width="125"><on_click function="File.SetWindowSize" userdata="320,240" /> | ||
47 | </menu_item_call> | ||
48 | <menu_item_call bottom="-48" enabled="true" height="19" hidden="false" label="640x480" left="0" mouse_opaque="true" name="640x480" width="125"><on_click function="File.SetWindowSize" userdata="640,480" /> | ||
49 | </menu_item_call> | ||
50 | <menu_item_call bottom="-67" enabled="true" height="19" hidden="false" label="800x600" left="0" mouse_opaque="true" name="800x600" width="125"><on_click function="File.SetWindowSize" userdata="800,600" /> | ||
51 | </menu_item_call> | ||
52 | <menu_item_separator bottom="-75" enabled="true" height="8" hidden="false" label="-----------" left="0" mouse_opaque="true" name="separator" width="125" /> | ||
53 | <menu_item_call bottom="-94" enabled="true" height="19" hidden="false" label="720x480 (NTSC)" left="0" mouse_opaque="true" name="720x480 (NTSC)" width="125"><on_click function="File.SetWindowSize" userdata="720,480" /> | ||
54 | </menu_item_call> | ||
55 | <menu_item_call bottom="-113" enabled="true" height="19" hidden="false" label="768x576 (PAL)" left="0" mouse_opaque="true" name="768x576 (PAL)" width="125"><on_click function="File.SetWindowSize" userdata="768,576" /> | ||
56 | </menu_item_call> | ||
57 | </menu> | ||
58 | <menu_item_separator bottom="-240" enabled="true" height="8" hidden="false" label="-----------" left="0" mouse_opaque="true" name="separator5" width="243" /> | ||
59 | <menu_item_call bottom="-259" enabled="true" height="19" hidden="false" label="Sair" left="0" mouse_opaque="true" name="Quit" shortcut="control|Q" width="243"><on_click function="File.Quit" userdata="" /> | ||
60 | </menu_item_call> | ||
61 | </menu> | ||
62 | <menu bottom="97" color="0 0 0 1" drop_shadow="true" enabled="true" height="439" hidden="false" label="Editar" left="38" mouse_opaque="false" name="Edit" opaque="true" tear_off="true" create_jump_keys="true" width="153"><menu_item_call bottom="-29" enabled="false" height="19" hidden="false" label="Voltar" left="0" mouse_opaque="true" name="Undo" shortcut="control|Z" width="153"><on_click function="Edit.Undo" userdata="" /> | ||
63 | <on_enable function="Edit.EnableUndo" /> | ||
64 | </menu_item_call> | ||
65 | <menu_item_call bottom="-48" enabled="false" height="19" hidden="false" label="Avanar" left="0" mouse_opaque="true" name="Redo" shortcut="control|Y" width="153"><on_click function="Edit.Redo" userdata="" /> | ||
66 | <on_enable function="Edit.EnableRedo" /> | ||
67 | </menu_item_call> | ||
68 | <menu_item_separator bottom="-56" enabled="true" height="8" hidden="false" label="-----------" left="0" mouse_opaque="true" name="separator" width="153" /> | ||
69 | <menu_item_call bottom="-75" enabled="false" height="19" hidden="false" label="Cortar" left="0" mouse_opaque="true" name="Cut" shortcut="control|X" width="153"><on_click function="Edit.Cut" userdata="" /> | ||
70 | <on_enable function="Edit.EnableCut" /> | ||
71 | </menu_item_call> | ||
72 | <menu_item_call bottom="-94" enabled="false" height="19" hidden="false" label="Copiar" left="0" mouse_opaque="true" name="Copy" shortcut="control|C" width="153"><on_click function="Edit.Copy" userdata="" /> | ||
73 | <on_enable function="Edit.EnableCopy" /> | ||
74 | </menu_item_call> | ||
75 | <menu_item_call bottom="-113" enabled="false" height="19" hidden="false" label="Pasta" left="0" mouse_opaque="true" name="Paste" shortcut="control|V" width="153"><on_click function="Edit.Paste" userdata="" /> | ||
76 | <on_enable function="Edit.EnablePaste" /> | ||
77 | </menu_item_call> | ||
78 | <menu_item_call bottom="-132" enabled="false" height="19" hidden="false" label="Apagar" left="0" mouse_opaque="true" name="Delete" shortcut="Del" width="153"><on_click function="Edit.Delete" userdata="" /> | ||
79 | <on_enable function="Edit.EnableDelete" /> | ||
80 | </menu_item_call> | ||
81 | <menu_item_separator bottom="-140" enabled="true" height="8" hidden="false" label="-----------" left="0" mouse_opaque="true" name="separator2" width="153" /> | ||
82 | <menu_item_call bottom="-159" enabled="true" height="19" hidden="false" label="Procurar" left="0" mouse_opaque="true" name="Search..." shortcut="control|F" width="153"><on_click function="Edit.Search" userdata="" /> | ||
83 | </menu_item_call> | ||
84 | <menu_item_separator bottom="-167" enabled="true" height="8" hidden="false" label="-----------" left="0" mouse_opaque="true" name="separator3" width="153" /> | ||
85 | <menu_item_call bottom="-186" enabled="false" height="19" hidden="false" label="Selecionar todos" left="0" mouse_opaque="true" name="Select All" shortcut="control|A" width="153"><on_click function="Edit.SelectAll" userdata="" /> | ||
86 | <on_enable function="Edit.EnableSelectAll" /> | ||
87 | </menu_item_call> | ||
88 | <menu_item_call bottom="-205" enabled="false" height="19" hidden="false" label="Retirar seleo" left="0" mouse_opaque="true" name="Deselect" shortcut="control|E" width="153"><on_click function="Edit.Deselect" userdata="" /> | ||
89 | <on_enable function="Edit.EnableDeselect" /> | ||
90 | </menu_item_call> | ||
91 | <menu_item_separator bottom="-213" enabled="true" height="8" hidden="false" label="-----------" left="0" mouse_opaque="true" name="separator4" width="153" /> | ||
92 | <menu_item_call bottom="-232" enabled="false" height="19" hidden="false" label="Duplicar" left="0" mouse_opaque="true" name="Duplicate" shortcut="control|D" width="153"><on_click function="Edit.Duplicate" userdata="" /> | ||
93 | <on_enable function="Edit.EnableDuplicate" /> | ||
94 | </menu_item_call> | ||
95 | <menu_item_separator bottom="-240" enabled="true" height="8" hidden="false" label="-----------" left="0" mouse_opaque="true" name="separator5" width="153" /> | ||
96 | <menu bottom="-554" color="0 0 0 1" drop_shadow="true" enabled="true" height="554" hidden="false" label="Anexar objeto" left="0" mouse_opaque="false" name="Attach Object" opaque="true" tear_off="true" create_jump_keys="true" width="117" /> | ||
97 | <menu bottom="-554" color="0 0 0 1" drop_shadow="true" enabled="true" height="554" hidden="false" label="Desanexar objeto" left="191" mouse_opaque="false" name="Detach Object" opaque="true" tear_off="true" create_jump_keys="true" width="118" /> | ||
98 | <menu bottom="-554" color="0 0 0 1" drop_shadow="true" enabled="true" height="204" hidden="false" label="Tirar a roupa" left="0" mouse_opaque="false" name="Take Off Clothing" opaque="true" tear_off="true" create_jump_keys="true" width="118"><menu_item_call bottom="-29" enabled="false" height="19" hidden="false" label="Camiseta" left="0" mouse_opaque="true" name="Shirt" width="118"><on_click function="Edit.TakeOff" userdata="shirt" /> | ||
99 | <on_enable function="Edit.EnableTakeOff" userdata="shirt" /> | ||
100 | </menu_item_call> | ||
101 | <menu_item_call bottom="-48" enabled="false" height="19" hidden="false" label="Calas" left="0" mouse_opaque="true" name="Pants" width="118"><on_click function="Edit.TakeOff" userdata="pants" /> | ||
102 | <on_enable function="Edit.EnableTakeOff" userdata="pants" /> | ||
103 | </menu_item_call> | ||
104 | <menu_item_call bottom="-67" enabled="false" height="19" hidden="false" label="Sapatos" left="0" mouse_opaque="true" name="Shoes" width="118"><on_click function="Edit.TakeOff" userdata="shoes" /> | ||
105 | <on_enable function="Edit.EnableTakeOff" userdata="shoes" /> | ||
106 | </menu_item_call> | ||
107 | <menu_item_call bottom="-86" enabled="false" height="19" hidden="false" label="Meias" left="0" mouse_opaque="true" name="Socks" width="118"><on_click function="Edit.TakeOff" userdata="socks" /> | ||
108 | <on_enable function="Edit.EnableTakeOff" userdata="socks" /> | ||
109 | </menu_item_call> | ||
110 | <menu_item_call bottom="-105" enabled="false" height="19" hidden="false" label="Blusa" left="0" mouse_opaque="true" name="Jacket" width="118"><on_click function="Edit.TakeOff" userdata="jacket" /> | ||
111 | <on_enable function="Edit.EnableTakeOff" userdata="jacket" /> | ||
112 | </menu_item_call> | ||
113 | <menu_item_call bottom="-124" enabled="false" height="19" hidden="false" label="Luvas" left="0" mouse_opaque="true" name="Gloves" width="118"><on_click function="Edit.TakeOff" userdata="gloves" /> | ||
114 | <on_enable function="Edit.EnableTakeOff" userdata="gloves" /> | ||
115 | </menu_item_call> | ||
116 | <menu_item_call bottom="-143" enabled="false" height="19" hidden="false" label="Angua" left="0" mouse_opaque="true" name="Menu Undershirt" width="118"><on_click function="Edit.TakeOff" userdata="undershirt" /> | ||
117 | <on_enable function="Edit.EnableTakeOff" userdata="undershirt" /> | ||
118 | </menu_item_call> | ||
119 | <menu_item_call bottom="-162" enabled="false" height="19" hidden="false" label="Roupa de baixo" left="0" mouse_opaque="true" name="Menu Underpants" width="118"><on_click function="Edit.TakeOff" userdata="underpants" /> | ||
120 | <on_enable function="Edit.EnableTakeOff" userdata="underpants" /> | ||
121 | </menu_item_call> | ||
122 | <menu_item_call bottom="-181" enabled="false" height="19" hidden="false" label="saia" left="0" mouse_opaque="true" name="Skirt" width="118"><on_click function="Edit.TakeOff" userdata="skirt" /> | ||
123 | <on_enable function="Edit.EnableTakeOff" userdata="skirt" /> | ||
124 | </menu_item_call> | ||
125 | <menu_item_call bottom="-200" enabled="true" height="19" hidden="false" label="Toda a roupa" left="0" mouse_opaque="true" name="All Clothes" width="118"><on_click function="Edit.TakeOff" userdata="all" /> | ||
126 | </menu_item_call> | ||
127 | </menu> | ||
128 | <menu_item_separator bottom="-305" enabled="true" height="8" hidden="false" label="-----------" left="0" mouse_opaque="true" name="separator6" width="153" /> | ||
129 | <menu_item_call bottom="-324" enabled="true" height="19" hidden="false" label="Movimentos" left="0" mouse_opaque="true" name="Gestures..." shortcut="control|G" width="153"><on_click function="ShowFloater" userdata="gestures" /> | ||
130 | </menu_item_call> | ||
131 | <menu_item_call bottom="-343" enabled="true" height="19" hidden="false" label="Perfil" left="0" mouse_opaque="true" name="Profile..." width="153"><on_click function="ShowAgentProfile" userdata="agent" /> | ||
132 | </menu_item_call> | ||
133 | <menu_item_call bottom="-362" enabled="true" height="19" hidden="false" label="Aparncia" left="0" mouse_opaque="true" name="Appearance..." width="153"><on_click function="ShowFloater" userdata="appearance" /> | ||
134 | <on_enable function="Edit.EnableCustomizeAvatar" /> | ||
135 | </menu_item_call> | ||
136 | <menu_item_separator bottom="-370" enabled="true" height="8" hidden="false" label="-----------" left="0" mouse_opaque="true" name="separator7" width="153" /> | ||
137 | <menu_item_check bottom="-389" enabled="true" height="19" hidden="false" label="Amigos" left="0" mouse_opaque="true" name="Friends..." shortcut="control|shift|F" width="153"><on_click function="ShowFloater" userdata="friends" /> | ||
138 | <on_check function="FloaterVisible" userdata="friends" /> | ||
139 | </menu_item_check> | ||
140 | <menu_item_call bottom="-408" enabled="true" height="19" hidden="false" label="Grupos" left="0" mouse_opaque="true" name="Groups..." width="153"><on_click function="ShowAgentGroups" userdata="agent" /> | ||
141 | </menu_item_call> | ||
142 | <menu_item_separator bottom="-416" enabled="true" height="8" hidden="false" label="-----------" left="0" mouse_opaque="true" name="separator8" width="153" /> | ||
143 | <menu_item_call bottom="-435" enabled="true" height="19" hidden="false" label="Preferncias" left="0" mouse_opaque="true" name="Preferences..." shortcut="control|P" width="153"><on_click function="ShowFloater" userdata="preferences" /> | ||
144 | </menu_item_call> | ||
145 | </menu> | ||
146 | <menu bottom="-1" color="0 0 0 1" drop_shadow="true" enabled="true" height="537" hidden="false" label="Exibir" left="80" mouse_opaque="false" name="View" opaque="true" tear_off="true" create_jump_keys="true" width="211"><tearoff_menu bottom="-10" enabled="true" height="10" hidden="false" label="~~~~~~~~~~~" left="0" mouse_opaque="true" name="~~~~~~~~~~~" width="211" /> | ||
147 | <menu_item_call bottom="-29" enabled="true" height="19" hidden="false" label="Viso do mouse" left="0" mouse_opaque="true" name="Mouselook" shortcut="M" width="211"><on_click function="View.Mouselook" userdata="" /> | ||
148 | <on_enable function="View.EnableMouselook" /> | ||
149 | </menu_item_call> | ||
150 | <menu_item_check bottom="-48" enabled="true" height="19" hidden="false" label="Construo" left="0" mouse_opaque="true" name="Build" shortcut="B" width="211"><on_click function="View.BuildMode" userdata="" /> | ||
151 | <on_check function="View.CheckBuildMode" /> | ||
152 | </menu_item_check> | ||
153 | <menu_item_call bottom="-67" enabled="true" height="19" hidden="false" label="Resetar viso" left="0" mouse_opaque="true" name="Reset View" shortcut="Esc" width="211"><on_click function="View.ResetView" userdata="" /> | ||
154 | </menu_item_call> | ||
155 | <menu_item_call bottom="-86" enabled="false" height="19" hidden="false" label="Olhar para o ltimo movimento" left="0" mouse_opaque="true" name="Look at Last Chatter" shortcut="control|\" width="211"><on_click function="View.LookAtLastChatter" userdata="" /> | ||
156 | <on_enable function="View.EnableLastChatter" /> | ||
157 | </menu_item_call> | ||
158 | <menu_item_separator bottom="-94" enabled="true" height="8" hidden="false" label="-----------" left="0" mouse_opaque="true" name="separator" width="211" /> | ||
159 | <menu_item_check bottom="-113" enabled="true" height="19" hidden="false" label="Barra de ferramentas" left="0" mouse_opaque="true" name="Toolbar" width="211"><on_click function="ShowFloater" userdata="toolbar" /> | ||
160 | <on_check function="FloaterVisible" userdata="toolbar" /> | ||
161 | </menu_item_check> | ||
162 | <menu_item_check bottom="-132" enabled="true" height="19" hidden="false" label="Histrico de conversas" left="0" mouse_opaque="true" name="Chat History" shortcut="control|H" width="211"><on_click function="ShowFloater" userdata="chat history" /> | ||
163 | <on_check function="FloaterVisible" userdata="chat history" /> | ||
164 | </menu_item_check> | ||
165 | <menu_item_check bottom="-151" enabled="true" height="19" hidden="false" label="Mensagem instantnea" left="0" mouse_opaque="true" name="Instant Message" shortcut="control|T" width="211"><on_click function="ShowFloater" userdata="im" /> | ||
166 | <on_check function="FloaterVisible" userdata="im" /> | ||
167 | </menu_item_check> | ||
168 | <menu_item_call bottom="-170" enabled="true" height="19" hidden="false" label="Inventrio" left="0" mouse_opaque="true" name="Inventory" shortcut="control|I" width="211"><on_click function="ShowFloater" userdata="inventory" /> | ||
169 | </menu_item_call> | ||
170 | <menu_item_check bottom="-189" enabled="true" height="19" hidden="false" label="Lista de pessoas que no podem falar com voc" left="0" mouse_opaque="true" name="Mute List" width="211"><on_click function="ShowFloater" userdata="mute list" /> | ||
171 | <on_check function="FloaterVisible" userdata="mute list" /> | ||
172 | </menu_item_check> | ||
173 | <menu_item_separator bottom="-197" enabled="true" height="8" hidden="false" label="-----------" left="0" mouse_opaque="true" name="separator2" width="211" /> | ||
174 | <menu_item_check bottom="-216" enabled="true" height="19" hidden="false" label="Controle de cmeras" left="0" mouse_opaque="true" name="Camera Controls" width="211"><on_click function="ShowFloater" userdata="camera controls" /> | ||
175 | <on_check function="FloaterVisible" userdata="camera controls" /> | ||
176 | </menu_item_check> | ||
177 | <menu_item_check bottom="-235" enabled="true" height="19" hidden="false" label="Controle de movimentos" left="0" mouse_opaque="true" name="Movement Controls" width="211"><on_click function="ShowFloater" userdata="movement controls" /> | ||
178 | <on_check function="FloaterVisible" userdata="movement controls" /> | ||
179 | </menu_item_check> | ||
180 | <menu_item_check bottom="-254" enabled="true" height="19" hidden="false" label="Mapa do mundo" left="0" mouse_opaque="true" name="World Map" shortcut="control|M" width="211"><on_click function="ShowFloater" userdata="world map" /> | ||
181 | <on_check control="ShowWorldMap" /> | ||
182 | </menu_item_check> | ||
183 | <menu_item_check bottom="-273" enabled="true" height="19" hidden="false" label="Mini-Mapa" left="0" mouse_opaque="true" name="Mini-Map" shortcut="control|shift|M" width="211"><on_click function="ShowFloater" userdata="mini map" /> | ||
184 | <on_check control="ShowMiniMap" /> | ||
185 | </menu_item_check> | ||
186 | <menu_item_separator bottom="-281" enabled="true" height="8" hidden="false" label="-----------" left="0" mouse_opaque="true" name="separator3" width="211" /> | ||
187 | <menu_item_check bottom="-300" enabled="true" height="19" hidden="false" label="Barra de estatsticas" left="0" mouse_opaque="true" name="Statistics Bar" shortcut="control|shift|1" width="211"><on_click function="ShowFloater" userdata="stat bar" /> | ||
188 | <on_check function="FloaterVisible" userdata="stat bar" /> | ||
189 | </menu_item_check> | ||
190 | <menu_item_check bottom="-319" enabled="true" height="19" hidden="false" label="Linhas de propriedades" left="0" mouse_opaque="true" name="Property Lines" shortcut="control|alt|shift|P" width="211"><on_click function="ToggleControl" userdata="ShowPropertyLines" /> | ||
191 | <on_check control="ShowPropertyLines" /> | ||
192 | </menu_item_check> | ||
193 | <menu_item_check bottom="-338" enabled="true" height="19" hidden="false" label="Dono de terrenos" left="0" mouse_opaque="true" name="Land Owners" width="211"><on_click function="ToggleControl" userdata="ShowParcelOwners" /> | ||
194 | <on_check control="ShowParcelOwners" /> | ||
195 | </menu_item_check> | ||
196 | <menu_item_separator bottom="-346" enabled="true" height="8" hidden="false" label="-----------" left="0" mouse_opaque="true" name="separator4" width="211" /> | ||
197 | <menu bottom="-554" color="0 0 0 1" drop_shadow="true" enabled="true" height="79" hidden="false" label="Dicas" left="0" mouse_opaque="false" name="Hover Tips" opaque="true" tear_off="true" create_jump_keys="true" width="158"><menu_item_check bottom="-29" enabled="true" height="19" hidden="false" label="Mostrar dicas" left="0" mouse_opaque="true" name="Show Tips" shortcut="control|shift|T" width="158"><on_click function="View.ShowHoverTips" userdata="" /> | ||
198 | <on_check function="View.CheckShowHoverTips" /> | ||
199 | </menu_item_check> | ||
200 | <menu_item_separator bottom="-37" enabled="true" height="8" hidden="false" label="-----------" left="0" mouse_opaque="true" name="separator" width="158" /> | ||
201 | <menu_item_check bottom="-56" enabled="true" height="19" hidden="false" label="Dicas de terreno" left="0" mouse_opaque="true" name="Land Tips" width="158"><on_click function="ToggleControl" userdata="ShowLandHoverTip" /> | ||
202 | <on_enable function="View.CheckShowHoverTips" /> | ||
203 | <on_check control="ShowLandHoverTip" /> | ||
204 | </menu_item_check> | ||
205 | <menu_item_check bottom="-75" enabled="true" height="19" hidden="false" label="Dicas de todos os objetos" left="0" mouse_opaque="true" name="Tips On All Objects" width="158"><on_click function="ToggleControl" userdata="ShowAllObjectHoverTip" /> | ||
206 | <on_enable function="View.CheckShowHoverTips" /> | ||
207 | <on_check control="ShowAllObjectHoverTip" /> | ||
208 | </menu_item_check> | ||
209 | </menu> | ||
210 | <menu_item_check bottom="-384" enabled="true" height="19" hidden="false" label="Mostrar tamanho fisco" left="0" mouse_opaque="true" name="Alt Shows Physical" width="211"><on_click function="ToggleControl" userdata="AltShowsPhysical" /> | ||
211 | <on_check control="AltShowsPhysical" /> | ||
212 | </menu_item_check> | ||
213 | <menu_item_check bottom="-403" enabled="true" height="19" hidden="false" label="Luz para transparncia" left="0" mouse_opaque="true" name="Highlight Transparent" shortcut="control|alt|T" width="211"><on_click function="View.HighlightTransparent" userdata="" /> | ||
214 | <on_check function="View.CheckHighlightTransparent" /> | ||
215 | </menu_item_check> | ||
216 | <menu bottom="-554" color="0 0 0 1" drop_shadow="true" enabled="true" height="117" hidden="false" label="Piscar" left="0" mouse_opaque="false" name="Beacons" opaque="true" tear_off="true" create_jump_keys="true" width="129"><menu_item_check bottom="-29" enabled="true" height="19" hidden="false" label="Objetos com scripts" left="0" mouse_opaque="true" name="Scripted Objects" width="129"><on_click function="View.ToggleBeacon" userdata="scripts" /> | ||
217 | <on_check function="View.CheckBeaconEnabled" userdata="scripts" /> | ||
218 | </menu_item_check> | ||
219 | <menu_item_check bottom="-48" enabled="true" height="19" hidden="false" label="Objetos fiscos" left="0" mouse_opaque="true" name="Physical Objects" width="129"><on_click function="View.ToggleBeacon" userdata="physical" /> | ||
220 | <on_check function="View.CheckBeaconEnabled" userdata="physical" /> | ||
221 | </menu_item_check> | ||
222 | <menu_item_check bottom="-67" enabled="true" height="19" hidden="false" label="Recursos de som" left="0" mouse_opaque="true" name="Sound Sources" width="129"><on_click function="View.ToggleBeacon" userdata="sounds" /> | ||
223 | <on_check function="View.CheckBeaconEnabled" userdata="sounds" /> | ||
224 | </menu_item_check> | ||
225 | <menu_item_check bottom="-86" enabled="true" height="19" hidden="false" label="Recursos" left="0" mouse_opaque="true" name="Particle Sources" width="129"><on_click function="View.ToggleBeacon" userdata="particles" /> | ||
226 | <on_check function="View.CheckBeaconEnabled" userdata="particles" /> | ||
227 | </menu_item_check> | ||
228 | <menu_item_separator bottom="-94" enabled="true" height="8" hidden="false" label="-----------" left="0" mouse_opaque="true" name="separator" width="129" /> | ||
229 | <menu_item_check bottom="-113" enabled="true" height="19" hidden="false" label="Partculas escondidas" left="0" mouse_opaque="true" name="Hide Particles" width="129"><on_click function="View.ToggleRenderType" userdata="particles" /> | ||
230 | <on_check function="View.CheckRenderType" userdata="particles" /> | ||
231 | </menu_item_check> | ||
232 | </menu> | ||
233 | <menu_item_check bottom="-441" enabled="true" height="19" hidden="false" label="Mostrar anexo em HUD" left="0" mouse_opaque="true" name="Show HUD Attachments" shortcut="alt|shift|H" width="211"><on_click function="View.ShowHUDAttachments" userdata="" /> | ||
234 | <on_check function="View.CheckHUDAttachments" /> | ||
235 | </menu_item_check> | ||
236 | <menu_item_separator bottom="-449" enabled="true" height="8" hidden="false" label="-----------" left="0" mouse_opaque="true" name="separator5" width="211" /> | ||
237 | <menu_item_call bottom="-468" enabled="true" height="19" hidden="false" label="Mais zoom" left="0" mouse_opaque="true" name="Zoom In" shortcut="control|0" width="211"><on_click function="View.ZoomIn" userdata="" /> | ||
238 | </menu_item_call> | ||
239 | <menu_item_call bottom="-487" enabled="true" height="19" hidden="false" label="Zoom padro" left="0" mouse_opaque="true" name="Zoom Default" shortcut="control|9" width="211"><on_click function="View.ZoomDefault" userdata="" /> | ||
240 | </menu_item_call> | ||
241 | <menu_item_call bottom="-506" enabled="true" height="19" hidden="false" label="Menos zoom" left="0" mouse_opaque="true" name="Zoom Out" shortcut="control|8" width="211"><on_click function="View.ZoomOut" userdata="" /> | ||
242 | </menu_item_call> | ||
243 | <menu_item_separator bottom="-514" enabled="true" height="8" hidden="false" label="-----------" left="0" mouse_opaque="true" name="separator6" width="211" /> | ||
244 | <menu_item_call bottom="-19" enabled="true" height="19" hidden="false" label="Tela cheia" left="0" mouse_opaque="true" name="Toggle Fullscreen" shortcut="alt|Enter" width="188"><on_click function="View.Fullscreen" userdata="" /> | ||
245 | </menu_item_call> | ||
246 | <menu_item_call bottom="-38" enabled="true" height="19" hidden="false" label="Ajustar o tamanho da UI ao padro" left="0" mouse_opaque="true" name="Set UI Size to Default" width="188"><on_click function="View.DefaultUISize" userdata="" /> | ||
247 | </menu_item_call> | ||
248 | </menu> | ||
249 | <menu bottom="-18" color="0 0 0 1" drop_shadow="true" enabled="true" height="339" hidden="false" label="Mundo" left="0" mouse_opaque="false" name="World" opaque="true" tear_off="true" create_jump_keys="true" width="185"><menu_item_call bottom="-29" enabled="true" height="19" hidden="false" label="Conversa" left="0" mouse_opaque="true" name="Chat" shortcut="" width="185"><on_click function="World.Chat" userdata="" /> | ||
250 | </menu_item_call> | ||
251 | <menu_item_call bottom="-48" enabled="true" height="19" hidden="false" label="Iniciar movimento" left="0" mouse_opaque="true" name="Start Gesture" shortcut="/" width="185"><on_click function="World.StartGesture" userdata="" /> | ||
252 | </menu_item_call> | ||
253 | <menu_item_check bottom="-67" enabled="true" height="19" hidden="false" label="Sempre Correr" left="0" mouse_opaque="true" name="Always Run" shortcut="control|R" width="185"><on_click function="World.AlwaysRun" userdata="" /> | ||
254 | <on_check function="World.CheckAlwaysRun" userdata="" /> | ||
255 | </menu_item_check> | ||
256 | <menu_item_check bottom="-86" enabled="true" height="19" hidden="false" label="Voar" left="0" mouse_opaque="true" name="Fly" shortcut="Home" width="185"><on_click function="World.Fly" userdata="" /> | ||
257 | <on_check control="FlyBtnState" /> | ||
258 | </menu_item_check> | ||
259 | <menu_item_separator bottom="-94" enabled="true" height="8" hidden="false" label="-----------" left="0" mouse_opaque="true" name="separator" width="185" /> | ||
260 | <menu_item_call bottom="-113" enabled="true" height="19" hidden="false" label="Criar Landmark aqui" left="0" mouse_opaque="true" name="Create Landmark Here" width="185"><on_click function="World.CreateLandmark" userdata="" /> | ||
261 | <on_enable function="World.EnableCreateLandmark" userdata="" /> | ||
262 | </menu_item_call> | ||
263 | <menu_item_call bottom="-132" enabled="true" height="19" hidden="false" label="Marcar como casa " left="0" mouse_opaque="true" name="Set Home to Here" width="185"><on_click function="World.SetHomeLocation" userdata="" /> | ||
264 | <on_enable function="World.EnableSetHomeLocation" userdata="" /> | ||
265 | </menu_item_call> | ||
266 | <menu_item_separator bottom="-140" enabled="true" height="8" hidden="false" label="-----------" left="0" mouse_opaque="true" name="separator2" width="185" /> | ||
267 | <menu_item_call bottom="-159" enabled="true" height="19" hidden="false" label="Teleportar para casa" left="0" mouse_opaque="true" name="Teleport Home" shortcut="control|shift|H" width="185"><on_click function="World.TeleportHome" userdata="" /> | ||
268 | </menu_item_call> | ||
269 | <menu_item_separator bottom="-167" enabled="true" height="8" hidden="false" label="-----------" left="0" mouse_opaque="true" name="separator3" width="185" /> | ||
270 | |||
271 | <menu_item_call bottom="-186" enabled="true" height="19" hidden="false" label="Deixar ausente" left="0" mouse_opaque="true" name="Set Away" width="185"><on_click function="World.SetAway" userdata="" /> | ||
272 | </menu_item_call> | ||
273 | |||
274 | <menu_item_call bottom="-205" enabled="true" height="19" hidden="false" label="Modo Ocupado" left="0" mouse_opaque="true" name="Set Busy" width="185"><on_click function="World.SetBusy" userdata="" /> | ||
275 | </menu_item_call> | ||
276 | |||
277 | |||
278 | |||
279 | |||
280 | <menu_item_separator bottom="-213" enabled="true" height="8" hidden="false" label="-----------" left="0" mouse_opaque="true" name="separator5" width="185" /> | ||
281 | <menu_item_call bottom="-251" enabled="true" height="19" hidden="false" label="Meu terreno" left="0" mouse_opaque="true" name="My Land..." width="185"><on_click function="ShowFloater" userdata="my land" /> | ||
282 | </menu_item_call> | ||
283 | <menu_item_call bottom="-270" enabled="true" height="19" hidden="false" label="Sobre terreno" left="0" mouse_opaque="true" name="About Land..." width="185"><on_click function="ShowFloater" userdata="about land" /> | ||
284 | </menu_item_call> | ||
285 | <menu_item_call bottom="-289" enabled="true" height="19" hidden="false" label="Comprar terreno" left="0" mouse_opaque="true" name="Buy Land..." width="185"><on_click function="ShowFloater" userdata="buy land" /> | ||
286 | <on_enable function="World.EnableBuyLand" /> | ||
287 | </menu_item_call> | ||
288 | <menu_item_call bottom="-308" enabled="true" height="19" hidden="false" label="Regio/Estado" left="0" mouse_opaque="true" name="Region/Estate..." width="185"><on_click function="ShowFloater" userdata="about region" /> | ||
289 | </menu_item_call> | ||
290 | <menu_item_separator bottom="-316" enabled="true" height="8" hidden="false" label="-----------" left="0" mouse_opaque="true" name="separator6" width="185" /> | ||
291 | <menu bottom="-554" color="0 0 0 1" drop_shadow="true" enabled="true" height="117" hidden="false" label="Forar o sol" left="0" mouse_opaque="false" name="Force Sun" opaque="true" tear_off="true" create_jump_keys="true" width="169"><menu_item_call bottom="-29" enabled="true" height="19" hidden="false" label="Amanhecer" left="0" mouse_opaque="true" name="Sunrise" width="169"><on_click function="World.ForceSun" userdata="sunrise" /> | ||
292 | </menu_item_call> | ||
293 | <menu_item_call bottom="-48" enabled="true" height="19" hidden="false" label="Meio-dia" left="0" mouse_opaque="true" name="Noon" shortcut="control|shift|Y" width="169"><on_click function="World.ForceSun" userdata="noon" /> | ||
294 | </menu_item_call> | ||
295 | <menu_item_call bottom="-67" enabled="true" height="19" hidden="false" label="Pr do sol" left="0" mouse_opaque="true" name="Sunset" shortcut="control|shift|N" width="169"><on_click function="World.ForceSun" userdata="sunset" /> | ||
296 | </menu_item_call> | ||
297 | <menu_item_call bottom="-86" enabled="true" height="19" hidden="false" label="Meia noite" left="0" mouse_opaque="true" name="Midnight" width="169"><on_click function="World.ForceSun" userdata="midnight" /> | ||
298 | </menu_item_call> | ||
299 | <menu_item_separator bottom="-94" enabled="true" height="8" hidden="false" label="-----------" left="0" mouse_opaque="true" name="separator" width="169" /> | ||
300 | <menu_item_call bottom="-113" enabled="false" height="19" hidden="false" label="Reverter para o padro da regio" left="0" mouse_opaque="true" name="Revert to Region Default" width="169"><on_click function="World.ForceSun" userdata="default" /> | ||
301 | </menu_item_call> | ||
302 | </menu> | ||
303 | </menu> | ||
304 | <menu bottom="-18" color="0 0 0 1" drop_shadow="true" enabled="true" height="510" hidden="false" label="Ferramentas" left="0" mouse_opaque="false" name="Tools" opaque="true" tear_off="true" create_jump_keys="true" width="250"><menu bottom="-554" color="0 0 0 1" drop_shadow="true" enabled="true" height="109" hidden="false" label="Selecionar ferramenta" left="0" mouse_opaque="false" name="Select Tool" opaque="true" tear_off="true" create_jump_keys="true" width="118"><menu_item_call bottom="-29" enabled="true" height="19" hidden="false" label="Foco" left="0" mouse_opaque="true" name="Focus" shortcut="control|1" width="118"><on_click function="Tools.SelectTool" userdata="focus" /> | ||
305 | </menu_item_call> | ||
306 | <menu_item_call bottom="-48" enabled="true" height="19" hidden="false" label="Mover" left="0" mouse_opaque="true" name="Move" shortcut="control|2" width="118"><on_click function="Tools.SelectTool" userdata="move" /> | ||
307 | </menu_item_call> | ||
308 | <menu_item_call bottom="-67" enabled="true" height="19" hidden="false" label="Editar" left="0" mouse_opaque="true" name="Edit" shortcut="control|3" width="118"><on_click function="Tools.SelectTool" userdata="edit" /> | ||
309 | </menu_item_call> | ||
310 | <menu_item_call bottom="-86" enabled="true" height="19" hidden="false" label="Criar" left="0" mouse_opaque="true" name="Create" shortcut="control|4" width="118"><on_click function="Tools.SelectTool" userdata="create" /> | ||
311 | </menu_item_call> | ||
312 | <menu_item_call bottom="-105" enabled="true" height="19" hidden="false" label="Terreno" left="0" mouse_opaque="true" name="Land" shortcut="control|5" width="118"><on_click function="Tools.SelectTool" userdata="land" /> | ||
313 | </menu_item_call> | ||
314 | </menu> | ||
315 | <menu_item_separator bottom="-37" enabled="true" height="8" hidden="false" label="-----------" left="0" mouse_opaque="true" name="separator" width="250" /> | ||
316 | <menu_item_check bottom="-56" enabled="true" height="19" hidden="false" label="Selecionar apenas meus objetos" left="0" mouse_opaque="true" name="Select Only My Objects" width="250"><on_click function="Tools.SelectOnlyMyObjects" userdata="agents" /> | ||
317 | <on_check control="SelectOwnedOnly" /> | ||
318 | </menu_item_check> | ||
319 | <menu_item_check bottom="-75" enabled="true" height="19" hidden="false" label="Selecionar apenas objetos mveis" left="0" mouse_opaque="true" name="Select Only Movable Objects" width="250"><on_click function="Tools.SelectOnlyMovableObjects" userdata="movable" /> | ||
320 | <on_check control="SelectMovableOnly" /> | ||
321 | </menu_item_check> | ||
322 | <menu_item_check bottom="-94" enabled="true" height="19" hidden="false" label="Selecionar objetos pelo som" left="0" mouse_opaque="true" name="Select By Surrounding" width="250"><on_click function="Tools.SelectBySurrounding" userdata="" /> | ||
323 | <on_check control="RectangleSelectInclusive" /> | ||
324 | </menu_item_check> | ||
325 | <menu_item_check bottom="-113" enabled="true" height="19" hidden="false" label="Mostrar selees escondidas" left="0" mouse_opaque="true" name="Show Hidden Selection" width="250"><on_click function="Tools.ShowHiddenSelection" userdata="" /> | ||
326 | <on_check control="RenderHiddenSelections" /> | ||
327 | </menu_item_check> | ||
328 | <menu_item_check bottom="-132" enabled="true" height="19" hidden="false" label="Mostrar luz radiante para soluo" left="0" mouse_opaque="true" name="Show Light Radius for Selection" width="250"><on_click function="Tools.ShowSelectionLightRadius" userdata="" /> | ||
329 | <on_check control="RenderLightRadius" /> | ||
330 | </menu_item_check> | ||
331 | <menu_item_check bottom="-151" enabled="true" height="19" hidden="false" label="Mostrar selees de feixes" left="0" mouse_opaque="true" name="Show Selection Beam" width="250"><on_click function="ToggleControl" userdata="ShowSelectionBeam" /> | ||
332 | <on_check control="ShowSelectionBeam" /> | ||
333 | </menu_item_check> | ||
334 | <menu_item_separator bottom="-159" enabled="true" height="8" hidden="false" label="-----------" left="0" mouse_opaque="true" name="separator2" width="250" /> | ||
335 | <menu_item_check bottom="-178" enabled="false" height="19" hidden="false" label="Alinhar a grade" left="0" mouse_opaque="true" name="Snap to Grid" shortcut="G" width="250"><on_click function="ToggleControl" userdata="SnapEnabled" /> | ||
336 | <on_check control="SnapEnabled" /> | ||
337 | <on_enable function="Tools.EnableToolNotPie" /> | ||
338 | </menu_item_check> | ||
339 | <menu_item_call bottom="-197" enabled="false" height="19" hidden="false" label="Alinhar objeto a grade XY" left="0" mouse_opaque="true" name="Snap Object XY to Grid" shortcut="shift|X" width="250"><on_click function="Tools.SnapObjectXY" userdata="" /> | ||
340 | <on_enable function="Tools.EnableToolNotPie" /> | ||
341 | </menu_item_call> | ||
342 | <menu_item_call bottom="-216" enabled="false" height="19" hidden="false" label="Usar seleo na grade" left="0" mouse_opaque="true" name="Use Selection for Grid" shortcut="shift|G" width="250"><on_click function="Tools.UseSelectionForGrid" userdata="" /> | ||
343 | <on_enable function="SomethingSelected" /> | ||
344 | </menu_item_call> | ||
345 | <menu_item_call bottom="-235" enabled="false" height="19" hidden="false" label="Opes de grade" left="0" mouse_opaque="true" name="Grid Options..." shortcut="control|shift|B" width="250"><on_click function="ShowFloater" userdata="grid options" /> | ||
346 | <on_enable function="Tools.EnableToolNotPie" /> | ||
347 | </menu_item_call> | ||
348 | <menu_item_separator bottom="-243" enabled="true" height="8" hidden="false" label="-----------" left="0" mouse_opaque="true" name="separator3" width="250" /> | ||
349 | <menu_item_call bottom="-262" enabled="false" height="19" hidden="false" label="Unir" left="0" mouse_opaque="true" name="Link" shortcut="control|L" width="250"><on_click function="Tools.Link" userdata="" /> | ||
350 | <on_enable function="Tools.EnableLink" /> | ||
351 | </menu_item_call> | ||
352 | <menu_item_call bottom="-281" enabled="false" height="19" hidden="false" label="Desunir" left="0" mouse_opaque="true" name="Unlink" shortcut="control|shift|L" width="250"><on_click function="Tools.Unlink" userdata="" /> | ||
353 | <on_enable function="Tools.EnableUnlink" /> | ||
354 | </menu_item_call> | ||
355 | <menu_item_separator bottom="-289" enabled="true" height="8" hidden="false" label="-----------" left="0" mouse_opaque="true" name="separator4" width="250" /> | ||
356 | <menu_item_call bottom="-281" enabled="false" height="19" hidden="false" label="Parar todas as animaes" left="0" mouse_opaque="true" name="Stop All Animations" width="250"><on_click function="Tools.StopAllAnimations" userdata="" /> | ||
357 | </menu_item_call> | ||
358 | <menu_item_separator bottom="-289" enabled="true" height="8" hidden="false" label="-----------" left="0" mouse_opaque="true" name="separator5" width="250" /> | ||
359 | <menu_item_call bottom="-308" enabled="false" height="19" hidden="false" label="Focus na seleo" left="0" mouse_opaque="true" name="Focus on Selection" shortcut="H" width="250"><on_click function="Tools.LookAtSelection" userdata="focus" /> | ||
360 | <on_enable function="Tools.SomethingSelectedNoHUD" /> | ||
361 | </menu_item_call> | ||
362 | <menu_item_call bottom="-327" enabled="false" height="19" hidden="false" label="Zoom na Seleo" left="0" mouse_opaque="true" name="Zoom to Selection" shortcut="shift|H" width="250"><on_click function="Tools.LookAtSelection" userdata="zoom" /> | ||
363 | <on_enable function="Tools.SomethingSelectedNoHUD" /> | ||
364 | </menu_item_call> | ||
365 | <menu_item_call bottom="-346" enabled="false" height="19" hidden="true" label="Comprar objetos" left="0" mouse_opaque="true" name="Menu Object Take" width="250"><on_click function="Tools.BuyOrTake" userdata="" /> | ||
366 | <on_enable function="Tools.EnableBuyOrTake" userdata="Comprar,Pegar" /> | ||
367 | </menu_item_call> | ||
368 | <menu_item_call bottom="-365" enabled="false" height="19" hidden="false" label="Pegar cpia" left="0" mouse_opaque="true" name="Take Copy" width="250"><on_click function="Tools.TakeCopy" userdata="" /> | ||
369 | <on_enable function="Tools.EnableTakeCopy" /> | ||
370 | </menu_item_call> | ||
371 | <menu_item_call bottom="-384" enabled="false" height="19" hidden="false" label="Salvar objeto direto no meu inventrio" left="0" mouse_opaque="true" name="Save Object Back to My Inventory" width="250"><on_click function="Tools.SaveToInventory" userdata="" /> | ||
372 | <on_enable function="Tools.EnableSaveToInventory" /> | ||
373 | </menu_item_call> | ||
374 | <menu_item_call bottom="-403" enabled="false" height="19" hidden="false" label="Salvar todos os objetos" left="0" mouse_opaque="true" name="Save Object Back to Object Contents" width="250"><on_click function="Tools.SaveToObjectInventory" userdata="" /> | ||
375 | <on_enable function="Tools.EnableSaveToObjectInventory" /> | ||
376 | </menu_item_call> | ||
377 | <menu_item_separator bottom="-411" enabled="true" height="8" hidden="false" label="-----------" left="0" mouse_opaque="true" name="separator6" width="250" /> | ||
378 | <menu_item_call bottom="-430" enabled="true" height="19" hidden="false" label="Mostrar scripts defeituosos/Erros de janela" left="0" mouse_opaque="true" name="Show Script Warning/Error Window" width="250"><on_click function="ShowFloater" userdata="script errors" /> | ||
379 | </menu_item_call> | ||
380 | <menu_item_call bottom="-449" enabled="false" height="19" hidden="false" label="Recolocar scripts na seleo" left="0" mouse_opaque="true" name="Recompile Scripts in Selection" width="250"><on_click function="Tools.SelectedScriptAction" userdata="compile" /> | ||
381 | <on_enable function="EditableSelected" /> | ||
382 | </menu_item_call> | ||
383 | <menu_item_call bottom="-468" enabled="false" height="19" hidden="false" label="Resetar script selecionado" left="0" mouse_opaque="true" name="Reset Scripts in Selection" width="250"><on_click function="Tools.SelectedScriptAction" userdata="reset" /> | ||
384 | <on_enable function="EditableSelected" /> | ||
385 | </menu_item_call> | ||
386 | <menu_item_call bottom="-487" enabled="false" height="19" hidden="false" label="Ajustar scripts para funcionar na seleo" left="0" mouse_opaque="true" name="Set Scripts to Running in Selection" width="250"><on_click function="Tools.SelectedScriptAction" userdata="start" /> | ||
387 | <on_enable function="EditableSelected" /> | ||
388 | </menu_item_call> | ||
389 | <menu_item_call bottom="-506" enabled="false" height="19" hidden="false" label="Ajustar scripts para no funcionar na seleo" left="0" mouse_opaque="true" name="Set Scripts to Not Running in Selection" width="250"><on_click function="Tools.SelectedScriptAction" userdata="stop" /> | ||
390 | <on_enable function="EditableSelected" /> | ||
391 | </menu_item_call> | ||
392 | <menu_item_separator bottom="-411" enabled="true" height="8" hidden="false" label="-----------" left="0" mouse_opaque="true" name="separator6" width="250" /> | ||
393 | |||
394 | </menu> | ||
395 | |||
396 | |||
397 | |||
398 | |||
399 | <menu bottom="219" color="0 0 0 1" drop_shadow="true" enabled="true" height="317" hidden="false" label="Servios" left="227" mouse_opaque="false" name="menu_kaizen" opaque="true" tear_off="true" create_jump_keys="true" width="166"> | ||
400 | |||
401 | |||
402 | |||
403 | <menu_item_call bottom="-480" label="Second Life Brasil" height="19" hidden="false" enabled="true" name="KAIZEN_menu" left="0" width="250" mouse_opaque="true"> | ||
404 | <on_click function="PromptShowURL" userdata="Link_oficial_br,http://www.secondlifebrasil.com.br" /> | ||
405 | </menu_item_call> | ||
406 | |||
407 | <menu_item_call bottom="-480" label="Blog Second Life Brasil" height="19" hidden="false" enabled="true" name="KAIZEN_menu" left="0" width="250" mouse_opaque="true"> | ||
408 | <on_click function="PromptShowURL" userdata="Link_blog_br,http://blog.secondlifebrasil.com.br" /> | ||
409 | </menu_item_call> | ||
410 | |||
411 | |||
412 | <menu_item_call bottom="-480" label="Compra de LINDENs (L$)" height="19" hidden="false" enabled="true" name="KAIZEN_menu" left="0" width="250" mouse_opaque="true"> | ||
413 | <on_click function="PromptShowURL" userdata="Link_linden_br,http://www.secondlifebrasil.com.br/comercio/comprando_linden.aspx" /> | ||
414 | </menu_item_call> | ||
415 | |||
416 | |||
417 | <menu_item_call bottom="-480" label="Compra de KAIZEN Cash (KC$)" height="19" hidden="false" enabled="true" name="KAIZEN_menu" left="0" width="250" mouse_opaque="true"> | ||
418 | <on_click function="PromptShowURL" userdata="Link_kaizens_br,http://www.secondlifebrasil.com.br/comercio/adquirir_kaizen.aspx" /> | ||
419 | </menu_item_call> | ||
420 | |||
421 | |||
422 | |||
423 | |||
424 | |||
425 | <menu_item_call bottom="-480" label="Abra seu Negcio" height="19" hidden="false" enabled="true" name="KAIZEN_menu" left="0" width="250" mouse_opaque="true"> | ||
426 | <on_click function="PromptShowURL" userdata="Link_negocio_br,http://www.secondlifebrasil.com.br/comercio/negocios.aspx" /> | ||
427 | </menu_item_call> | ||
428 | |||
429 | |||
430 | <menu_item_call bottom="-480" label="Anuncie no Second Life" height="19" hidden="false" enabled="true" name="KAIZEN_menu" left="0" width="250" mouse_opaque="true"> | ||
431 | <on_click function="PromptShowURL" userdata="Link_anuncie_br,http://www.secondlifebrasil.com.br/comercio/anuncie.aspx" /> | ||
432 | </menu_item_call> | ||
433 | |||
434 | |||
435 | |||
436 | </menu> | ||
437 | |||
438 | |||
439 | |||
440 | |||
441 | |||
442 | |||
443 | |||
444 | |||
445 | |||
446 | |||
447 | |||
448 | |||
449 | |||
450 | <menu bottom="219" color="0 0 0 1" drop_shadow="true" enabled="true" height="317" hidden="false" label="Ajuda" left="227" mouse_opaque="false" name="Help" opaque="true" tear_off="true" create_jump_keys="true" width="166"> | ||
451 | |||
452 | |||
453 | <menu_item_call bottom="-29" enabled="true" height="19" hidden="false" label="Ajuda Second Life" left="0" mouse_opaque="true" name="Second Life Help" shortcut="F1" width="166"><on_click function="ShowFloater" userdata="help" /> | ||
454 | </menu_item_call> | ||
455 | |||
456 | <menu_item_call bottom="-48" enabled="true" height="19" hidden="false" label="Ajuda In-World" | ||
457 | left="0" mouse_opaque="true" name="In-World Help" | ||
458 | width="166"> | ||
459 | <on_click function="ShowFloater" userdata="help in-world" /> | ||
460 | </menu_item_call> | ||
461 | |||
462 | <menu_item_call bottom="-48" enabled="true" height="19" hidden="false" label="Ajuda adicional" | ||
463 | left="0" mouse_opaque="true" name="Additional Help" | ||
464 | width="166"> | ||
465 | <on_click function="ShowFloater" userdata="help additional" /> | ||
466 | </menu_item_call> | ||
467 | |||
468 | |||
469 | |||
470 | <menu_item_separator bottom="-75" enabled="true" height="8" hidden="false" label="-----------" left="0" mouse_opaque="true" name="separator" width="166" /> | ||
471 | |||
472 | <menu_item_call bottom="-480" label="Reportar Abuso" height="19" hidden="false" enabled="true" name="KAIZEN_menu" left="0" width="250" mouse_opaque="true"> | ||
473 | <on_click function="PromptShowURL" userdata="Link_abuso_br,http://report.secondlifebrasil.com.br" /> | ||
474 | </menu_item_call> | ||
475 | |||
476 | |||
477 | <menu_item_call bottom="-480" label="Contactar Suporte" height="19" hidden="false" enabled="true" name="KAIZEN_menu" left="0" width="250" mouse_opaque="true"> | ||
478 | <on_click function="PromptShowURL" userdata="Link_suporte_br,http://suporte.secondlifebrasil.com.br" /> | ||
479 | </menu_item_call> | ||
480 | |||
481 | |||
482 | |||
483 | |||
484 | |||
485 | |||
486 | <menu_item_call bottom="-213" enabled="true" height="19" hidden="false" label="Colises, impulsos e batidas" left="0" mouse_opaque="true" name="Bumps, Pushes &amp; Hits..." width="166"><on_click function="ShowFloater" userdata="mean events" /> | ||
487 | </menu_item_call> | ||
488 | |||
489 | |||
490 | |||
491 | <menu_item_separator bottom="-294" enabled="true" height="8" hidden="false" label="-----------" left="0" mouse_opaque="true" name="separator6" width="166" /> | ||
492 | |||
493 | <menu_item_call bottom="-313" enabled="true" height="19" hidden="false" label="Sobre Second Life" left="0" mouse_opaque="true" name="About Second Life..." width="166"><on_click function="ShowFloater" userdata="about" /> | ||
494 | </menu_item_call> | ||
495 | |||
496 | |||
497 | </menu> | ||
498 | |||
499 | |||
500 | |||
501 | |||
502 | |||
503 | |||
504 | </menu_bar> | ||
diff --git a/linden/indra/newview/skins/xui/pt/notify.xml b/linden/indra/newview/skins/xui/pt/notify.xml deleted file mode 100644 index c4a102b..0000000 --- a/linden/indra/newview/skins/xui/pt/notify.xml +++ /dev/null | |||
@@ -1,279 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <notifications><notify name="SystemMessageTip" tip="true"><message name="message">[MESSAGE]</message> | ||
3 | </notify> | ||
4 | <notify name="Cancelled" tip="true"><message name="message">Cancelar</message> | ||
5 | </notify> | ||
6 | <notify name="CancelledSit" tip="true"><message name="message">Cancela a ao de sentar</message> | ||
7 | </notify> | ||
8 | <notify name="CancelledAttach" tip="true"><message name="message">Cancelar o Link</message> | ||
9 | </notify> | ||
10 | <notify name="ReplacedMissingWearable" tip="true"><message name="message">Pea faltante substituda da roupa</message> | ||
11 | </notify> | ||
12 | <notify name="FriendOnline" tip="true"><message name="message">[FIRST] [LAST] est Online</message> | ||
13 | </notify> | ||
14 | <notify name="FriendOffline" tip="true"><message name="message">[FIRST] [LAST] est Offline</message> | ||
15 | </notify> | ||
16 | <notify name="AddSelfFriend" tip="true"><message name="message">Voc no pode adicion-lo como amigo</message> | ||
17 | </notify> | ||
18 | <notify name="UploadingAuctionSnapshot" tip="true"><message name="message">Fazendo upload da imagem no Second Life para o website</message> | ||
19 | </notify> | ||
20 | <notify name="UploadPayment" tip="false"><message name="message">Voc paga L$[AMOUNT] para fazer o upload.</message> | ||
21 | </notify> | ||
22 | <notify name="UploadingSnapshot" tip="true"><message name="message">Fazendo o upload (Takes a minute or so.)</message> | ||
23 | </notify> | ||
24 | <notify name="UploadWebSnapshotDone" tip="true"><message name="message">Foi feito o upload da screenshot</message> | ||
25 | </notify> | ||
26 | <notify name="UploadSnapshotDone" tip="true"><message name="message">O upload da imagem foi realizado</message> | ||
27 | </notify> | ||
28 | <notify name="TerrainDownloaded" tip="true"><message name="message">Terrain.raw downloaded</message> | ||
29 | </notify> | ||
30 | <notify name="InMaxGroups" tip="true"><message name="message">Voc est no limite de grupos permitidos. Saia de um grupo para criar outro.</message> | ||
31 | </notify> | ||
32 | <notify name="GestureMissing" tip="true"><message name="message">A animao foi perdida.</message> | ||
33 | </notify> | ||
34 | <notify name="UnableToLoadGesture" tip="true"><message name="message">Impossvel fazer o download da imagem. Por favor, tente de novo.</message> | ||
35 | </notify> | ||
36 | <notify name="InventoryLoaded" tip="true"><message name="message">Seu inventrio est carregando.</message> | ||
37 | </notify> | ||
38 | <notify name="LandmarkMissing" tip="true"><message name="message">O landmark foi perdido</message> | ||
39 | </notify> | ||
40 | <notify name="UnableToLoadLandmark" tip="true"><message name="message">Impossvel carregar o landmark. Por favor, tente de novo.</message> | ||
41 | </notify> | ||
42 | <notify name="CapsKeyOn" tip="true"><message name="message">Seu boto CAPS LOCK est ativado. Este o provvel erro que est dando na hora que voc estt tentando logar.</message> | ||
43 | </notify> | ||
44 | <notify name="NotecardMissing" tip="true"><message name="message">Notecard foi perdido do database</message> | ||
45 | </notify> | ||
46 | <notify name="NotecardNoPermissions" tip="true"><message name="message">Permisses insuficientes para visualizar o notecard</message> | ||
47 | </notify> | ||
48 | <notify name="UnableToLoadNotecard" tip="true"><message name="message">Impossvel carregar o notecard. Por favor, tente novamente.</message> | ||
49 | </notify> | ||
50 | <notify name="ScriptMissing" tip="true"><message name="message">O script foi perdido do database</message> | ||
51 | </notify> | ||
52 | <notify name="ScriptNoPermissions" tip="true"><message name="message">Permisses insuficientes para visualizar o script</message> | ||
53 | </notify> | ||
54 | <notify name="UnableToLoadScript" tip="true"><message name="message">Impossvel carregar o script. Por favor, tente novamente.</message> | ||
55 | </notify> | ||
56 | <notify name="IncompleteInventory" tip="true"><message name="message">Os indcies que voc est oferecendo no esto sendo compatveis. Por favor, aumente sua proposta.</message> | ||
57 | </notify> | ||
58 | <notify name="CannotModifyProtectedCategories" tip="true"><message name="message">Voc no pode modificar este item</message> | ||
59 | </notify> | ||
60 | <notify name="CannotRemoveProtectedCategories" tip="true"><message name="message">Voc no pode remover essa propriedade</message> | ||
61 | </notify> | ||
62 | <notify name="OfferedCard" tip="true"><message name="message">Voc deve oferecer um chamado a [FIRST] [LAST]</message> | ||
63 | </notify> | ||
64 | <notify name="OfferedFriendship" tip="true"><message name="message">Voc ofereceu um pedido de amizade a [FIRST] [LAST]</message> | ||
65 | </notify> | ||
66 | <notify name="UnableToBuyWhileDownloading" tip="true"><message name="message">Impossvel comprar o objeto enquanto ele est sendo carregado. Por favor, tente novamente.</message> | ||
67 | </notify> | ||
68 | <notify name="UnableToLinkWhileDownloading" tip="true"><message name="message">Impossvel linkar o objeto enquanto ele est sendo carregado. Por favor, tente novamente</message> | ||
69 | </notify> | ||
70 | <notify name="CannotBuyObjectsFromDifferentOwners" tip="true"><message name="message">Impossvel comprar objetos de diferentes compradores. Por favor, compre apenas um objeto.</message> | ||
71 | </notify> | ||
72 | <notify name="ObjectNotForSale" tip="true"><message name="message">Este objeto no est a vende</message> | ||
73 | </notify> | ||
74 | <notify name="EnteringGodMode" tip="true"><message name="message">Entrando em god mode, nvel [LEVEL]</message> | ||
75 | </notify> | ||
76 | <notify name="LeavingGodMode" tip="true"><message name="message">Saindo god mode, nvel [LEVEL]</message> | ||
77 | </notify> | ||
78 | <notify name="CopyFailed" tip="true"><message name="message">No foi possvel copiar o objeto. Este objeto no possvel ser copiado.</message> | ||
79 | </notify> | ||
80 | <notify name="InventoryAccepted" tip="true"><message name="message">[NAME] aceitou seu convite de amizade.</message> | ||
81 | </notify> | ||
82 | <notify name="InventoryDeclined" tip="true"><message name="message">[NAME] rejeitou seu convite de amizade</message> | ||
83 | </notify> | ||
84 | <notify name="ObjectMessage" tip="true"><message name="message">[NAME]: [MESSAGE]</message> | ||
85 | </notify> | ||
86 | <notify name="CallingCardAccepted" tip="true"><message name="message">Seu calling card foi aceito</message> | ||
87 | </notify> | ||
88 | <notify name="CallingCardDeclined" tip="true"><message name="message">Seu calling card foi negado.</message> | ||
89 | </notify> | ||
90 | <notify name="TeleportToLandmark" tip="true"><message name="message">Agora que voc alcanou o mainland, voc pode teleport a qualquer ponto do mapa. Clicando na opo do inventrio na direita de sua tela, e selecione.Dois clicks no lugar escolhido e voc ser teletransportado para este local.</message> | ||
91 | </notify> | ||
92 | <notify name="TeleportToPerson" tip="true"><message name="message">Agora que voc alcanou o mainland, voc pode contatar os residentes [NAME] .Clique no inventrio da direita do sua tela, e d dois cliques no calling card. Clique sobre sobre o calling card, que aparece a mensagem instantnea. </message> | ||
93 | </notify> | ||
94 | <notify name="CantSelectLandFromMultipleRegions" tip="true"><message name="message">Impossvel selecionar este pedao de terra. or favor,tente um menor.</message> | ||
95 | </notify> | ||
96 | <notify name="GenerticNotify" tip="false"><message name="message">[MESSAGE]</message> | ||
97 | </notify> | ||
98 | <notify name="GroupVote" tip="false"><message name="message">[NAME] prope que voc vote :[MESSAGE]</message> | ||
99 | <option name="VoteNow">Vote agora</option> | ||
100 | <option name="Later">Depois</option> | ||
101 | </notify> | ||
102 | <notify name="GroupElection" tip="false"><message name="message">[NAME] iniciou a eleio [MESSAGE]</message> | ||
103 | <option name="VoteNow">Vote agora</option> | ||
104 | <option name="Later">Depois</option> | ||
105 | </notify> | ||
106 | <notify name="SystemMessage" tip="false"><message name="message">[MESSAGE]</message> | ||
107 | </notify> | ||
108 | <notify name="EventNotification" tip="false"><message name="message">Notificao de evento: [NAME][DATE]</message> | ||
109 | <option name="Teleport">Teleport</option> | ||
110 | <option name="Description">Descrio</option> | ||
111 | <option name="Cancel">Cancelar</option> | ||
112 | </notify> | ||
113 | <notify name="TransferObjectsHighlighted" tip="false"><message name="message">Todos os objetos deste pacote no sero possveis transferir, pois o dono no permitiu tal ao.</message> | ||
114 | <option name="Done">Feito</option> | ||
115 | </notify> | ||
116 | <notify name="DeactivatedGesturesTrigger" tip="false"><message name="message">Gestos desativados, pois tem o mesmo comando. [NAMES]</message> | ||
117 | </notify> | ||
118 | <notify name="InventoryNetworkCorruption" tip="false"><message name="message">Inventrio no pode ser carregado, pois est com um problema de conexo. </message> | ||
119 | </notify> | ||
120 | <notify name="NoQuickTime" tip="false"><message name="message">O software QuickTime no est instalado em seu sistema. Se voc quiser ver os streaming nos pacotes que voc deve ir ao site de QuickTime (http://www.apple.com/quicktime) e para instalar o player QuickTime. </message> | ||
121 | </notify> | ||
122 | <notify name="OwnedObjectsReturned" tip="false"><message name="message">O objeto que voc selecionou, ou parcela dele, pode ter voltado ao seu inventrio. Por favor, verifique.</message> | ||
123 | </notify> | ||
124 | <notify name="OtherObjectsReturned" tip="false"><message name="message">O objeto que voc selecionou no pertence a voc, pertence a [FIRST] [LAST]. O mesmo voltou ao seu inventrio</message> | ||
125 | </notify> | ||
126 | <notify name="OtherObjectsReturned2" tip="false"><message name="message">O objeto que voc selecionou no de sua propriedade. Ele est voltando para seu dono.</message> | ||
127 | </notify> | ||
128 | <notify name="GroupObjectsReturned" tip="false"><message name="message">Os objetos selecionado da terra compartilhado com o grupo [GROUPNAME] foram devolvidos ao inventrio de seus donos. Os objetos.</message> | ||
129 | </notify> | ||
130 | <notify name="UnOwnedObjectsReturned" tip="false"><message name="message">O objeto selecionado por voc, no te pertence. Portanto, retornou ao inventrio do seu dono.</message> | ||
131 | </notify> | ||
132 | <notify name="NotSafe" tip="false"><message name="message">Esta terra permite que voc sofra ataques. Voc pode ser ferido aqui. Se voc morrer, voc teleportado a sua posio inicial. </message> | ||
133 | </notify> | ||
134 | <notify name="NoFly" tip="false"><message name="message">Este terreno tem a opo Voar desabilitada. Ou seja, voc no pode voar aqui.</message> | ||
135 | </notify> | ||
136 | <notify name="PushRestricted" tip="false"><message name="message">Esta terra tem propriedades especificas. Voc no pode fazer nenhuma ao grave nela.</message> | ||
137 | </notify> | ||
138 | <notify name="NoBuild" tip="false"><message name="message">Este terreno tem a opo de construir desabilitado, ou seja, voc no pode construir nada nela.</message> | ||
139 | </notify> | ||
140 | <notify name="ScriptsStopped" tip="false"><message name="message">O administrador no permitiu scripts neste terreno.</message> | ||
141 | </notify> | ||
142 | <notify name="ScriptsNotRunning" tip="false"><message name="message">Esta regio no roda qualquer script</message> | ||
143 | </notify> | ||
144 | <notify name="NoOutsideScripts" tip="false"><message name="message">Neste terreno, nenhum script funcionar, a no ser os scripts do prprio dono da terra.</message> | ||
145 | </notify> | ||
146 | <notify name="ApproveURL" tip="false"><message name="message">Este objeto te linkar para uma pgina externa [URL]</message> | ||
147 | <option name="LoadPage">Carregando a pgina</option> | ||
148 | <option name="Don'tLoad">Carregando</option> | ||
149 | </notify> | ||
150 | <notify name="ClaimPublicLand" tip="false"><message name="message">Esta regio publica</message> | ||
151 | </notify> | ||
152 | <notify name="ObjectGiveItem" tip="false"><message name="message">Um objeto nomeado [OBJECTFROMNAME] do dono FIRST] [LAST] foi dado a [OBJECTTYPE] nomeado '[OBJECTNAME]'.</message> | ||
153 | <option name="Keep">Segure</option> | ||
154 | <option name="Discard">Descarte</option> | ||
155 | <option name="Mute">Mudo</option> | ||
156 | </notify> | ||
157 | <notify name="ObjectGiveItemUnknownUser" tip="false"><message name="message">Um objeto foi nomeado [OBJECTFROMNAME] , foi possudo por um usurio desconhecido</message> | ||
158 | <option name="Keep">Segure</option> | ||
159 | <option name="Discard">Descarte</option> | ||
160 | <option name="Mute">Mudo</option> | ||
161 | </notify> | ||
162 | <notify name="UserGiveItem" tip="false"><message name="message">[NAME]deu a [OBJECTTYPE] o nome de ,'[OBJECTNAME]'.</message> | ||
163 | <option name="Keep">Mantenha</option> | ||
164 | <option name="Discard">Discarte</option> | ||
165 | <option name="Mute">Mudo</option> | ||
166 | </notify> | ||
167 | <notify name="GodMessage" tip="false"><message name="message">[NAME][MESSAGE]</message> | ||
168 | </notify> | ||
169 | <notify name="JoinGroup" tip="false"><message name="message">[MESSAGE]</message> | ||
170 | <option name="Join">Entre</option> | ||
171 | <option name="Decline">Saia</option> | ||
172 | </notify> | ||
173 | <notify name="JoinGroupOfficerNoFee" tip="false"><message name="message">[NAME] te convidou para entrar no grupo. Caso queira, [MESSAGE]</message> | ||
174 | <option name="Join">Participe</option> | ||
175 | <option name="Decline">Saia</option> | ||
176 | </notify> | ||
177 | <notify name="JoinGroupMember" tip="false"><message name="message">[NAMEte convidou para ser o membro do grupo.Para participar do grupo, voc tem que pagar uma quantia de L$[COST] [MESSAGE]</message> | ||
178 | <option name="Join">Entre</option> | ||
179 | <option name="Decline">Saia</option> | ||
180 | </notify> | ||
181 | <notify name="JoinGroupMemberNoFee" tip="false"><message name="message">[NAME] te convidou para entrar no grupo No h custo para entrar no grupo [MESSAGE]</message> | ||
182 | <option name="Join">Entre</option> | ||
183 | <option name="Decline">Saia</option> | ||
184 | </notify> | ||
185 | <notify name="OfferTeleport" tip="false"><message name="message">[NAME]ofereceu um teleporte para seu local.[MESSAGE]</message> | ||
186 | <option name="Teleport">Teleporte</option> | ||
187 | <option name="Cancel">Cancelar</option> | ||
188 | </notify> | ||
189 | <notify name="GotoURL" tip="false"><message name="message">[MESSAGE][URL]</message> | ||
190 | <option name="Later">Depois</option> | ||
191 | <option name="GoNow...">V agora</option> | ||
192 | </notify> | ||
193 | <notify name="OfferFriendship" tip="false"><message name="message">[NAME] est te oferecendo um convite de amizade.</message> | ||
194 | <option name="Accept">Aceitar</option> | ||
195 | <option name="Decline">Negar</option> | ||
196 | </notify> | ||
197 | <notify name="FriendshipAccepted" tip="false"><message name="message">[NAME] aceitou seu convite de amizade.</message> | ||
198 | </notify> | ||
199 | <notify name="FriendshipDeclined" tip="false"><message name="message">[NAME] recusou seu convite de amizade</message> | ||
200 | </notify> | ||
201 | <notify name="OfferCallingCard" tip="false"><message name="message">[FIRST] [LAST] est oferecendo um calling card</message> | ||
202 | <option name="Accept">Aceitar</option> | ||
203 | <option name="Decline">Negar</option> | ||
204 | </notify> | ||
205 | <notify name="RegionRestartMinutes" tip="false"><message name="message">A regio ser reiniciada em minutos</message> | ||
206 | </notify> | ||
207 | <notify name="RegionRestartSeconds" tip="false"><message name="message">Regio ser reiniciada em [SECONDS] segundos. Se voc estiver nessa regio, por favor, deslogue.</message> | ||
208 | </notify> | ||
209 | <notify name="LoadWebPage" tip="false"><message name="message">Carregando web page[URL]? [MESSAGE] do [OBJECTNAME], do dono: [NAME]?</message> | ||
210 | <option name="Gotopage">V para a pgina</option> | ||
211 | <option name="Cancel">Cancelar</option> | ||
212 | </notify> | ||
213 | <notify name="FailedToLoadWearableUnnamed" tip="false"><message name="message">Falha ao carregar a pgina [TYPE].Por favor, notifique o vendedor que lhe vendeu este produto</message> | ||
214 | </notify> | ||
215 | <notify name="FailedToLoadWearable" tip="false"><message name="message">Falha ao carregar [TYPE] nomeado [DESC].Por favor, notifique o vendedor que lhe vendeu os objetos</message> | ||
216 | </notify> | ||
217 | <notify name="FailedToFindWearableUnnamed" tip="false"><message name="message">Falha ao tentar encontrar [TYPE] no database</message> | ||
218 | </notify> | ||
219 | <notify name="FailedToFindWearable" tip="false"><message name="message">Falha ao encontrar [TYPE] nomeado [DESC] no atabase.</message> | ||
220 | </notify> | ||
221 | <notify name="ScriptTakeMoney" tip="false"><message name="message">Pegue linden dollars (L$) para voc.</message> | ||
222 | </notify> | ||
223 | <notify name="ActOnControlInputs" tip="false"><message name="message">Movimento nos seus controles</message> | ||
224 | </notify> | ||
225 | <notify name="RemapControlInputs" tip="false"><message name="message">Refaa os seus controles</message> | ||
226 | </notify> | ||
227 | <notify name="AnimateYourAvatar" tip="false"><message name="message">Faa uma animao para o seu avatar</message> | ||
228 | </notify> | ||
229 | <notify name="AttachToYourAvatar" tip="false"><message name="message">Linke no seu avatar</message> | ||
230 | </notify> | ||
231 | <notify name="ReleaseOwnership" tip="false"><message name="message">O dono do terreno tornou-o pblico</message> | ||
232 | </notify> | ||
233 | <notify name="LinkAndDelink" tip="false"><message name="message">Una e desuna os objetos</message> | ||
234 | </notify> | ||
235 | <notify name="AddAndRemoveJoints" tip="false"><message name="message">Adicione e remova os objetos do seu produto</message> | ||
236 | </notify> | ||
237 | <notify name="ChangePermissions" tip="false"><message name="message">Modifique as permisses</message> | ||
238 | </notify> | ||
239 | <notify name="TrackYourCamera" tip="false"><message name="message">Mova sua cmera</message> | ||
240 | </notify> | ||
241 | <notify name="ControlYourCamera" tip="false"><message name="message">Controle sua camera</message> | ||
242 | </notify> | ||
243 | <notify name="ScriptQuestion" tip="false"><message name="message">'[OBJECTNAME]', este objeto pertence a '[NAME]', voc gostaria de : [QUESTIONS]Est OK?</message> | ||
244 | <option name="Yes">Sim</option> | ||
245 | <option name="No">No</option> | ||
246 | </notify> | ||
247 | <notify name="ScriptDialog" tip="false"><message name="message">[FIRST] [LAST]'s '[TITLE]'[MESSAGE]</message> | ||
248 | <option name="Ignore">Ignorar</option> | ||
249 | </notify> | ||
250 | <notify name="ScriptDialogGroup" tip="false"><message name="message">[GROUPNAME]'s '[TITLE]'[MESSAGE]</message> | ||
251 | <option name="Ignore">Ignorar</option> | ||
252 | </notify> | ||
253 | <notify name="FirstBalanceIncrease" tip="false"><message name="message">Voc recebeu uma quantia de L$[AMOUNT].Voc pode pagar, comprar e vender outros objetos com essa quantia</message> | ||
254 | </notify> | ||
255 | <notify name="FirstBalanceDecrease" tip="false"><message name="message">Voc pagou L$[AMOUNT].O seu balano de dinheiro est sendo mostrado no canto superior direito</message> | ||
256 | </notify> | ||
257 | <notify name="FirstSit" tip="false">Voc foi teleportado<message name="message">Voc est sentado. Use as setas (or AWSD) para mudar a viso.Clique em 'Stand Up' para levantar.</message> | ||
258 | </notify> | ||
259 | <notify name="FirstMap" tip="false"><message name="message">Clique e arraste o scroll no mapa e d um duplo clique no lugar em queira ir</message> | ||
260 | </notify> | ||
261 | <notify name="FirstBuild" tip="false"><message name="message">Voc pode construir novos objetos no [SECOND_LIFE].Use as ferramentas corretas e aperte ESC por qualquer eventualdade.</message> | ||
262 | </notify> | ||
263 | <notify name="FirstLeftClickNoHit" tip="false"><message name="message">Clicando com esquerdo, voc interage com os objetos especiais. Se o ponteiro do mouse mudar a uma mo, voc pode interagir com o objeto. Clique com o direito que ser mostrado sempre um menu das aes que voc pode fazer</message> | ||
264 | </notify> | ||
265 | <notify name="FirstTeleport" tip="false"><message name="message">Voc foi teleportado</message> | ||
266 | </notify> | ||
267 | <notify name="FirstOverrideKeys" tip="false"><message name="message">Suas chaves do movimento esto sendo seguras agora por um objeto. Tente tirar as chaves de seta ou o AWSD v</message> | ||
268 | </notify> | ||
269 | <notify name="FirstAppearance" tip="false"><message name="message">Voc est editando sua aparncia</message> | ||
270 | </notify> | ||
271 | <notify name="FirstInventory" tip="false"><message name="message">Este o seu inventrio</message> | ||
272 | </notify> | ||
273 | <notify name="FirstSandbox" tip="false"><message name="message">Esta a regio conhecida como sandbox.</message> | ||
274 | </notify> | ||
275 | <notify name="FirstFlexible" tip="false"><message name="message">Este objeto tem a propriedade flexvel</message> | ||
276 | </notify> | ||
277 | <notify name="MaxListSelectMessage" tip="true"><message name="message">Voc pode selecionar este objeto [MAX_SELECT] da lista</message> | ||
278 | </notify> | ||
279 | </notifications> | ||
diff --git a/linden/indra/newview/skins/xui/pt/panel_account_details.xml b/linden/indra/newview/skins/xui/pt/panel_account_details.xml deleted file mode 100644 index 31c0b07..0000000 --- a/linden/indra/newview/skins/xui/pt/panel_account_details.xml +++ /dev/null | |||
@@ -1,5 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <panel border="true" bottom="-325" follows="left|top|right|bottom" height="324" label="Detalhes" left="103" mouse_opaque="true" name="account_details_panel" width="388"><text_editor bottom="-288" embedded_items="false" enabled="false" follows="left|top|right|bottom" font="Monospace" height="280" left="8" max_length="65536" mouse_opaque="true" name="editor" width="372" word_wrap="false" /> | ||
3 | <button bottom="-316" follows="left|bottom" font="SansSerif" halign="center" height="20" label="< Mais cedo" label_selected="< Mais cedo" left="24" mouse_opaque="true" name="earlier_btn" tool_tip="Voltar no tempo." width="80" /> | ||
4 | <button bottom="-316" follows="right|bottom" font="SansSerif" halign="center" height="20" label="Mais tarde >" label_selected="Mais tarde >" left_delta="260" mouse_opaque="true" name="later_btn" tool_tip="Avanar no tempo." width="80" /> | ||
5 | </panel> | ||
diff --git a/linden/indra/newview/skins/xui/pt/panel_account_planning.xml b/linden/indra/newview/skins/xui/pt/panel_account_planning.xml deleted file mode 100644 index a01ce3c..0000000 --- a/linden/indra/newview/skins/xui/pt/panel_account_planning.xml +++ /dev/null | |||
@@ -1,3 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <panel border="true" bottom="-325" follows="left|top|right|bottom" height="324" label="Planejamento" left="103" mouse_opaque="true" name="account_planning_panel" width="388"><text_editor bottom="-316" embedded_items="false" enabled="false" follows="left|top|right|bottom" font="Monospace" height="308" left="8" max_length="65536" mouse_opaque="true" name="editor" width="372" word_wrap="false" /> | ||
3 | </panel> | ||
diff --git a/linden/indra/newview/skins/xui/pt/panel_account_transactions.xml b/linden/indra/newview/skins/xui/pt/panel_account_transactions.xml deleted file mode 100644 index f65e8d7..0000000 --- a/linden/indra/newview/skins/xui/pt/panel_account_transactions.xml +++ /dev/null | |||
@@ -1,5 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <panel border="true" bottom="-325" follows="left|top|right|bottom" height="324" label="Vendas/Presentes" left="103" mouse_opaque="true" name="account_sales_panel" width="388"><text_editor bottom="-288" embedded_items="false" enabled="false" follows="left|top|right|bottom" font="Monospace" height="280" left="8" max_length="65536" mouse_opaque="true" name="editor" width="372" word_wrap="false" /> | ||
3 | <button bottom="-316" follows="left|bottom" font="SansSerif" halign="center" height="20" label="< Mais cedo." label_selected="< Mais cedo." left="24" mouse_opaque="true" name="earlier_btn" tool_tip="Volte no tempo." width="80" /> | ||
4 | <button bottom="-316" follows="right|bottom" font="SansSerif" halign="center" height="20" label="Mais tarde >" label_selected="Mais tarde >" left_delta="260" mouse_opaque="true" name="later_btn" tool_tip="Avance no tempo." width="80" /> | ||
5 | </panel> | ||
diff --git a/linden/indra/newview/skins/xui/pt/panel_avatar.xml b/linden/indra/newview/skins/xui/pt/panel_avatar.xml deleted file mode 100644 index 70f1939..0000000 --- a/linden/indra/newview/skins/xui/pt/panel_avatar.xml +++ /dev/null | |||
@@ -1,127 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <panel bottom="-550" height="486" left="350" name="Panel Avatar" width="430"><tab_container bottom="-486" height="486" left="0" mouse_opaque="false" name="tab" tab_min_width="50" tab_position="top" width="420"><panel border="true" bottom="-482" follows="left|top|right|bottom" height="466" label="2nd Life" left="1" mouse_opaque="true" name="2nd Life" width="418"><text hidden="true" name="CaptionTextAcctInfo">[ACCTTYPE][PAYMENTINFO]</text> | ||
3 | <text hidden="true" name="AcctTypeResident">Residente</text> | ||
4 | <text hidden="true" name="AcctTypeTrial">Teste</text> | ||
5 | <text hidden="true" name="AcctTypeCharterMember">Estatuto do membro.</text> | ||
6 | <text hidden="true" name="AcctTypeEmployee">Contratado da Linden Lab.</text> | ||
7 | <text hidden="true" name="PaymentInfoUsed">Informaes de pagamento utilizado.</text> | ||
8 | <text hidden="true" name="PaymentInfoOnFile">Informaes de pagamento no arquivo.</text> | ||
9 | <text hidden="true" name="NoPaymentInfoOnFile">Sem informaes de pagamento no arquivo.</text> | ||
10 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-24" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="right" height="16" left="4" mouse_opaque="true" name="Name:" v_pad="0" width="61">Nome:</text> | ||
11 | <name_editor bevel_style="in" bg_readonly_color="0, 0, 0, 0" border_style="line" border_thickness="1" bottom="-24" enabled="false" follows="left|top" font="SansSerifSmall" height="16" is_unicode="false" left_delta="66" max_length="254" mouse_opaque="false" name="name" text_readonly_color="1, 1, 1, 1" width="180" /> | ||
12 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-24" drop_shadow_visible="true" follows="left|top" font="SansSerifsmall" h_pad="0" halign="left" height="16" left_delta="200" mouse_opaque="true" name="online_yes" v_pad="0" width="130">Atualmente Online</text> | ||
13 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-20" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" left="270" mouse_opaque="true" name="label" v_pad="0" width="130">Nascido:</text> | ||
14 | <line_editor bevel_style="in" bg_readonly_color="0, 0, 0, 0" border_style="line" border_thickness="1" bottom_delta="-16" enabled="true" follows="left|top" font="SansSerifSmall" height="16" is_unicode="false" left="270" max_length="254" mouse_opaque="false" name="born" text_readonly_color="1, 1, 1, 1" width="130" /> | ||
15 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-20" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" left="270" mouse_opaque="true" name="label2" v_pad="0" width="130">Conta:</text> | ||
16 | <view_border blevel_style="in" bottom_delta="-32" follows="left|top" height="32" left="270" mouse_opaque="false" name="acct_border" width="130" /> | ||
17 | <text bg_color="0, 0, 0, 0" bg_visible="false" border_drop_shadow_visible="false" border_visible="true" bottom_delta="0" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" height="32" left="270" mouse_opaque="false" name="acct" text_color="1, 1, 1, 1" width="130" /> | ||
18 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-20" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" left="270" mouse_opaque="true" name="partner_label" tool_tip="Afiliado Second Life. Para mais informaes, veja www.secondlife.com/partner" v_pad="0" width="130">Parceiro:</text> | ||
19 | <line_editor bevel_style="in" bg_readonly_color="0, 0, 0, 0" border_style="line" border_thickness="1" bottom_delta="-16" enabled="true" follows="left|top" font="SansSerifSmall" height="16" is_unicode="false" left="270" max_length="254" mouse_opaque="false" name="partner_edit" text_readonly_color="1, 1, 1, 1" tool_tip="Afiliado Second Life. Para mais informaes, veja www.secondlife.com/partner" width="130">[FIRST] [LAST]</line_editor> | ||
20 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-44" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="right" height="16" left="4" mouse_opaque="true" name="Photo:" v_pad="0" width="61">Foto:</text> | ||
21 | <texture_picker allow_no_texture="true" bottom="-179" can_apply_immediately="false" default_image_name="None" follows="left|top" height="151" label="" left="70" mouse_opaque="true" name="img" tool_tip="Clique para selecionar uma foto" width="180" /> | ||
22 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-183" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="right" height="16" left_delta="-66" mouse_opaque="true" name="Ratings:" v_pad="0" width="61">Avaliao</text> | ||
23 | <scroll_list background_visible="false" bottom="-247" column_padding="5" draw_border="true" fg_disable_color="1, 1, 1, 1" fg_unselected_color="1, 1, 1, 1" follows="left|top" height="80" left="70" mouse_opaque="true" multi_select="false" name="ratings" width="330" /> | ||
24 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-267" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="right" height="16" left="4" mouse_opaque="true" name="Groups:" v_pad="0" width="61">Grupos:</text> | ||
25 | <scroll_list background_visible="false" bottom="-315" column_padding="5" draw_border="true" fg_disable_color="1, 1, 1, 1" fg_unselected_color="1, 1, 1, 1" follows="left|top" height="64" left="70" mouse_opaque="false" multi_select="false" name="groups" width="330" /> | ||
26 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-335" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="right" height="16" left="4" mouse_opaque="true" name="About:" v_pad="0" width="61">Sobre:</text> | ||
27 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-16" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="right" height="16" left="4" mouse_opaque="true" name="(500 chars)" v_pad="0" width="61">(500 chars)</text> | ||
28 | <text_editor bg_readonly_color="0, 0, 0, 0" bottom="-383" embedded_items="false" enabled="true" follows="left|top" font="SansSerifSmall" height="64" is_unicode="false" left="70" max_length="511" mouse_opaque="true" name="about" text_readonly_color="1, 1, 1, 1" width="330" word_wrap="true" /> | ||
29 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-403" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="right" height="16" left="4" mouse_opaque="true" name="Give item:" v_pad="0" width="61">Doar item:</text> | ||
30 | <view_border blevel_style="in" border_thickness="0" bottom="-466" follows="left|top" height="466" left_delta="0" mouse_opaque="false" name="drop_target_rect" width="418" /> | ||
31 | <view_border blevel_style="in" bottom="-403" follows="left|top" height="16" left_delta="66" mouse_opaque="false" name="drop_target_rect_vis" width="330" /> | ||
32 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="0" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="center" height="16" left_delta="0" mouse_opaque="true" name="Give inventory" tool_tip="Arraste e solte o item aqui para da-lo a pessoa desejada." v_pad="2" width="330">Arraste e solte o item aqui.</text> | ||
33 | <check_box bottom_delta="-20" follows="left|top" font="SansSerifSmall" height="16" initial_value="false" label="Publicar na Web." left="70" mouse_opaque="true" name="allow_publish" tool_tip="Publica as informaes do seu perfil na web." width="127" /> | ||
34 | <button bottom="-423" follows="left|top" font="SansSerif" halign="center" height="16" label="?" label_selected="?" left_delta="130" mouse_opaque="true" name="?" width="30" /> | ||
35 | <button bottom="-428" font="SansSerif" halign="center" height="20" label="Mostrar no mapa" label_selected="Mostrar no mapa" left="34" mouse_opaque="true" name="Show on Map" width="100" /> | ||
36 | <button bottom_delta="0" font="SansSerif" halign="center" height="20" label="Oferecer teleporte..." label_selected="Oferecer teleporte..." left_delta="112" mouse_opaque="true" name="Offer Teleport..." width="140" /> | ||
37 | |||
38 | |||
39 | <button bottom_delta="0" font="SansSerif" halign="center" height="20" label="Adicionar amigo..." | ||
40 | label_selected="Adicionar amigo..." left_delta="152" mouse_opaque="true" | ||
41 | name="Add Friend..." width="100" /> | ||
42 | |||
43 | |||
44 | |||
45 | <button bottom_delta="-24" font="SansSerif" halign="center" height="20" label="Pagar..." label_selected="Pagar..." left="34" mouse_opaque="true" name="Pay..." width="100" /> | ||
46 | <button bottom_delta="0" font="SansSerif" halign="center" height="20" label="Mensagem Instantnea..." label_selected="Mensagem Instantnea..." left_delta="112" mouse_opaque="true" name="Instant Message..." width="140" /> | ||
47 | <button bottom_delta="0" font="SansSerif" halign="center" height="20" label="Silenciar" label_selected="Silenciar" left_delta="152" mouse_opaque="true" name="Mute" width="100" /> | ||
48 | </panel> | ||
49 | <panel border="true" bottom="-482" follows="left|top|right|bottom" height="466" label="Web" left="1" mouse_opaque="true" name="WebProfile" width="418"><button bottom_delta="-22" follows="left|top" font="SansSerifSmall" halign="center" height="18" label="Inico" label_selected="Home" left="5" mouse_opaque="true" name="home" width="55" /> | ||
50 | <button bottom_delta="0" follows="left|top" font="SansSerifSmall" halign="center" height="18" label="Carregar" label_selected="Carregar" left_delta="0" mouse_opaque="true" name="load" tool_tip="Carrega o seu perfil no seu navegador." width="55" /> | ||
51 | <button bottom_delta="0" follows="left|top" font="SansSerifSmall" halign="center" height="18" label="Abrir..." label_selected="Abrir..." left_delta="63" mouse_opaque="true" name="open" tool_tip="Abre essa pgina no seu navegador externo." width="55" /> | ||
52 | <button bottom_delta="0" follows="left|top" font="SansSerif" halign="center" height="18" label="?" label_selected="?" left_delta="63" mouse_opaque="true" name="web_profile_help" width="18" /> | ||
53 | <check_box bottom_delta="0" follows="right|top" font="SansSerifSmall" height="16" initial_value="false" label="Carregar Perfis da Web" left_delta="90" mouse_opaque="true" name="auto_load" tool_tip="Carrega automaticamente os perfis da Web sem perguntar antes." width="127" /> | ||
54 | <line_editor bevel_style="in" bg_readonly_color="0, 0, 0, 0" border_style="line" border_thickness="1" bottom_delta="-18" enabled="false" follows="left|top" font="SansSerifSmall" height="16" is_unicode="false" left="10" max_length="254" mouse_opaque="true" name="url_edit" text_readonly_color="1, 1, 1, 1" width="400" /> | ||
55 | <web_browser border_visible="false" bottom="-444" follows="top|left|right" height="400" left="10" name="profile_html" start_url="" width="400" /> | ||
56 | <text bottom="5" follows="bottom|left|right" left="15" name="status_text" right="-70" top="25">Feito.</text> | ||
57 | </panel> | ||
58 | <panel border="true" bottom="-482" follows="left|top|right|bottom" height="466" label="Interesses" left="1" mouse_opaque="true" name="Interests" width="418"><text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-36" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="right" height="16" left="4" mouse_opaque="true" name="I Want To:" v_pad="0" width="61">Eu quero:</text> | ||
59 | <check_box bottom_delta="0" follows="left|top" font="SansSerifSmall" height="16" initial_value="false" label="Construo." left_delta="66" mouse_opaque="true" name="chk0" width="90" /> | ||
60 | <check_box bottom_delta="0" follows="left|top" font="SansSerifSmall" height="16" initial_value="false" label="Explorar" left_delta="90" mouse_opaque="true" name="chk1" width="90" /> | ||
61 | <check_box bottom_delta="0" follows="left|top" font="SansSerifSmall" height="16" initial_value="false" label="Encontros." left_delta="90" mouse_opaque="true" name="chk2" width="57" /> | ||
62 | <check_box bottom_delta="0" follows="left|top" font="SansSerifSmall" height="16" initial_value="false" label="Ser contratado" left="324" mouse_opaque="true" name="chk6" width="92" /> | ||
63 | <check_box bottom_delta="-20" follows="left|top" font="SansSerifSmall" height="16" initial_value="false" label="Grupo" left="70" mouse_opaque="true" name="chk3" width="90" /> | ||
64 | <check_box bottom_delta="0" follows="left|top" font="SansSerifSmall" height="16" initial_value="false" label="Comprar" left_delta="90" mouse_opaque="true" name="chk4" width="90" /> | ||
65 | <check_box bottom_delta="0" follows="left|top" font="SansSerifSmall" height="16" initial_value="false" label="Vender" left_delta="90" mouse_opaque="true" name="chk5" width="50" /> | ||
66 | <check_box bottom_delta="0" follows="left|top" font="SansSerifSmall" height="16" initial_value="false" label="Contratar" left="324" mouse_opaque="true" name="chk7" width="92" /> | ||
67 | <line_editor bevel_style="in" bg_readonly_color="0, 0, 0, 0" border_style="line" border_thickness="1" bottom_delta="-20" enabled="true" follows="left|top" font="SansSerifSmall" height="16" is_unicode="false" left="70" max_length="254" mouse_opaque="true" name="want_to_edit" text_readonly_color="1, 1, 1, 1" width="330" /> | ||
68 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-26" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="right" height="16" left="4" mouse_opaque="true" name="Skills:" v_pad="0" width="61">Habilidades:</text> | ||
69 | <check_box bottom_delta="0" follows="left|top" font="SansSerifSmall" height="16" initial_value="false" label="Texturas" left_delta="66" mouse_opaque="true" name="schk0" width="90" /> | ||
70 | <check_box bottom_delta="0" follows="left|top" font="SansSerifSmall" height="16" initial_value="false" label="Arquitetura:" left_delta="90" mouse_opaque="true" name="schk1" width="93" /> | ||
71 | <check_box bottom_delta="0" follows="left|top" font="SansSerifSmall" height="16" initial_value="false" label="Planejador de Eventos" left_delta="90" mouse_opaque="true" name="schk2" width="105" /> | ||
72 | <check_box bottom_delta="-20" follows="left|top" font="SansSerifSmall" height="16" initial_value="false" label="Modelador" left="70" mouse_opaque="true" name="schk3" width="90" /> | ||
73 | <check_box bottom_delta="0" follows="left|top" font="SansSerifSmall" height="16" initial_value="false" label="Programador" left_delta="90" mouse_opaque="true" name="schk4" width="90" /> | ||
74 | <check_box bottom_delta="0" follows="left|top" font="SansSerifSmall" height="16" initial_value="false" label="Personagens customizados." left_delta="90" mouse_opaque="true" name="schk5" width="127" /> | ||
75 | <line_editor bevel_style="in" bg_readonly_color="0, 0, 0, 0" border_style="line" border_thickness="1" bottom_delta="-20" enabled="true" follows="left|top" font="SansSerifSmall" height="16" is_unicode="false" left="70" max_length="254" mouse_opaque="true" name="skills_edit" text_readonly_color="1, 1, 1, 1" width="330" /> | ||
76 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-30" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="right" height="16" left="4" mouse_opaque="true" name="Languages:" v_pad="0" width="61">Lnguas:</text> | ||
77 | <line_editor bevel_style="in" bg_readonly_color="0, 0, 0, 0" border_style="line" border_thickness="1" bottom_delta="0" enabled="true" follows="left|top" font="SansSerifSmall" height="16" is_unicode="false" left="70" max_length="254" mouse_opaque="true" name="languages_edit" text_readonly_color="1, 1, 1, 1" width="330" /> | ||
78 | </panel> | ||
79 | <panel border="true" bottom="-482" follows="left|top|right|bottom" height="466" label="Seletor" left="1" mouse_opaque="true" name="Picks" width="418"><text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-20" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" left="114" mouse_opaque="true" name="Tell everyone about your favorite places in Second Life." v_pad="0" width="302">Diga a todos os seus lugares favoritos em Second Life.</text> | ||
80 | <button bottom_delta="-24" follows="left|top" font="SansSerif" halign="center" height="20" label="Novo..." label_selected="Novo..." left="114" mouse_opaque="true" name="New..." width="75" /> | ||
81 | <button bottom="-44" follows="left|top" font="SansSerif" halign="center" height="20" label="Apagar..." label_selected="Apagar..." left_delta="79" mouse_opaque="true" name="Delete..." width="75" /> | ||
82 | <tab_container bottom="-411" follows="left|top" height="363" left="4" mouse_opaque="false" name="picks tab" tab_position="left" width="412" /> | ||
83 | |||
84 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" | ||
85 | bottom="-70" drop_shadow_visible="true" follows="left|top" | ||
86 | font="SansSerif" h_pad="0" halign="left" height="20" left="114" | ||
87 | mouse_opaque="false" name="loading_text" v_pad="0" width="302"> | ||
88 | Carregando... | ||
89 | </text> | ||
90 | |||
91 | </panel> | ||
92 | <panel border="true" bottom="-482" follows="left|top|right|bottom" height="466" label="Classificados" left="1" mouse_opaque="true" name="Classified" width="418"><text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-20" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" left="114" mouse_opaque="true" name="Place an ad in Second Life's classified listings." v_pad="0" width="302">Adicione no Second Life sua lista de classificados.</text> | ||
93 | <button bottom_delta="-24" follows="left|top" font="SansSerif" halign="center" height="20" label="Novo..." label_selected="Novo..." left="114" mouse_opaque="true" name="New..." width="75" /> | ||
94 | <button bottom="-44" follows="left|top" font="SansSerif" halign="center" height="20" label="Apagar..." label_selected="Apagar..." left_delta="79" mouse_opaque="true" name="Delete..." width="75" /> | ||
95 | <tab_container bottom="-463" follows="left|top" height="415" left="4" mouse_opaque="false" name="classified tab" tab_position="left" width="412" /> | ||
96 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" | ||
97 | bottom="-70" drop_shadow_visible="true" follows="left|top" | ||
98 | font="SansSerif" h_pad="0" halign="left" height="20" left="114" | ||
99 | mouse_opaque="false" name="loading_text" v_pad="0" width="302"> | ||
100 | Carregando... | ||
101 | </text> | ||
102 | |||
103 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-463" drop_shadow_visible="true" follows="left|top" font="SansSerif" h_pad="0" halign="left" height="355" left="114" mouse_opaque="false" name="help_text" v_pad="0" width="302" /> | ||
104 | </panel> | ||
105 | <panel border="true" bottom="-482" follows="left|top|right|bottom" height="466" label="1st Life" left="1" mouse_opaque="true" name="1st Life" width="418"><text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-36" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="right" height="16" left="4" mouse_opaque="true" name="Photo:" v_pad="0" width="61">Foto:</text> | ||
106 | <texture_picker allow_no_texture="true" bottom="-171" can_apply_immediately="false" default_image_name="None" follows="left|top" height="151" label="" left="70" mouse_opaque="true" name="img" tool_tip="Clique para selecionar uma foto" width="135" /> | ||
107 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-203" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="right" height="16" left="4" mouse_opaque="true" name="Info:" v_pad="0" width="61">Sobre:</text> | ||
108 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-16" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="right" height="16" left="4" mouse_opaque="true" name="(250 chars)" v_pad="0" width="61">(250 chars)</text> | ||
109 | <text_editor bg_readonly_color="0, 0, 0, 0" bottom="-347" embedded_items="false" enabled="true" follows="left|top" font="SansSerifSmall" height="160" is_unicode="false" left="70" max_length="254" mouse_opaque="false" name="about" text_readonly_color="1, 1, 1, 1" width="330" word_wrap="true" /> | ||
110 | </panel> | ||
111 | <panel border="true" bottom="-482" follows="left|top|right|bottom" height="466" label="Minhas anotaes" left="1" mouse_opaque="true" name="My Notes" width="418"><text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-52" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="48" left="10" mouse_opaque="true" name="label" v_pad="0" width="412">Use esse espao para falar sobre essa pessoa. Coloque aqui o que desejar, projetos, lembretes e etc. Somente voc poder ver essa anotao.</text> | ||
112 | <text_editor bottom_delta="-260" embedded_items="false" enabled="true" follows="left|top" font="SansSerif" height="256" is_unicode="false" left="10" max_length="1023" mouse_opaque="true" name="notes edit" width="400" word_wrap="false" /> | ||
113 | </panel> | ||
114 | </tab_container> | ||
115 | <button bottom="-482" font="SansSerif" halign="center" height="20" label="OK" label_selected="OK" left="34" mouse_opaque="true" name="OK" width="100" /> | ||
116 | <button bottom_delta="0" font="SansSerif" halign="center" height="20" label="Cancelar" label_selected="Cancelar" left_delta="264" mouse_opaque="true" name="Cancel" width="100" /> | ||
117 | <button bottom_delta="135" font="SansSerif" halign="center" height="20" label="Retirar" label_selected="Retirar" left="4" mouse_opaque="true" name="Kick" width="72" /> | ||
118 | <button bottom_delta="-24" font="SansSerif" halign="center" height="20" label="Paralizar" label_selected="Paralizar" left="4" mouse_opaque="true" name="Freeze" tool_tip="Paraliza o movimento e conversa desse residente." width="72" /> | ||
119 | <button bottom_delta="-24" font="SansSerif" halign="center" height="20" label="Unfreeze" label_selected="Unfreeze" left="4" mouse_opaque="true" name="Unfreeze" tool_tip="Libera o residente" width="72" /> | ||
120 | <button bottom_delta="-24" font="SansSerif" halign="center" height="20" label="CSR" label_selected="CSR" left="4" mouse_opaque="true" name="csr_btn" tool_tip="Abre a ferramenta de cliente para esse residente." width="72" /> | ||
121 | <text hidden="true" name="ShowOnMapNonFriend">Mostra a localizao no mapa. Desativado porque ainda no amigo desse residente.</text> | ||
122 | <text hidden="true" name="ShowOnMapFriendOffline">Mostra a localizao no mapa. Desativado pois ele no est online.</text> | ||
123 | <text hidden="true" name="ShowOnMapFriendOnline">Mostra localizao no mapa.</text> | ||
124 | <text hidden="true" name="TeleportGod">Fora teleporte at a sua localizao.</text> | ||
125 | <text hidden="true" name="TeleportPrelude">Oferece teleporte para a sua lozalizao. Desativado at que voc saia da ilha da Orientao.</text> | ||
126 | <text hidden="true" name="TeleportNormal">Oferece teleporte para a sua localizao.</text> | ||
127 | </panel> | ||
diff --git a/linden/indra/newview/skins/xui/pt/panel_avatar_classified.xml b/linden/indra/newview/skins/xui/pt/panel_avatar_classified.xml deleted file mode 100644 index dd13e45..0000000 --- a/linden/indra/newview/skins/xui/pt/panel_avatar_classified.xml +++ /dev/null | |||
@@ -1,16 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <panel border="true" bottom="0" follows="top|left" height="332" left="0" name="Classified" title="Classificados" width="350"><texture_picker bottom="-165" follows="left|top" height="155" left="10" name="snapshot_ctrl" width="207" /> | ||
3 | <line_editor bg_readonly_color="clear" bottom_delta="-8" enabled="false" follows="left|top" font="SansSerif" height="20" left="10" name="given_name_editor" text_readonly_color="white" tool_tip="O Nome precisa comear com uma letra ou nmero, no pontuao." width="280" /> | ||
4 | <text_editor bg_readonly_color="clear" enabled="false" follows="left|top" font="SansSerifSmall" height="70" left="10" max_length="1023" name="desc_editor" text_readonly_color="white" width="280" word_wrap="true" /> | ||
5 | <line_editor bg_readonly_color="clear" enabled="false" follows="left|top" font="SansSerifSmall" height="20" left="10" name="location_editor" text_readonly_color="white" tool_tip="Defina a posio para este classificado para sua posio atual." width="280" /> | ||
6 | <button bottom_delta="-27" follows="left|top" height="20" label="Definir Posio" left="10" name="set_location_btn" width="110" /> | ||
7 | <button bottom_delta="0" follows="left|top" height="20" label="Teleporte" left_delta="120" name="classified_teleport_btn" width="80" /> | ||
8 | <button bottom_delta="0" follows="left|top" height="20" label="Mapa" left_delta="90" name="classified_map_btn" width="80" /> | ||
9 | <combo_box bottom_delta="-27" follows="left|top" height="18" label="" left="10" name="classified_category_combo" right="150" /> | ||
10 | <check_box bottom_delta="-1" follows="left|top" height="20" label="Adulto" left="160" name="classified_mature_check" width="80" /> | ||
11 | <text bg_readonly_color="clear" bottom_delta="-25" follows="left|top" font="SansSerifSmall" height="18" left="10" name="classified_info_text" text_readonly_color="white" tool_tip="Quando mais voc escolhe pagar pelo seu anncio, melhor ser sua visualiza na lista." width="300">Lugar do Anncio: Ainda no publicado</text> | ||
12 | <text bg_readonly_color="clear" bottom_delta="-18" follows="left|top" font="SansSerifSmall" height="18" left="10" name="click_through_text" text_readonly_color="white" tool_tip="Nmero total de cliques em cada boto desde que este classificado foi posicionado." width="300">Cliques:</text> | ||
13 | <button bottom_delta="-16" follows="left|top" height="18" label="Publicar..." left="160" name="classified_update_btn" width="110" /> | ||
14 | <check_box bottom_delta="0" enabled="true" follows="left|top" font="SansSerifSmall" height="20" label="Auto-Renovar a cada Semana" left="10" name="auto_renew_check" width="120" /> | ||
15 | <text hidden="true" name="ad_placed_paid">Anncio publicado em: [DATE], Pago L$[AMT] para listar.</text> | ||
16 | </panel> | ||
diff --git a/linden/indra/newview/skins/xui/pt/panel_avatar_pick.xml b/linden/indra/newview/skins/xui/pt/panel_avatar_pick.xml deleted file mode 100644 index fdc5db3..0000000 --- a/linden/indra/newview/skins/xui/pt/panel_avatar_pick.xml +++ /dev/null | |||
@@ -1,12 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <panel border="true" bottom="0" follows="top|left" height="300" left="0" name="Pick" title="Pick" width="350"><texture_picker bottom="-190" follows="left|top" height="180" left="10" name="snapshot_ctrl" width="290" /> | ||
3 | <line_editor bg_readonly_color="clear" bottom_delta="-8" enabled="false" follows="left|top" font="SansSerif" height="20" left="10" name="given_name_editor" text_readonly_color="white" width="290" /> | ||
4 | <text_editor bg_readonly_color="clear" enabled="false" follows="left|top" font="SansSerifSmall" height="100" left="10" max_length="1023" name="desc_editor" text_readonly_color="white" width="290" word_wrap="true" /> | ||
5 | <line_editor bg_readonly_color="clear" enabled="false" follows="left|top" font="SansSerifSmall" height="20" left="10" name="location_editor" text_readonly_color="white" width="290" /> | ||
6 | <button bottom_delta="-27" follows="left|top" height="20" label="Ajustar Localizao" left="200" name="set_location_btn" width="95" /> | ||
7 | <button bottom_delta="0" follows="left|top" height="20" label="Tele-Transporte" left="10" name="pick_teleport_btn" width="80" /> | ||
8 | <button bottom_delta="0" follows="left|top" height="20" label="Mostrar no Mapa" left="95" name="pick_map_btn" width="100" /> | ||
9 | <text bottom_delta="0" follows="left|top" height="20" left="290" name="sort_order_text" width="30">Sorte</text> | ||
10 | <line_editor bottom_delta="5" follows="left|top" height="16" left="280" name="sort_order_editor" width="25" /> | ||
11 | <check_box bottom_delta="0" follows="left|top" height="20" label="Permitido" left="360" name="enabled_check" width="80" /> | ||
12 | </panel> | ||
diff --git a/linden/indra/newview/skins/xui/pt/panel_chat_bar.xml b/linden/indra/newview/skins/xui/pt/panel_chat_bar.xml deleted file mode 100644 index b12c687..0000000 --- a/linden/indra/newview/skins/xui/pt/panel_chat_bar.xml +++ /dev/null | |||
@@ -1,8 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <panel bottom="24" enabled="true" follows="left|right|bottom" height="29" hidden="false" left="-1" mouse_opaque="true" name="chat_bar" width="256" default_tab_group="1"><button bottom="-28" enabled="true" follows="left|bottom" font="SansSerif" halign="center" height="24" hidden="false" label="Histrico" label_selected="Histrico" left="0" mouse_opaque="true" name="History" tool_tip="Clique aqui para ver o que foi dito" width="100" /> | ||
3 | <line_editor bevel_style="in" border_style="line" border_thickness="1" bottom="-26" enabled="true" follows="left|right|bottom" font="SansSerif" handle_edit_keys_directly="false" height="24" hidden="false" label="Clique aqui para iniciar o chat" left="107" max_length="254" mouse_opaque="true" name="Chat Editor" select_all_on_focus_received="false" select_on_focus="false" tab_group="1" tool_tip="Pressione Enter para dizer" width="100" /> | ||
4 | <button bottom="-28" enabled="true" follows="left|bottom" font="SansSerif" halign="center" height="24" hidden="false" label="Dizer" label_selected="Dizer" left="748" mouse_opaque="true" name="Say" tool_tip="Enter" width="100" /> | ||
5 | <button bottom="-28" enabled="true" follows="left|bottom" font="SansSerif" halign="center" height="24" hidden="false" label="Gritar" label_selected="Gritar" left="855" mouse_opaque="true" name="Shout" tool_tip="Ctrl-Enter" width="100" /> | ||
6 | <combo_box allow_text_entry="false" bottom="-26" enabled="true" follows="left|bottom" height="20" hidden="false" label="Gestos" left="962" max_chars="20" mouse_opaque="true" name="Gesture" width="150"><combo_item name="Gestures">Gestos</combo_item> | ||
7 | </combo_box> | ||
8 | </panel> | ||
diff --git a/linden/indra/newview/skins/xui/pt/panel_classified.xml b/linden/indra/newview/skins/xui/pt/panel_classified.xml deleted file mode 100644 index bbf0984..0000000 --- a/linden/indra/newview/skins/xui/pt/panel_classified.xml +++ /dev/null | |||
@@ -1,13 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <panel border="false" bottom="0" follows="bottom|left" height="490" left="330" name="Classified" title="Classificados" width="450"><texture_picker bottom="-315" follows="left|top" height="300" left="20" name="snapshot_ctrl" width="400" /> | ||
3 | <line_editor bg_readonly_color="clear" bottom_delta="-8" enabled="false" follows="left|top" font="SansSerif" height="20" left="20" name="given_name_editor" text_readonly_color="white" tool_tip="O nome deve comear com uma letra ou um nmero, no pontuao." width="400" /> | ||
4 | <text_editor bg_readonly_color="clear" enabled="false" follows="left|top" font="SansSerifSmall" height="90" left="20" max_length="1023" name="desc_editor" text_readonly_color="white" width="400" word_wrap="true" /> | ||
5 | <line_editor bg_readonly_color="clear" enabled="false" follows="left|top" font="SansSerif" height="20" left="20" name="location_editor" text_readonly_color="white" tool_tip="Ajustar a posio para sua localizao." width="400" /> | ||
6 | <button bottom_delta="0" follows="left|top" height="20" label="Ajuste" left="380" name="set_location_btn" width="60" /> | ||
7 | <button bottom_delta="-28" follows="left|top" height="20" label="Tele-transporte" left="20" name="classified_teleport_btn" width="80" /> | ||
8 | <button bottom_delta="0" follows="left|top" height="20" label="Mostrar no mapa" left="105" name="classified_map_btn" width="100" /> | ||
9 | <button bottom_delta="0" follows="left|top" height="20" label="Perfil" left="210" name="classified_profile_btn" width="70" /> | ||
10 | <check_box bottom="422" follows="left|top" height="20" label="Maduro" left="30" name="classified_mature_check" text_readonly_color="white" width="80" /> | ||
11 | <combo_box bg_readonly_color="grey" bottom="445" follows="left|top" height="18" label="" left="20" name="classified_category_combo" right="150" text_readonly_color="white" /> | ||
12 | <button bottom="400" follows="left|top" height="20" label="Update" left="30" name="classified_update_btn" width="70" /> | ||
13 | </panel> | ||
diff --git a/linden/indra/newview/skins/xui/pt/panel_event.xml b/linden/indra/newview/skins/xui/pt/panel_event.xml deleted file mode 100644 index 82049e3..0000000 --- a/linden/indra/newview/skins/xui/pt/panel_event.xml +++ /dev/null | |||
@@ -1,24 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <panel border="false" bottom="20" can_close="true" can_minimize="true" can_resize="false" follows="bottom|left" height="470" left="330" name="Event" title="Evento" width="450"><text bottom="-16" follows="top|left" font="SansSerif" left="20" name="event_name_label">Nome:</text> | ||
3 | <text bottom="-16" follows="top|left" font="SansSerif" left="120" name="event_name">(nenhum)</text> | ||
4 | <text bottom_delta="-16" follows="top|left" font="SansSerif" left="20" name="event_category_label">Tipo:</text> | ||
5 | <text bottom_delta="0" follows="top|left" font="SansSerif" left="120" name="event_category">(nenhum)</text> | ||
6 | <text bottom_delta="-16" follows="top|left" font="SansSerif" left="20" name="event_mature_label">ndice:</text> | ||
7 | <text bottom_delta="0" follows="top|left" font="SansSerif" left="120" name="event_mature">(desconhecido)</text> | ||
8 | <text bottom_delta="-16" follows="top|left" font="SansSerif" left="20" name="event_date_label">Data:</text> | ||
9 | <text bottom_delta="0" follows="top|left" font="SansSerif" left="120" name="event_date">(nenhum)</text> | ||
10 | <text bottom_delta="-16" follows="top|left" font="SansSerif" left="20" name="event_duration_label">Durao do evento:</text> | ||
11 | <text bottom_delta="0" follows="top|left" font="SansSerif" left="120" name="event_duration">(nenhum)</text> | ||
12 | <text bottom_delta="-16" follows="top|left" font="SansSerif" left="20" name="event_runby_label">Funcionar:</text> | ||
13 | <text bottom_delta="0" follows="top|left" font="SansSerif" left="120" name="event_runby">(nenhum)</text> | ||
14 | <text bottom_delta="-16" follows="top|left" font="SansSerif" left="20" name="event_location_label">Localizao:</text> | ||
15 | <text bottom_delta="0" follows="top|left" font="SansSerif" left="120" name="event_location">(nenhum)</text> | ||
16 | <text bottom_delta="-16" follows="top|left" font="SansSerif" left="20" name="event_cover_label">Carga:</text> | ||
17 | <text bottom_delta="0" follows="top|left" font="SansSerif" left="120" name="event_cover">(nenhum)</text> | ||
18 | <text bottom_delta="-16" follows="top|left" font="SansSerif" left="20" name="event_desc_label">Descrio:</text> | ||
19 | <text_editor bottom_delta="-230" follows="left|top" height="220" left="20" max_length="1024" name="event_desc" width="400" /> | ||
20 | <button bottom_delta="-24" follows="left|top" height="20" label="Tele-transportar" left="20" name="teleport_btn" width="80" /> | ||
21 | <button bottom_delta="0" follows="left|top" height="20" label="Mostrar no mapa" left="105" name="map_btn" width="100" /> | ||
22 | <button bottom_delta="0" follows="left|top" height="20" label="Notificar" left="210" name="notify_btn" width="90" /> | ||
23 | <button bottom_delta="0" follows="left|top" height="20" label="Criar Evento..." left="305" name="create_event_btn" width="110" /> | ||
24 | </panel> | ||
diff --git a/linden/indra/newview/skins/xui/pt/panel_group.xml b/linden/indra/newview/skins/xui/pt/panel_group.xml deleted file mode 100644 index c021b81..0000000 --- a/linden/indra/newview/skins/xui/pt/panel_group.xml +++ /dev/null | |||
@@ -1,14 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <panel border="false" bottom="0" follows="bottom|left" height="514" left="0" left_in_finder="335" mouse_opaque="true" name="GroupInfo" title="Grupo" width="420"><text name="default_needs_apply_text">Existem mudanas na verso atual</text> | ||
3 | <text name="want_apply_text">Deseja fazer as mudanas?</text> | ||
4 | <tab_container border="false" bottom="27" follows="all" height="483" left="0" name="group_tab_container" tab_position="top" width="420"><panel filename="panel_group_general.xml" name="general_tab" /> | ||
5 | <panel filename="panel_group_roles.xml" name="roles_tab" /> | ||
6 | <panel filename="panel_group_notices.xml" name="notices_tab" /> | ||
7 | <panel filename="panel_group_voting.xml" name="voting_tab" /> | ||
8 | <panel filename="panel_group_land_money.xml" name="land_money_tab" /> | ||
9 | </tab_container> | ||
10 | <button bottom="5" font="SansSerif" halign="center" height="20" label="Aplicar" label_selected="Aplicar" mouse_opaque="true" name="btn_apply" right="412" width="60" /> | ||
11 | <button bottom_delta="0" font="SansSerif" halign="center" height="20" label="Cancelar" label_selected="Cancelar" left_delta="-65" mouse_opaque="true" name="btn_cancel" width="60" /> | ||
12 | <button bottom_delta="0" font="SansSerif" halign="center" height="20" label="OK" label_selected="OK" left_delta="-65" mouse_opaque="true" name="btn_ok" width="60" /> | ||
13 | <button bottom_delta="0" font="SansSerif" halign="center" height="20" label="Atualizar do servidor." label_selected="Atualizar do servidor" left="10" mouse_opaque="true" name="btn_refresh" width="130" /> | ||
14 | </panel> | ||
diff --git a/linden/indra/newview/skins/xui/pt/panel_group_finder.xml b/linden/indra/newview/skins/xui/pt/panel_group_finder.xml deleted file mode 100644 index a20b74f..0000000 --- a/linden/indra/newview/skins/xui/pt/panel_group_finder.xml +++ /dev/null | |||
@@ -1,10 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <panel border="false" bottom="5" follows="bottom|left" height="514" left="340" mouse_opaque="true" name="GroupInfoFinder" title="Grupo" width="420"><text name="default_needs_apply_text">Existe mudanas</text> | ||
3 | <text name="want_apply_text">Deseja aplicar as mudanas?</text> | ||
4 | <tab_container border="false" bottom="0" follows="all" height="483" left="0" name="group_tab_container" tab_position="top" width="420"><panel filename="panel_group_general.xml" name="general_tab" /> | ||
5 | <panel filename="panel_group_roles.xml" name="roles_tab" /> | ||
6 | <panel filename="panel_group_notices.xml" name="notices_tab" /> | ||
7 | <panel filename="panel_group_voting.xml" name="voting_tab" /> | ||
8 | <panel filename="panel_group_land_money.xml" name="land_money_tab" /> | ||
9 | </tab_container> | ||
10 | </panel> | ||
diff --git a/linden/indra/newview/skins/xui/pt/panel_group_general.xml b/linden/indra/newview/skins/xui/pt/panel_group_general.xml deleted file mode 100644 index 00ceaec..0000000 --- a/linden/indra/newview/skins/xui/pt/panel_group_general.xml +++ /dev/null | |||
@@ -1,39 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <panel border="true" bottom="0" follows="all" height="466" label="Geral" left="1" mouse_opaque="true" name="general_tab" select="true" width="418"><text name="help_text">A aba diversos contm informaes gerais sobre esse grupo, a lista dos donos e seus membros, preferncias gerais do grupo e opes dos membros. Passe o seu mouse por cima para ver mais informaes. Ajuda.</text> | ||
3 | <button bottom="-24" follows="left|top" font="SansSerif" halign="center" height="16" label="?" label_selected="?" left="391" mouse_opaque="true" name="help_button" width="20" /> | ||
4 | <line_editor bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-24" drop_shadow_visible="true" follows="left|top" font="SansSerif" h_pad="0" halign="left" height="16" left="7" max_length="35" mouse_opaque="true" name="group_name_editor" prevalidate="ascii" v_pad="0" width="300">Digite o nome do seu novo grupo aqui</line_editor> | ||
5 | |||
6 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-20" drop_shadow_visible="true" follows="left|top" font="SansSerifBig" h_pad="0" halign="left" height="16" left="7" mouse_opaque="true" name="group_name" v_pad="0" width="300">Digite o nome do seu novo grupo aqui</text> | ||
7 | <text font="SansSerifSmall" name="prepend_founded_by">Fundado por:</text> | ||
8 | |||
9 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-6" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" left_delta="69" mouse_opaque="true" name="founder_name" v_pad="0" width="380">(espera)</text> | ||
10 | |||
11 | |||
12 | <text bottom_delta="0" font="SansSerifSmall" halign="right" height="16" left="-155" name="group_charter_label" width="140">Patente do Grupo</text> | ||
13 | <texture_picker bottom_delta="-145" follows="left|top" height="144" image_name="icon_groupnotice.tga" label="Group Insignia" left="7" mouse_opaque="true" name="insignia" tool_tip="Clique para escolher uma imagem" width="128" /> | ||
14 | <text_editor bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-30" drop_shadow_visible="false" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="176" hide_scrollbar="true" left="160" max_length="511" mouse_opaque="true" name="charter" text_readonly_color="0.57647, 0.66275, 0.83529" v_pad="0" width="251" word_wrap="true">Patente do grupo</text_editor> | ||
15 | <button bottom_delta="0" follows="left|top" font="SansSerif" halign="center" height="22" label="Juntar (L$0)" label_selected="Juntar (L$0)" left="7" mouse_opaque="true" name="join_button" width="128" /> | ||
16 | <button bottom_delta="0" follows="left|top" font="SansSerif" halign="center" height="22" label="Vista detalhada" label_selected="Vista detalhada" left_delta="0" mouse_opaque="true" name="info_button" width="128" /> | ||
17 | <text bottom_delta="-16" font="SansSerif">Donos & Membros visveis</text> | ||
18 | <text bottom_delta="0" font="SansSerifSmall" left_delta="185" style="bold">Os proprietrios so mostrados em realce</text> | ||
19 | <name_list allow_calling_card_drop="false" background_visible="true" bottom_delta="-127" column_padding="0" draw_border="true" draw_heading="true" follows="left|top" heading_font="SansSerifSmall" heading_height="14" height="120" left="7" mouse_opaque="true" multi_select="false" name="visible_members" width="404"><column label="Nome do membro" name="name" relwidth="0.45" /> | ||
20 | <column label="Ttulo" name="title" relwidth="0.30" /> | ||
21 | <column label="ltimo login" name="online" relwidth="0.25" /> | ||
22 | </name_list> | ||
23 | <text name="incomplete_member_data_str">Recuperando dados do membro</text> | ||
24 | <text name="confirm_group_create_str">Criar este grupo custar L$100. Voc est certo que quer gastar L$100 para criar este grupo? </text> | ||
25 | <text bottom_delta="12" font="SansSerif">Preferncias do grupo </text> | ||
26 | <panel background_opaque="true" background_visible="true" bevel_style="in" bg_alpha_color="blue" bg_opaque_color="0,0,0,0.3" border="true" bottom_delta="-90" follows="left|top" height="82" left_delta="0" mouse_opaque="true" name="preferences_container" width="404"><check_box bottom_delta="-20" follows="left|top" font="SansSerifSmall" height="16" initial_value="true" label="Mostrar na lista do grupo." left="4" mouse_opaque="true" name="show_in_group_list" radio_style="false" text_disabled_color="0.67647, 0.76275, 0.93529, 0.45" tool_tip="Selecione onde esse grupo ser exibido. janela de procura e no perfil dos membros." width="95" /> | ||
27 | <check_box bottom_delta="-18" follows="left|top" font="SansSerifSmall" height="16" initial_value="false" label="Publicar na Web." left_delta="0" mouse_opaque="true" name="publish_on_web" radio_style="false" text_disabled_color="0.67647, 0.76275, 0.93529, 0.45" tool_tip="Selecione onde a informaes desse grupo ir ser publicada na Web." width="95" /> | ||
28 | <check_box bottom_delta="-18" follows="left|top" font="SansSerifSmall" height="16" initial_value="false" label="Abrir o registro" left_delta="0" mouse_opaque="true" name="open_enrollement" radio_style="false" text_disabled_color="0.67647, 0.76275, 0.93529, 0.45" tool_tip="Esse grupo permite que novos membros entrem sem serem convidados" width="95" /> | ||
29 | <check_box bottom_delta="-18" follows="left|top" font="SansSerifSmall" height="16" initial_value="false" label="Tx. de adeso: L$" left_delta="16" max_length="5" mouse_opaque="true" name="check_enrollment_fee" radio_style="false" text_disabled_color="0.67647, 0.76275, 0.93529, 0.45" tool_tip=" necessrio uma taxa de registro." width="95" /> | ||
30 | |||
31 | <spinner bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="0" drop_shadow_visible="true" follows="left|top" font="SansSerif" h_pad="0" halign="left" height="16" increment="5" label_width="10" left_delta="114" max_val="99999" min_val="0" mouse_opaque="true" name="spin_enrollment_fee" text_disabled_color="0.67647, 0.76275, 0.93529, 0.45" tool_tip="Os novos membros tero de pagar a taxa de registro para fazerem parte do grupo." v_pad="0" width="100" /> | ||
32 | |||
33 | <check_box bottom="41" follows="left|top" font="SansSerifSmall" height="16" initial_value="false" label="Adulto" left="132" mouse_opaque="true" name="mature" radio_style="false" text_disabled_color="0.67647, 0.76275, 0.93529, 0.45" tool_tip="Selecione se o grupo possuir contedo adulto." visible="false" width="95" /> | ||
34 | <panel background_opaque="false" border="false" bottom="-38" height="32" left_delta="104" name="title_container" width="160"><text bottom="22" font="SansSerifSmall" left="0" name="active_title_label">Meu ttulo ativo</text> | ||
35 | <combo_box bottom_delta="-20" follows="left|top" height="16" left="0" name="active_title" right="-1" tool_tip="Mude o ttulo que aparece em seu avatar quando o grupo estiver ativo." /> | ||
36 | </panel> | ||
37 | <check_box bottom_delta="-38" follows="left|top" font="SansSerifSmall" height="16" initial_value="false" label="Receba notcias do grupo." left_delta="0" mouse_opaque="true" name="receive_notices" radio_style="false" tool_tip="Voc quer receber notcias desse grupo" width="95" /> | ||
38 | </panel> | ||
39 | </panel> | ||
diff --git a/linden/indra/newview/skins/xui/pt/panel_group_invite.xml b/linden/indra/newview/skins/xui/pt/panel_group_invite.xml deleted file mode 100644 index 4c70c51..0000000 --- a/linden/indra/newview/skins/xui/pt/panel_group_invite.xml +++ /dev/null | |||
@@ -1,10 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <panel border="false" bottom="0" height="380" label="Convidar um membro" left="0" name="invite_panel" select="false" width="210"><text bottom_delta="-78" height="54" left="7" width="200">Voc pode seleciolar vrios residentes para convidar para o seu grupo. Clique 'Selecionador de pessoas' para iniciar.</text> | ||
3 | <button bottom_delta="-10" font="SansSerifSmall" halign="center" height="20" label="Abrir selecionador de pessoas." left="5" name="add_button" tool_tip="" width="200" /> | ||
4 | <name_list allow_calling_card_drop="true" background_visible="true" bottom_delta="-193" column_padding="0" draw_border="true" fg_disable_color="grey" fg_selected_color="black" fg_unselected_color="black" height="189" left="5" multi_select="true" name="invitee_list" tool_tip="Segure a tecla Ctrl e clique no nome dos residentes para selecionar multiplos personagens." width="200" /> | ||
5 | <button bottom_delta="-24" font="SansSerifSmall" halign="center" height="20" label="Remove Selected from List" left_delta="0" name="remove_button" tool_tip="Remove os residentes selecionados acima da lista de convite." width="200" /> | ||
6 | <text bottom_delta="-21" height="16" left="9" width="200">Selecione a funo a ser dada a eles:</text> | ||
7 | <combo_box bottom_delta="-16" follows="left|top" height="16" left_delta="0" name="role_name" tool_tip="Selecione da lista de Funes os que voc est permitido a dar aos membros." width="196" /> | ||
8 | <button bottom="4" font="SansSerifSmall" halign="center" height="20" label="Mandar convite." left="7" name="ok_button" width="120" /> | ||
9 | <button bottom_delta="0" font="SansSerifSmall" halign="center" height="20" label="Cancelar" left_delta="128" name="cancel_button" width="70" /> | ||
10 | </panel> | ||
diff --git a/linden/indra/newview/skins/xui/pt/panel_group_land_money.xml b/linden/indra/newview/skins/xui/pt/panel_group_land_money.xml deleted file mode 100644 index aafddad..0000000 --- a/linden/indra/newview/skins/xui/pt/panel_group_land_money.xml +++ /dev/null | |||
@@ -1,40 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <panel border="true" bottom="0" follows="all" height="470" label="Terra L$" left="1" mouse_opaque="true" name="land_money_tab" select="false" width="418"><text name="help_text">Lotes pertencentes ao grupo so listadas com detalhes de contribuio. Um aviso aparece at que o total de Terras em Uso seja menor ou igual ao Total de Contribuies. As abas de Planejamento, Detalhes e Vendas fornecem informaes sobre as finanas do grupo.</text> | ||
3 | <button bottom="-24" font="SansSerif" halign="center" height="16" label="?" left="391" name="help_button" width="20" /> | ||
4 | <text name="cant_view_group_land_text">Voc no tem permisso para ver as terras pertencentes ao grupo.</text> | ||
5 | <text name="cant_view_group_accounting_text">Voc no tem permisso para ver as informaes sobre as contas do grupo.</text> | ||
6 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-20" drop_shadow_visible="true" follows="left|top" font="SansSerifBig" h_pad="0" halign="left" height="16" left="7" mouse_opaque="true" name="group_land_heading" v_pad="0" width="150">Terra percentence ao grupo</text> | ||
7 | <scroll_list background_visible="true" bottom_delta="-124" column_padding="5" draw_border="true" draw_heading="true" follows="top" font="SansSerifSmall" heading_font="SansSerifSmall" heading_height="14" height="120" left="7" mouse_opaque="true" multi_select="false" name="group_parcel_list" width="404"><column label="Nome do Lote" name="name" width="159" /> | ||
8 | <column label="Regio" name="location" width="159" /> | ||
9 | <column label="rea" name="area" width="63" /> | ||
10 | <column label="" name="hidden" width="-1" /> | ||
11 | </scroll_list> | ||
12 | <button bottom_delta="-24" follows="top" font="SansSerif" halign="center" height="20" label="Mostrar no Mapa" label_selected="Mostrar no Mapa" left="312" mouse_opaque="true" name="map_button" width="100" /> | ||
13 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="0" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="right" height="16" left="7" mouse_opaque="true" name="total_contributed_land_label" v_pad="0" width="120">Contribuio Total:</text> | ||
14 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="0" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" left_delta="125" mouse_opaque="true" name="total_contributed_land_value" v_pad="0" width="100">0 metros quadrados</text> | ||
15 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-18" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="right" height="16" left="7" mouse_opaque="true" name="total_land_in_use_label" v_pad="0" width="120">Total de Terra em Uso:</text> | ||
16 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="0" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" left_delta="125" mouse_opaque="true" name="total_land_in_use_value" v_pad="0" width="150">0 metros quadrados</text> | ||
17 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-18" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="right" height="16" left="7" mouse_opaque="true" name="land_available_label" v_pad="0" width="120">Terra Disponvel:</text> | ||
18 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="0" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" left_delta="125" mouse_opaque="true" name="land_available_value" v_pad="0" width="120">0 metros quadrados</text> | ||
19 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-18" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="right" height="16" left="7" mouse_opaque="true" name="your_contribution_label" v_pad="0" width="120">Sua Contribuio:</text> | ||
20 | <line_editor bevel_style="in" border_style="line" border_thickness="1" bottom_delta="2" follows="left|top" font="SansSerifSmall" height="16" is_unicode="false" left_delta="125" max_length="10" mouse_opaque="true" name="your_contribution_line_editor" prevalidate="non_negative_s32" width="70" /> | ||
21 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-2" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" left_delta="75" mouse_opaque="true" name="your_contribution_max_value_append" v_pad="0" width="58">metros quadrados</text> | ||
22 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="0" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" left_delta="58" mouse_opaque="true" name="your_contribution_max_value" v_pad="0" width="70">(aguardado)</text> | ||
23 | <icon bottom_delta="-27" height="16" image_name="smicon_warn.tga" left="9" name="group_over_limit_icon" width="16" /> | ||
24 | <text border_drop_shadow_visible="false" border_visible="false" bottom_delta="-1" drop_shadow_visible="false" h_pad="0" height="16" left_delta="21" name="group_over_limit_text" text_color="1.00000, 0.81961, 0.00000" v_pad="0" width="400">Membros do grupo precisam contribuir com mais crditos de Terra para garantir a terra em uso.</text> | ||
25 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-25" drop_shadow_visible="true" follows="left|top" font="SansSerifBig" h_pad="0" halign="left" height="16" left="12" mouse_opaque="true" name="group_money_heading" v_pad="0" width="150">Grupo L$</text> | ||
26 | <tab_container border="false" bottom_delta="-189" height="180" left="6" mouse_opaque="false" name="group_money_tab_container" tab_position="top" width="406"><panel border="true" bottom_delta="-260" follows="left|top|right|bottom" height="255" label="Planejamento" left="1" mouse_opaque="true" name="group_money_planning_tab" width="398"><icon bottom="1" height="161" image_name="darkgray.tga" left="1" name="sub_tab_bg" width="402" /> | ||
27 | <text_editor bg_readonly_color="0.784314, 0.819608, 0.8, 1" bottom_delta="7" embedded_items="false" follows="left|top|right|bottom" font="Monospace" height="239" is_unicode="false" left="8" max_length="4096" mouse_opaque="true" name="group_money_planning_text" width="382" word_wrap="false">Computando...</text_editor> | ||
28 | </panel> | ||
29 | <panel border="true" bottom_delta="-250" follows="left|top|right|bottom" height="250" label="Detalhes" left="1" mouse_opaque="true" name="group_money_details_tab" width="398"><icon bottom="1" height="161" image_name="darkgray.tga" left="1" name="sub_tab_bg" width="402" /> | ||
30 | <text_editor bg_readonly_color="0.784314, 0.819608, 0.8, 1" bottom="26" embedded_items="false" follows="left|top|right|bottom" font="Monospace" height="216" is_unicode="false" left="8" max_length="4096" mouse_opaque="true" name="group_money_details_text" width="382" word_wrap="false">Computando...</text_editor> | ||
31 | <button bottom_delta="-22" follows="left|bottom" font="SansSerif" halign="center" height="20" label="< Cedo" label_selected="< Cedo" left="24" mouse_opaque="true" name="earlier_details_button" tool_tip="Voltar no Tempo" width="80" /> | ||
32 | <button bottom_delta="0" follows="right|bottom" font="SansSerif" halign="center" height="20" label="Tarde >" label_selected="Tarde >" left_delta="270" mouse_opaque="true" name="later_details_button" tool_tip="Adiantar o Tempo" width="80" /> | ||
33 | </panel> | ||
34 | <panel border="true" bottom_delta="-250" follows="left|top|right|bottom" height="250" label="Vendas" left="1" mouse_opaque="true" name="group_money_sales_tab" width="398"><icon bottom="1" height="161" image_name="darkgray.tga" left="1" name="sub_tab_bg" width="402" /> | ||
35 | <text_editor bg_readonly_color="0.784314, 0.819608, 0.8, 1" bottom_delta="25" embedded_items="false" follows="left|top|right|bottom" font="Monospace" height="216" is_unicode="false" left="8" max_length="4096" mouse_opaque="true" name="group_money_sales_text" width="382" word_wrap="false">Computando...</text_editor> | ||
36 | <button bottom_delta="-22" follows="left|bottom" font="SansSerif" halign="center" height="20" label="< Mais Cedo" label_selected="< Mais Cedo" left="24" mouse_opaque="true" name="earlier_sales_button" tool_tip="Voltar no Tempo" width="80" /> | ||
37 | <button bottom_delta="0" follows="right|bottom" font="SansSerif" halign="center" height="20" label="Mais Tarde" label_selected="Mais Tarde" left_delta="270" mouse_opaque="true" name="later_sales_button" tool_tip="Adiantar o Tempo" width="80" /> | ||
38 | </panel> | ||
39 | </tab_container> | ||
40 | </panel> | ||
diff --git a/linden/indra/newview/skins/xui/pt/panel_group_notices.xml b/linden/indra/newview/skins/xui/pt/panel_group_notices.xml deleted file mode 100644 index 7a256a8..0000000 --- a/linden/indra/newview/skins/xui/pt/panel_group_notices.xml +++ /dev/null | |||
@@ -1,41 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <panel border="true" bottom="0" follows="all" height="466" label="Notcias" left="1" mouse_opaque="true" name="notices_tab" width="418"><text name="help_text">As observaes so uma maneira rpida de comunicar-se atravs de um grupo transmitindo uma mensagem e entregando um artigo opcionalmente unido. Voc pode desligar observaes na aba geral. </text> | ||
3 | <text name="no_notices_text">No h notcias</text> | ||
4 | <button bottom="-24" font="SansSerif" halign="center" height="16" label="?" label_selected="?" left="391" name="help_button" width="20" /> | ||
5 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-20" drop_shadow_visible="true" font="SansSerifBig" h_pad="0" halign="left" height="16" left="7" mouse_opaque="true" name="lbl" v_pad="0" width="436">Arquivo de notcias do grupo</text> | ||
6 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-20" drop_shadow_visible="true" font="SansSerifSmall" h_pad="0" halign="left" height="16" left_delta="0" mouse_opaque="true" name="lbl2" v_pad="0" width="436">As notcias so mantidas por 30 dias. Clicar na notcia que voc desejar ver.</text> | ||
7 | <scroll_list background_visible="false" bottom_delta="-130" column_padding="5" draw_border="true" draw_heading="true" enabled="true" fg_unselected_color="200,200,200,255" heading_font="SansSerifSmall" heading_height="14" height="116" left="7" mouse_opaque="true" multi_select="false" name="notice_list" width="404"><column label="" name="icon" width="16" /> | ||
8 | <column label="Assunto" name="subject" width="155" /> | ||
9 | <column label="Para" name="from" width="125" /> | ||
10 | <column label="Data" name="date" width="85" /> | ||
11 | <column name="sort" width="-1" /> | ||
12 | </scroll_list> | ||
13 | <text height="0" name="notice_list_none_found" visible="false">Nenhum encontrado</text> | ||
14 | <button bottom_delta="-18" font="SansSerif" halign="center" height="20" label="Criar nova notcia" label_selected="Criar nova notci" left_delta="0" mouse_opaque="true" name="create_new_notice" width="150" /> | ||
15 | <button bottom_delta="0" font="SansSerif" halign="center" height="20" label="Atualizar Lista" label_selected="Atualizar Lista" left="282" mouse_opaque="true" name="refresh_notices" width="130" /> | ||
16 | <panel border="false" bottom="0" follows="all" height="275" label="Criar nova notcia" left="1" mouse_opaque="true" name="panel_create_new_notice" width="418"><text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-18" drop_shadow_visible="true" font="SansSerifBig" h_pad="0" halign="left" height="16" left="7" mouse_opaque="false" name="lbl" v_pad="0" width="436">Criar notcia</text> | ||
17 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-20" drop_shadow_visible="true" font="SansSerifSmall" h_pad="0" halign="left" height="16" left_delta="0" mouse_opaque="true" name="lbl2" v_pad="0" width="436">Voc deve colocar um assunto para enviar uma notcia.</text> | ||
18 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-63" drop_shadow_visible="true" font="SansSerifSmall" h_pad="0" halign="right" height="16" left="7" mouse_opaque="true" name="lbl3" v_pad="0" width="55">Assunto:</text> | ||
19 | <line_editor bevel_style="in" bg_readonly_color="0, 0, 0, 0" border_style="line" border_thickness="1" bottom_delta="0" font="SansSerifSmall" height="16" is_unicode="false" left_delta="58" max_length="63" mouse_opaque="true" name="create_subject" prevalidate="printable_not_pipe" width="264" /> | ||
20 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-18" drop_shadow_visible="true" font="SansSerifSmall" h_pad="0" halign="right" height="16" left="7" mouse_opaque="true" name="lbl4" v_pad="0" width="55">Mensagem: </text> | ||
21 | <text_editor bg_readonly_color="0, 0, 0, 0" bottom_delta="-106" embedded_items="false" font="SansSerifSmall" height="120" hide_scrollbar="true" is_unicode="false" left_delta="58" max_length="511" mouse_opaque="true" name="create_message" width="346" word_wrap="true" /> | ||
22 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-19" drop_shadow_visible="true" font="SansSerifSmall" h_pad="0" halign="right" height="16" left="7" mouse_opaque="true" name="lbl5" v_pad="0" width="55">Anexo:</text> | ||
23 | <line_editor bg_visible="false" border_visible="false" bottom_delta="-2" enabled="false" font="SansSerifSmall" height="16" is_unicode="false" left_delta="59" max_length="63" mouse_opaque="false" name="create_inventory_name" text_readonly_color="0.784, 0.819, 0.8, 1" width="264" /> | ||
24 | <icon bottom_delta="0" height="16" left_delta="0" mouse_opaque="false" name="create_inv_icon" width="16" /> | ||
25 | <button bottom_delta="-22" font="SansSerif" halign="center" height="20" label="Remover o anexo" label_selected="Remover o anexo" left="66" mouse_opaque="true" name="remove_attachment" width="135" /> | ||
26 | <button bottom_delta="0" font="SansSerif" halign="center" height="20" label="Enviar a notcia" label_selected="Enviar a notcia" left="310" mouse_opaque="true" name="send_notice" width="100" /> | ||
27 | <panel bevel_style="in" border="true" bottom="172" height="76" left="335" name="drop_target2" width="76" /> | ||
28 | <icon bottom_delta="7" height="64" image_name="icon_groupnoticeinventory.tga" left_delta="5" mouse_opaque="true" name="drop_icon" width="64" /> | ||
29 | <panel bottom="0" height="466" left="0" mouse_opaque="false" name="drop_target" tool_tip="Arrastar um artigo do inventrio para enviar a notcia com observao." width="422" /> | ||
30 | </panel> | ||
31 | <panel border="false" bottom="0" follows="all" height="275" label="Visualizar" left="1" mouse_opaque="true" name="panel_view_past_notice" width="418"><text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-18" drop_shadow_visible="true" font="SansSerifBig" h_pad="0" halign="left" height="16" left="7" mouse_opaque="false" name="lbl" v_pad="0" width="436">Notcia arquivada</text> | ||
32 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-20" drop_shadow_visible="true" font="SansSerifSmall" h_pad="0" halign="left" height="16" left_delta="0" mouse_opaque="true" name="lbl2" v_pad="0" width="436">To send a new notice, click the 'Create New Notice' button above.</text> | ||
33 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-40" drop_shadow_visible="true" font="SansSerifSmall" h_pad="0" halign="right" height="16" left="7" mouse_opaque="true" name="lbl3" v_pad="0" visible="false" width="55">Asunto:</text> | ||
34 | <line_editor bevel_style="in" bg_readonly_color="0, 0, 0, 0" border_style="line" border_thickness="1" bottom_delta="0" enabled="false" font="SansSerifSmall" height="16" is_unicode="false" left_delta="58" max_length="63" mouse_opaque="true" name="view_subject" text_readonly_color="200,200,200, 255" visible="false" width="346" /> | ||
35 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-18" drop_shadow_visible="true" font="SansSerifSmall" h_pad="0" halign="right" height="16" left="7" mouse_opaque="true" name="lbl4" v_pad="0" visible="false" width="55">Mensagem:</text> | ||
36 | <text_editor bg_readonly_color="0, 0, 0, 0" bottom_delta="-145" embedded_items="false" enabled="false" font="SansSerifSmall" height="175" hide_scrollbar="true" is_unicode="false" left_delta="0" max_length="511" mouse_opaque="true" name="view_message" text_readonly_color="200,200,200, 255" width="404" word_wrap="true" /> | ||
37 | <button bottom_delta="-24" font="SansSerif" halign="center" height="20" label="Abrir o anexo" label_selected="Abrir o anexo" left="7" mouse_opaque="true" name="open_attachment" width="110" /> | ||
38 | <line_editor bg_visible="false" border_visible="false" bottom_delta="3" enabled="false" font="SansSerifSmall" height="16" is_unicode="false" left="120" max_length="63" mouse_opaque="false" name="view_inventory_name" text_readonly_color="0.784, 0.819, 0.8, 1" width="264" /> | ||
39 | <icon bottom_delta="0" height="16" left_delta="0" mouse_opaque="false" name="view_inv_icon" width="16" /> | ||
40 | </panel> | ||
41 | </panel> | ||
diff --git a/linden/indra/newview/skins/xui/pt/panel_group_roles.xml b/linden/indra/newview/skins/xui/pt/panel_group_roles.xml deleted file mode 100644 index e11c9b6..0000000 --- a/linden/indra/newview/skins/xui/pt/panel_group_roles.xml +++ /dev/null | |||
@@ -1,102 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <panel border="true" bottom="0" height="466" label="Membros e Funes" left="1" name="roles_tab" width="418"><text name="default_needs_apply_text">Existem alteraes </text> | ||
3 | |||
4 | <text name="want_apply_text">Voc quer aplicar essas alteraes? </text> | ||
5 | |||
6 | <text name="cant_delete_role">Todos os proprietrios possuem funes especiais que no podem ser apagadas.</text> | ||
7 | |||
8 | <button bottom="-24" font="SansSerif" halign="center" height="16" label="?" left="391" name="help_button" width="20" /> | ||
9 | |||
10 | <panel border="false" bottom="-24" height="24" left="7" name="members_header" visible="true" width="380"> | ||
11 | <text bottom_delta="-20" font="SansSerifBig" halign="left" height="16" left="0" name="static" width="150">Membros e Funes</text> | ||
12 | |||
13 | |||
14 | <text bottom_delta="-36" font="SansSerifSmall" halign="left" height="32" left="0" name="static2" width="394">So atribudos funes com habilidades aos membros do grupo. | ||
15 | Estes ajustes podem ser customizados para uma flexibilidade maior.</text> | ||
16 | </panel> | ||
17 | <panel border="false" bottom_delta="0" height="24" left="7" name="roles_header" visible="false" width="380"><text bottom_delta="-20" font="SansSerifBig" halign="left" height="16" left="0" name="static" width="100">Funes</text> | ||
18 | |||
19 | <text bottom_delta="-20" font="SansSerifSmall" halign="left" height="16" left="0" name="role_properties_modifiable" visible="false" width="394">Selecionar uma funo abaixo. Voc pode modificar o nome do seu ttulo, a descrio e o membro. </text> | ||
20 | |||
21 | <text bottom_delta="0" font="SansSerifSmall" halign="left" height="16" left="0" name="role_properties_not_modifiable" visible="true" width="394">Selecione abaixo para verificar suas habilidades em relao as funes. </text> | ||
22 | |||
23 | <text bottom_delta="-14" font="SansSerifSmall" halign="left" height="16" left="0" name="role_actions_modifiable" visible="false" width="394">Voc tambm pode atribuir habilidades.</text> | ||
24 | |||
25 | <text bottom_delta="0" font="SansSerifSmall" halign="left" height="16" left="0" name="role_actions_not_modifiable" visible="true" width="394">Voc pode ver, mas no alterar.</text> | ||
26 | |||
27 | </panel> | ||
28 | <panel border="false" bottom_delta="-20" height="24" left="7" name="actions_header" visible="false" width="380"><text bottom_delta="0" font="SansSerifBig" halign="left" height="16" left="0" name="static" width="100">Habilidades</text> | ||
29 | <text bottom_delta="-36" font="SansSerifSmall" halign="left" height="32" left="0" name="static2" width="394">Voc pode ver a descrio dos membros e suas habiliades.</text> | ||
30 | </panel> | ||
31 | <tab_container border="false" bottom_delta="-190" height="180" left="6" name="roles_tab_container" tab_position="top" width="406"><panel border="true" bottom="0" height="164" label="Membros" left="1" name="members_sub_tab" select="true" tool_tip="Membros" width="406"><icon bottom="1" height="162" image_name="darkgray.tga" left="1" name="sub_tab_bg" width="402" /> | ||
32 | <line_editor bevel_style="in" bg_readonly_color="0, 0, 0, 0" border_style="line" border_thickness="1" bottom="143" follows="left|top" font="SansSerifSmall" height="16" is_unicode="false" left="4" max_length="63" mouse_opaque="true" name="search_text" width="100" /> | ||
33 | <button bottom_delta="-2" font="SansSerifSmall" halign="center" height="20" label="Pesquisar" left_delta="105" name="search_button" width="60" /> | ||
34 | <button bottom_delta="0" enabled="false" font="SansSerifSmall" halign="center" height="20" label="Mostrar todos" left_delta="65" name="show_all_button" width="80" /> | ||
35 | <name_list allow_calling_card_drop="false" background_visible="true" bottom_delta="-121" column_padding="0" draw_border="true" draw_heading="true" fg_disable_color="grey" fg_selected_color="black" fg_unselected_color="black" heading_font="SansSerifSmall" heading_height="14" height="120" left="4" multi_select="true" name="member_list" width="396"><column label="Nome do membro" name="name" width="136" /> | ||
36 | <column label="Tarefa cedida." name="donated" width="136" /> | ||
37 | <column label="ltimo login" name="online" width="116" /> | ||
38 | </name_list> | ||
39 | <button bottom_delta="-20" font="SansSerif" halign="center" height="19" label="Convidar nova pessoa" left="4" name="member_invite" width="146" /> | ||
40 | <button bottom_delta="0" font="SansSerif" halign="center" height="19" label="Sair do Grupo" left="-153" name="member_eject" width="146" /> | ||
41 | <text name="help_text">Voc pode adicionar ou remover as funes atribudas ou selecionar mltiplos membros pressionando o Ctrl e clicando em seus nomes. </text> | ||
42 | <icon image_name="inv_folder_plain_closed.tga" name="power_folder_icon" /> | ||
43 | </panel> | ||
44 | <panel background_visible="true" border="true" bottom="0" height="164" label="Funes" left="1" name="roles_sub_tab" width="398"><icon bottom="1" height="162" image_name="darkgray.tga" left="1" name="sub_tab_bg" width="402" /> | ||
45 | <line_editor bevel_style="in" bg_readonly_color="0, 0, 0, 0" border_style="line" border_thickness="1" bottom="143" follows="left|top" font="SansSerifSmall" height="16" is_unicode="false" left="4" max_length="63" mouse_opaque="true" name="search_text" width="100" /> | ||
46 | <button bottom_delta="-2" font="SansSerifSmall" halign="center" height="20" label="Busca" left_delta="105" name="search_button" width="60" /> | ||
47 | <button bottom_delta="0" enabled="false" font="SansSerifSmall" halign="center" height="20" label="Mostrar todos" left_delta="65" name="show_all_button" width="80" /> | ||
48 | <scroll_list allow_calling_card_drop="false" background_visible="true" bottom_delta="-120" column_padding="0" draw_border="true" draw_heading="true" enabled="true" fg_disable_color="grey" fg_selected_color="black" fg_unselected_color="black" follows="left|top" heading_font="SansSerifSmall" heading_height="14" height="120" left="4" mouse_opaque="true" multi_select="false" name="role_list" width="396"><column label="Nome da funo" name="name" width="126" /> | ||
49 | <column label="Ttulo" name="title" width="186" /> | ||
50 | <column label="Membro" name="members" width="76" /> | ||
51 | </scroll_list> | ||
52 | <button bottom_delta="-21" font="SansSerif" halign="center" height="19" label="Criar nova funo..." left="4" name="role_create" width="146" /> | ||
53 | <button bottom_delta="0" font="SansSerif" halign="center" height="19" label="Apagar funo" left="-153" name="role_delete" width="146" /> | ||
54 | <text name="help_text">Funes e habilidades permitidas para os membros da lista. Os membros podero ter um ou mais funes. O grupo poder ter 10 ou mais funes, Inclundo as funes dos membros e do dono do grupo.</text> | ||
55 | <icon height="0" image_name="inv_folder_plain_closed.tga" name="power_folder_icon" width="0" /> | ||
56 | <icon height="0" image_name="checkbox_enabled_true.tga" name="power_all_have_icon" width="0" /> | ||
57 | <icon height="0" image_name="checkbox_enabled_false.tga" name="power_partial_icon" width="0" /> | ||
58 | </panel> | ||
59 | <panel background_visible="true" bg_alpha_color="red" border="true" bottom="0" height="164" label="Habilidades" left="1" name="actions_sub_tab" width="398"><icon bottom="1" height="162" image_name="darkgray.tga" left="1" name="sub_tab_bg" width="402" /> | ||
60 | <line_editor bevel_style="in" bg_readonly_color="0, 0, 0, 0" border_style="line" border_thickness="1" bottom="143" follows="left|top" font="SansSerifSmall" height="16" is_unicode="false" left="6" max_length="63" mouse_opaque="true" name="search_text" width="100" /> | ||
61 | <button bottom_delta="-2" font="SansSerifSmall" halign="center" height="20" label="Busca" left_delta="105" name="search_button" width="60" /> | ||
62 | <button bottom_delta="0" enabled="false" font="SansSerifSmall" halign="center" height="20" label="Mostrar todos" left_delta="65" name="show_all_button" width="80" /> | ||
63 | <scroll_list allow_calling_card_drop="false" background_visible="true" bottom_delta="-134" column_padding="0" draw_border="true" draw_heading="false" fg_disable_color="grey" fg_selected_color="black" fg_unselected_color="black" follows="left|top" height="134" left="6" mouse_opaque="true" multi_select="true" name="action_list" tool_tip="Selecionar habilidade e ver detalhes." width="392"><column label="" name="icon" width="18" /> | ||
64 | <column label="" name="action" width="356" /> | ||
65 | </scroll_list> | ||
66 | <text name="help_text">Habilidades permite que os membros faam coisas especificas dentro do grupo.H uma grande variedade de habilidades.</text> | ||
67 | <icon image_name="inv_folder_plain_closed.tga" name="power_folder_icon" /> | ||
68 | </panel> | ||
69 | </tab_container> | ||
70 | <panel border="false" bottom_delta="-235" height="215" left="7" name="members_footer" select="true" visible="true" width="406"><text bottom_delta="0" font="SansSerif" halign="left" height="16" left="0" name="static" width="100">Funes atribudas</text> | ||
71 | <text bottom_delta="0" font="SansSerif" halign="left" height="16" left="150" name="static2" width="200">Habilidades permitidas</text> | ||
72 | <scroll_list bottom_delta="-199" draw_border="true" draw_heading="false" enabled="false" height="198" left="0" multi_select="false" name="member_assigned_roles" width="145"><column label="" name="checkbox" width="18" /> | ||
73 | <column label="" name="role" width="109" /> | ||
74 | </scroll_list> | ||
75 | <scroll_list bottom_delta="0" draw_border="true" draw_heading="false" enabled="false" height="198" left="150" multi_select="false" name="member_allowed_actions" tool_tip="Ver detalhes das habilidades permitidas" width="254"><column label="" name="icon" width="14" /> | ||
76 | <column label="" name="action" width="224" /> | ||
77 | </scroll_list> | ||
78 | </panel> | ||
79 | <panel border="false" bottom_delta="0" height="215" left="7" name="roles_footer" visible="false" width="406"><text bottom_delta="0" font="SansSerif" halign="left" height="16" left="0" name="static" width="100">Nome</text> | ||
80 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="0" drop_shadow_visible="false" font="SansSerif" halign="left" height="16" left="150" name="static2" text_readonly_color="0.57647, 0.66275, 0.83529" width="100">Descrio</text> | ||
81 | <line_editor bevel_style="in" bg_readonly_color="0, 0, 0, 0" bg_visible="false" border_drop_shadow_visible="false" border_style="line" border_thickness="1" border_visible="false" bottom_delta="-16" drop_shadow_visible="false" follows="left|top" font="SansSerifSmall" height="16" is_unicode="false" left="0" max_length="20" mouse_opaque="true" name="role_name" text_readonly_color="0.57647, 0.66275, 0.83529" width="145">Empregados</line_editor> | ||
82 | <text bottom_delta="-16" font="SansSerif" halign="left" height="16" left="0" name="static3" width="100">Ttulo</text> | ||
83 | <line_editor bevel_style="in" bg_visible="false" border_drop_shadow_visible="false" border_style="line" border_thickness="1" border_visible="false" bottom_delta="-16" drop_shadow_visible="false" follows="left|top" font="SansSerifSmall" height="16" is_unicode="false" left="0" max_length="20" mouse_opaque="true" name="role_title" text_readonly_color="0.57647, 0.66275, 0.83529" width="145">(Esperar)</line_editor> | ||
84 | <text_editor bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="0" drop_shadow_visible="false" font="SansSerifSmall" h_pad="0" halign="left" height="48" hide_scrollbar="true" left="150" max_length="254" name="role_description" text_readonly_color="0.57647, 0.66275, 0.83529" v_pad="0" width="254" word_wrap="true">(Esperar)</text_editor> | ||
85 | <text bottom_delta="-26" font="SansSerif" halign="left" height="16" left="0" name="static4" width="120">Membros atribudos</text> | ||
86 | <text bottom_delta="0" font="SansSerif" halign="left" height="16" left="150" name="static5" tool_tip="A list of Abilities the currently selected role can perform." width="200">Habilidades permitidas</text> | ||
87 | |||
88 | <scroll_list bottom_delta="-105" draw_border="true" enabled="false" height="105" left="0" multi_select="false" name="role_assigned_members" width="145" /> | ||
89 | <check_box bottom_delta="-20" follows="left|top" font="SansSerifSmall" height="16" initial_value="false" label="Membros visivis" left="0" mouse_opaque="true" name="role_visible_in_list" radio_style="false" tool_tip="Selecione se os membros estaro visivis na aba diversos para as pessoas de fora do grupo." width="361" /> | ||
90 | <scroll_list bottom_delta="0" draw_border="true" draw_heading="false" height="125" left="150" multi_select="false" name="role_allowed_actions" tool_tip="Para ver detalhes de cada habiliadade permitida veja a aba correspondente." width="254"><column label="" name="icon" width="2" /> | ||
91 | <column label="" name="checkbox" width="16" /> | ||
92 | <column label="" name="action" width="220" /> | ||
93 | </scroll_list> | ||
94 | </panel> | ||
95 | <panel border="false" bottom_delta="0" height="215" left="7" name="actions_footer" visible="false" width="406"><text bottom_delta="0" font="SansSerif" halign="left" height="16" left="0" name="static" width="100">Descrio</text> | ||
96 | <text_editor bevel_style="in" bg_readonly_color="0,0,0,0.3" bottom_delta="-48" enabled="false" font="SansSerifSmall" h_pad="0" halign="left" height="48" hide_scrollbar="true" left="0" max_length="512" name="action_description" text_readonly_color="white" v_pad="0" width="404" word_wrap="true">Essa habilidade permite tirar alguem do grupo. somente o dono do grupo poder retirar outro dono do grupo.</text_editor> | ||
97 | <text bottom_delta="-26" font="SansSerif" halign="left" height="16" left="0" name="static2" width="100">Funes com habilidades</text> | ||
98 | <text bottom_delta="0" font="SansSerif" halign="left" height="16" left="150" name="static3" width="150">Membros com habilidades</text> | ||
99 | <scroll_list bottom_delta="-125" draw_border="true" enabled="false" height="125" left="0" multi_select="false" name="action_roles" width="145" /> | ||
100 | <name_list background_opaque="true" background_visible="true" bg_alpha_color="blue" bg_opaque_color="grey" bottom_delta="0" draw_border="true" enabled="false" height="125" left="150" multi_select="false" name="action_members" width="254" /> | ||
101 | </panel> | ||
102 | </panel> | ||
diff --git a/linden/indra/newview/skins/xui/pt/panel_group_voting.xml b/linden/indra/newview/skins/xui/pt/panel_group_voting.xml deleted file mode 100644 index cbca480..0000000 --- a/linden/indra/newview/skins/xui/pt/panel_group_voting.xml +++ /dev/null | |||
@@ -1,43 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <panel border="true" bottom="0" follows="all" height="466" label="Propostas" left="1" mouse_opaque="true" name="voting_tab" width="418"><text name="help_text">As propostas do grupo poder mostrar para os outros como esse determinado grupo se sente sobre determinado assunto.Se voc possuir poder de propriedade voc poder abrir novas propostas, votar em propostas abertas e visualizar propostas antigas.</text> | ||
3 | <panel background_opaque="true" background_visible="true" bevel_style="in" bg_alpha_color="blue" bg_opaque_color="0,0,0,0.3" border="true" bottom_delta="-210" follows="left|top" height="170" left="7" mouse_opaque="false" name="open_proposals_container" width="404" /> | ||
4 | <panel background_opaque="true" background_visible="true" bevel_style="in" bg_alpha_color="blue" bg_opaque_color="0,0,0,0.3" border="true" bottom="7" follows="left|top" height="175" left="7" mouse_opaque="false" name="voting_history_container" width="404" /> | ||
5 | <button bottom="-24" font="SansSerif" halign="center" height="16" label="?" left="391" name="help_button" width="20" /> | ||
6 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="446" drop_shadow_visible="true" follows="left|top" font="SansSerifBig" h_pad="0" halign="left" height="16" left="7" mouse_opaque="false" name="proposal_header" v_pad="0" width="363">Abrir propostas do grupo</text> | ||
7 | <text name="proposals_header_view_txt">Abrir propostas do grupo</text> | ||
8 | <text name="proposals_header_create_txt">Criar proposta</text> | ||
9 | <text name="proposals_header_vote_txt">Votar na proposta</text> | ||
10 | <text name="empty_proposal_txt">A proposta que voc est tentando criar encontra-se vazia. </text> | ||
11 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="18" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="32" left="7" mouse_opaque="false" name="proposal_instructions" v_pad="0" width="350">Clique duas vezes sobre a proposta que desejar votar.</text> | ||
12 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-16" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" left="10" mouse_opaque="false" name="proposal_lbl" v_pad="0" visible="true" width="396">Proposta:</text> | ||
13 | <scroll_list bottom_delta="-121" column_padding="5" column_widths="200,120,40" draw_border="true" height="120" left="11" mouse_opaque="true" multi_select="false" name="proposals" width="396" /> | ||
14 | <button bottom_delta="-25" follows="left|top" font="SansSerif" halign="center" height="20" label="Criar proposta" label_selected="Criar proposta" left_delta="-0" mouse_opaque="true" name="btn_proposal" width="160" /> | ||
15 | <button bottom_delta="0" follows="left|top" font="SansSerif" halign="center" height="20" label="Ver proposta" label_selected="Ver proposta" left="247" mouse_opaque="true" name="btn_view_proposal_item" width="160" /> | ||
16 | <text_editor background_visible="true" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="300" drop_shadow_visible="false" embedded_items="false" follows="left|top" font="SansSerif" height="90" is_unicode="false" left="11" max_length="254" mouse_opaque="true" name="proposal_text" text_readonly_color="0.57647, 0.66275, 0.83529" width="289" word_wrap="true" /> | ||
17 | <button bottom_delta="0" follows="left|top" font="SansSerif" halign="center" height="20" label="Ver Lista" label_selected="Ver Lista" left="304" mouse_opaque="true" name="btn_view_proposal_list" width="101" /> | ||
18 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-23" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="right" height="20" left="8" mouse_opaque="false" name="quorum_lbl" v_pad="0" width="65">Quantidade:</text> | ||
19 | <spinner bottom_delta="0" decimal_digits="0" follows="left|top" height="20" increment="1" initial_val="0" left="78" max_val="138" min_val="1" mouse_opaque="true" name="quorum" text_disabled_color="orange" tool_tip="# do nmero de votos necessrio para eleger a proposta" width="54" /># o nmero de votos necessrio para eleger a proposta | ||
20 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-0" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="20" left_delta="60" mouse_opaque="false" name="quorum_text" v_pad="0" width="300">x o nmero de membros fora do grupo.</text> | ||
21 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-23" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="right" height="20" left="8" mouse_opaque="false" name="duration_lbl" v_pad="0" width="65">Durao:</text> | ||
22 | <spinner bottom_delta="0" decimal_digits="0" follows="left|top" height="20" increment="1" initial_val="7" left_delta="70" max_val="30" min_val="1" mouse_opaque="true" name="duration" tool_tip="# de dias que a eleio ir durar." width="45" /># o nmero de dias da eleio. | ||
23 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="0" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="20" left_delta="52" mouse_opaque="false" name="duration_text" v_pad="0" width="300">dias</text> | ||
24 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="0" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="right" height="20" left="210" mouse_opaque="false" name="majority_lbl" v_pad="0" visible="false" width="65" /> | ||
25 | <radio_group bottom_delta="72" draw_border="false" follows="left|top" height="60" left="300" mouse_opaque="true" name="majority" text_disabled_color="0.67647, 0.76275, 0.93529, 0.45" tool_tip="A maioria de 2/3 dos votos necessrio para ganhar" width="107">Simples maioria 2/3 maioria unanime</radio_group> | ||
26 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-72" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="right" height="20" left="12" mouse_opaque="false" name="start_lbl" v_pad="0" width="70">Iniciar voto:</text> | ||
27 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="0" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="20" left_delta="75" mouse_opaque="false" name="start_date" v_pad="0" width="200" /> | ||
28 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-16" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="right" height="20" left="12" mouse_opaque="false" name="end_lbl" v_pad="0" width="70">Voto final:</text> | ||
29 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="0" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="20" left_delta="75" mouse_opaque="false" name="end_date" v_pad="0" width="200" /> | ||
30 | <button bottom="-218" follows="left|top" font="SansSerif" halign="center" height="20" label="Submeter a proposta" label_selected="Submeter a proposta" left="200" mouse_opaque="true" name="btn_submit" width="120" /> | ||
31 | <button bottom_delta="0" follows="left|top" font="SansSerif" halign="center" height="20" label="Cancelar" label_selected="Cancelar" left_delta="128" mouse_opaque="true" name="btn_cancel" width="75" /> | ||
32 | <button bottom="-218" follows="top" font="SansSerif" halign="center" height="20" label="Sim" label_selected="Sim" left="246" mouse_opaque="true" name="btn_yes" width="43" /> | ||
33 | <button bottom_delta="0" follows="left|top" font="SansSerif" halign="center" height="20" label="No" label_selected="No" left_delta="48" mouse_opaque="true" name="btn_no" width="43" /> | ||
34 | <button bottom_delta="0" follows="left|top" font="SansSerif" halign="center" height="20" label="Abstencia" label_selected="Abstencia" left_delta="48" mouse_opaque="true" name="btn_abstain" width="63" /> | ||
35 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-255" drop_shadow_visible="true" follows="left|top" font="SansSerifBig" h_pad="0" halign="left" height="10" left="12" mouse_opaque="false" name="txt" v_pad="0" width="363">Histrico de votos do grupo</text> | ||
36 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-28" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" left="12" mouse_opaque="false" name="instructions" v_pad="0" width="400">Selecione a sua opo e d um duplo clique para votar.</text> | ||
37 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-13" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="10" left="10" mouse_opaque="false" name="history_list_lbl" text_wrap="true" v_pad="0" width="396">Aps o voto Voto finalizado</text> | ||
38 | <scroll_list background_visible="true" bottom_delta="-132" column_padding="5" column_widths="220,120" draw_border="true" follows="left|top" height="126" left="10" mouse_opaque="true" multi_select="false" name="history_list" width="396" /> | ||
39 | <button bottom_delta="-25" follows="top" font="SansSerif" halign="center" height="20" label="Visualizar Item" label_selected="Visualizar Item" left="287" mouse_opaque="true" name="btn_view_history_item" width="120" /> | ||
40 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="157" drop_shadow_visible="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="right" height="10" left="10" mouse_opaque="false" name="vote_text_lbl" v_pad="0" width="70">Resultado:</text> | ||
41 | <text_editor bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="-132" drop_shadow_visible="false" embedded_items="false" follows="left|top" font="SansSerif" h_pad="0" height="126" hide_scrollbar="true" is_unicode="false" left="10" max_length="1024" mouse_opaque="true" name="vote_text" text_readonly_color="0.57647, 0.66275, 0.83529" text_wrap="true" v_pad="0" width="396" word_wrap="false" /> | ||
42 | <button bottom_delta="-25" follows="top" font="SansSerif" halign="center" height="20" label="Visualizar lista" label_selected="Visualizar lista" left="287" mouse_opaque="true" name="btn_view_history_list" width="120" /> | ||
43 | </panel> | ||
diff --git a/linden/indra/newview/skins/xui/pt/panel_land_covenant.xml b/linden/indra/newview/skins/xui/pt/panel_land_covenant.xml deleted file mode 100644 index 49b9ae9..0000000 --- a/linden/indra/newview/skins/xui/pt/panel_land_covenant.xml +++ /dev/null | |||
@@ -1,16 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <panel border="true" bottom="0" follows="top|left" height="220" left="0" name="Covenant" title="Corretor" width="480"><text bg_readonly_color="clear" bottom_delta="-5" follows="left|top" font="SansSerifSmall" height="20" left="180" name="covenant_timestamp_text" text_readonly_color="white" width="250" /> | ||
3 | <text bottom_delta="-20" follows="left|top" font="SansSerifSmall" height="20" left="10" name="region_name_lbl" width="100">Regio:</text> | ||
4 | <text bg_readonly_color="clear" bottom_delta="0" follows="left|top" font="SansSerifSmall" height="20" left="120" name="region_name_text" text_readonly_color="white" width="150">(desconhecido)</text> | ||
5 | <text bottom_delta="-20" follows="left|top" font="SansSerifSmall" height="20" left="10" name="estate_name_lbl" width="100">Propriedade:</text> | ||
6 | <text bg_readonly_color="clear" bottom_delta="0" follows="left|top" font="SansSerifSmall" height="20" left="120" name="estate_name_text" text_readonly_color="white" width="150">(desconhecido)</text> | ||
7 | <text bottom_delta="-20" follows="left|top" font="SansSerifSmall" height="20" left="10" name="estate_owner_lbl" width="100">Propriedade:</text> | ||
8 | <text bg_readonly_color="clear" bottom_delta="0" follows="left|top" font="SansSerifSmall" height="20" left="120" name="estate_owner_text" text_readonly_color="white" width="150">(desconhecido)</text> | ||
9 | <text bg_readonly_color="clear" bottom_delta="-20" follows="left|top" font="SansSerif" height="20" left="60" name="resellable_clause" text_readonly_color="white" width="350">Terras compradas nessa regio no podero ser revendidas.</text> | ||
10 | <text bg_readonly_color="clear" bottom_delta="-20" follows="left|top" font="SansSerif" height="20" left="60" name="changeable_clause" text_readonly_color="white" width="375">Terras compradas nessa regio no podero ser compartilhadas ou subdivididas.</text> | ||
11 | <text_editor bg_readonly_color="clear" bottom_delta="-200" enabled="false" follows="left|top" font="SansSerifSmall" height="200" left="15" max_length="65535" name="covenant_editor" text_readonly_color="white" width="425" word_wrap="true" /> | ||
12 | <text hidden="true" name="can_resell">Terras compradas nessa regio podero ser revendidas.</text> | ||
13 | <text hidden="true" name="can_not_resell">Terras compradas nessa regio no podero ser revendidas.</text> | ||
14 | <text hidden="true" name="can_change">Terras compradas nessa regio no podero ser compartilhadas ou subdivididas.</text> | ||
15 | <text hidden="true" name="can_not_change">Terras compradas nessa regio no podero ser compartilhadas ou subdivididas.</text> | ||
16 | </panel> | ||
diff --git a/linden/indra/newview/skins/xui/pt/panel_login.xml b/linden/indra/newview/skins/xui/pt/panel_login.xml deleted file mode 100644 index f2703df..0000000 --- a/linden/indra/newview/skins/xui/pt/panel_login.xml +++ /dev/null | |||
@@ -1,23 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <panel bottom="0" follows="left|top|right|bottom" height="600" hidden="false" left="0" mouse_opaque="true" name="panel_login" width="800"><web_browser border_visible="false" bottom="0" follows="top|left|bottom|right" left="0" name="login_html" right="-1" start_url="data:text/html,%3Chtml%3E%3Chead%3E%3C/head%3E%3Cbody bgcolor=%22#000000%22 text=%22ffffff%22%3E%3Ch1%3E%3Ctt%3Eloading...%3C/tt%3E%3C/h1%3E %3C/body%3E %3C/html%3E" top="-1" /> | ||
3 | <text hidden="true" name="real_url">http://www.secondlifebrasil.com.br/client/capa.aspx?v=1_17_0_12</text> | ||
4 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="54" drop_shadow_visible="true" follows="left|bottom" font="SansSerif" h_pad="0" halign="left" height="20" hidden="false" left="32" mouse_opaque="true" name="first_name_text" v_pad="0" width="120">Primeiro nome:</text> | ||
5 | <line_editor bevel_style="in" border_style="line" border_thickness="1" bottom_delta="-24" follows="left|bottom" font="SansSerif" handle_edit_keys_directly="true" height="20" hidden="false" left="32" max_length="31" mouse_opaque="true" name="first_name_edit" select_all_on_focus_received="true" width="120" /> | ||
6 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="54" drop_shadow_visible="true" follows="left|bottom" font="SansSerif" h_pad="0" halign="left" height="16" hidden="false" left="164" mouse_opaque="true" name="last_name_text" v_pad="0" width="120">Sobrenome:</text> | ||
7 | <line_editor bevel_style="in" border_style="line" border_thickness="1" bottom_delta="-24" follows="left|bottom" font="SansSerif" handle_edit_keys_directly="true" height="20" hidden="false" left="164" max_length="31" mouse_opaque="true" name="last_name_edit" select_all_on_focus_received="true" width="120" /> | ||
8 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="54" drop_shadow_visible="true" follows="left|bottom" font="SansSerif" h_pad="0" halign="left" height="16" hidden="false" left="296" mouse_opaque="true" name="password_text" v_pad="0" width="120">Senha:</text> | ||
9 | <line_editor bevel_style="in" border_style="line" border_thickness="1" bottom_delta="-24" follows="left|bottom" font="SansSerif" handle_edit_keys_directly="true" height="20" hidden="false" left="296" max_length="16" mouse_opaque="true" name="password_edit" select_all_on_focus_received="true" width="120" /> | ||
10 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="10" drop_shadow_visible="true" follows="left|bottom" font="SansSerif" h_pad="0" halign="left" height="16" hidden="false" left="32" mouse_opaque="true" name="start_location_text" v_pad="0" width="85">Localizao inicial:</text> | ||
11 | <combo_box allow_text_entry="true" bottom="8" follows="left|bottom" height="18" hidden="false" left_delta="97" max_chars="128" mouse_opaque="true" name="start_location_combo" width="140"><combo_item name="MyHome" value="My Home">Minha casa</combo_item> | ||
12 | <combo_item name="MyLastLocation" value="My Last Location">Minha ltima localizao</combo_item> | ||
13 | <combo_item name="Typeregionname" value="<Type region name>">< Digite o nome da regio; </combo_item> | ||
14 | </combo_box> | ||
15 | <check_box bottom="10" follows="left|bottom" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Lembrar senha" left_delta="167" mouse_opaque="true" name="remember_check" width="138" /> | ||
16 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="74" drop_shadow_visible="true" follows="left|bottom" font="SansSerifSmall" h_pad="0" halign="left" height="20" hidden="false" left="32" mouse_opaque="true" name="full_screen_text" v_pad="0" width="252">O visor indicar a tela cheia quando entrar. </text> | ||
17 | |||
18 | <button bottom="46" follows="left|bottom" font="SansSerif" halign="center" height="24" hidden="false" label="Preferncias..." label_selected="Preferncias..." left="572" mouse_opaque="true" name="preferences_btn" scale_image="TRUE" width="120" /> | ||
19 | <combo_box allow_text_entry="true" bottom="48" follows="left|bottom" height="18" hidden="false" left_delta="128" max_chars="20" mouse_opaque="true" name="server_combo" width="120" /> | ||
20 | <button bottom_delta="-28" follows="left|bottom" font="SansSerif" halign="center" height="24" hidden="false" label="Conectar" label_selected="Conectar" left="440" mouse_opaque="true" name="connect_btn" scale_image="TRUE" width="120" /> | ||
21 | <button bottom_delta="0" follows="left|bottom" font="SansSerif" halign="center" height="24" hidden="false" label="Sair" label_selected="Sair" left="572" mouse_opaque="true" name="quit_btn" scale_image="TRUE" width="120" /> | ||
22 | <text bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="2" drop_shadow_visible="true" follows="right|bottom" font="SansSerifSmall" h_pad="0" halign="right" height="12" hidden="false" left="698" mouse_opaque="true" name="version_text" v_pad="0" width="100">1.23.4 (5)</text> | ||
23 | </panel> | ||
diff --git a/linden/indra/newview/skins/xui/pt/panel_media_remote.xml b/linden/indra/newview/skins/xui/pt/panel_media_remote.xml deleted file mode 100644 index 017c320..0000000 --- a/linden/indra/newview/skins/xui/pt/panel_media_remote.xml +++ /dev/null | |||
@@ -1,7 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <panel bg_visible="false" border="false" border_visible="false" bottom="-34" enabled="true" follows="left|top" height="20" hidden="false" left="571" mouse_opaque="true" name="music_remote" width="110"><text type="string" length="6" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-15" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="12" hidden="false" left="2" mouse_opaque="true" name="text" v_pad="0" width="77">Filmes</text> | ||
3 | <volume_slider bottom="-20" enabled="true" follows="left|top" height="17" hidden="false" increment="0.05" initial_val="0.125" left="33" max_val="1" min_val="0" mouse_opaque="true" name="volume_slider" tool_tip="Mudar o volume" width="42" /> | ||
4 | <button bottom="-20" enabled="false" follows="left|top" font="SansSerif" halign="center" height="17" hidden="false" image_selected="button_anim_stop_selected.tga" image_unselected="button_anim_stop.tga" label="" label_selected="" left="76" mouse_opaque="true" name="stop_btn" scale_image="true" tool_tip="Parar" width="17" /> | ||
5 | <button bottom="-20" enabled="true" follows="left|top" font="SansSerif" halign="center" height="17" hidden="false" image_selected="button_anim_play_selected.tga" image_unselected="button_anim_play.tga" label="" label_selected="" left="92" mouse_opaque="true" name="play_btn" scale_image="true" tool_tip="Iniciar stream" width="17" /> | ||
6 | <button bottom="-20" enabled="false" follows="left|top" font="SansSerif" halign="center" height="17" hidden="false" image_disabled="button_disabled_32x128.tga" image_disabled_selected="button_disabled_32x128.tga" image_selected="button_anim_pause_selected.tga" image_unselected="button_anim_pause.tga" label="" label_selected="" left="92" mouse_opaque="true" name="pause_btn" scale_image="true" tool_tip="Pausar stream" width="17" /> | ||
7 | </panel> | ||
diff --git a/linden/indra/newview/skins/xui/pt/panel_music_remote.xml b/linden/indra/newview/skins/xui/pt/panel_music_remote.xml deleted file mode 100644 index 272dd5a..0000000 --- a/linden/indra/newview/skins/xui/pt/panel_music_remote.xml +++ /dev/null | |||
@@ -1,7 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <panel bg_visible="false" border="false" border_visible="false" bottom="-34" enabled="true" follows="left|top" height="20" hidden="false" left="571" mouse_opaque="true" name="music_remote" width="110"><text type="string" length="6" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-15" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="12" hidden="false" left="2" mouse_opaque="true" name="text" v_pad="0" width="77">Msica</text> | ||
3 | <volume_slider bottom="-20" enabled="true" follows="left|top" height="17" hidden="false" increment="0.05" initial_val="0.125" left="33" max_val="1" min_val="0" mouse_opaque="true" name="volume_slider" tool_tip="Mudar o volume" width="42" /> | ||
4 | <button bottom="-20" enabled="false" follows="left|top" font="SansSerif" halign="center" height="17" hidden="false" image_selected="button_anim_stop_selected.tga" image_unselected="button_anim_stop.tga" label="" label_selected="" left="76" mouse_opaque="true" name="stop_btn" scale_image="true" tool_tip="Parar" width="17" /> | ||
5 | <button bottom="-20" enabled="true" follows="left|top" font="SansSerif" halign="center" height="17" hidden="false" image_selected="button_anim_play_selected.tga" image_unselected="button_anim_play.tga" label="" label_selected="" left="92" mouse_opaque="true" name="play_btn" scale_image="true" tool_tip="Iniciar stream" width="17" /> | ||
6 | <button bottom="-20" enabled="false" follows="left|top" font="SansSerif" halign="center" height="17" hidden="false" image_disabled="button_disabled_32x128.tga" image_disabled_selected="button_disabled_32x128.tga" image_selected="button_anim_pause_selected.tga" image_unselected="button_anim_pause.tga" label="" label_selected="" left="92" mouse_opaque="true" name="pause_btn" scale_image="true" tool_tip="Pausar stream" width="17" /> | ||
7 | </panel> | ||
diff --git a/linden/indra/newview/skins/xui/pt/panel_overlaybar.xml b/linden/indra/newview/skins/xui/pt/panel_overlaybar.xml deleted file mode 100644 index ae3ae3a..0000000 --- a/linden/indra/newview/skins/xui/pt/panel_overlaybar.xml +++ /dev/null | |||
@@ -1,9 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <panel bottom="51" enabled="true" follows="left|right|bottom" height="42" hidden="false" left="-1" mouse_opaque="false" name="overlay" width="1682"><button bottom="-41" enabled="true" follows="left|top" font="SansSerif" halign="center" height="20" hidden="false" label="MI Recebida" label_selected="MI Recebida" left="0" mouse_opaque="true" name="IM Received" scale_image="true" tool_tip="Voc tem uma mensagem instantnea pendente. Clique para visualizar." width="102" /> | ||
3 | <button bottom="-41" enabled="true" follows="left|top" font="SansSerif" halign="center" height="20" hidden="false" label="Ajustar como no ocupado" label_selected="Ajustar como no ocupado" left="114" mouse_opaque="true" name="Set Not Busy" scale_image="true" tool_tip="O chat e o MI no aparecem. Clique aqui para solucionar." width="102" /> | ||
4 | <button bottom="-41" enabled="true" follows="left|top" font="SansSerif" halign="center" height="20" hidden="false" label="Liberar Teclas" label_selected="Liberar Teclas" left="229" mouse_opaque="true" name="Release Keys" scale_image="true" tool_tip="Foi feito um controle em suas teclas. Clique aqui para liber-las." width="102" /> | ||
5 | <button bottom="-41" enabled="true" follows="left|top" font="SansSerif" halign="center" height="20" hidden="false" label="Mouselook" label_selected="Mouselook" left="343" mouse_opaque="true" name="Mouselook" scale_image="true" tool_tip="Use o mouse para aproximar sua visualizao." width="102" /> | ||
6 | <button bottom="-41" enabled="true" follows="left|top" font="SansSerif" halign="center" height="20" hidden="false" label="Levantar" label_selected="Levantar" left="457" mouse_opaque="true" name="Stand Up" scale_image="true" tool_tip="Clique aqui para levantar" width="102" /> | ||
7 | <panel background_visible="false" border="false" bottom="-41" enabled="true" follows="left|top" height="20" hidden="false" left="571" mouse_opaque="true" name="music_remote" width="110" /> | ||
8 | <panel background_visible="false" border="false" bottom="-41" enabled="true" follows="left|top" height="20" hidden="false" left="700" mouse_opaque="true" name="media_remote" width="110" /> | ||
9 | </panel> | ||
diff --git a/linden/indra/newview/skins/xui/pt/panel_place.xml b/linden/indra/newview/skins/xui/pt/panel_place.xml deleted file mode 100644 index e2d52f3..0000000 --- a/linden/indra/newview/skins/xui/pt/panel_place.xml +++ /dev/null | |||
@@ -1,10 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <panel border="false" bottom="20" can_close="true" can_minimize="true" can_resize="false" follows="bottom|left" height="470" left="330" name="Place" title="Lugar" width="450"><texture_picker bottom="-315" follows="left|top" height="300" left="20" name="snapshot_ctrl" width="400" /> | ||
3 | <line_editor bg_readonly_color="clear" bottom_delta="-8" enabled="false" follows="left|top" font="SansSerif" height="20" left="20" name="name_editor" text_readonly_color="white" width="400" /> | ||
4 | <text_editor bg_readonly_color="clear" enabled="false" follows="left|top" font="SansSerif" height="70" left="20" max_length="1023" name="desc_editor" text_readonly_color="white" width="400" word_wrap="true" /> | ||
5 | <line_editor bg_readonly_color="clear" enabled="false" follows="left|top" font="SansSerif" height="20" left="20" name="info_editor" text_readonly_color="white" width="400" /> | ||
6 | <line_editor bg_readonly_color="clear" enabled="false" follows="left|top" font="SansSerif" height="20" left="20" name="location_editor" text_readonly_color="white" width="400" /> | ||
7 | <button bottom_delta="-30" follows="left|top" height="20" label="Teleportar" left="20" name="teleport_btn" width="80" /> | ||
8 | <button bottom_delta="0" follows="left|top" height="20" label="Mostrar no mapa" left="105" name="map_btn" width="100" /> | ||
9 | <button bottom_delta="0" follows="left|top" height="20" label="Ofertas..." left="275" name="auction_btn" width="80" /> | ||
10 | </panel> | ||
diff --git a/linden/indra/newview/skins/xui/pt/panel_place_small.xml b/linden/indra/newview/skins/xui/pt/panel_place_small.xml deleted file mode 100644 index 986a389..0000000 --- a/linden/indra/newview/skins/xui/pt/panel_place_small.xml +++ /dev/null | |||
@@ -1,10 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <panel border="false" bottom="20" can_close="true" can_minimize="true" can_resize="false" follows="bottom|left" height="470" left="380" name="Place" title="Lugar" width="450"><texture_picker bottom="-285" follows="left|top" height="270" left="20" name="snapshot_ctrl" width="360" /> | ||
3 | <line_editor bg_readonly_color="clear" bottom_delta="-8" enabled="false" follows="left|top" font="SansSerif" height="20" left="20" name="name_editor" text_readonly_color="white" width="360" /> | ||
4 | <text_editor bg_readonly_color="clear" enabled="false" follows="left|top" font="SansSerif" height="70" left="20" max_length="1023" name="desc_editor" text_readonly_color="white" width="360" word_wrap="true" /> | ||
5 | <line_editor bg_readonly_color="clear" enabled="false" follows="left|top" font="SansSerif" height="20" left="20" name="info_editor" text_readonly_color="white" width="360" /> | ||
6 | <line_editor bg_readonly_color="clear" enabled="false" follows="left|top" font="SansSerif" height="20" left="20" name="location_editor" text_readonly_color="white" width="360" /> | ||
7 | <button bottom_delta="-30" follows="left|top" height="20" label="Tele-transportar" left="20" name="teleport_btn" width="80" /> | ||
8 | <button bottom_delta="0" follows="left|top" height="20" label="Mostrar no mapa" left="105" name="map_btn" width="100" /> | ||
9 | <button bottom_delta="0" follows="left|top" height="20" label="Ofertas..." left="275" name="auction_btn" width="80" /> | ||
10 | </panel> | ||
diff --git a/linden/indra/newview/skins/xui/pt/panel_preferences_audio.xml b/linden/indra/newview/skins/xui/pt/panel_preferences_audio.xml deleted file mode 100644 index 8743a46..0000000 --- a/linden/indra/newview/skins/xui/pt/panel_preferences_audio.xml +++ /dev/null | |||
@@ -1,30 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <panel border="true" bottom="-409" enabled="true" follows="left|top|right|bottom" height="408" hidden="false" label="udio & Vdeo" left="102" mouse_opaque="true" name="Media panel" width="517"><text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-22" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="12" hidden="false" left="10" mouse_opaque="true" name="muting_text" v_pad="0" width="128">Silenciar:</text> | ||
3 | <check_box bottom="-26" control_name="MuteAudio" enabled="true" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Silenciar udio" left="142" mouse_opaque="true" name="disable audio" radio_style="false" width="134" /> | ||
4 | <check_box bottom="-46" control_name="MuteWhenMinimized" enabled="true" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="true" label="Silenciar udio Quando Minimizar Janela" left="142" mouse_opaque="true" name="mute_when_minimized" radio_style="false" width="215" /> | ||
5 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-62" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="12" hidden="false" left="10" mouse_opaque="true" name="streaming_text" v_pad="0" width="128">Streaming:</text> | ||
6 | <check_box bottom="-66" control_name="AudioStreamingMusic" enabled="true" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="true" label="Executar Msica em Streaming Quando Disponvel" left="142" mouse_opaque="true" name="streaming_music" radio_style="false" width="339" /> | ||
7 | <check_box bottom="-86" control_name="AudioStreamingVideo" enabled="true" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="true" label="Executar Vdeo em Streaming Quando Disponvel" left="142" mouse_opaque="true" name="streaming_video" radio_style="false" width="338" /> | ||
8 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-102" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="12" hidden="false" left="10" mouse_opaque="true" name="system_volume_text" v_pad="0" width="128">Efeitos Sonoros:</text> | ||
9 | <slider_bar bottom="-102" control_name="AudioLevelMaster" enabled="true" follows="left|top" height="12" hidden="false" increment="0.01" initial_val="1" left="148" max_val="1" min_val="0" mouse_opaque="true" name="System Volume" width="128" /> | ||
10 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-126" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="12" hidden="false" left="10" mouse_opaque="true" name="wind_volume_text" v_pad="0" width="128">Volume do Vento:</text> | ||
11 | <slider_bar bottom="-126" control_name="AudioLevelWind" enabled="true" follows="left|top" height="12" hidden="false" increment="0.01" initial_val="0.5" left="148" max_val="1" min_val="0" mouse_opaque="true" name="Wind Volume" width="128" /> | ||
12 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-142" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="12" hidden="false" left="10" mouse_opaque="true" name="footsteps_volume_text" v_pad="0" width="128">Volume dos Passos:</text> | ||
13 | <slider_bar bottom="-142" control_name="AudioLevelFootsteps" enabled="true" follows="left|top" height="12" hidden="false" increment="0.01" initial_val="0.5" left="148" max_val="1" min_val="0" mouse_opaque="true" name="Footsteps Volume" width="128" /> | ||
14 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-158" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="12" hidden="false" left="10" mouse_opaque="true" name="ui_volume_text" v_pad="0" width="128">Volume de interface:</text> | ||
15 | <slider_bar bottom="-158" control_name="AudioLevelUI" enabled="true" follows="left|top" height="12" hidden="false" increment="0.01" initial_val="0.5" left="148" max_val="1" min_val="0" mouse_opaque="true" name="UI Volume" width="128" /> | ||
16 | <spinner bottom="-178" control_name="UISndMoneyChangeThreshold" decimal_digits="0" enabled="true" follows="left|top" height="16" hidden="false" increment="10" initial_val="10" label="Alerta de L$" label_width="128" left="20" max_val="10000" min_val="0" mouse_opaque="true" name="L$ Change Threshold" width="192" /> | ||
17 | <spinner bottom="-194" control_name="UISndHealthReductionThreshold" decimal_digits="0" enabled="true" follows="left|top" height="16" hidden="false" increment="10" initial_val="20" label="Alerta de Sade" label_width="128" left="20" max_val="10000" min_val="0" mouse_opaque="true" name="Health Change Threshold" width="192" /> | ||
18 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-214" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="12" hidden="false" left="10" mouse_opaque="true" name="doppler_effect_text" v_pad="0" width="128">Efeito Doppler:</text> | ||
19 | <slider_bar bottom="-214" control_name="AudioLevelDoppler" enabled="true" follows="left|top" height="12" hidden="false" increment="0.01" initial_val="1" left="148" max_val="2" min_val="0" mouse_opaque="true" name="Doppler Effect" width="128" /> | ||
20 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-230" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="12" hidden="false" left="10" mouse_opaque="true" name="distance_factor_text" v_pad="0" width="128">Fator Distncia:</text> | ||
21 | <slider_bar bottom="-230" control_name="AudioLevelDistance" enabled="true" follows="left|top" height="12" hidden="false" increment="0.01" initial_val="1" left="148" max_val="2" min_val="0" mouse_opaque="true" name="Distance Factor" width="128" /> | ||
22 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-246" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="12" hidden="false" left="10" mouse_opaque="true" name="rolloff_factor_text" v_pad="0" width="128">Fator Perda:</text> | ||
23 | <slider_bar bottom="-246" control_name="AudioLevelRolloff" enabled="true" follows="left|top" height="12" hidden="false" increment="0.01" initial_val="1" left="148" max_val="2" min_val="0" mouse_opaque="true" name="Rolloff Factor" width="128" /> | ||
24 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-266" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="12" hidden="false" left="10" mouse_opaque="true" name="default_upload_bitrate_text" v_pad="0" width="128">Bitrate para Upload:</text> | ||
25 | <radio_group bottom="-272" control_name="AudioDefaultBitrate" draw_border="true" enabled="true" follows="left|top" height="18" hidden="false" left="148" mouse_opaque="true" name="bitrate" width="320"><radio_item type="string" length="1" bottom="-17" enabled="true" follows="left|top" height="16" hidden="false" left="5" mouse_opaque="true" name="32kbps" width="80">32 kbps</radio_item> | ||
26 | <radio_item type="string" length="1" bottom="-17" enabled="true" follows="left|top" height="16" hidden="false" left="85" mouse_opaque="true" name="64kbps" width="80">64 kbps</radio_item> | ||
27 | <radio_item type="string" length="1" bottom="-17" enabled="true" follows="left|top" height="16" hidden="false" left="165" mouse_opaque="true" name="96kbps" width="80">96 kbps</radio_item> | ||
28 | <radio_item type="string" length="1" bottom="-17" enabled="true" follows="left|top" height="16" hidden="false" left="245" mouse_opaque="true" name="128kbps" width="80">128 kbps</radio_item> | ||
29 | </radio_group> | ||
30 | </panel> \ No newline at end of file | ||
diff --git a/linden/indra/newview/skins/xui/pt/panel_preferences_chat.xml b/linden/indra/newview/skins/xui/pt/panel_preferences_chat.xml deleted file mode 100644 index 144b011..0000000 --- a/linden/indra/newview/skins/xui/pt/panel_preferences_chat.xml +++ /dev/null | |||
@@ -1,30 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <panel border="true" bottom="-409" enabled="true" follows="left|top|right|bottom" height="408" hidden="false" label="Chat" left="102" mouse_opaque="true" name="chat" width="517"><text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-20" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="10" hidden="false" left="12" mouse_opaque="false" name="text_box" v_pad="0" width="128">Tamanho da Fonte do Chat:</text> | ||
3 | <radio_group bottom="-72" control_name="ChatFontSize" draw_border="true" enabled="true" follows="left|top" height="60" hidden="false" left="148" mouse_opaque="true" name="chat font size" width="128"><radio_item type="string" length="1" bottom="-20" enabled="true" height="16" hidden="false" left="0" mouse_opaque="true" name="radio" width="98">Pequeno</radio_item> | ||
4 | <radio_item type="string" length="1" bottom="-40" enabled="true" height="16" hidden="false" left="0" mouse_opaque="true" name="radio2" width="98">Mdio</radio_item> | ||
5 | <radio_item type="string" length="1" bottom="-60" enabled="true" height="16" hidden="false" left="0" mouse_opaque="true" name="radio3" width="98">Grande</radio_item> | ||
6 | </radio_group> | ||
7 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-95" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="10" hidden="false" left="12" mouse_opaque="false" name="text_box2" v_pad="0" width="128">Cor do Chat:</text> | ||
8 | <color_swatch border_color="0.45098 0.517647 0.607843 1" bottom="-140" can_apply_immediately="true" color="0.8 1 1 1" control_name="SystemChatColor" enabled="true" follows="left|top" height="56" hidden="false" label="Sistema" left="148" mouse_opaque="true" name="system" width="40" /> | ||
9 | <color_swatch border_color="0.45098 0.517647 0.607843 1" bottom="-140" can_apply_immediately="true" color="1 1 1 1" control_name="AgentChatColor" enabled="true" follows="left|top" height="56" hidden="false" label="Usurios" left="210" mouse_opaque="true" name="users" width="40" /> | ||
10 | <color_swatch border_color="0.45098 0.517647 0.607843 1" bottom="-140" can_apply_immediately="true" color="0.7 0.9 0.7 1" control_name="ObjectChatColor" enabled="true" follows="left|top" height="56" hidden="false" label="Objetos" left="272" mouse_opaque="true" name="objects" width="40" /> | ||
11 | <color_swatch border_color="0.45098 0.517647 0.607843 1" bottom="-140" can_apply_immediately="true" color="0 0 0 1" control_name="BackgroundChatColor" enabled="true" follows="left|top" height="56" hidden="false" label="Bubble" left="334" mouse_opaque="true" name="background" width="40" /> | ||
12 | <color_swatch border_color="0.45098 0.517647 0.607843 1" bottom="-140" can_apply_immediately="true" color="0.6 0.6 1 1" control_name="HTMLLinkColor" enabled="true" follows="left|top" height="56" hidden="false" label="URLs" left="396" mouse_opaque="true" name="links" width="40" /> | ||
13 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-167" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="10" hidden="false" left="12" mouse_opaque="false" name="text_box3" v_pad="0" width="128">Console do Chat:</text> | ||
14 | <spinner bottom="-173" control_name="ChatPersistTime" decimal_digits="0" enabled="true" follows="left|top" height="16" hidden="false" increment="1" initial_val="10" label="Ocultar Chat depois" label_width="80" left="148" max_val="60" min_val="2" mouse_opaque="true" name="fade_chat_time" width="130" /> | ||
15 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-167" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="10" hidden="false" left="282" mouse_opaque="false" name="text_box4" v_pad="0" width="80">(segundos)</text> | ||
16 | <spinner bottom="-170" control_name="ConsoleMaxLines" decimal_digits="0" enabled="true" follows="left|top" height="16" hidden="false" increment="1" initial_val="10" left="340" max_val="50" min_val="1" mouse_opaque="true" name="max_chat_count" width="60" /> | ||
17 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-167" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="10" hidden="false" left="405" mouse_opaque="false" name="text_box5" v_pad="0" width="60">(# linhas)</text> | ||
18 | <slider bottom="-192" can_edit_text="false" control_name="ConsoleBackgroundOpacity" decimal_digits="3" enabled="true" follows="left|top" height="12" hidden="false" increment="0.05" initial_val="1" label="Opacidade" left="148" max_val="1" min_val="0" mouse_opaque="true" name="console_opacity" show_text="true" value="0.4" width="200" /> | ||
19 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-212" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="10" hidden="false" left="12" mouse_opaque="false" name="text_box6" v_pad="0" width="128">Opes do Chat:</text> | ||
20 | <check_box bottom="-219" control_name="ChatFullWidth" enabled="true" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Usar largura da tela cheia no Chat (depois do reincio)" left="148" mouse_opaque="true" name="chat_full_width_check" radio_style="false" width="239" /> | ||
21 | <check_box bottom="-239" control_name="CloseChatOnReturn" enabled="true" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Fechar Chat depois de tocar voltar" left="148" mouse_opaque="true" name="close_chat_on_return_check" radio_style="false" width="237" /> | ||
22 | <check_box bottom="-259" control_name="ArrowKeysMoveAvatar" enabled="true" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Teclas de Setas movem o avatar durante o chat" left="148" mouse_opaque="true" name="arrow_keys_move_avatar_check" radio_style="false" width="237" /> | ||
23 | <check_box bottom="-279" control_name="ChatShowTimestamps" enabled="true" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Mostrar data e hora no chat" left="148" mouse_opaque="true" name="show_timestamps_check" radio_style="false" width="237" /> | ||
24 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-299" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="10" hidden="false" left="12" mouse_opaque="false" name="text_box7" v_pad="0" width="128">Bubble Chat:</text> | ||
25 | <check_box bottom="-306" control_name="UseChatBubbles" enabled="true" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Mostrar bolhas do chat" left="148" mouse_opaque="true" name="bubble_text_chat" radio_style="false" width="237" /> | ||
26 | <slider bottom="-326" can_edit_text="false" control_name="ChatBubbleOpacity" decimal_digits="3" enabled="true" follows="left|top" height="12" hidden="false" increment="0.05" initial_val="1" label="Opacidade" left="148" max_val="1" min_val="0" mouse_opaque="true" name="bubble_chat_opacity" show_text="true" value="0.5" width="200" /> | ||
27 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-346" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="10" hidden="false" left="12" mouse_opaque="false" name="text_box8" v_pad="0" width="128">Erros de Script:</text> | ||
28 | <check_box bottom="-353" control_name="ScriptErrorsAsChat" enabled="true" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Mostrar Erros de Script e avisos como chat comum" left="148" mouse_opaque="true" name="script_errors_as_chat" radio_style="false" width="275" /> | ||
29 | <color_swatch border_color="0.45098 0.517647 0.607843 1" bottom="-410" can_apply_immediately="true" color="0.82 0.82 0.99 1" control_name="ScriptErrorColor" enabled="true" follows="left|top" height="56" hidden="false" label="Cor" left="148" mouse_opaque="true" name="script_error" width="40" /> | ||
30 | </panel> | ||
diff --git a/linden/indra/newview/skins/xui/pt/panel_preferences_general.xml b/linden/indra/newview/skins/xui/pt/panel_preferences_general.xml deleted file mode 100644 index ff91b9e..0000000 --- a/linden/indra/newview/skins/xui/pt/panel_preferences_general.xml +++ /dev/null | |||
@@ -1,37 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <panel border="true" bottom="-409" enabled="true" follows="left|top|right|bottom" height="408" hidden="false" label="Geral" left="102" mouse_opaque="true" name="general_panel" width="517"><combo_box allow_text_entry="true" bottom="-24" enabled="true" follows="left|bottom" height="16" hidden="false" left="148" max_chars="128" mouse_opaque="true" name="location_combobox" width="128" ><combo_item name="MyHome" value="My Home">Minha Casa</combo_item> | ||
3 | <combo_item name="MyLastLocation" value="My Last Location"> </combo_item> | ||
4 | </combo_box> | ||
5 | <check_box bottom="-44" control_name="ShowStartLocation" enabled="true" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="true" label="Mostrar Posio Inicial na Tela de Login" left="148" mouse_opaque="true" name="show_location_checkbox" radio_style="false" width="256" /> | ||
6 | <radio_group bottom="-108" control_name="RenderName" draw_border="true" enabled="true" follows="left|top" height="54" hidden="false" left="148" mouse_opaque="true" name="fade_out_radio" width="128"><radio_item type="string" length="1" bottom="-19" enabled="true" follows="left|top" height="16" hidden="false" left="3" mouse_opaque="true" name="Never" width="463">Nunca</radio_item> | ||
7 | <radio_item type="string" length="1" bottom="-35" enabled="true" follows="left|top" height="16" hidden="false" left="3" mouse_opaque="true" name="Temporarily" width="463">Temporariamente</radio_item> | ||
8 | <radio_item type="string" length="1" bottom="-51" enabled="true" follows="left|top" height="16" hidden="false" left="3" mouse_opaque="true" name="Always" width="463">Sempre</radio_item> | ||
9 | </radio_group> | ||
10 | <check_box bottom="-134" control_name="RenderNameHideSelf" enabled="true" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Ocultar meu Nome na minha Tela" left="148" mouse_opaque="true" name="show_my_name_checkbox" radio_style="false" width="256" /> | ||
11 | <check_box bottom="-152" control_name="RenderHideGroupTitle" enabled="true" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Ocultar meu Ttulo no Grupo" left="148" mouse_opaque="true" name="show_my_title_checkbox" radio_style="false" width="256" /> | ||
12 | <check_box bottom="-170" control_name="SmallAvatarNames" enabled="true" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="true" label="Avatar com Nomes Pequenos" left="148" mouse_opaque="true" name="small_avatar_names_checkbox" radio_style="false" width="256" /> | ||
13 | <color_swatch border_color="0.45098 0.517647 0.607843 1" bottom="-236" can_apply_immediately="false" color="1 1 1 1" control_name="EffectColor" enabled="true" follows="left|top" height="56" hidden="false" label="" left="148" mouse_opaque="true" name="effect_color_swatch" tool_tip="Clique para abrir po seletor de cores" width="40" /> | ||
14 | <spinner bottom="-246" control_name="AFKTimeout" enabled="true" follows="left|top" height="16" hidden="false" increment="1" initial_val="300" label="Tempo para ficar Ausente:" label_width="138" left="10" max_val="600" min_val="30" mouse_opaque="true" name="afk_timeout_spinner" width="202" /> | ||
15 | <check_box bottom="-272" control_name="ChatOnlineNotification" enabled="true" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Avisar meus amigos que estou online" left="148" mouse_opaque="true" name="friends_online_notify_checkbox" radio_style="false" width="256" /> | ||
16 | <check_box bottom="-290" control_name="MiniMapRotate" enabled="true" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Rotacionar Mini-Mapa" left="148" mouse_opaque="true" name="rotate_mini_map_checkbox" radio_style="false" width="256" /> | ||
17 | <check_box bottom="-308" control_name="NotifyMoneyChange" enabled="true" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Avisar quando receber ou gastar Linden dollars (L$)" left="148" mouse_opaque="true" name="notify_money_change_checkbox" radio_style="false" width="256" /> | ||
18 | |||
19 | |||
20 | |||
21 | |||
22 | <check_box bottom="-326" control_name="UseDefaultColorPicker" enabled="true" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Usar a paleta de cores padro do sistema" left="148" mouse_opaque="true" name="use_system_color_picker_checkbox" radio_style="false" tool_tip="Usar a palheta de cores padro do sistema ao invs de uma feita dentro de Second Life." width="256" /> | ||
23 | |||
24 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-20" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="10" hidden="false" left="10" mouse_opaque="true" name="start_location_textbox" v_pad="0" width="394">Posio Inicial:</text> | ||
25 | |||
26 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-64" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="10" hidden="false" left="10" mouse_opaque="true" name="show_names_textbox" v_pad="0" width="394">Mostrar Nomes:</text> | ||
27 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-190" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="10" hidden="false" left="10" mouse_opaque="true" name="effects_color_textbox" v_pad="0" width="394">Cores para Meus Efeitos:</text> | ||
28 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-240" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="10" hidden="false" left="222" mouse_opaque="true" name="seconds_textbox" v_pad="0" width="128">segundos</text> | ||
29 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-372" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="18" hidden="false" left="10" mouse_opaque="true" name="crash_report_textbox" v_pad="0" width="394">Relatrios de Falhas:</text> | ||
30 | |||
31 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom_delta="0" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="18" hidden="false" left_delta="289" mouse_opaque="true" name="language_textbox2" v_pad="0" width="394">(Precisa de reincio para efetivar)</text> | ||
32 | <text hidden="true" name="region_name_prompt">Digite o nome da Regio</text> | ||
33 | <combo_box allow_text_entry="false" bottom="-372" enabled="true" follows="left|top" height="18" hidden="false" left="148" max_chars="20" mouse_opaque="true" name="crash_behavior_combobox" width="128"><combo_item type="string" length="1" enabled="true" name="Askbeforesending" value="Ask before sending">Perguntar antes de enviar</combo_item> | ||
34 | <combo_item type="string" length="1" enabled="true" name="Alwayssend" value="Always send">Sempre enviar</combo_item> | ||
35 | <combo_item type="string" length="1" enabled="true" name="Neversend" value="Never send">Nunca Enviar</combo_item> | ||
36 | |||
37 | </panel> \ No newline at end of file | ||
diff --git a/linden/indra/newview/skins/xui/pt/panel_preferences_graphics1.xml b/linden/indra/newview/skins/xui/pt/panel_preferences_graphics1.xml deleted file mode 100644 index 72b5579..0000000 --- a/linden/indra/newview/skins/xui/pt/panel_preferences_graphics1.xml +++ /dev/null | |||
@@ -1,21 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <panel border="true" bottom="-409" enabled="true" follows="left|top|right|bottom" height="408" hidden="false" label="Grficos" left="102" mouse_opaque="true" name="Display panel" width="517"><text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-22" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="12" hidden="false" left="10" mouse_opaque="true" name="text" v_pad="0" width="128"> </text> | ||
3 | <check_box bottom="-26" enabled="true" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Executar em Janela" left="148" mouse_opaque="true" name="windowed mode" radio_style="false" width="256" /> | ||
4 | <combo_box allow_text_entry="false" bottom="-47" enabled="false" follows="left|top" height="18" hidden="false" left="148" max_chars="20" mouse_opaque="true" name="fullscreen combo" width="150" /> | ||
5 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-62" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="12" hidden="false" left="10" mouse_opaque="true" name="Fullscreen Aspect Ratio:" v_pad="0" width="128">Aparncia de Tela Cheia:</text> | ||
6 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-77" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="12" hidden="false" left="10" mouse_opaque="true" name="(width / height)" v_pad="0" width="128">(largura / altura)</text> | ||
7 | <combo_box allow_text_entry="true" bottom="-66" enabled="true" follows="left|top" height="16" hidden="false" left="148" max_chars="100" mouse_opaque="true" name="aspect_ratio" width="150"><combo_item type="string" length="1" enabled="true" name="4:3(StandardCRT)" value="1.333333">4:3 (CRT Padro)</combo_item> | ||
8 | <combo_item type="string" length="1" enabled="true" name="5:4(1280x1024LCD)" value="1.25">5:4 (1280x1024 LCD)</combo_item> | ||
9 | <combo_item type="string" length="1" enabled="true" name="16:9(Widescreen)" value="1.7777777">16:9 (Widescreen)</combo_item> | ||
10 | </combo_box> | ||
11 | <check_box bottom="-85" control_name="FullScreenAutoDetectAspectRatio" enabled="true" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Auto detectar" left="148" mouse_opaque="true" name="aspect_auto_detect" radio_style="false" width="256" /> | ||
12 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-100" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="12" hidden="false" left="10" mouse_opaque="true" name="UI Size:" v_pad="0" width="128">Tamanho da interface:</text> | ||
13 | <slider bottom="-102" can_edit_text="true" control_name="UIScaleFactor" decimal_digits="3" enabled="true" height="16" hidden="false" increment="0.025" initial_val="1" left="148" max_val="1.4" min_val="0.75" mouse_opaque="true" name="UI Scale" show_text="true" value="1" width="256" /> | ||
14 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-138" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="12" hidden="false" left="222" mouse_opaque="true" name="(meters, lower is faster)" v_pad="0" width="228">(metros, menor mais rpido)</text> | ||
15 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-166" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="12" hidden="false" left="10" mouse_opaque="true" name="text2" v_pad="0" width="128">Mostrar Opes:</text> | ||
16 | <check_box bottom="-123" control_name="UIAutoScale" enabled="true" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Usar resoluo de escala independente" left="148" mouse_opaque="true" name="ui_auto_scale" radio_style="false" width="256" /> | ||
17 | <spinner bottom="-142" control_name="RenderFarClip" decimal_digits="0" enabled="true" follows="left|top" height="16" hidden="false" increment="32" initial_val="160" label="Desenhar Distncia:" label_width="138" left="10" max_val="512" min_val="64" mouse_opaque="true" name="draw_distance" width="202" /> | ||
18 | <check_box bottom="-170" control_name="FirstPersonAvatarVisible" enabled="true" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Mostrar Avatar em Mouselook" left="148" mouse_opaque="true" name="avfp" radio_style="false" width="256" /> | ||
19 | <text hidden="true" name="resolution_format">[RES_X] x [RES_Y]</text> | ||
20 | <text hidden="true" name="aspect_ratio_text">[NUM]:[DEN]</text> | ||
21 | </panel> \ No newline at end of file | ||
diff --git a/linden/indra/newview/skins/xui/pt/panel_preferences_graphics2.xml b/linden/indra/newview/skins/xui/pt/panel_preferences_graphics2.xml deleted file mode 100644 index f8cd7e8..0000000 --- a/linden/indra/newview/skins/xui/pt/panel_preferences_graphics2.xml +++ /dev/null | |||
@@ -1,43 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | |||
3 | <panel border="true" bottom="-409" enabled="true" follows="left|top|right|bottom" height="408" hidden="false" label="Detalhes Grficos" left="102" mouse_opaque="true" name="Display panel 3" width="517"> | ||
4 | |||
5 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-22" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="12" hidden="false" left="10" mouse_opaque="true" name="text" v_pad="0" width="128">Shaders:</text> | ||
6 | |||
7 | <check_box bottom="-27" control_name="VertexShaderEnable" enabled="true" follows="left|top" | ||
8 | font="SansSerifSmall" height="16" hidden="false" initial_value="true" | ||
9 | label="Ativar Vertex Shaders" left="348" | ||
10 | mouse_opaque="true" name="shaders" radio_style="false" | ||
11 | tool_tip="Desabilitar essa opo pode prevenir problemas com algumas placas de vdeo." | ||
12 | width="315" /> | ||
13 | |||
14 | <check_box bottom="-26" control_name="RenderObjectBump" enabled="true" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="true" label="Habilitar Bumpmapping e Brilho" left="148" mouse_opaque="true" name="bumpshiny" radio_style="false" width="256" /> | ||
15 | <check_box bottom="-45" control_name="RenderRippleWater" enabled="true" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="true" label="Habilitar Ondulao de gua" left="148" mouse_opaque="true" name="ripple" radio_style="false" width="256" /> | ||
16 | <check_box bottom="-64" control_name="RenderAvatarVP" enabled="true" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="true" label="Programa de vrtices do Avatar" left="148" mouse_opaque="true" name="avatarvp" radio_style="false" width="256" /> | ||
17 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-79" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="12" hidden="false" left="10" mouse_opaque="true" name="Avatar Rendering:" v_pad="0" width="128">Renderizando Avatar:</text> | ||
18 | <radio_group bottom="-121" control_name="RenderAvatarMode" draw_border="true" enabled="true" follows="left|top" height="54" hidden="false" left="148" mouse_opaque="true" name="Avatar Appearance" width="321"><radio_item type="string" length="1" bottom="-19" enabled="true" follows="left|top" height="16" hidden="false" left="3" mouse_opaque="true" name="Normal" width="315">Normal</radio_item> | ||
19 | <radio_item type="string" length="1" bottom="-35" enabled="true" follows="left|top" height="16" hidden="false" left="3" mouse_opaque="true" name="Bump" width="315">Bump Mapped</radio_item> | ||
20 | <radio_item type="string" length="1" bottom="-51" enabled="true" follows="left|top" height="16" hidden="false" left="3" mouse_opaque="true" name="Cloth" width="315">Bump Mapped & Cloth</radio_item> | ||
21 | </radio_group> | ||
22 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-136" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="12" hidden="false" left="10" mouse_opaque="true" name="Lighting Detail:" v_pad="0" width="128">Detalhe de Iluminao:</text> | ||
23 | <radio_group bottom="-162" control_name="RenderLightingDetail" draw_border="true" enabled="true" follows="left|top" height="38" hidden="false" left="148" mouse_opaque="true" name="lighting detail radio" width="321"><radio_item type="string" length="1" bottom="-19" enabled="true" follows="left|top" height="16" hidden="false" left="3" mouse_opaque="true" name="SunMoon" width="156">Somente Sol e Lua</radio_item> | ||
24 | <radio_item type="string" length="1" bottom="-35" enabled="true" follows="left|top" height="16" hidden="false" left="3" mouse_opaque="true" name="LocalLights" width="156">Luzes locais prximas</radio_item> | ||
25 | </radio_group> | ||
26 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-177" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="12" hidden="false" left="10" mouse_opaque="true" name="Terrain Detail:" v_pad="0" width="128">Detalhe do Terreno:</text> | ||
27 | <radio_group bottom="-203" control_name="RenderTerrainDetail" draw_border="true" enabled="true" follows="left|top" height="38" hidden="false" left="148" mouse_opaque="true" name="terrain detail radio" width="321"><radio_item type="string" length="1" bottom="-19" enabled="true" follows="left|top" height="16" hidden="false" left="3" mouse_opaque="true" name="0" width="315">Baixo</radio_item> | ||
28 | <radio_item type="string" length="1" bottom="-35" enabled="true" follows="left|top" height="16" hidden="false" left="3" mouse_opaque="true" name="2" width="315">Alto</radio_item> | ||
29 | </radio_group> | ||
30 | |||
31 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-227" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="12" hidden="false" left="10" mouse_opaque="true" name="Object Mesh Detail:" v_pad="0" width="140">Malha do Objeto:</text> | ||
32 | |||
33 | <slider_bar bottom="-231" control_name="RenderVolumeLODFactor" enabled="true" follows="left|top" height="16" hidden="false" increment="0.125" initial_val="1" left="148" max_val="2" min_val="0" mouse_opaque="true" name="Prim LOD Factor" width="128" /> | ||
34 | |||
35 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-246" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="12" hidden="false" left="10" mouse_opaque="true" name="Flexible Mesh Detail:" v_pad="0" width="140">Malha Flexvel:</text> | ||
36 | |||
37 | <slider_bar bottom="-250" control_name="RenderFlexTimeFactor" enabled="true" follows="left|top" height="16" hidden="false" increment="0.1" initial_val="1" left="148" max_val="2" min_val="0" mouse_opaque="true" name="Flex Factor" width="128" /> | ||
38 | |||
39 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-265" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="12" hidden="false" left="10" mouse_opaque="true" name="Tree Mesh Detail:" v_pad="0" width="128">Malha da rvore:</text> | ||
40 | <slider_bar bottom="-269" control_name="RenderTreeLODFactor" enabled="true" follows="left|top" height="16" hidden="false" increment="0.125" initial_val="0.5" left="148" max_val="1" min_val="0" mouse_opaque="true" name="Tree LOD Factor" width="128" /> | ||
41 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-284" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="12" hidden="false" left="10" mouse_opaque="true" name="Avatar Mesh Detail:" v_pad="0" width="128">Malha do Avatar:</text> | ||
42 | <slider_bar bottom="-288" control_name="RenderAvatarLODFactor" enabled="true" follows="left|top" height="16" hidden="false" increment="0.125" initial_val="0.5" left="148" max_val="1" min_val="0" mouse_opaque="true" name="Avatar LOD Factor" width="128" /> | ||
43 | </panel> \ No newline at end of file | ||
diff --git a/linden/indra/newview/skins/xui/pt/panel_preferences_graphics3.xml b/linden/indra/newview/skins/xui/pt/panel_preferences_graphics3.xml deleted file mode 100644 index 2f8aed8..0000000 --- a/linden/indra/newview/skins/xui/pt/panel_preferences_graphics3.xml +++ /dev/null | |||
@@ -1,31 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <panel border="true" bottom="-409" enabled="true" follows="left|top|right|bottom" height="408" hidden="false" label="Grfico Avanado" left="102" mouse_opaque="true" name="Display panel 2" width="517"><text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-22" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="12" hidden="false" left="10" mouse_opaque="true" name="Filtering:" v_pad="0" width="128">Filtragem:</text> | ||
3 | <check_box bottom="-26" control_name="RenderAnisotropic" enabled="true" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Filtro Anisotrpico (reduz performance quando ativo)" left="148" mouse_opaque="true" name="ani" radio_style="false" width="256" /> | ||
4 | <spinner bottom="-45" control_name="RenderGamma" decimal_digits="2" enabled="true" follows="left|top" height="16" hidden="false" increment="0.01" initial_val="1" label="Gama:" label_width="138" left="10" max_val="2" min_val="0.0" mouse_opaque="true" name="gamma" width="202" /> | ||
5 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-41" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="12" hidden="false" left="222" mouse_opaque="true" name="(brightness, lower is brighter)" v_pad="0" width="315">(brilho, menor mais brilhante, 0=use padro)</text> | ||
6 | <spinner bottom="-64" control_name="RenderNightBrightness" decimal_digits="3" enabled="true" follows="left|top" height="16" hidden="false" increment="0.25" initial_val="1" label="Brilho Noturno:" label_width="138" left="10" max_val="4" min_val="0" mouse_opaque="true" name="nighttime_brightness" width="202" /> | ||
7 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-60" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="12" hidden="false" left="222" mouse_opaque="true" name="(higher is brighter, 1.0 is default)" v_pad="0" width="315">(maior mais brilhante, 1.0 padro)</text> | ||
8 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-79" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="12" hidden="false" left="10" mouse_opaque="true" name="Enable VBO:" v_pad="0" width="128">Ativar VBO:</text> | ||
9 | <check_box bottom="-83" control_name="RenderVBOEnable" enabled="true" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="true" label="Ativar Buffer de Vrtices de Objetos OpenGL" left="148" mouse_opaque="true" name="vbo" radio_style="false" tool_tip="Ativ-lo pode causar falha em alguns drivers OpenGL." width="315" /> | ||
10 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-98" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="12" hidden="false" left="10" mouse_opaque="true" name="Graphics Card Memory:" v_pad="0" width="128">Memria de Vdeo:</text> | ||
11 | <radio_group bottom="-188" control_name="GraphicsCardMemorySetting" draw_border="true" enabled="true" follows="left|top" height="102" hidden="false" left="148" mouse_opaque="true" name="video card memory radio" width="321"><radio_item type="string" length="1" bottom="-19" enabled="true" follows="left|top" height="16" hidden="false" left="3" mouse_opaque="true" name="radio" width="315">16MB</radio_item> | ||
12 | <radio_item type="string" length="1" bottom="-35" enabled="true" follows="left|top" height="16" hidden="false" left="3" mouse_opaque="true" name="radio2" width="315">32MB</radio_item> | ||
13 | <radio_item type="string" length="1" bottom="-51" enabled="true" follows="left|top" height="16" hidden="false" left="3" mouse_opaque="true" name="radio3" width="315">64MB</radio_item> | ||
14 | <radio_item type="string" length="1" bottom="-67" enabled="true" follows="left|top" height="16" hidden="false" left="3" mouse_opaque="true" name="radio4" width="315">128MB</radio_item> | ||
15 | <radio_item type="string" length="1" bottom="-83" enabled="true" follows="left|top" height="16" hidden="false" left="3" mouse_opaque="true" name="radio5" width="315">256MB</radio_item> | ||
16 | <radio_item type="string" length="1" bottom="-99" enabled="true" follows="left|top" height="16" hidden="false" left="3" mouse_opaque="true" name="radio6" width="315">512MB</radio_item> | ||
17 | </radio_group> | ||
18 | <spinner bottom="-207" control_name="RenderFogRatio" decimal_digits="1" enabled="true" follows="left|top" height="16" hidden="false" increment="0.1" initial_val="4" label="Distncia de Neblina:" label_width="138" left="10" max_val="4" min_val="0.5" mouse_opaque="true" name="fog" width="202" /> | ||
19 | <spinner bottom="-226" control_name="RenderMaxPartCount" decimal_digits="0" enabled="true" follows="left|top" height="16" hidden="false" increment="256" initial_val="4096" label="Mximo de Partculas:" label_width="138" left="10" max_val="8192" min_val="0" mouse_opaque="true" name="particles" width="202" /> | ||
20 | <spinner bottom="-245" control_name="AvatarCompositeLimit" decimal_digits="0" enabled="true" follows="left|top" height="16" hidden="false" increment="1" initial_val="5" label="Limite de Mltiplo Visual:" label_width="138" left="10" max_val="100" min_val="0" mouse_opaque="true" name="comp limit" tool_tip="Nmero de exibies de alteraes de visual" width="202" /> | ||
21 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-241" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="12" hidden="false" left="222" mouse_opaque="true" name="(lower is faster)" v_pad="0" width="128">(Menor mais rpido)</text> | ||
22 | |||
23 | <spinner bottom="-264" control_name="DebugBeaconLineWidth" decimal_digits="0" | ||
24 | enabled="true" follows="left|top" height="16" hidden="false" | ||
25 | increment="1" initial_val="1" label="Debug Beacon Line Width:" | ||
26 | label_width="138" left="10" max_val="127" min_val="1" mouse_opaque="true" | ||
27 | name="debug beacon line width" width="202" /> | ||
28 | |||
29 | <check_box bottom="-304" control_name="ProbeHardwareOnStartup" enabled="true" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Auto detectar configurao de vdeo na prxima Iniciao" left="148" mouse_opaque="true" name="probe_hardware_checkbox" radio_style="false" tool_tip="Second Life configura automaticamente algumas definiies de vdeo baseado em seu hardware. Se voc instalar um novo hardware, voc deve fazer o Second Life detect-lo novamente." width="270" /> | ||
30 | |||
31 | </panel> \ No newline at end of file | ||
diff --git a/linden/indra/newview/skins/xui/pt/panel_preferences_im.xml b/linden/indra/newview/skins/xui/pt/panel_preferences_im.xml deleted file mode 100644 index c3d3098..0000000 --- a/linden/indra/newview/skins/xui/pt/panel_preferences_im.xml +++ /dev/null | |||
@@ -1,20 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <panel border="true" bottom="-409" enabled="true" follows="left|top|right|bottom" height="408" hidden="false" label="Comunicao" left="102" mouse_opaque="true" name="im" width="517"> | ||
3 | |||
4 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-20" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="10" hidden="false" left="12" mouse_opaque="false" name="text_box" v_pad="0" width="228">Situao do Perfil On-Line:</text> | ||
5 | |||
6 | <check_box bottom="-25" enabled="true" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Fazer com que meus amigos saibam que estou on-line" left="148" mouse_opaque="true" name="online_visibility" radio_style="false" width="350" /> | ||
7 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-40" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="10" hidden="false" left="12" mouse_opaque="false" name="text_box2" v_pad="0" width="128">Opes MI:</text> | ||
8 | <text hidden="true" name="log_in_to_change">Logar para Alterar</text> | ||
9 | <check_box bottom="-45" enabled="true" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Enviar MI para o e-mail ([EMAIL])" left="148" mouse_opaque="true" name="send_im_to_email" radio_style="false" width="350" /> | ||
10 | <check_box bottom="-65" control_name="IMInChatHistory" enabled="true" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Incluir MI no Histrico do Chat" left="148" mouse_opaque="true" name="include_im_in_chat_history" radio_style="false" width="237" /> | ||
11 | |||
12 | <check_box bottom="-85" control_name="IMShowTimestamps" enabled="true" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Mostrar data e hora na MI" left="148" mouse_opaque="true" name="show_timestamps_check" radio_style="false" width="237" /> | ||
13 | <check_box bottom="-105" control_name="LogInstantMessages" enabled="true" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Registrar Mensagens Instantneas" left="148" mouse_opaque="true" name="log_instant_messages" radio_style="false" width="237" /> | ||
14 | <check_box bottom="-125" control_name="LogChat" enabled="true" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Registrar Chat" left="148" mouse_opaque="true" name="log_chat" radio_style="false" width="237" /> | ||
15 | <check_box bottom="-145" control_name="LogShowHistory" enabled="true" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Mostrar final da ltima conversa MI" left="148" mouse_opaque="true" name="log_show_history" radio_style="false" width="237" /> | ||
16 | <button bottom="-167" follows="right|bottom" font="SansSerif" halign="center" height="20" label="Alt. Caminho" label_selected="Alt. Caminho" left="170" mouse_opaque="true" name="log_path_button" width="90" /> | ||
17 | <line_editor border_drop_shadow_visible="false" border_visible="false" bottom="-166" drop_shadow_visible="true" enabled="false" follows="top|left|right" font="SansSerifSmall" halign="right" height="19" left="248" max_length="254" mouse_opaque="false" name="log_path_string" right="-20" /> | ||
18 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-195" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="10" hidden="false" left="12" mouse_opaque="false" name="text_box3" v_pad="0" width="128">Resp. no Modo Ocupado:</text> | ||
19 | <text_editor type="string" length="1" bottom="-255" embedded_items="false" enabled="true" follows="left|top" font="SansSerifSmall" height="70" hidden="false" left="148" max_length="255" mouse_opaque="true" name="busy_response" width="330" word_wrap="true" /> | ||
20 | </panel> | ||
diff --git a/linden/indra/newview/skins/xui/pt/panel_preferences_input.xml b/linden/indra/newview/skins/xui/pt/panel_preferences_input.xml deleted file mode 100644 index f39782a..0000000 --- a/linden/indra/newview/skins/xui/pt/panel_preferences_input.xml +++ /dev/null | |||
@@ -1,13 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <panel border="true" bottom="-409" enabled="true" follows="left|top|right|bottom" height="408" hidden="false" label="Cmera" left="102" mouse_opaque="true" name="Input panel" width="517"><text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-20" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="10" hidden="false" left="10" mouse_opaque="true" name=" Mouselook Options:" v_pad="0" width="266">Opes de Mouselook:</text> | ||
3 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-20" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="10" hidden="false" left="148" mouse_opaque="true" name=" Mouse Sensitivity:" v_pad="0" width="128">Sensibilidade do Mouse:</text> | ||
4 | <slider_bar bottom="-26" control_name="MouseSensitivity" enabled="true" follows="left|top" height="16" hidden="false" increment="0.25" initial_val="2" left="276" max_val="15" min_val="0" mouse_opaque="true" name="Mouse Sensitivity" width="128" /> | ||
5 | <check_box bottom="-44" control_name="InvertMouse" enabled="true" follows="left|top" font="SansSerifSmall" height="16" hidden="false" label="Inverter Mouse" left="148" mouse_opaque="true" name="invert mouse" radio_style="false" width="128" /> | ||
6 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-74" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="10" hidden="false" left="10" mouse_opaque="true" name=" Auto Fly Options:" v_pad="0" width="266">Opes de Vo Automtico:</text> | ||
7 | <check_box bottom="-80" control_name="AutomaticFly" enabled="true" follows="left|top" font="SansSerifSmall" height="16" hidden="false" label="Voar/Pousar segurando Para Cima/Para Baixo" left="148" mouse_opaque="true" name="automatic fly" radio_style="false" width="178" /> | ||
8 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-110" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="10" hidden="false" left="10" mouse_opaque="true" name=" Camera Options:" v_pad="0" width="266">Opes de Cmera:</text> | ||
9 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-110" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="10" hidden="false" left="148" mouse_opaque="true" name="Camera Springiness:" v_pad="0" width="128">Elasticidade da Cmera:</text> | ||
10 | <slider bottom="-116" can_edit_text="true" control_name="DynamicCameraStrength" decimal_digits="0" enabled="true" follows="left|top" height="16" hidden="false" increment="1" initial_val="2" left="276" max_val="10" min_val="0" mouse_opaque="true" name="dynamic camera" show_text="true" value="2" width="128" /> | ||
11 | <check_box bottom="-134" control_name="EditCameraMovement" enabled="true" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Movimento Automtico da Cmera de Edio" left="148" mouse_opaque="true" name="edit camera movement" radio_style="false" tool_tip="Usar posicionamento automtico de cmera quando estiver entrando ou saindo do modo de edio" width="201" /> | ||
12 | <check_box bottom="-152" control_name="AppearanceCameraMovement" enabled="true" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Movimento Automtico da Cmera de Aparncia" left="148" mouse_opaque="true" name="appearance camera movement" radio_style="false" tool_tip="Usar posicionamento automtico da cmera enquanto no modo de edio" width="242" /> | ||
13 | </panel> \ No newline at end of file | ||
diff --git a/linden/indra/newview/skins/xui/pt/panel_preferences_network.xml b/linden/indra/newview/skins/xui/pt/panel_preferences_network.xml deleted file mode 100644 index 3b14099..0000000 --- a/linden/indra/newview/skins/xui/pt/panel_preferences_network.xml +++ /dev/null | |||
@@ -1,14 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <panel border="true" bottom="-409" enabled="true" follows="left|top|right|bottom" height="408" hidden="false" label="Rede" left="102" mouse_opaque="true" name="network" width="517"><text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-20" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="10" hidden="false" left="12" mouse_opaque="false" name="text_box" v_pad="0" width="128">Banda Mxima:</text> | ||
3 | <slider bottom="-25" can_edit_text="true" control_name="ThrottleBandwidthKBPS" decimal_digits="0" enabled="true" follows="left|top" height="15" hidden="false" increment="10" initial_val="50" left="148" max_val="1500" min_val="50" mouse_opaque="true" name="max_bandwidth" show_text="true" value="500" width="180" /> | ||
4 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-20" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="10" hidden="false" left="335" mouse_opaque="false" name="text_box2" v_pad="0" width="140">kbps(kilobits por segundo)</text> | ||
5 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-45" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="10" hidden="false" left="12" mouse_opaque="false" name="cache_size_label_l" v_pad="0" width="128">Cache em Disco (MB):</text> | ||
6 | <slider bottom="-50" can_edit_text="true" control_name="CacheSize" decimal_digits="0" enabled="true" follows="left|top" height="15" hidden="false" increment="10" initial_val="50" left="148" max_val="1000" min_val="10" mouse_opaque="true" name="cache_size" show_text="true" width="180" /> | ||
7 | <button bottom="-55" enabled="true" follows="left|bottom" font="SansSerif" halign="center" height="22" hidden="false" label="Limpar Cache" left="340" mouse_opaque="true" name="clear_cache" scale_image="true" width="85" /> | ||
8 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-70" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="10" hidden="false" left="12" mouse_opaque="false" name="cache_location_label" v_pad="0" width="128">Local do Cache em Disco:</text> | ||
9 | <button bottom="-80" enabled="true" follows="left|top" font="SansSerif" halign="center" height="22" hidden="false" label="Ajusta" label_selected="Ajusta" left="140" mouse_opaque="true" name="set_cache" scale_image="true" width="50" /> | ||
10 | <button bottom="-105" enabled="true" follows="left|top" font="SansSerif" halign="center" height="22" hidden="false" label="Inicia" label_selected="Inicia" left="140" mouse_opaque="true" name="reset_cache" scale_image="true" width="50" /> | ||
11 | <text_editor bevel_style="in" border_style="line" border_thickness="1" bottom="-105" enabled="false" follows="left|top" font="SansSerif" handle_edit_keys_directly="true" height="45" hidden="false" hide_scrollbar="true" left="200" max_length="4096" mouse_opaque="true" name="cache_location" select_all_on_focus_received="false" width="270" word_wrap="false"/> | ||
12 | <check_box bottom="-173" control_name="ConnectionPortEnabled" enabled="true" follows="left|top" font="SansSerifSmall" height="16" hidden="false" initial_value="false" label="Conexo de porta personalizada" left="148" mouse_opaque="true" name="connection_port_enabled" radio_style="false" width="256" /> | ||
13 | <spinner bottom="-193" control_name="ConnectionPort" decimal_digits="0" enabled="true" follows="left|top" height="16" hidden="false" increment="1" initial_val="13000" label=" Porta:" label_width="75" left="168" max_val="13050" min_val="13000" mouse_opaque="true" name="connection_port" width="150" /> | ||
14 | </panel> \ No newline at end of file | ||
diff --git a/linden/indra/newview/skins/xui/pt/panel_preferences_popups.xml b/linden/indra/newview/skins/xui/pt/panel_preferences_popups.xml deleted file mode 100644 index a613747..0000000 --- a/linden/indra/newview/skins/xui/pt/panel_preferences_popups.xml +++ /dev/null | |||
@@ -1,31 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | |||
3 | <panel border="true" bottom="-409" enabled="true" follows="left|top|right|bottom" height="408" hidden="false" label="Popups" left="102" mouse_opaque="true" name="popups" width="517"> | ||
4 | |||
5 | <text bottom="-20" follows="top|left" left="15" width="300">No mostrar popups:</text> | ||
6 | |||
7 | <scroll_list background_visible="true" bottom="-124" column_padding="5" draw_border="true" draw_heading="false" draw_stripes="true" enabled="true" follows="left|top" height="100" hidden="false" left="12" mouse_opaque="true" multi_select="false" name="disabled_popups" width="480" /> | ||
8 | <button bottom="-148" enabled="false" follows="left|top" font="SansSerif" halign="center" height="20" hidden="false" label="Habilitar este popup" label_selected="Habilitar este popup" left="12" mouse_opaque="true" name="enable_popup" scale_image="true" width="150" /> | ||
9 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-162" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="10" hidden="false" left="12" mouse_opaque="false" name="text_box2" v_pad="0" width="128">Mostrar popups:</text> | ||
10 | |||
11 | <scroll_list background_visible="true" bottom="-266" column_padding="5" draw_border="true" draw_heading="false" draw_stripes="true" enabled="true" follows="left|top" height="100" hidden="false" left="12" mouse_opaque="true" multi_select="false" name="enabled_popups" width="480" /> | ||
12 | |||
13 | |||
14 | <check_box bottom_delta="-25" control_name="AutoAcceptNewInventory" enabled="true" | ||
15 | follows="left|top" font="SansSerifSmall" height="16" hidden="false" | ||
16 | initial_value="false" label="Aceitar automaticamente" | ||
17 | left="40" mouse_opaque="true" name="accept_new_inventory" | ||
18 | radio_style="false" | ||
19 | width="270" /> | ||
20 | |||
21 | <check_box bottom_delta="-20" control_name="ShowNewInventory" enabled="true" | ||
22 | follows="left|top" font="SansSerifSmall" height="16" hidden="false" | ||
23 | initial_value="true" label="Visualizar aps aceitar" | ||
24 | left="40" mouse_opaque="true" name="show_new_inventory" | ||
25 | radio_style="false" | ||
26 | width="270" /> | ||
27 | |||
28 | |||
29 | <button bottom="-380" enabled="true" follows="left|top" font="SansSerif" halign="center" height="20" hidden="false" label="Reiniciar Dialogos que sero mostrados na prxima vez..." label_selected="Reiniciar Dialogos que sero mostrados na prxima vez..." left="12" mouse_opaque="true" name="reset_dialogs_btn" scale_image="true" width="330" /> | ||
30 | |||
31 | </panel> | ||
diff --git a/linden/indra/newview/skins/xui/pt/panel_preferences_web.xml b/linden/indra/newview/skins/xui/pt/panel_preferences_web.xml deleted file mode 100644 index a9e9188..0000000 --- a/linden/indra/newview/skins/xui/pt/panel_preferences_web.xml +++ /dev/null | |||
@@ -1,34 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | ||
2 | <panel border="true" bottom="-409" enabled="true" follows="left|top|right|bottom" | ||
3 | height="408" hidden="false" label="Web" left="102" mouse_opaque="true" | ||
4 | name="web" width="517"> | ||
5 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" | ||
6 | bottom="-20" drop_shadow_visible="true" enabled="true" follows="left|top" | ||
7 | font="SansSerifSmall" h_pad="0" halign="left" height="10" hidden="false" | ||
8 | left="12" mouse_opaque="false" name="cache_size_label_l" v_pad="0" width="128"> | ||
9 | Cache do Browser: | ||
10 | </text> | ||
11 | <button bottom="-30" enabled="true" follows="left|bottom" font="SansSerif" | ||
12 | halign="center" height="22" hidden="false" | ||
13 | label="Limpar Agora" left="140" mouse_opaque="true" | ||
14 | name="clear_cache" scale_image="true" width="85" /> | ||
15 | |||
16 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" | ||
17 | bottom="-60" drop_shadow_visible="true" enabled="true" follows="left|top" | ||
18 | font="SansSerifSmall" h_pad="0" halign="left" height="10" hidden="false" | ||
19 | left="12" mouse_opaque="false" name="cookie_label" v_pad="0" width="128"> | ||
20 | Cookies: | ||
21 | </text> | ||
22 | |||
23 | <check_box bottom="-65" control_name="CookiesEnabled" enabled="true" follows="left|top" font="SansSerifSmall" | ||
24 | height="16" hidden="false" initial_value="false" label="Aceitar cookies de websites" | ||
25 | left="140" mouse_opaque="true" name="cookies_enabled" radio_style="false" | ||
26 | width="256" /> | ||
27 | |||
28 | <button bottom="-95" enabled="true" follows="left|bottom" font="SansSerif" | ||
29 | halign="center" height="22" hidden="false" | ||
30 | label="Limpar Agora" left="140" mouse_opaque="true" | ||
31 | name="clear_cookies" scale_image="true" width="85" /> | ||
32 | |||
33 | |||
34 | </panel> | ||
diff --git a/linden/indra/newview/skins/xui/pt/panel_region_covenant.xml b/linden/indra/newview/skins/xui/pt/panel_region_covenant.xml deleted file mode 100644 index c45a3ce..0000000 --- a/linden/indra/newview/skins/xui/pt/panel_region_covenant.xml +++ /dev/null | |||
@@ -1,29 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <panel border="true" bottom="0" follows="top|left" height="320" label="Corretagem" left="0" name="Covenant" width="480"> | ||
3 | |||
4 | <text bottom="-30" follows="left|top" font="SansSerifSmall" height="20" left="5" name="covenant_help_text" width="490">As mudanas informao do convnio mostraro em todos os pacotes na propriedade. </text> | ||
5 | |||
6 | <text bottom_delta="-20" follows="left|top" font="SansSerifSmall" height="20" left="10" name="region_name_lbl" width="75">Regio:</text> | ||
7 | <text bg_readonly_color="clear" bottom_delta="0" follows="left|top" font="SansSerifSmall" height="20" left="85" name="region_name_text" text_readonly_color="white" width="130">(desconhecido) </text> | ||
8 | <text bottom_delta="-20" follows="left|top" font="SansSerifSmall" height="20" left="10" name="estate_name_lbl" width="75">Propriedade:</text> | ||
9 | <text bg_readonly_color="clear" bottom_delta="0" follows="left|top" font="SansSerifSmall" height="20" left="85" name="estate_name_text" text_readonly_color="white" width="130">(desconhecido) </text> | ||
10 | <text bottom_delta="20" follows="left|top" font="SansSerifSmall" height="20" left="290" name="covenent_instructions" width="200">Arraste o cartao de um Corretor | ||
11 | para este estado.</text> | ||
12 | <button bottom_delta="-25" follows="left|top" font="SansSerifSmall" height="18" label="?" left="370" name="covenant_help" width="18" /> | ||
13 | <button bottom_delta="28" follows="left|top" font="SansSerifSmall" height="18" label="Resetar" left="190" name="reset_covenant" width="90" /> | ||
14 | |||
15 | <text bottom_delta="-40" follows="left|top" font="SansSerifSmall" height="20" left="10" name="estate_owner_lbl" width="120">Proprietrio final:</text> | ||
16 | |||
17 | <text bg_readonly_color="clear" bottom_delta="0" follows="left|top" font="SansSerifSmall" height="20" left="105" name="estate_owner_text" text_readonly_color="white" width="130">(desconhecido) </text> | ||
18 | |||
19 | <text bottom_delta="-15" follows="left|top" font="SansSerifSmall" height="20" left="200" name="covenant_timestamp_text" width="300" /> | ||
20 | <text bg_readonly_color="clear" bottom_delta="-30" follows="left|top" font="SansSerif" height="20" left="10" name="resellable_clause" text_readonly_color="white" width="500">Terras compradas na regio no podero ser revendidas.</text> | ||
21 | |||
22 | <text bg_readonly_color="clear" bottom_delta="-18" follows="left|top" font="SansSerif" height="20" left="10" name="changeable_clause" text_readonly_color="white" width="500">Terras compradas na regio no podero ser compartilhadas ou subdividas.</text> | ||
23 | |||
24 | <text_editor bg_readonly_color="clear" bottom_delta="-320" enabled="false" follows="left|top" font="SansSerifSmall" height="310" left="52" max_length="65535" name="covenant_editor" text_readonly_color="white" width="375" word_wrap="true">Carregando...</text_editor> | ||
25 | <text hidden="true" name="can_resell">Terras compradas na regio podero ser revendidas.</text> | ||
26 | <text hidden="true" name="can_not_resell">Terras compradas na regio no podero ser revendidas.</text> | ||
27 | <text hidden="true" name="can_change">O terreno comprado nesta regio pode ser compartilhada ou subdividida. </text> | ||
28 | <text hidden="true" name="can_not_change">A terreno comprado nesta regio no pode ser compartilhada ou subdividida. </text> | ||
29 | </panel> | ||
diff --git a/linden/indra/newview/skins/xui/pt/panel_region_debug.xml b/linden/indra/newview/skins/xui/pt/panel_region_debug.xml deleted file mode 100644 index f4fdda7..0000000 --- a/linden/indra/newview/skins/xui/pt/panel_region_debug.xml +++ /dev/null | |||
@@ -1,34 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <panel border="true" bottom="0" follows="top|left" height="320" label="Debug" left="0" name="Debug" width="480"><text bottom="-30" follows="left|top" font="SansSerif" height="20" left="10" name="region_text_lbl" width="100">Regio:</text> | ||
3 | <text bottom_delta="0" follows="left|top" font="SansSerif" height="20" left="60" name="region_text" width="400">nenhum</text> | ||
4 | |||
5 | <check_box bottom_delta="-20" follows="left|top" height="20" label="Desabilitar Scripts" left="10" name="disable_scripts_check" tool_tip="Desabilitar todos scripts nesta regio" width="80" /> | ||
6 | |||
7 | <button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="18" label="?" left="135" name="disable_scripts_help" width="18" /> | ||
8 | |||
9 | <check_box bottom_delta="-20" follows="left|top" height="20" label="Desabilitar colises" left="10" name="disable_collisions_check" tool_tip="Desabilitar colises dos avateres nessa regio" width="80" /> | ||
10 | |||
11 | <button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="18" label="?" left="135" name="disable_collisions_help" width="18" /> | ||
12 | |||
13 | <check_box bottom_delta="-20" follows="left|top" height="20" label="Desabilitar fsica" left="10" name="disable_physics_check" tool_tip="Desabilitar fisca nessa regio" width="80" /> | ||
14 | |||
15 | <button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="18" label="?" left="135" name="disable_physics_help" width="18" /> | ||
16 | |||
17 | <button bottom_delta="-30" enabled="false" follows="left|top" height="20" label="Aplicar" left="60" name="apply_btn" width="60" /> | ||
18 | |||
19 | <button bottom_delta="-50" follows="left|top" height="20" label="Escolher o avatar..." left="10" name="choose_avatar_btn" width="150" /> | ||
20 | <text bottom_delta="0" follows="left|top" height="20" left="170" name="target_avatar_name" width="150" /> | ||
21 | |||
22 | <button bottom_delta="-20" follows="left|top" height="20" label="Retornar objetos com scripts no terreno de outros" left="50" name="return_scripted_other_land_btn" width="350" /> | ||
23 | |||
24 | <button bottom_delta="-20" follows="left|top" height="20" label="Retornar todos os objetos com script" left="50" name="return_scripted_all_btn" width="350" /> | ||
25 | |||
26 | |||
27 | <button bottom_delta="-50" follows="left|top" height="20" label="Ranking-Colises" left="10" name="top_colliders_btn" tool_tip="Lista dos objetos que experimentam as colises " width="150" /> | ||
28 | <button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="18" label="?" left="170" name="top_colliders_help" width="18" /> | ||
29 | <button bottom_delta="-20" follows="left|top" height="20" label="Ranking-Scripts" left="10" name="top_scripts_btn" tool_tip="List of objects spending the most time running scripts" width="150" /> | ||
30 | <button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="18" label="?" left="170" name="top_scripts_help" width="18" /> | ||
31 | <button bottom_delta="-50" follows="left|top" height="20" label="Restart Region" left="10" name="restart_btn" tool_tip="Inicio da contagem regressiva em 2 minutos" width="100" /> | ||
32 | <button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="18" label="?" left="120" name="restart_help" width="18" /> | ||
33 | <button bottom_delta="-20" follows="left|top" height="20" label="Cancelar Reinicio" left="10" name="cancel_restart_btn" tool_tip="Cancelar o reinicio da regio" width="100" /> | ||
34 | </panel> | ||
diff --git a/linden/indra/newview/skins/xui/pt/panel_region_estate.xml b/linden/indra/newview/skins/xui/pt/panel_region_estate.xml deleted file mode 100644 index 13f2515..0000000 --- a/linden/indra/newview/skins/xui/pt/panel_region_estate.xml +++ /dev/null | |||
@@ -1,63 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <panel border="true" bottom="0" follows="top|left" height="320" label="Estado" left="0" name="Estate" width="480"><text bottom="-30" follows="left|top" font="SansSerifSmall" height="20" left="10" name="estate_help_text" width="420">As mudanas aos ajustes nesta aba afetaro todas as regies na propriedade. </text> | ||
3 | <text bottom_delta="-20" follows="left|top" font="SansSerif" height="20" left="10" name="estate_text" width="45">Estado:</text> | ||
4 | <text bg_readonly_color="clear" bottom_delta="0" follows="left|top" font="SansSerif" height="20" left="90" name="estate_name" text_readonly_color="white" width="150">(nenhum)</text> | ||
5 | <text bottom_delta="-20" follows="left|top" font="SansSerif" height="20" left="10" name="owner_text" width="70">Proprietrio: </text> | ||
6 | <text bg_readonly_color="clear" bottom_delta="0" follows="left|top" font="SansSerif" height="20" left="90" name="estate_owner" text_readonly_color="white" width="150">(nenhum)</text> | ||
7 | |||
8 | <text bottom_delta="-25" follows="left|top" height="20" left="10" name="estate_manager_label" width="180">Gerentes da propriedade: </text> | ||
9 | <button bottom_delta="3" follows="left|top" font="SansSerifSmall" height="18" label="?" left="190" name="estate_manager_help" width="18" /> | ||
10 | <name_list bottom_delta="-60" follows="left|top" height="60" left="10" name="estate_manager_name_list" width="200" /> | ||
11 | <button bottom_delta="-30" enabled="true" follows="left|top" height="20" label="Adicionar..." left="10" name="add_estate_manager_btn" width="80" /> | ||
12 | <button bottom_delta="0" enabled="true" follows="left|top" height="20" label="Remover..." left="110" name="remove_estate_manager_btn" width="80" /> | ||
13 | <check_box bottom_delta="-50" follows="left|top" height="20" label="Usar Tempo global " left="15" name="use_global_time_check" width="100" /> | ||
14 | <button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="18" label="?" left="125" name="use_global_time_help" width="18" /> | ||
15 | <check_box bottom_delta="-20" follows="left|top" height="20" label="Sol fixo " left="15" name="fixed_sun_check" width="100" /> | ||
16 | <button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="18" label="?" left="125" name="fixed_sun_help" width="18" /> | ||
17 | <icon bottom_delta="-25" follows="left|top" height="20" image_name="icon_day_cycle.tga" left="50" name="daycycle" width="165" /> | ||
18 | <slider bottom_delta="-25" follows="left|top" height="20" increment="0.001" label="Fase " left="15" max_val="30" min_val="6" name="sun_hour_slider" show_text="false" width="200" /> | ||
19 | <check_box bottom_delta="-30" follows="left|top" height="20" label="Acesso pblico " left="15" name="externally_visible_check" width="200" /> | ||
20 | |||
21 | <button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="18" label="?" left="185" name="externally_visible_help" width="18" /> | ||
22 | |||
23 | <!--<check_box name="mainland_visible_check" label="Mainland visvel daqui." left="15" bottom_delta="-20" width="80" height="20" follows="left|top" /> <button name="mainland_visible_help" label="?" left="185" bottom_delta="0" width="18" height="18" follows="left|top" font="SansSerifSmall" />--> | ||
24 | <check_box bottom_delta="-40" follows="left|top" height="20" label="Permitir Tele-transporte direto" left="15" name="allow_direct_teleport" width="80" /> | ||
25 | |||
26 | |||
27 | |||
28 | <button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="18" label="?" left="195" name="allow_direct_teleport_help" width="18" /> | ||
29 | |||
30 | |||
31 | <text bottom_delta="-22" follows="left|top" font="SansSerifSmall" height="20" left="12" name="region_text_lbl" width="200">Proibir acesso a: </text> | ||
32 | |||
33 | <check_box bottom_delta="-16" follows="left|top" height="20" label="Informaes de no pagamento" left="15" name="deny_anonymous" width="80" /> | ||
34 | |||
35 | <check_box bottom_delta="-18" follows="left|top" height="20" label="Informaes de pagamento" left="15" name="deny_identified" width="80" /> | ||
36 | |||
37 | <check_box bottom_delta="-18" follows="left|top" height="20" label="Informaes de pagtos realizados" left="15" name="deny_transacted" width="80" /> | ||
38 | |||
39 | <text bottom_delta="-23" follows="left|top" height="20" left="15" name="abuse_email_text" width="100" visible="false">[E-mail do abuso Beta] </text> | ||
40 | <button bottom_delta="3" enabled="false" follows="left|top" height="20" label="Aplicar" left="150" name="apply_btn" width="60" /> | ||
41 | <view_border bevel_style="none" border_thickness="1" bottom_delta="-5" follows="top|left" height="275" left="8" width="220" /> | ||
42 | <text bottom="-95" follows="left|top" height="20" left="250" name="allow_resident_label" width="220">Residentes permitidos: </text> | ||
43 | <button bottom_delta="3" follows="left|top" font="SansSerifSmall" height="18" label="?" left="430" name="allow_resident_help" width="18" /> | ||
44 | <view_border bevel_style="none" border_thickness="1" bottom_delta="-60" follows="top|left" height="60" left="250" width="200" /> | ||
45 | <name_list bottom_delta="0" follows="left|top" height="60" left="250" name="allowed_avatar_name_list" width="200" /> | ||
46 | |||
47 | <button bottom_delta="-30" enabled="true" follows="left|top" height="20" label="Adicionar..." left="250" name="add_allowed_avatar_btn" width="80" /> | ||
48 | <button bottom_delta="0" enabled="true" follows="left|top" height="20" label="Remover..." left="340" name="remove_allowed_avatar_btn" width="80" /> | ||
49 | <text bottom_delta="-34" follows="left|top" height="20" left="250" name="allow_group_label" width="200">Grupos reservados: </text> | ||
50 | <button bottom_delta="3" follows="left|top" font="SansSerifSmall" height="18" label="?" left="430" name="allow_group_help" width="18" /> | ||
51 | <view_border bevel_style="none" border_thickness="1" bottom_delta="-60" follows="top|left" height="60" left="250" width="200" /> | ||
52 | <name_list bottom_delta="0" follows="left|top" height="60" left="250" name="allowed_group_name_list" width="200" /> | ||
53 | <button bottom_delta="-30" enabled="true" follows="left|top" height="20" label="Adicionar..." left="250" name="add_allowed_group_btn" width="80" /> | ||
54 | <button bottom_delta="0" enabled="true" follows="left|top" height="20" label="Remover..." left="340" name="remove_allowed_group_btn" width="80" /> | ||
55 | <text bottom_delta="-34" follows="left|top" height="20" left="250" name="ban_resident_label" width="200">Residentes proibidos: </text> | ||
56 | <button bottom_delta="3" follows="left|top" font="SansSerifSmall" height="18" label="?" left="430" name="ban_resident_help" width="18" /> | ||
57 | <view_border bevel_style="none" border_thickness="1" bottom_delta="-60" follows="top|left" height="60" left="250" width="200" /> | ||
58 | <name_list bottom_delta="0" follows="left|top" height="60" left="250" name="banned_avatar_name_list" width="200" /> | ||
59 | <button bottom_delta="-30" enabled="true" follows="left|top" height="20" label="Adicionar..." left="250" name="add_banned_avatar_btn" width="80" /> | ||
60 | <button bottom_delta="0" enabled="true" follows="left|top" height="20" label="Remover..." left="340" name="remove_banned_avatar_btn" width="80" /> | ||
61 | <button bottom_delta="-21" follows="left|top" height="20" label="Enviar mensagem ao Estado " left="250" name="message_estate_btn" width="200" /> | ||
62 | <button bottom_delta="-21" enabled="true" follows="left|top" height="20" label="Descartar Estado" left="250" name="kick_user_from_estate_btn" width="200" /> | ||
63 | </panel> | ||
diff --git a/linden/indra/newview/skins/xui/pt/panel_region_general.xml b/linden/indra/newview/skins/xui/pt/panel_region_general.xml deleted file mode 100644 index e700ee3..0000000 --- a/linden/indra/newview/skins/xui/pt/panel_region_general.xml +++ /dev/null | |||
@@ -1,31 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | |||
3 | <panel border="true" bottom="0" follows="top|left" height="320" label="Regio" left="0" name="General" width="480"><text bottom="-30" follows="left|top" font="SansSerif" height="20" left="10" name="region_text_lbl" width="100">Regio:</text> | ||
4 | <text bottom_delta="0" follows="left|top" font="SansSerif" height="20" left="60" name="region_text" width="400">desconhecido</text> | ||
5 | <check_box bottom_delta="-20" follows="left|top" height="20" label="Bloquear Terraform" left="10" name="block_terraform_check" width="80" /> | ||
6 | <button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="18" label="?" left="160" name="terraform_help" width="18" /> | ||
7 | <check_box bottom_delta="-20" follows="left|top" height="20" label="Bloquear Vo" left="10" name="block_fly_check" width="80" /> | ||
8 | <button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="18" label="?" left="160" name="fly_help" width="18" /> | ||
9 | <check_box bottom_delta="-20" follows="left|top" height="20" label="Permitir Dano" left="10" name="allow_damage_check" width="80" /> | ||
10 | <button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="18" label="?" left="160" name="damage_help" width="18" /> | ||
11 | <check_box bottom_delta="-20" follows="left|top" height="20" label="Restringir Empurrar" left="10" name="restrict_pushobject" width="80" /> | ||
12 | <button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="18" label="?" left="160" name="restrict_pushobject_help" width="18" /> | ||
13 | <check_box bottom_delta="-20" follows="left|top" height="20" label="Permitir Revenda de Terra" left="10" name="allow_land_resell_check" width="80" /> | ||
14 | <button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="18" label="?" left="160" name="land_resell_help" width="18" /> | ||
15 | <check_box bottom_delta="-20" follows="left|top" height="20" label="Permitir Compartilhamento/Diviso de Lotes" left="10" name="allow_parcel_changes_check" width="80" /> | ||
16 | <button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="18" label="?" left="260" name="parcel_changes_help" width="18" /> | ||
17 | <spinner bottom_delta="-30" follows="left|top" height="20" increment="1" label="Agente Limite" label_width="80" left="10" max_val="100" min_val="0" name="agent_limit_spin" width="160" /> | ||
18 | <button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="18" label="?" left="180" name="agent_limit_help" width="18" /> | ||
19 | <spinner bottom_delta="-20" follows="left|top" height="20" increment="0.5" label="Objeto Bonus" label_width="80" left="10" max_val="10" min_val="1" name="object_bonus_spin" width="160" /> | ||
20 | <button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="18" label="?" left="180" name="object_bonus_help" width="18" /> | ||
21 | <text bottom_delta="-30" follows="left|top" height="20" label="Maturidade" left="10" name="access_text" width="100">Maturidade:</text> | ||
22 | <combo_box bottom_delta="0" follows="left|top" height="20" label="Adulto" left="92" name="access_combo" width="80"><combo_item name="PG">PG</combo_item> | ||
23 | <combo_item name="Mature">Adulto</combo_item> | ||
24 | </combo_box> | ||
25 | <button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="18" label="?" left="180" name="access_help" width="18" /> | ||
26 | <button bottom_delta="-30" enabled="false" follows="left|top" height="20" label="Aplicar" left="115" name="apply_btn" width="60" /> | ||
27 | <button bottom_delta="-80" follows="left|top" height="20" label="Teleportar um usurio para Casa..." left="10" name="kick_btn" width="200" /> | ||
28 | <button bottom_delta="-20" follows="left|top" height="20" label="Teleportar Todos os Usurios..." left="10" name="kick_all_btn" width="200" /> | ||
29 | <button bottom_delta="-40" follows="left|top" height="20" label="Enviar Mensagem para Regio..." left="10" name="im_btn" width="200" /> | ||
30 | <button bottom="-50" follows="left|top" height="20" label="Gerenciar Telehub..." left="250" name="manage_telehub_btn" width="150" /> | ||
31 | </panel> | ||
diff --git a/linden/indra/newview/skins/xui/pt/panel_region_terrain.xml b/linden/indra/newview/skins/xui/pt/panel_region_terrain.xml deleted file mode 100644 index cd88c3b..0000000 --- a/linden/indra/newview/skins/xui/pt/panel_region_terrain.xml +++ /dev/null | |||
@@ -1,26 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <panel border="true" bottom="0" follows="top|left" height="320" label="Terreno " left="0" name="Terrain" width="480"><text bottom="-30" follows="left|top" font="SansSerif" height="20" left="10" name="region_text_lbl" width="100">Regio:</text> | ||
3 | <text bottom_delta="0" follows="left|top" font="SansSerif" height="20" left="60" name="region_text" width="400">nenhum</text> | ||
4 | <spinner bottom_delta="-30" follows="left|top" height="20" increment=".1" label="Altura da gua " label_width="100" left="15" max_val="100" min_val="0" name="water_height_spin" width="160" /> | ||
5 | <button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="18" label="?" left="185" name="water_height_help" width="18" /> | ||
6 | <spinner bottom_delta="-20" follows="left|top" height="20" increment=".2" label="Limite do aumento do terreno " label_width="100" left="15" max_val="100" min_val="0" name="terrain_raise_spin" width="160" /> | ||
7 | <button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="18" label="?" left="185" name="terrain_raise_help" width="18" /> | ||
8 | <spinner bottom_delta="-20" follows="left|top" height="20" increment=".2" label="Limite mais baixo " label_width="100" left="15" max_val="0" min_val="-100" name="terrain_lower_spin" width="160" /> | ||
9 | <button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="18" label="?" left="185" name="terrain_lower_help" width="18" /> | ||
10 | <check_box bottom="-55" follows="left|top" height="20" label="Usar o sol da propriedade " left="250" name="use_estate_sun_check" width="100" /> | ||
11 | <button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="18" label="?" left="420" name="use_estate_sun_help" width="18" /> | ||
12 | <check_box bottom_delta="-20" follows="left|top" height="20" label="Sol fixo" left="250" name="fixed_sun_check" width="100" /> | ||
13 | <button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="18" label="?" left="420" name="fixed_sun_help" width="18" /> | ||
14 | <icon bottom_delta="-25" follows="left|top" height="20" image_name="icon_day_cycle.tga" left="285" name="daycycle" width="165" /> | ||
15 | |||
16 | <slider bottom_delta="-25" follows="left|top" height="20" increment="0.001" label="Fase" left="250" max_val="30" min_val="6" name="sun_hour_slider" show_text="false" width="200" /> | ||
17 | |||
18 | <button bottom_delta="-30" enabled="false" follows="left|top" height="20" label="Aplicar" left="390" name="apply_btn" width="60" /> | ||
19 | <view_border bevel_style="none" border_thickness="1" bottom_delta="-5" follows="top|left" height="130" left="8" width="460" /> | ||
20 | <button bottom_delta="-80" follows="left|top" height="20" label="Download RAW terrain..." left="10" name="download_raw_btn" tool_tip="No disponvel aos gerentes somente aos proprietrios." width="150" /> | ||
21 | <button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="18" label="?" left="170" name="download_raw_help" width="18" /> | ||
22 | <button bottom_delta="-20" follows="left|top" height="20" label="Upload RAW terrain..." left="10" name="upload_raw_btn" tool_tip="No disponvel aos gerentes, somente aos proprietrios." width="150" /> | ||
23 | <button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="18" label="?" left="170" name="upload_raw_help" width="18" /> | ||
24 | <button bottom_delta="-40" follows="left|top" height="20" label="BakeTerrain" left="10" name="bake_terrain_btn" tool_tip="Terreno atual ajustado como o ponto mdio para o aumento/limites mais baixos " width="100" /> | ||
25 | <button bottom_delta="0" follows="left|top" font="SansSerifSmall" height="18" label="?" left="120" name="bake_terrain_help" width="18" /> | ||
26 | </panel> | ||
diff --git a/linden/indra/newview/skins/xui/pt/panel_region_texture.xml b/linden/indra/newview/skins/xui/pt/panel_region_texture.xml deleted file mode 100644 index 3f290cf..0000000 --- a/linden/indra/newview/skins/xui/pt/panel_region_texture.xml +++ /dev/null | |||
@@ -1,30 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <panel border="true" bottom="0" follows="top|left" height="320" label="Texturas de Cho" left="0" name="Textures" width="480"><text bottom="-30" follows="left|top" font="SansSerif" height="20" left="10" name="region_text_lbl" width="100">Regio:</text> | ||
3 | <text bottom_delta="0" follows="left|top" font="SansSerif" height="20" left="60" name="region_text" width="400">desconhecido</text> | ||
4 | <text bottom_delta="-26" follows="left|top" height="20" left="10" name="detail_texture_text" width="300">Texturas de Terreno (requer 512x512, arquivos 24 bit .tga )</text> | ||
5 | <texture_picker bottom_delta="-100" follows="left|top" height="100" left="10" name="texture_detail_0" width="100" /> | ||
6 | <texture_picker bottom_delta="0" follows="left|top" height="100" left="120" name="texture_detail_1" width="100" /> | ||
7 | <texture_picker bottom_delta="0" follows="left|top" height="100" left="230" name="texture_detail_2" width="100" /> | ||
8 | <texture_picker bottom_delta="0" follows="left|top" height="100" left="340" name="texture_detail_3" width="100" /> | ||
9 | <text bottom_delta="-10" follows="left|top" height="20" left="10" name="height_text_lbl" width="50">1 (baixo)</text> | ||
10 | <text bottom_delta="0" follows="left|top" height="20" left="120" name="height_text_lbl2" width="100">2</text> | ||
11 | <text bottom_delta="0" follows="left|top" height="20" left="230" name="height_text_lbl3" width="100">3</text> | ||
12 | <text bottom_delta="0" follows="left|top" height="20" left="340" name="height_text_lbl4" width="100">4 (alto)</text> | ||
13 | <text bottom_delta="-40" follows="left|top" height="20" left="10" name="height_text_lbl5" width="300">Escalas de Elevao de Terreno</text> | ||
14 | <text bottom_delta="-15" follows="left|top" height="20" left="42" name="height_text_lbl6" width="100">Sudeste</text> | ||
15 | <text bottom_delta="0" follows="left|top" height="20" left="152" name="height_text_lbl7" width="100">Noroeste</text> | ||
16 | <text bottom_delta="0" follows="left|top" height="20" left="262" name="height_text_lbl8" width="100">Sudoeste</text> | ||
17 | <text bottom_delta="0" follows="left|top" height="20" left="372" name="height_text_lbl9" width="100">Noroeste</text> | ||
18 | <spinner bottom_delta="-20" follows="left|top" height="20" increment="0.5" label="Baixo" label_width="30" left="10" max_val="500" min_val="-500" name="height_start_spin_0" width="100" /> | ||
19 | <spinner bottom_delta="0" follows="left|top" height="20" increment="0.5" label="Baixo" label_width="30" left="120" max_val="500" min_val="-500" name="height_start_spin_1" width="100" /> | ||
20 | <spinner bottom_delta="0" follows="left|top" height="20" increment="0.5" label="Baixo" label_width="30" left="230" max_val="500" min_val="-500" name="height_start_spin_2" width="100" /> | ||
21 | <spinner bottom_delta="0" follows="left|top" height="20" increment="0.5" label="Baixo" label_width="30" left="340" max_val="500" min_val="-500" name="height_start_spin_3" width="100" /> | ||
22 | <spinner bottom_delta="-20" follows="left|top" height="20" increment="0.5" label="Alto" label_width="30" left="10" max_val="500" min_val="-500" name="height_range_spin_0" width="100" /> | ||
23 | <spinner bottom_delta="0" follows="left|top" height="20" increment="0.5" label="Alto" label_width="30" left="120" max_val="500" min_val="-500" name="height_range_spin_1" width="100" /> | ||
24 | <spinner bottom_delta="0" follows="left|top" height="20" increment="0.5" label="Alto" label_width="30" left="230" max_val="500" min_val="-500" name="height_range_spin_2" width="100" /> | ||
25 | <spinner bottom_delta="0" follows="left|top" height="20" increment="0.5" label="Alto" label_width="30" left="340" max_val="500" min_val="-500" name="height_range_spin_3" width="100" /> | ||
26 | <text bottom_delta="-40" follows="left|top" height="20" left="25" name="height_text_lbl10" width="480">Estes valores respresentam o tipo de escala para as texturas acima.</text> | ||
27 | <text bottom_delta="-16" follows="left|top" height="20" left="25" name="height_text_lbl11" width="450">Medido em metros, o valor Baixo a altura mxima da Textura #1,</text> | ||
28 | <text bottom_delta="-16" follows="left|top" height="20" left="25" name="height_text_lbl12" width="480">e o valor Alto a altura Mnima da Textura #4.</text> | ||
29 | <button bottom="10" enabled="false" follows="left|bottom" height="20" label="Aplicar" left="410" name="apply_btn" width="60" /> | ||
30 | </panel> | ||
diff --git a/linden/indra/newview/skins/xui/pt/panel_scrolling_param.xml b/linden/indra/newview/skins/xui/pt/panel_scrolling_param.xml deleted file mode 100644 index 1b81bda..0000000 --- a/linden/indra/newview/skins/xui/pt/panel_scrolling_param.xml +++ /dev/null | |||
@@ -1,9 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <panel bottom="0" enabled="true" height="152" hidden="false" left="0" mouse_opaque="true" name="LLScrollingPanelParam" width="270"><text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-132" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" hidden="false" left="4" mouse_opaque="true" name="min param text" v_pad="0" width="128" /> | ||
3 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-132" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" hidden="false" left="138" mouse_opaque="true" name="max param text" v_pad="0" width="128" /> | ||
4 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-27" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" hidden="false" left="8" mouse_opaque="true" name="Loading..." v_pad="0" width="128">Carregando...</text> | ||
5 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-27" drop_shadow_visible="true" enabled="true" follows="left|top" font="SansSerifSmall" h_pad="0" halign="left" height="16" hidden="false" left="142" mouse_opaque="true" name="Loading...2" v_pad="0" width="128">Carregando...</text> | ||
6 | <button bottom="-132" enabled="false" font="SansSerif" halign="center" height="132" hidden="false" image_disabled="square_btn_32x128.tga" image_disabled_selected="square_btn_selected_32x128.tga" image_selected="square_btn_selected_32x128.tga" image_unselected="square_btn_32x128.tga" label="" label_selected="" tab_stop="false" left="2" mouse_opaque="true" name="less" scale_image="true" width="132" /> | ||
7 | <button bottom="-132" enabled="false" font="SansSerif" halign="center" height="132" hidden="false" image_disabled="square_btn_32x128.tga" image_disabled_selected="square_btn_selected_32x128.tga" image_selected="square_btn_selected_32x128.tga" image_unselected="square_btn_32x128.tga" label="" label_selected="" tab_stop="false" left="136" mouse_opaque="true" name="more" scale_image="true" width="132" /> | ||
8 | <slider bottom="-150" can_edit_text="true" decimal_digits="0" enabled="false" height="16" hidden="false" increment="1" initial_val="0" label="[DESC]" label_width="100" left="6" max_val="100" min_val="0" mouse_opaque="true" name="param slider" show_text="true" value="0" width="258" /> | ||
9 | </panel> | ||
diff --git a/linden/indra/newview/skins/xui/pt/panel_settings_chat.xml b/linden/indra/newview/skins/xui/pt/panel_settings_chat.xml deleted file mode 100644 index aece4dd..0000000 --- a/linden/indra/newview/skins/xui/pt/panel_settings_chat.xml +++ /dev/null | |||
@@ -1,29 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <panel border="true" bottom="0" height="500" left="0" name="chat" title="Conversa" width="400"><text bottom="-20" follows="top|left" left="12" width="128">Tamanho da fonte do chat:</text> | ||
3 | <radio_group bottom="-72" follows="top|left" height="60" left="148" name="chat font size" width="128"><radio_item>Pequeno</radio_item> | ||
4 | <radio_item>Mdio</radio_item> | ||
5 | <radio_item>Grande</radio_item> | ||
6 | </radio_group> | ||
7 | <text bottom="-95" follows="top|left" left="12" width="128">Cor do chat:</text> | ||
8 | <color_swatch bottom="-140" follows="top|left" height="56" label="Sistema" left="148" name="system" width="40" /> | ||
9 | <color_swatch bottom="-140" follows="top|left" height="56" label="Usurios" left="210" name="users" width="40" /> | ||
10 | <color_swatch bottom="-140" follows="top|left" height="56" label="Objetos" left="272" name="objects" width="40" /> | ||
11 | <color_swatch bottom="-140" follows="top|left" height="56" label="Bolha" left="334" name="background" width="40" /> | ||
12 | <text bottom="-167" follows="top|left" left="12" width="128">Chat Console:</text> | ||
13 | <spinner bottom="-173" decimal_digits="0" follows="top|left" increment="1" initial_val="10" label="Sumir com o chat depois" label_width="80" left="148" max_val="60" min_val="2" name="fade_chat_time" width="130" /> | ||
14 | <text bottom="-167" follows="top|left" left="282" width="80">(segundos)</text> | ||
15 | <spinner bottom="-170" decimal_digits="0" follows="top|left" increment="1" initial_val="10" label="" label_width="0" left="340" max_val="50" min_val="1" name="max_chat_count" width="60" /> | ||
16 | <text bottom="-167" follows="top|left" left="405" width="60">(# linhas)</text> | ||
17 | <slider bottom="-192" follows="top|left" height="12" increment="0.05" initial_val="1" label="Opaco" left="148" name="console_opacity" width="200" /> | ||
18 | <text bottom_delta="-20" follows="top|left" left="12" width="128">Opes do Chat:</text> | ||
19 | <check_box bottom_delta="-7" follows="top|left" label="Chat usando tamanho de tela cheia (aps reincio)" left="148" name="chat_full_width_check" /> | ||
20 | <check_box bottom_delta="-20" follows="top|left" label="Fechar chat depois de apertar retornar" left="148" name="close_chat_on_return_check" /> | ||
21 | <check_box bottom_delta="-20" follows="top|left" label="Teclas de setas movem o personagem durante a conversa" left="148" name="arrow_keys_move_avatar_check" /> | ||
22 | <check_box bottom_delta="-20" follows="top|left" label="Mostrar hora no chat" left="148" name="show_timestamps_check" /> | ||
23 | <text bottom_delta="-20" follows="top|left" left="12" width="128">Chat bolha:</text> | ||
24 | <check_box bottom_delta="-7" follows="top|left" label="Mostrar chat bolhas" left="148" name="bubble_text_chat" /> | ||
25 | <slider bottom_delta="-20" follows="top|left" height="12" increment="0.05" initial_val="1" label="Opaco" left="148" name="bubble_chat_opacity" width="200" /> | ||
26 | <text bottom_delta="-20" follows="top|left" left="12" width="128">Erros do Script:</text> | ||
27 | <check_box bottom_delta="-7" follows="top|left" label="Mostrar erros de Script e avisos como conversa normal." left="148" name="script_errors_as_chat" /> | ||
28 | <color_swatch bottom_delta="-60" follows="top|left" height="56" label="Cor" left="148" name="script_error" width="40" /> | ||
29 | </panel> | ||
diff --git a/linden/indra/newview/skins/xui/pt/panel_settings_im.xml b/linden/indra/newview/skins/xui/pt/panel_settings_im.xml deleted file mode 100644 index 55a873a..0000000 --- a/linden/indra/newview/skins/xui/pt/panel_settings_im.xml +++ /dev/null | |||
@@ -1,8 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <panel border="true" bottom="0" height="500" left="0" name="im" title="MI" width="400"><text bottom="-20" left="12" width="128">Opes do MI:</text> | ||
3 | <check_box bottom_delta="-5" follows="top|left" label="Mandar MI para e-mail" left="148" name="send_im_to_email" tool_tip="Mude o seu endereo de e-mail em secondlife.com" /> | ||
4 | <check_box bottom_delta="-20" follows="top|left" label="Incluir MIs no histrico da conversa." left="148" name="include_im_in_chat_history" /> | ||
5 | <check_box bottom_delta="-20" follows="top|left" label="Mostrar hora na MI" left="148" name="show_timestamps_check" /> | ||
6 | <text bottom_delta="-20" follows="top|left" left="12" width="128">Resposta no modo ocupado:</text> | ||
7 | <text_editor bottom_delta="-60" follows="top|left" font="SansSerifSmall" height="70" left="148" name="busy_response" width="330" word_wrap="true" /> | ||
8 | </panel> | ||
diff --git a/linden/indra/newview/skins/xui/pt/panel_settings_msgbox.xml b/linden/indra/newview/skins/xui/pt/panel_settings_msgbox.xml deleted file mode 100644 index 8640034..0000000 --- a/linden/indra/newview/skins/xui/pt/panel_settings_msgbox.xml +++ /dev/null | |||
@@ -1,8 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <panel border="true" bottom="0" height="500" label="Popups" left="0" name="popups" title="Popups" width="400"><text bottom="-20" follows="top|left" left="12" width="300">No mostrar popups:</text> | ||
3 | <scroll_list follows="top|left" height="100" left="12" name="disabled_popups" width="480" /> | ||
4 | <button follows="top|left" height="20" label="Ativar essa popup" left="12" name="enable_popup" width="150" /> | ||
5 | <text follows="top|left" left="12" width="128">Mostrar popups:</text> | ||
6 | <scroll_list follows="top|left" height="100" left="12" name="enabled_popups" width="480" /> | ||
7 | <button bottom_delta="-45" follows="top|left" height="20" label="Resetar 'Mostrar prxima vez' Dialogos..." left="12" name="reset_dialogs_btn" width="210" /> | ||
8 | </panel> | ||
diff --git a/linden/indra/newview/skins/xui/pt/panel_settings_network.xml b/linden/indra/newview/skins/xui/pt/panel_settings_network.xml deleted file mode 100644 index f703db0..0000000 --- a/linden/indra/newview/skins/xui/pt/panel_settings_network.xml +++ /dev/null | |||
@@ -1,24 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <panel border="true" bottom="0" height="500" left="0" name="network" title="Network" width="400"><text bottom="-20" follows="top|left" left="12" width="128">Banda mxima:</text> | ||
3 | <slider bottom_delta="-5" can_edit_text="true" decimal_digits="0" follows="top|left" height="15" increment="10" initial_val="50" label="" left="148" max_val="1000" min_val="50" name="max_bandwidth" width="200" /> | ||
4 | <text bottom="-20" follows="top|left" left="350" width="140">kbps (kilobits per second)</text> | ||
5 | <text bottom_delta="-25" follows="top|left" left="12" width="128">Tamanho do disco em cache:</text> | ||
6 | <radio_group bottom_delta="-70" follows="top|left" height="80" left="148" name="disk cache" width="128"><radio_item>50 MB</radio_item> | ||
7 | <radio_item>200 MB</radio_item> | ||
8 | <radio_item>500 MB</radio_item> | ||
9 | <radio_item>1000 MB</radio_item> | ||
10 | </radio_group> | ||
11 | <button bottom_delta="-120" follows="left|bottom" height="20" label="Limpar Cache" left="148" name="clear_cache" width="128" /> | ||
12 | <text bottom="-180" follows="top|left" left="12" width="128">Configueaes de PRoxy:</text> | ||
13 | <check_box bottom_delta="-5" follows="top|left" label="Usar proxy" left="148" name="proxy_enabled" tool_tip="Especificar a configurao do proxy" /> | ||
14 | <text bottom_delta="-22" follows="top|left" left="148" width="140">Proxy:</text> | ||
15 | <line_editor bottom_delta="-8" follows="top|left" font="SansSerifSmall" height="20" left="205" name="proxy_address" tool_tip="O nome ou endereo de IP do grupo do proxy que voc deseja usar" width="205" word_wrap="false" /> | ||
16 | <text bottom="-300" follows="left" left="428" width="75">Porta:</text> | ||
17 | <line_editor bottom_delta="-7" follows="left" font="SansSerifSmall" height="20" left="460" name="proxy_port" tool_tip="O nmero da pota do proxy que voc deseja usar:" width="35" word_wrap="false" /> | ||
18 | <text bottom="-330" follows="left" left="148" width="75">Socks:</text> | ||
19 | <radio_group bottom="-265" follows="top|left" height="40" left="205" name="socks_4_5" width="205"><radio_item>Socks v4</radio_item> | ||
20 | <radio_item>Socks v5</radio_item> | ||
21 | </radio_group> | ||
22 | <text bottom_delta="-23" follows="top|left" left="148" width="140">Sem Proxy:</text> | ||
23 | <line_editor bottom_delta="-5" follows="top|left" font="SansSerifSmall" height="20" left="205" name="proxy_exclusions" tool_tip="Os nomes ou endereos de IP que voc no quer usar para o proxy." width="205" word_wrap="false" /> | ||
24 | </panel> | ||
diff --git a/linden/indra/newview/skins/xui/pt/panel_settings_web.xml b/linden/indra/newview/skins/xui/pt/panel_settings_web.xml deleted file mode 100644 index ce4468e..0000000 --- a/linden/indra/newview/skins/xui/pt/panel_settings_web.xml +++ /dev/null | |||
@@ -1,23 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <panel border="true" bottom="0" height="500" left="0" name="web" title="Web" width="400"><check_box follows="top|left" label="Use um navegador externo (Firefox, Safari, Internet Explorer)" left="150" name="external_browser_check" tool_tip="Use um navegador externo para Ajuda, web links, etc.\nNo recomendado se estiver rodando em tela cheia." width="480" /> | ||
3 | <text bottom="-65" follows="top|left" left="15" width="128">pgina do navegador:</text> | ||
4 | <line_editor bottom_delta="-5" follows="top|left" font="SansSerifSmall" height="20" left="150" name="home_page" tool_tip="Pgina da Web para visitar na primeira vez que voc usar o navegador do Second Life" width="345" word_wrap="false" /> | ||
5 | <text bottom="-95" follows="top|left" left="15" width="128">Configurao do Proxy:</text> | ||
6 | <check_box bottom_delta="-5" follows="top|left" label="Usar proxy para navegador interno" left="148" name="proxy_enabled" tool_tip="Especifique a configurao do proxy para o navageador interno" /> | ||
7 | <text bottom_delta="-22" follows="top|left" left="180" width="140">Proxy:</text> | ||
8 | <line_editor bottom_delta="-5" follows="top|left" font="SansSerifSmall" height="20" left="260" name="proxy_address" tool_tip="O nome ou endereo IP do proxy que voc quer usar" width="165" word_wrap="false" /> | ||
9 | <text bottom="285" follows="left" left="432" width="75">Porta:</text> | ||
10 | <line_editor bottom="280" follows="left" font="SansSerifSmall" height="20" left="460" name="proxy_port" tool_tip="O nmero da porta do proxy que voc deseja usar" width="35" word_wrap="false" /> | ||
11 | <text bottom_delta="-15" follows="left" left="180" width="75">Socks:</text> | ||
12 | <radio_group bottom="325" follows="top|left" height="40" left="260" name="socks_4_5" width="235"><radio_item>Socks v4</radio_item> | ||
13 | <radio_item>Socks v5</radio_item> | ||
14 | </radio_group> | ||
15 | <text bottom_delta="-23" follows="top|left" left="180" width="140">Sem proxy para:</text> | ||
16 | <line_editor bottom_delta="-5" follows="top|left" font="SansSerifSmall" height="20" left="260" name="proxy_exclusions" tool_tip="Os nomes ou endereo IP que voc no quer usar para proxy" width="235" word_wrap="false" /> | ||
17 | <check_box bottom_delta="-30" follows="top|left" label="Mostrar pginas web nos objetos (experimental, requer reincio)" left="150" name="web_pages_on_prims_check" width="480" /> | ||
18 | <text bottom_delta="-16" follows="top|left" left="15" width="140">Sites Confiveis:(logar para ver)</text> | ||
19 | <scroll_list bottom_delta="-95" follows="top|left" height="100" left="155" name="trusted_sites_list" width="340" /> | ||
20 | <button bottom_delta="-25" follows="top|left" height="20" label="Adicionar" left="150" name="add_trusted" width="100" /> | ||
21 | <line_editor bottom_delta="-1" follows="top|left" font="SansSerifSmall" height="20" left="260" name="trusted_site_entry" tool_tip="O site que ser adiicionado na lista de sites confiveis" width="235" word_wrap="false" /> | ||
22 | <button bottom_delta="-25" follows="top|left" height="20" label="Remover" left="150" name="rem_trusted" width="100" /> | ||
23 | </panel> | ||
diff --git a/linden/indra/newview/skins/xui/pt/panel_status_bar.xml b/linden/indra/newview/skins/xui/pt/panel_status_bar.xml deleted file mode 100644 index c3957fa..0000000 --- a/linden/indra/newview/skins/xui/pt/panel_status_bar.xml +++ /dev/null | |||
@@ -1,16 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <panel bottom="0" enabled="true" follows="top|left|right" height="18" hidden="false" left="0" mouse_opaque="false" name="status" width="1000"><text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-22" drop_shadow_visible="true" enabled="true" follows="left|right|bottom" font="SansSerifSmall" h_pad="0" halign="left" height="18" hidden="false" left="561" mouse_opaque="true" name="ParcelNameText" tool_tip="Nome do pedao de terra em que voc esta. Clique para informaes." v_pad="2" width="1039">Nome do pedao de terra vai aqui.</text> | ||
3 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-20" disabled_color="0 1 0 1" drop_shadow_visible="true" enabled="true" follows="right|bottom" font="SansSerifSmall" h_pad="0" halign="right" height="18" hidden="false" left="-120" mouse_opaque="true" name="BalanceText" text_color="0 1 0 1" tool_tip="Cotao de Compra" v_pad="2" width="76">L$</text> | ||
4 | <button bottom="-18" enabled="true" follows="right|bottom" font="SansSerif" halign="center" height="16" hidden="false" image_disabled="status_buy_currency.tga" image_disabled_selected="status_buy_currency_pressed.tga" image_selected="status_buy_currency_pressed.tga" image_unselected="status_buy_currency.tga" label="" label_selected="" left="-120" mouse_opaque="true" name="buycurrency" scale_image="true" tool_tip="Compras" width="16" /> | ||
5 | <text type="string" length="12" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-20" disabled_color="1 1 1 1" drop_shadow_visible="true" enabled="true" follows="right|bottom" font="SansSerifSmall" h_pad="0" halign="right" height="18" hidden="false" left="-210" mouse_opaque="true" name="TimeText" text_color="1 1 1 1" tool_tip="Hora atual (Pacific)" v_pad="2" width="80">12:00 AM</text> | ||
6 | <button bottom="-18" enabled="true" follows="right|bottom" font="SansSerif" halign="center" height="16" hidden="false" image_disabled="status_script_debug.tga" image_disabled_selected="status_script_debug.tga" image_selected="status_script_debug.tga" image_unselected="status_script_debug.tga" label="" label_selected="" left="378" mouse_opaque="true" name="scriptout" scale_image="false" tool_tip="Erros e avisos do Script" width="16" /> | ||
7 | <button bottom="-22" enabled="true" follows="right|bottom" font="SansSerif" halign="center" height="24" hidden="false" image_disabled="status_health.tga" image_disabled_selected="status_health.tga" image_selected="status_health.tga" image_unselected="status_health.tga" label="" label_selected="" left="394" mouse_opaque="true" name="health" scale_image="false" tool_tip="Sade" width="24" /> | ||
8 | <text type="string" length="1" bg_visible="false" border_drop_shadow_visible="false" border_visible="false" bottom="-18" disabled_color="1 1 1 1" drop_shadow_visible="true" enabled="true" follows="right|bottom" font="SansSerifSmall" h_pad="0" halign="left" height="18" hidden="false" left="418" mouse_opaque="true" name="HealthText" text_color="1 1 1 1" tool_tip="Sade" v_pad="2" width="31">100%</text> | ||
9 | <button bottom="-22" enabled="true" follows="right|bottom" font="SansSerif" halign="center" height="24" hidden="false" image_disabled="status_fly.tga" image_disabled_selected="status_fly.tga" image_selected="status_fly.tga" image_unselected="status_fly.tga" label="" label_selected="" left="449" mouse_opaque="true" name="fly" scale_image="false" tool_tip="Sem voar." width="24" /> | ||
10 | <button bottom="-22" enabled="true" follows="right|bottom" font="SansSerif" halign="center" height="24" hidden="false" image_disabled="status_build.tga" image_disabled_selected="status_build.tga" image_selected="status_build.tga" image_unselected="status_build.tga" label="" label_selected="" left="473" mouse_opaque="true" name="build" scale_image="false" tool_tip="Sem construes." width="24" /> | ||
11 | <button bottom="-22" enabled="true" follows="right|bottom" font="SansSerif" halign="center" height="24" hidden="false" image_disabled="status_scripts.tga" image_disabled_selected="status_scripts.tga" image_selected="status_scripts.tga" image_unselected="status_scripts.tga" label="" label_selected="" left="497" mouse_opaque="true" name="scripts" scale_image="false" tool_tip="Sem scripts." width="24" /> | ||
12 | <button bottom="-22" enabled="true" follows="right|bottom" font="SansSerif" halign="center" height="24" hidden="false" image_disabled="status_push.tga" image_disabled_selected="status_push.tga" image_selected="status_push.tga" image_unselected="status_push.tga" label="" label_selected="" left="521" mouse_opaque="true" name="restrictpush" scale_image="false" tool_tip="Restriro llEmpurrar objeto." width="24" /> | ||
13 | <button bottom="-18" enabled="true" follows="right|bottom" font="SansSerif" halign="center" height="16" hidden="false" image_disabled="status_buy_land.tga" image_disabled_selected="status_buy_land_pressed.tga" image_selected="status_buy_land_pressed.tga" image_unselected="status_buy_land.tga" label="" label_selected="" left="545" mouse_opaque="true" name="buyland" scale_image="true" tool_tip="Comprar esse pedao" width="16" /> | ||
14 | <text hidden="true" name="packet_loss_tooltip">Perda de pacote</text> | ||
15 | <text hidden="true" name="bandwidth_tooltip">Banda</text> | ||
16 | </panel> | ||
diff --git a/linden/indra/newview/skins/xui/pt/panel_toolbar.xml b/linden/indra/newview/skins/xui/pt/panel_toolbar.xml deleted file mode 100644 index b790498..0000000 --- a/linden/indra/newview/skins/xui/pt/panel_toolbar.xml +++ /dev/null | |||
@@ -1,12 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <panel background_opaque="true" background_visible="true" can_close="true" can_minimize="false" can_resize="false" follows="left|right|bottom" height="26" name="toolbar" width="1024"><button bottom="0" font="SansSerif" height="24" label="MI" left="0" name="im_btn" tool_tip="Mensagens Instantneas para seus amigos" width="50" /> | ||
3 | <button bottom="0" font="SansSerif" height="24" label="Chat" left="0" name="chat_btn" tool_tip="Conversar com as pessoas prximas. (Enter)" width="50" /> | ||
4 | <button bottom="0" font="SansSerif" height="24" label="Amigos" left="0" name="friends_btn" tool_tip="Ache e converse com os seus camaradas." width="50" /> | ||
5 | <button bottom="0" font="SansSerif" height="24" label="Voar" label_selected="Parar de voar" left="0" name="fly_btn" tool_tip="Comece a voar. Use E/C ou PgUp/PgDn para voar para cima e para baixo." width="50" /> | ||
6 | <button bottom="0" font="SansSerif" height="24" label="Foto" left="0" name="snapshot_btn" tool_tip="Salve uma foto em seu disco ou inventrio." width="50" /> | ||
7 | <button bottom="0" font="SansSerif" height="24" label="Procurar" left="0" name="directory_btn" tool_tip="Procurar por lugares, eventos, pessoas, e muito mais." width="50" /> | ||
8 | <button bottom="0" font="SansSerif" height="24" label="Construir" left="0" name="build_btn" tool_tip="Construa novos objetos" width="50" /> | ||
9 | <button bottom="0" font="SansSerif" height="24" label="Mini-Mapa" left="0" name="radar_btn" tool_tip="Mapa da rea prxima a voc. (Ctrl-Shift-M)" width="50" /> | ||
10 | <button bottom="0" font="SansSerif" height="24" label="Mapa" left="0" name="map_btn" tool_tip="Map do mundo todo. (Ctrl-M)" width="50" /> | ||
11 | <button bottom="0" font="SansSerif" height="24" label="Inventrio" left="0" name="inventory_btn" tool_tip="Seus itens. (Ctrl-I)" width="50" /> | ||
12 | </panel> | ||
diff --git a/linden/indra/newview/skins/xui/pt/panel_top_pick.xml b/linden/indra/newview/skins/xui/pt/panel_top_pick.xml deleted file mode 100644 index 47d8427..0000000 --- a/linden/indra/newview/skins/xui/pt/panel_top_pick.xml +++ /dev/null | |||
@@ -1,12 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <panel border="false" bottom="20" follows="bottom|left" height="470" left="330" name="Pick" title="Pick" width="450"><texture_picker bottom="-315" follows="left|top" height="300" left="20" name="snapshot_ctrl" width="400" /> | ||
3 | <line_editor bg_readonly_color="clear" bottom_delta="-8" enabled="false" follows="left|top" font="SansSerif" height="20" left="20" name="given_name_editor" text_readonly_color="white" width="400" /> | ||
4 | <text_editor bg_readonly_color="clear" enabled="false" follows="left|top" font="SansSerif" height="90" left="20" max_length="1023" name="desc_editor" text_readonly_color="white" width="400" word_wrap="true" /> | ||
5 | <line_editor bg_readonly_color="clear" enabled="false" follows="left|top" font="SansSerif" height="20" left="20" name="location_editor" text_readonly_color="white" width="400" /> | ||
6 | <button bottom_delta="0" follows="left|top" height="20" label="Ajustar" left="380" name="set_location_btn" width="60" /> | ||
7 | <button bottom_delta="-30" follows="left|top" height="20" label="Teleporte" left="20" name="pick_teleport_btn" width="80" /> | ||
8 | <button bottom_delta="0" follows="left|top" height="20" label="Mostrar no Mapa" left="105" name="pick_map_btn" width="100" /> | ||
9 | <text bottom_delta="0" follows="left|top" height="20" left="290" name="sort_order_text" width="30">Ordem:</text> | ||
10 | <line_editor bottom_delta="5" follows="left|top" height="16" left="320" name="sort_order_editor" width="25" /> | ||
11 | <check_box bottom_delta="0" follows="left|top" height="20" label="Ativo" left="360" name="enabled_check" width="80" /> | ||
12 | </panel> | ||
diff --git a/linden/indra/newview/skins/xui/pt/role_actions.xml b/linden/indra/newview/skins/xui/pt/role_actions.xml deleted file mode 100644 index d7b7f99..0000000 --- a/linden/indra/newview/skins/xui/pt/role_actions.xml +++ /dev/null | |||
@@ -1,186 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | ||
2 | <role_actions> | ||
3 | <action_set | ||
4 | description="Esta habilidades incluem poderes de adicionar ou remover membros do grupo e permitir que novos membros se juntem sem um convite." | ||
5 | name="Membership"> | ||
6 | <action description="Convidar pessoas para este grupo" | ||
7 | longdescription="Convide pessoas para este grupo usando o botão 'Convidar nova pessoa...' em Membros & aba Funções > sub-aba Membros." | ||
8 | name="member invite" value="1"/> | ||
9 | <action description="Expulsar membros deste grupo" | ||
10 | longdescription="Expulse membros deste grupo usando o botão 'Expulsar do grupo' em Membros & aba Funções > sub-aba Membros. Um proprietário pode expulsar qualquer um, exceto outro proprietário. Se você não é um proprietário, um membro pode expulsá-lo do grupo se, e somente se, ele apenas tiver a função de todos e não outras funções. Para remover membros de funções, você precisa ter a habilidade 'Remover membros de funções'." | ||
11 | name="member eject" value="2"/> | ||
12 | <action | ||
13 | description="Ativar/desativar 'Abrir registro' e mudar 'Taxa de assinatura'" | ||
14 | longdescription="Ative/desative 'Abrir registro' para permitir que novos membros se unam sem um convite, e mude a 'Taxa de registro' na seção Preferência de grupo da aba Geral." | ||
15 | name="member options" value="3"/> | ||
16 | </action_set> | ||
17 | <action_set | ||
18 | description="Estas habilidades incluem poderes de adicionar, remover e mudar funções do grupo; adicionar e remover membros em funções e designar habilidades a funções." | ||
19 | name="Roles"> | ||
20 | <action description="Criar novas funções" | ||
21 | longdescription="Crie novas funções em Membros & aba Funções > sub-aba Funções." | ||
22 | name="role create" value="4"/> | ||
23 | <action description="Apagar funções" | ||
24 | longdescription="Apague funções em Membros & aba Funções > sub-aba Funções." | ||
25 | name="role delete" value="5"/> | ||
26 | <action description="Mudar nomes de função, títulos e descrições" | ||
27 | longdescription="Mude o nome de funções, títulos e descrições na parte inferior de Membros & aba Funções > sub-aba Funções após selecionar uma função." | ||
28 | name="role properties" value="6"/> | ||
29 | <action description="Designar membros para a função do designador" | ||
30 | longdescription="Designe membros a funções na seção de funções designadas de Membros & aba Funções > sub-aba Membros. Um membro com este poder pode somente adicionar membros para a função que o designador já possui." | ||
31 | name="role assign member limited" value="7"/> | ||
32 | <action description="Designar membros para qualquer função" | ||
33 | longdescription="Designe membros a qualquer função na seção de funções designadas de Membros & aba Funções > sub-aba Membros. *AVISO* Quaisquer membros em uma função com esta habilidade podem designar a si próprios--e quaisquer outros membros não proprietários--para funções que têm mais poderes do que as atuais, elevando-os a poderes próximos ao do proprietário. Certifique-se de saber o que está fazendo antes de designar esta habilidade." | ||
34 | name="role assign member" value="8" /> | ||
35 | <action description="Remover membros das funções" | ||
36 | longdescription="Remova membros de funções na seção de funções designadas de Membros & aba Funções > sub-aba Membros. Proprietários não podem ser removidos." | ||
37 | name="role remove member" value="9" /> | ||
38 | <action description="Determinar e remover habilidades em funções" | ||
39 | longdescription="Designe e remova habilidades em funções na seção habilidades pertmitidas de Membros & aba Funções > sub-aba Funções. *AVISO* Quaisquer membros em uma função com esta habilidade podem desginar a si próprios--e quaisquer outros membros não proprietários--todas as habilidades, elevando-os a poderes próximos ao do proprietário. Certifique-se de saber o que está fazendo antes de designar esta habilidade." | ||
40 | name="role change actions" value="10" /> | ||
41 | </action_set> | ||
42 | <action_set | ||
43 | description="Estas habilidade incluem poderes para modificar esta identidade de grupo, como mudar a visibilidade pública, apresentação e insígnia." | ||
44 | name="Group Identity"> | ||
45 | <action | ||
46 | description="Mudar apresentação, insígnia, 'Publicar na web', e quais membros estão publicamente visíveis em Informações do Grupo." | ||
47 | longdescription="Mude a apresentação, insígnia, 'Publicar na web' e quais membros estão publicamente visíveis em Informações do grupo. É feito na aba Geral." | ||
48 | name="group change identity" value="11" /> | ||
49 | </action_set> | ||
50 | <action_set | ||
51 | description="Estas habilidades incluem poderes para transferir, modificar e vender terrenos do grupo. Vá pra a janela Sobre o terreno, clique com o botão direito no terreno e selecione 'Sobre o terreno...' ou clique na informação da parcela na barra do menu." | ||
52 | name="Parcel Management"> | ||
53 | <action description="Transferir e comprar terreno para o grupo" | ||
54 | longdescription="Transfere e compre terreno para o grupo. É feito em Sobre o terreno > aba Geral." | ||
55 | name="land deed" value="12" /> | ||
56 | <action description="Abandonar terreno para Governador Linden" | ||
57 | longdescription="Abandone terreno para Governador Linden. *AVISO* Qualquer membro em uma função com esta habilidade pode abandonar o terreno pertencente ao grupo em Sobre o terreno > aba Geral, revertendo à posse Linden sem uma venda! Certifique-se de saber o que está fazendo antes de designar esta habilidade." | ||
58 | name="land release" value="13" /> | ||
59 | <action description="Definir terreno para informação de venda" | ||
60 | longdescription="Defina informações de venda para terreno. *AVISO* Qualquer membro em uma função com esta habilidade pode vender terrenos pertencentes ao grupo em Sobre o terreno > aba Geral como quiser! Certifique-se de sabe o que está fazendo antes de designar esta habilidade." | ||
61 | name="land set sale info" value="14" /> | ||
62 | <action description="Subdividir e unir parcelas" | ||
63 | longdescription="Subdivide and join parcels. This is done by right-clicking the ground, 'Edit Terrain', and dragging your mouse on the land to make a selection. To subdivide, select what you want to split and click 'Subdivide...'. To join, select two or more contiguous parcels and click 'Join...'. " | ||
64 | name="land divide join" value="15" /> | ||
65 | </action_set> | ||
66 | <action_set | ||
67 | description="Estas habilidades incluem poderes para mudar o nome da parcelas e configurações de publicação, visibilidade da busca de diretório e ponto de aterrissagem & opções de rota de TP." | ||
68 | name="Parcel Identity"> | ||
69 | <action | ||
70 | description="Ativar/desativar 'Exibir em locais de encontro' e definir categoria" | ||
71 | longdescription="Ativar/desativar 'Exibir em locais de encontro' e configurar uma categoria de parcela em Sobre o terreno > aba Opções." | ||
72 | name="land find places" value="17" /> | ||
73 | <action | ||
74 | description="Mudar nome da parcela, descrição, e configurações 'Publicar na web'" | ||
75 | longdescription="Mude o nome da parcela, descrição e configurações de 'Publicar na web'. É feito em Sobre o terreno > aba Opções." | ||
76 | name="land change identity" value="18" /> | ||
77 | <action description="Definir ponto de aterrissagem e rota de teletransporte" | ||
78 | longdescription="Em uma parcela pertencente ao grupo, membros em uma função com esta habilidade podem definir um ponto de aterrissagem para especificar onde os teletransportes chegam e também definir a rota do teletransporte para um maior controle. É feito em Sobre o terreno > aba Opções." | ||
79 | name="land set landing point" value="19" /> | ||
80 | </action_set> | ||
81 | <action_set | ||
82 | description="Estas habilidade incluem poderes que afetam opções de parcela, como 'Criar objetos', 'Editar terreno' e música & configurações de mídia." | ||
83 | name="Parcel Settings"> | ||
84 | <action description="Mudar música & configurações de mídia" | ||
85 | longdescription="Mude streaming de música e configurações de vídeo em Sobre o terreno > aba Mídia." | ||
86 | name="land change media" value="20" /> | ||
87 | <action description="Ativar/desativar 'Editar terreno'" | ||
88 | longdescription="Ative/desative 'Editar terreno'. *AVISO* Sobre o terreno > aba Opções > Editar terreno permite a qualquer um alterar as formas de seu terreno, substituir e mover plantas Linden. Certifique-se de saber o que está fazendo antes de desginar esta habilidade. A edição de terreno é ativada/desativada em Sobre o terreno > aba Opções." | ||
89 | name="land edit" value="21" /> | ||
90 | <action | ||
91 | description="Ativar/desativar variados Sobre o Terreno > Opções de configuração" | ||
92 | longdescription="Ative/desative 'Seguro (sem dano)', 'Voar', e permita a outros residentes: 'Criar objetos', 'Editar terreno', 'Criar pontos de referência', e 'Executar scripts' em um terreno pertencente ao grupo em Sobre o terreno > aba Opções." | ||
93 | name="land options" value="22" /> | ||
94 | </action_set> | ||
95 | <action_set | ||
96 | description="Estas habilidades incluem poderes que permitem a membros ultrapassar restrições em parcelas pertencentes ao grupo." | ||
97 | name="Parcel Powers"> | ||
98 | <action description="Sempre permitir 'Editar terreno'" | ||
99 | longdescription="Membros em uma função com esta habilidade podem editar terreno em uma parcela pertencente ao grupo, mesmo se estiver desativada em Sobre o terreno > aba Opções." | ||
100 | name="land allow edit land" value="23" /> | ||
101 | <action description="Sempre permitir 'Voar'" | ||
102 | longdescription="Membros em uma função com esta habilidade podem voar sobre uma parcela pertencente ao grupo, mesmo se estiver desativada em Sobre o terreno > aba Opções." | ||
103 | name="land allow fly" value="24" /> | ||
104 | <action description="Sempre permitir 'Criar objetos'" | ||
105 | longdescription="Membros em uma função com esta habilidade podem criar objetos em uma parcela pertencente ao grupo, mesmo se estiver desativada em Sobre o terreno > aba Opções." | ||
106 | name="land allow create" value="25" /> | ||
107 | <action description="Sempre permitir 'Criar ponto de referência'" | ||
108 | longdescription="Membros em uma função com esta habilidade podem colocar um ponto de referência uma parcela pertencente ao grupo, mesmo se estiver desativada em Sobre o terreno > aba Opções." | ||
109 | name="land allow landmark" value="26" /> | ||
110 | <action description="Permitir 'Colocar casa aqui' no terreno do grupo" | ||
111 | longdescription="Membros em uma função com esta habilidade podem usar o menu Mundo > Definir lar aqui em uma parcela do grupo (definir terreno ou transferir para este grupo)." | ||
112 | name="land allow set home" value="28" /> | ||
113 | </action_set> | ||
114 | <action_set | ||
115 | description="Estas habilidades incluem poderes de permitir ou restringir acesso a parcelas pertencentes ao grupo, incluindo congelar e expulsar residentes." | ||
116 | name="Parcel Access"> | ||
117 | <action description="Gerenciar listas de acesso à parcela" | ||
118 | longdescription="Gerencie a lista de acesso à parcela em Sobre o terreno > aba Acesso." | ||
119 | name="land manage allowed" value="29" /> | ||
120 | <action description="Gerenciar lista de banidos da parcela" | ||
121 | longdescription="Gerencie a lista de banidos da parcela em Sobre o terreno > aba Banido." | ||
122 | name="land manage banned" value="30" /> | ||
123 | <action description="Mudar configurações de parcela 'Vender passes...'" | ||
124 | longdescription="Mude configurações de 'Vender passes...' em Sobre o terreno > aba Acesso." | ||
125 | name="land manage passes" value="31" /> | ||
126 | <action description="Expulsar e congelar residentes nas parcelas" | ||
127 | longdescription="Membros em uma função com esta habilidade podem lidar com um residente indesejado em uma parcela pertencente ao grupo clicando com o botão direitos sobre ele, Mais > e selecionado 'Expulsar...' ou 'Congelar...'." | ||
128 | name="land admin" value="32" /> | ||
129 | </action_set> | ||
130 | <action_set | ||
131 | description="Estas habilidades incluem poderes de permitir a membros retornar objetos e colocar e mover plantas Linden. Útil para que membros organizem a paisagem, porém deve ser usado com cuidado, devido a não ser possível desfazer a mudança dos objetos." | ||
132 | name="Parcel Content"> | ||
133 | <action description="Retornar objetos que pertencem ao grupo" | ||
134 | longdescription="Retorne objetos em parcelas pertencentes ao grupo que pertencem ao grupo em Sobre o terreno > aba Objetos." | ||
135 | name="land return group owned" value="48" /> | ||
136 | <action description="Retornar objetos definidos para o grupo" | ||
137 | longdescription="Retorne objetos em parcelas pertencentes ao grupo que em Sobre o terrreno > aba Objetos." | ||
138 | name="land return group set" value="33" /> | ||
139 | <action description="Retornar objetos que não pertencem ao grupo" | ||
140 | longdescription="Retorne objetos nas parcelas pertencentes a um grupo que estão sem grupo em em Sobre o terreno > aba Objetos." | ||
141 | name="land return non group" value="34" /> | ||
142 | <action description="Ajardinar usando plantas Linden" | ||
143 | longdescription="A habilidade de ajardinar permite colocar e mover árvores Linden, plantas e gramas. Estes itens podem ser encontrando na Biblioteca de seu inventário > pasta Objetos ou podem ser criados através do botão Construir." | ||
144 | name="land gardening" value="35" /> | ||
145 | </action_set> | ||
146 | <action_set | ||
147 | description="These Abilities include powers to deed, modify, and sell group-owned objects. These changes are done in the Edit Tools > General Tab. Right-click an object and Edit to see its settings. " | ||
148 | name="Object Management"> | ||
149 | <action description="Transferir objetos para o grupo" | ||
150 | longdescription="Transfere objetos para o grupo em Editar ferramentas > aba Geral." | ||
151 | name="object deed" value="36" /> | ||
152 | <action description="Manipular (mover, copiar, modificar) objetos do grupo" | ||
153 | longdescription="Manipule (mover,copiar, modificar) objetos pertencentes ao grupo em Editar Ferramentas > aba Geral." | ||
154 | name="object manipulate" value="38" /> | ||
155 | <action description="Definir objetos pertencentes ao grupo para venda" | ||
156 | longdescription="Defina objetos pertencentes ao grupo para venda em Editar Ferramentas > aba Geral." | ||
157 | name="object set sale" value="39" /> | ||
158 | </action_set> | ||
159 | <action_set | ||
160 | description="Estas habilidades incluem poderes que requerem que membros paguem dívidas e recebam dividendos do grupo, e restringem acesso ao histórico de conta do grupo." | ||
161 | name="Accounting"> | ||
162 | <action description="Pagar débitos e receber dividendos do grupo" | ||
163 | longdescription="Members in a Role with this Ability will automatically pay group liabilities and receive group dividends. This means they will receive a portion of group-owned land sales which are distributed daily, as well as contribute towards things like parcel listing fees. " | ||
164 | name="accounting accountable" value="40" /> | ||
165 | </action_set> | ||
166 | <action_set | ||
167 | description="Estas habilidade incluem poderes de permitir enviar, receber e ver avisos de grupo." | ||
168 | name="Notices"> | ||
169 | <action description="Enviar aviso" | ||
170 | longdescription="Membros em uma função com esta habiliade podem enviar avisos em Informações de grupo > aba Avisos." | ||
171 | name="notices send" value="42" /> | ||
172 | <action description="Receber novos avisos e ver os anteriores" | ||
173 | longdescription="Membros em uma função com esta habilidade podem receber os novos avisos e ver os anteriores em Informações de grupo > aba Avisos." | ||
174 | name="notices receive" value="43" /> | ||
175 | </action_set> | ||
176 | <action_set | ||
177 | description="Estas habilidades incluem poderes de permitir a membros definir e votar em propostas e ver histórico de votação." | ||
178 | name="Proposals"> | ||
179 | <action description="Criar proposta" | ||
180 | longdescription="Membros em uma função com esta habilidade podem criar proposta para serem votadas em Informações de grupo > aba Propostas." | ||
181 | name="proposal start" value="44" /> | ||
182 | <action description="Votar em propostas" | ||
183 | longdescription="Membros em uma função com esta habilidade podem votar em propostas em Informações de grupo > aba Propostas." | ||
184 | name="proposal vote" value="45" /> | ||
185 | </action_set> | ||
186 | </role_actions> | ||
diff --git a/linden/indra/newview/skins/xui/pt/teleport_strings.xml b/linden/indra/newview/skins/xui/pt/teleport_strings.xml deleted file mode 100644 index be44a7d..0000000 --- a/linden/indra/newview/skins/xui/pt/teleport_strings.xml +++ /dev/null | |||
@@ -1,87 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | ||
2 | <teleport_messages> | ||
3 | <message_set name="errors"> | ||
4 | <message name="invalid_tport"> | ||
5 | Foi encontrado um problema na sua solicitao de teleport. Voc | ||
6 | provavelmente precisar entrar no SecondLife Brasil novamente | ||
7 | antes de teleportar-se. Se esse problema persistir, por favor | ||
8 | contate nosso suporte. | ||
9 | </message> | ||
10 | <message name="invalid_region_handoff"> | ||
11 | Foi encontrado um problema ao processar sua transio entre as | ||
12 | regies. Voc provavelmente precisar entrar no SecondLife | ||
13 | Brasil novamente antes de conseguir passar entre regies. | ||
14 | Se esse problema persistir, por favor procure nosso suporte. | ||
15 | </message> | ||
16 | <message name="blocked_tport"> | ||
17 | Desculpe, teleport temporariamente bloqueado. Tente novamente em | ||
18 | alguns instantes. Se voc ainda no puder teleportar-se, por favor, | ||
19 | entre novamente no SecondLife Brasil para resolver seu problema. | ||
20 | </message> | ||
21 | <message name="nolandmark_tport"> | ||
22 | Desculpe, mas o sistema no conseguiu localizar a landmark de destino. | ||
23 | </message> | ||
24 | <message name="timeout_tport"> | ||
25 | Desculpe, mas o sistema est incapaz de completar sua conexo para o | ||
26 | teleport. Tente novamente em alguns instantes. | ||
27 | </message> | ||
28 | <message name="noaccess_tport"> | ||
29 | Desculpe, voc no tem permisso para acessar esse destino. | ||
30 | </message> | ||
31 | <message name="missing_attach_tport"> | ||
32 | Seus anexos no foram carregados ainda. Tente esperar por alguns | ||
33 | segundos ou entre no SecondLife Brasil novamente antes de tentar | ||
34 | teleportar-se. | ||
35 | </message> | ||
36 | <message name="too_many_uploads_tport"> | ||
37 | A fila de recursos nesta regio est sobrecarregada portanto sua solicitao | ||
38 | de teleport no pode ser atendida em tempo hbil. Por favor tente novamente | ||
39 | em alguns minutos ou v para uma rea menos carregada. | ||
40 | </message> | ||
41 | <message name="expired_tport"> | ||
42 | Desculpe, mas o sistema no foi capaz de completar sua solicitao | ||
43 | de teleport. Por favor, tente novamente em alguns minutos. | ||
44 | </message> | ||
45 | <message name="expired_region_handoff"> | ||
46 | Desculpe, mas o sistema no foi capaz de completar transio entre | ||
47 | as regies. Por favor, tente novamente em alguns minutos. | ||
48 | </message> | ||
49 | <message name="no_host"> | ||
50 | No foi possvel encontrar o destino para o teleport. O destino | ||
51 | pode estar temporariamente indisponvel ou no existir mais. | ||
52 | Por favor, tente novamente em alguns minutos. | ||
53 | </message> | ||
54 | </message_set> | ||
55 | <message_set name="progress"> | ||
56 | <message name="sending_dest"> | ||
57 | Enviando para o destino. | ||
58 | </message> | ||
59 | <message name="redirecting"> | ||
60 | Redirecionando para uma localidade diferente. | ||
61 | </message> | ||
62 | <message name="relaying"> | ||
63 | Trasnferindo para o destino. | ||
64 | </message> | ||
65 | <message name="sending_home"> | ||
66 | Enviando solicitao de localizao de "casa". | ||
67 | </message> | ||
68 | <message name="sending_landmark"> | ||
69 | Enviando solicitao de localizao de landmark. | ||
70 | </message> | ||
71 | <message name="completing"> | ||
72 | Completando teleport. | ||
73 | </message> | ||
74 | <message name="resolving"> | ||
75 | Identificando destino. | ||
76 | </message> | ||
77 | <message name="contacting"> | ||
78 | Contactando nova regio. | ||
79 | </message> | ||
80 | <message name="arriving"> | ||
81 | Chegando... | ||
82 | </message> | ||
83 | <message name="requesting"> | ||
84 | Solicitando teleport... | ||
85 | </message> | ||
86 | </message_set> | ||
87 | </teleport_messages> | ||
diff --git a/linden/indra/newview/skins/xui/pt/xui_version.xml b/linden/indra/newview/skins/xui/pt/xui_version.xml deleted file mode 100644 index e904b41..0000000 --- a/linden/indra/newview/skins/xui/pt/xui_version.xml +++ /dev/null | |||
@@ -1,2 +0,0 @@ | |||
1 | <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?> | ||
2 | <xui_version>1.0</xui_version> | ||
diff --git a/linden/indra/newview/viewer_manifest.py b/linden/indra/newview/viewer_manifest.py index ef2225d..43734df 100755 --- a/linden/indra/newview/viewer_manifest.py +++ b/linden/indra/newview/viewer_manifest.py | |||
@@ -93,8 +93,16 @@ class ViewerManifest(LLManifest): | |||
93 | self.path("lsl_guide.html") | 93 | self.path("lsl_guide.html") |
94 | self.path("gpu_table.txt") | 94 | self.path("gpu_table.txt") |
95 | 95 | ||
96 | def login_channel(self): | ||
97 | """Channel reported for login and upgrade purposes ONLY; used for A/B testing""" | ||
98 | # NOTE: Do not return the normal channel if login_channel is not specified, as | ||
99 | # some code may branch depending on whether or not this is present | ||
100 | return self.args.get('login_channel') | ||
101 | |||
102 | def channel(self): | ||
103 | return self.args['channel'] | ||
96 | def channel_unique(self): | 104 | def channel_unique(self): |
97 | return self.args['channel'].replace("Second Life", "").strip() | 105 | return self.channel().replace("Second Life", "").strip() |
98 | def channel_oneword(self): | 106 | def channel_oneword(self): |
99 | return "".join(self.channel_unique().split()) | 107 | return "".join(self.channel_unique().split()) |
100 | def channel_lowerword(self): | 108 | def channel_lowerword(self): |
@@ -112,7 +120,11 @@ class ViewerManifest(LLManifest): | |||
112 | 120 | ||
113 | if not self.default_channel(): | 121 | if not self.default_channel(): |
114 | # some channel on some grid | 122 | # some channel on some grid |
115 | channel_flags = '-settings settings_%s.xml -channel "%s"' % (self.channel_lowerword(), self.args['channel']) | 123 | channel_flags = '-settings settings_%s.xml -channel "%s"' % (self.channel_lowerword(), self.channel()) |
124 | elif self.login_channel(): | ||
125 | # Report a special channel during login, but use default channel elsewhere | ||
126 | channel_flags = '-channel "%s"' % (self.login_channel()) | ||
127 | |||
116 | return " ".join((channel_flags, grid_flags)).strip() | 128 | return " ".join((channel_flags, grid_flags)).strip() |
117 | 129 | ||
118 | def login_url(self): | 130 | def login_url(self): |
@@ -144,7 +156,7 @@ class WindowsManifest(ViewerManifest): | |||
144 | else: | 156 | else: |
145 | return "SecondLifePreview.exe" | 157 | return "SecondLifePreview.exe" |
146 | else: | 158 | else: |
147 | return ''.join(self.args['channel'].split()) + '.exe' | 159 | return ''.join(self.channel().split()) + '.exe' |
148 | 160 | ||
149 | 161 | ||
150 | def construct(self): | 162 | def construct(self): |
@@ -273,7 +285,7 @@ class WindowsManifest(ViewerManifest): | |||
273 | 'grid_caps':self.args['grid'].upper(), | 285 | 'grid_caps':self.args['grid'].upper(), |
274 | # escape quotes becase NSIS doesn't handle them well | 286 | # escape quotes becase NSIS doesn't handle them well |
275 | 'flags':self.flags_list().replace('"', '$\\"'), | 287 | 'flags':self.flags_list().replace('"', '$\\"'), |
276 | 'channel':self.args['channel'], | 288 | 'channel':self.channel(), |
277 | 'channel_oneword':self.channel_oneword(), | 289 | 'channel_oneword':self.channel_oneword(), |
278 | 'channel_unique':self.channel_unique(), | 290 | 'channel_unique':self.channel_unique(), |
279 | } | 291 | } |
@@ -395,7 +407,7 @@ class DarwinManifest(ViewerManifest): | |||
395 | def package_finish(self): | 407 | def package_finish(self): |
396 | channel_standin = 'Second Life' # hah, our default channel is not usable on its own | 408 | channel_standin = 'Second Life' # hah, our default channel is not usable on its own |
397 | if not self.default_channel(): | 409 | if not self.default_channel(): |
398 | channel_standin = self.args['channel'] | 410 | channel_standin = self.channel() |
399 | 411 | ||
400 | imagename="SecondLife_" + '_'.join(self.args['version']) | 412 | imagename="SecondLife_" + '_'.join(self.args['version']) |
401 | if self.default_channel(): | 413 | if self.default_channel(): |
diff --git a/linden/indra/test/inventory.cpp b/linden/indra/test/inventory.cpp index 18d6f96..7c81dbe 100644 --- a/linden/indra/test/inventory.cpp +++ b/linden/indra/test/inventory.cpp | |||
@@ -289,8 +289,8 @@ namespace tut | |||
289 | 289 | ||
290 | 290 | ||
291 | LLPointer<LLInventoryItem> src1 = create_random_inventory_item(); | 291 | LLPointer<LLInventoryItem> src1 = create_random_inventory_item(); |
292 | src1->copy(src); | 292 | src1->copyItem(src); |
293 | src1->clone(src); | 293 | src1->cloneItem(src); |
294 | 294 | ||
295 | ensure_equals("1.item id::getUUID() failed", dst->getUUID(), src1->getUUID()); | 295 | ensure_equals("1.item id::getUUID() failed", dst->getUUID(), src1->getUUID()); |
296 | ensure_equals("2.parent::getParentUUID() failed", dst->getParentUUID(), src1->getParentUUID()); | 296 | ensure_equals("2.parent::getParentUUID() failed", dst->getParentUUID(), src1->getParentUUID()); |
@@ -307,7 +307,7 @@ namespace tut | |||
307 | ensure_equals("12.creation::getCreationDate() failed", dst->getCreationDate(), src1->getCreationDate()); | 307 | ensure_equals("12.creation::getCreationDate() failed", dst->getCreationDate(), src1->getCreationDate()); |
308 | 308 | ||
309 | LLPointer<LLInventoryItem> src2; | 309 | LLPointer<LLInventoryItem> src2; |
310 | src1->clone(src2); | 310 | src1->cloneItem(src2); |
311 | 311 | ||
312 | ensure_not_equals("13.item id::getUUID() failed", src1->getUUID(), src2->getUUID()); | 312 | ensure_not_equals("13.item id::getUUID() failed", src1->getUUID(), src2->getUUID()); |
313 | ensure_equals("14.parent::getParentUUID() failed", src2->getParentUUID(), src1->getParentUUID()); | 313 | ensure_equals("14.parent::getParentUUID() failed", src2->getParentUUID(), src1->getParentUUID()); |