diff options
author | Jacek Antonelli | 2008-08-15 23:45:55 -0500 |
---|---|---|
committer | Jacek Antonelli | 2008-08-15 23:45:55 -0500 |
commit | 9063e60aefe54f7c45aaa8cb24e8998b2c7343ab (patch) | |
tree | 1c8235465701c910a5d76448ddc8eb1f14457ebc | |
parent | Second Life viewer sources 1.20.9 (diff) | |
download | meta-impy-9063e60aefe54f7c45aaa8cb24e8998b2c7343ab.zip meta-impy-9063e60aefe54f7c45aaa8cb24e8998b2c7343ab.tar.gz meta-impy-9063e60aefe54f7c45aaa8cb24e8998b2c7343ab.tar.bz2 meta-impy-9063e60aefe54f7c45aaa8cb24e8998b2c7343ab.tar.xz |
Second Life viewer sources 1.20.10
44 files changed, 8227 insertions, 397 deletions
diff --git a/linden/indra/llaudio/audioengine.cpp b/linden/indra/llaudio/audioengine.cpp index 05636c1..af43b42 100644 --- a/linden/indra/llaudio/audioengine.cpp +++ b/linden/indra/llaudio/audioengine.cpp | |||
@@ -1621,16 +1621,14 @@ LLAudioData::LLAudioData(const LLUUID &uuid) : | |||
1621 | // This is a null sound. | 1621 | // This is a null sound. |
1622 | return; | 1622 | return; |
1623 | } | 1623 | } |
1624 | llassert_always(gAudiop) ; | 1624 | |
1625 | llassert_always(gAssetStorage) ; | 1625 | if (gAudiop && gAudiop->hasDecodedFile(uuid)) |
1626 | |||
1627 | if (gAudiop->hasDecodedFile(uuid)) | ||
1628 | { | 1626 | { |
1629 | // Already have a decoded version, don't need to decode it. | 1627 | // Already have a decoded version, don't need to decode it. |
1630 | mHasLocalData = TRUE; | 1628 | mHasLocalData = TRUE; |
1631 | mHasDecodedData = TRUE; | 1629 | mHasDecodedData = TRUE; |
1632 | } | 1630 | } |
1633 | else if (gAssetStorage->hasLocalAsset(uuid, LLAssetType::AT_SOUND)) | 1631 | else if (gAssetStorage && gAssetStorage->hasLocalAsset(uuid, LLAssetType::AT_SOUND)) |
1634 | { | 1632 | { |
1635 | mHasLocalData = TRUE; | 1633 | mHasLocalData = TRUE; |
1636 | } | 1634 | } |
diff --git a/linden/indra/llcommon/llmemory.cpp b/linden/indra/llcommon/llmemory.cpp index 8fa324f..9b6f893 100644 --- a/linden/indra/llcommon/llmemory.cpp +++ b/linden/indra/llcommon/llmemory.cpp | |||
@@ -36,12 +36,8 @@ | |||
36 | # include <psapi.h> | 36 | # include <psapi.h> |
37 | #elif defined(LL_DARWIN) | 37 | #elif defined(LL_DARWIN) |
38 | # include <sys/types.h> | 38 | # include <sys/types.h> |
39 | # include <sys/sysctl.h> | ||
40 | # include <mach/task.h> | 39 | # include <mach/task.h> |
41 | # include <mach/vm_map.h> | ||
42 | # include <mach/mach_init.h> | 40 | # include <mach/mach_init.h> |
43 | # include <mach/vm_region.h> | ||
44 | # include <mach/mach_port.h> | ||
45 | #elif defined(LL_LINUX) | 41 | #elif defined(LL_LINUX) |
46 | # include <unistd.h> | 42 | # include <unistd.h> |
47 | #endif | 43 | #endif |
@@ -314,13 +310,18 @@ U64 getCurrentRSS() | |||
314 | 310 | ||
315 | #elif defined(LL_DARWIN) | 311 | #elif defined(LL_DARWIN) |
316 | 312 | ||
317 | // This can cause bad stalls! Replace with fast version | 313 | /* |
318 | 314 | The API used here is not capable of dealing with 64-bit memory sizes, but is available before 10.4. | |
319 | // static U32 getPageSize() | 315 | |
320 | // { | 316 | Once we start requiring 10.4, we can use the updated API, which looks like this: |
321 | // int ctl[2] = { CTL_HW, HW_PAGESIZE }; | 317 | |
322 | // int page_size; | 318 | task_basic_info_64_data_t basicInfo; |
323 | // size_t size = sizeof(page_size); | 319 | mach_msg_type_number_t basicInfoCount = TASK_BASIC_INFO_64_COUNT; |
320 | if (task_info(mach_task_self(), TASK_BASIC_INFO_64, (task_info_t)&basicInfo, &basicInfoCount) == KERN_SUCCESS) | ||
321 | |||
322 | Of course, this doesn't gain us anything unless we start building the viewer as a 64-bit executable, since that's the only way | ||
323 | for our memory allocation to exceed 2^32. | ||
324 | */ | ||
324 | 325 | ||
325 | // if (sysctl(ctl, 2, &page_size, &size, NULL, 0) == -1) | 326 | // if (sysctl(ctl, 2, &page_size, &size, NULL, 0) == -1) |
326 | // { | 327 | // { |
@@ -333,58 +334,25 @@ U64 getCurrentRSS() | |||
333 | 334 | ||
334 | U64 getCurrentRSS() | 335 | U64 getCurrentRSS() |
335 | { | 336 | { |
336 | // Stalls!!! | 337 | U64 residentSize = 0; |
337 | |||
338 | // task_t task = mach_task_self(); | ||
339 | // vm_address_t addr = VM_MIN_ADDRESS; | ||
340 | // vm_size_t size = 0; | ||
341 | // U64 residentPages = 0; | ||
342 | 338 | ||
343 | // while (true) | 339 | task_basic_info_data_t basicInfo; |
344 | // { | 340 | mach_msg_type_number_t basicInfoCount = TASK_BASIC_INFO_COUNT; |
345 | // mach_msg_type_number_t bcount = VM_REGION_BASIC_INFO_COUNT; | 341 | if (task_info(mach_task_self(), TASK_BASIC_INFO, (task_info_t)&basicInfo, &basicInfoCount) == KERN_SUCCESS) |
346 | // vm_region_basic_info binfo; | 342 | { |
347 | // mach_port_t bobj; | 343 | residentSize = basicInfo.resident_size; |
348 | // kern_return_t ret; | ||
349 | |||
350 | // addr += size; | ||
351 | |||
352 | // ret = vm_region(task, &addr, &size, VM_REGION_BASIC_INFO, | ||
353 | // (vm_region_info_t) &binfo, &bcount, &bobj); | ||
354 | |||
355 | // if (ret != KERN_SUCCESS) | ||
356 | // { | ||
357 | // break; | ||
358 | // } | ||
359 | |||
360 | // if (bobj != MACH_PORT_NULL) | ||
361 | // { | ||
362 | // mach_port_deallocate(task, bobj); | ||
363 | // } | ||
364 | |||
365 | // mach_msg_type_number_t ecount = VM_REGION_EXTENDED_INFO_COUNT; | ||
366 | // vm_region_extended_info einfo; | ||
367 | // mach_port_t eobj; | ||
368 | |||
369 | // ret = vm_region(task, &addr, &size, VM_REGION_EXTENDED_INFO, | ||
370 | // (vm_region_info_t) &einfo, &ecount, &eobj); | ||
371 | |||
372 | // if (ret != KERN_SUCCESS) | ||
373 | // { | ||
374 | // llwarns << "vm_region failed" << llendl; | ||
375 | // return 0; | ||
376 | // } | ||
377 | |||
378 | // if (eobj != MACH_PORT_NULL) | ||
379 | // { | ||
380 | // mach_port_deallocate(task, eobj); | ||
381 | // } | ||
382 | 344 | ||
383 | // residentPages += einfo.pages_resident; | 345 | // If we ever wanted it, the process virtual size is also available as: |
384 | // } | 346 | // virtualSize = basicInfo.virtual_size; |
347 | |||
348 | // llinfos << "resident size is " << residentSize << llendl; | ||
349 | } | ||
350 | else | ||
351 | { | ||
352 | llwarns << "task_info failed" << llendl; | ||
353 | } | ||
385 | 354 | ||
386 | // return residentPages * getPageSize(); | 355 | return residentSize; |
387 | return 0; | ||
388 | } | 356 | } |
389 | 357 | ||
390 | #elif defined(LL_LINUX) | 358 | #elif defined(LL_LINUX) |
diff --git a/linden/indra/llcommon/llversionviewer.h b/linden/indra/llcommon/llversionviewer.h index 036d34b..75cc463 100644 --- a/linden/indra/llcommon/llversionviewer.h +++ b/linden/indra/llcommon/llversionviewer.h | |||
@@ -34,7 +34,7 @@ | |||
34 | 34 | ||
35 | const S32 LL_VERSION_MAJOR = 1; | 35 | const S32 LL_VERSION_MAJOR = 1; |
36 | const S32 LL_VERSION_MINOR = 20; | 36 | const S32 LL_VERSION_MINOR = 20; |
37 | const S32 LL_VERSION_PATCH = 9; | 37 | const S32 LL_VERSION_PATCH = 10; |
38 | const S32 LL_VERSION_BUILD = 0; | 38 | const S32 LL_VERSION_BUILD = 0; |
39 | 39 | ||
40 | const char * const LL_CHANNEL = "Second Life Release"; | 40 | const char * const LL_CHANNEL = "Second Life Release"; |
diff --git a/linden/indra/llcommon/llworkerthread.cpp b/linden/indra/llcommon/llworkerthread.cpp index 6301fa1..0389cff 100644 --- a/linden/indra/llcommon/llworkerthread.cpp +++ b/linden/indra/llcommon/llworkerthread.cpp | |||
@@ -36,6 +36,7 @@ | |||
36 | #include "llframecallbackmanager.h" | 36 | #include "llframecallbackmanager.h" |
37 | #endif | 37 | #endif |
38 | 38 | ||
39 | BOOL LLWorkerClass::sDeleteLock = FALSE ; | ||
39 | //============================================================================ | 40 | //============================================================================ |
40 | // Run on MAIN thread | 41 | // Run on MAIN thread |
41 | 42 | ||
@@ -94,6 +95,7 @@ S32 LLWorkerThread::update(U32 max_time_ms) | |||
94 | { | 95 | { |
95 | (*iter)->abortWork(false); | 96 | (*iter)->abortWork(false); |
96 | } | 97 | } |
98 | LLWorkerClass::sDeleteLock = TRUE ; | ||
97 | for (std::vector<LLWorkerClass*>::iterator iter = delete_list.begin(); | 99 | for (std::vector<LLWorkerClass*>::iterator iter = delete_list.begin(); |
98 | iter != delete_list.end(); ++iter) | 100 | iter != delete_list.end(); ++iter) |
99 | { | 101 | { |
@@ -107,6 +109,7 @@ S32 LLWorkerThread::update(U32 max_time_ms) | |||
107 | } | 109 | } |
108 | delete *iter; | 110 | delete *iter; |
109 | } | 111 | } |
112 | LLWorkerClass::sDeleteLock = FALSE ; | ||
110 | // delete and aborted entries mean there's still work to do | 113 | // delete and aborted entries mean there's still work to do |
111 | res += delete_list.size() + abort_list.size(); | 114 | res += delete_list.size() + abort_list.size(); |
112 | return res; | 115 | return res; |
diff --git a/linden/indra/llcommon/llworkerthread.h b/linden/indra/llcommon/llworkerthread.h index 58f1ead..72f9bc3 100644 --- a/linden/indra/llcommon/llworkerthread.h +++ b/linden/indra/llcommon/llworkerthread.h | |||
@@ -118,6 +118,9 @@ class LLWorkerClass | |||
118 | { | 118 | { |
119 | friend class LLWorkerThread; | 119 | friend class LLWorkerThread; |
120 | friend class LLWorkerThread::WorkRequest; | 120 | friend class LLWorkerThread::WorkRequest; |
121 | |||
122 | public: | ||
123 | static BOOL sDeleteLock ; | ||
121 | public: | 124 | public: |
122 | typedef LLWorkerThread::handle_t handle_t; | 125 | typedef LLWorkerThread::handle_t handle_t; |
123 | enum FLAGS | 126 | enum FLAGS |
@@ -178,6 +181,7 @@ private: | |||
178 | void setFlags(U32 flags) { mWorkFlags = mWorkFlags | flags; } | 181 | void setFlags(U32 flags) { mWorkFlags = mWorkFlags | flags; } |
179 | void clearFlags(U32 flags) { mWorkFlags = mWorkFlags & ~flags; } | 182 | void clearFlags(U32 flags) { mWorkFlags = mWorkFlags & ~flags; } |
180 | U32 getFlags() { return mWorkFlags; } | 183 | U32 getFlags() { return mWorkFlags; } |
184 | public: | ||
181 | bool getFlags(U32 flags) { return mWorkFlags & flags ? true : false; } | 185 | bool getFlags(U32 flags) { return mWorkFlags & flags ? true : false; } |
182 | 186 | ||
183 | private: | 187 | private: |
diff --git a/linden/indra/llcrashlogger/llcrashlogger.cpp b/linden/indra/llcrashlogger/llcrashlogger.cpp index 948932f..0fd8f63 100755 --- a/linden/indra/llcrashlogger/llcrashlogger.cpp +++ b/linden/indra/llcrashlogger/llcrashlogger.cpp | |||
@@ -96,6 +96,33 @@ LLCrashLogger::~LLCrashLogger() | |||
96 | 96 | ||
97 | } | 97 | } |
98 | 98 | ||
99 | // TRIM_SIZE must remain larger than LINE_SEARCH_SIZE. | ||
100 | const int TRIM_SIZE = 128000; | ||
101 | const int LINE_SEARCH_DIST = 500; | ||
102 | const std::string SKIP_TEXT = "\n ...Skipping... \n"; | ||
103 | void trimSLLog(std::string& sllog) | ||
104 | { | ||
105 | if(sllog.length() > TRIM_SIZE * 2) | ||
106 | { | ||
107 | std::string::iterator head = sllog.begin() + TRIM_SIZE; | ||
108 | std::string::iterator tail = sllog.begin() + sllog.length() - TRIM_SIZE; | ||
109 | std::string::iterator new_head = std::find(head, head - LINE_SEARCH_DIST, '\n'); | ||
110 | if(new_head != head - LINE_SEARCH_DIST) | ||
111 | { | ||
112 | head = new_head; | ||
113 | } | ||
114 | |||
115 | std::string::iterator new_tail = std::find(tail, tail + LINE_SEARCH_DIST, '\n'); | ||
116 | if(new_tail != tail + LINE_SEARCH_DIST) | ||
117 | { | ||
118 | tail = new_tail; | ||
119 | } | ||
120 | |||
121 | sllog.erase(head, tail); | ||
122 | sllog.insert(head, SKIP_TEXT.begin(), SKIP_TEXT.end()); | ||
123 | } | ||
124 | } | ||
125 | |||
99 | void LLCrashLogger::gatherFiles() | 126 | void LLCrashLogger::gatherFiles() |
100 | { | 127 | { |
101 | 128 | ||
@@ -152,6 +179,17 @@ void LLCrashLogger::gatherFiles() | |||
152 | mCrashHost += mDebugLog["CurrentSimHost"].asString(); | 179 | mCrashHost += mDebugLog["CurrentSimHost"].asString(); |
153 | mCrashHost += ":12043/crash/report"; | 180 | mCrashHost += ":12043/crash/report"; |
154 | } | 181 | } |
182 | else if(mDebugLog.has("GridName")) | ||
183 | { | ||
184 | // This is a 'little' hacky, but its the best simple solution. | ||
185 | std::string grid_host = mDebugLog["GridName"].asString(); | ||
186 | LLString::toLower(grid_host); | ||
187 | |||
188 | mCrashHost = "https://login."; | ||
189 | mCrashHost += grid_host; | ||
190 | mCrashHost += ".lindenlab.com:12043/crash/report"; | ||
191 | } | ||
192 | |||
155 | // Use login servers as the alternate, since they are already load balanced and have a known name | 193 | // 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"; | 194 | mAltCrashHost = "https://login.agni.lindenlab.com:12043/crash/report"; |
157 | 195 | ||
@@ -171,7 +209,14 @@ void LLCrashLogger::gatherFiles() | |||
171 | } | 209 | } |
172 | std::stringstream s; | 210 | std::stringstream s; |
173 | s << f.rdbuf(); | 211 | s << f.rdbuf(); |
174 | mCrashInfo[(*itr).first] = s.str(); | 212 | |
213 | std::string crash_info = s.str(); | ||
214 | if(itr->first == "SecondLifeLog") | ||
215 | { | ||
216 | trimSLLog(crash_info); | ||
217 | } | ||
218 | |||
219 | mCrashInfo[(*itr).first] = crash_info; | ||
175 | } | 220 | } |
176 | } | 221 | } |
177 | 222 | ||
diff --git a/linden/indra/llui/llscrolllistctrl.cpp b/linden/indra/llui/llscrolllistctrl.cpp index 41b50c2..307d045 100644 --- a/linden/indra/llui/llscrolllistctrl.cpp +++ b/linden/indra/llui/llscrolllistctrl.cpp | |||
@@ -1109,11 +1109,15 @@ BOOL LLScrollListCtrl::selectItemRange( S32 first_index, S32 last_index ) | |||
1109 | 1109 | ||
1110 | BOOL success = FALSE; | 1110 | BOOL success = FALSE; |
1111 | S32 index = 0; | 1111 | S32 index = 0; |
1112 | for (item_list::iterator iter = mItemList.begin(); iter != mItemList.end(); iter++) | 1112 | for (item_list::iterator iter = mItemList.begin(); iter != mItemList.end(); ) |
1113 | { | 1113 | { |
1114 | LLScrollListItem *itemp = *iter; | 1114 | LLScrollListItem *itemp = *iter; |
1115 | 1115 | if(!itemp) | |
1116 | llassert_always(itemp) ; | 1116 | { |
1117 | iter = mItemList.erase(iter); | ||
1118 | continue ; | ||
1119 | } | ||
1120 | |||
1117 | if( index >= first_index && index <= last_index ) | 1121 | if( index >= first_index && index <= last_index ) |
1118 | { | 1122 | { |
1119 | if( itemp->getEnabled() ) | 1123 | if( itemp->getEnabled() ) |
@@ -1127,6 +1131,7 @@ BOOL LLScrollListCtrl::selectItemRange( S32 first_index, S32 last_index ) | |||
1127 | deselectItem(itemp); | 1131 | deselectItem(itemp); |
1128 | } | 1132 | } |
1129 | index++; | 1133 | index++; |
1134 | iter++ ; | ||
1130 | } | 1135 | } |
1131 | 1136 | ||
1132 | if (mCommitOnSelectionChange) | 1137 | if (mCommitOnSelectionChange) |
diff --git a/linden/indra/llwindow/llwindowwin32.cpp b/linden/indra/llwindow/llwindowwin32.cpp index af96a80..70487b7 100644 --- a/linden/indra/llwindow/llwindowwin32.cpp +++ b/linden/indra/llwindow/llwindowwin32.cpp | |||
@@ -1371,7 +1371,9 @@ void LLWindowWin32::moveWindow( const LLCoordScreen& position, const LLCoordScre | |||
1371 | // if the window was already maximized, MoveWindow seems to still set the maximized flag even if | 1371 | // if the window was already maximized, MoveWindow seems to still set the maximized flag even if |
1372 | // the window is smaller than maximized. | 1372 | // the window is smaller than maximized. |
1373 | // So we're going to do a restore first (which is a ShowWindow call) (SL-44655). | 1373 | // So we're going to do a restore first (which is a ShowWindow call) (SL-44655). |
1374 | ShowWindow(mWindowHandle, SW_RESTORE); | 1374 | |
1375 | // THIS CAUSES DEV-15484 and DEV-15949 | ||
1376 | //ShowWindow(mWindowHandle, SW_RESTORE); | ||
1375 | // NOW we can call MoveWindow | 1377 | // NOW we can call MoveWindow |
1376 | MoveWindow(mWindowHandle, position.mX, position.mY, size.mX, size.mY, TRUE); | 1378 | MoveWindow(mWindowHandle, position.mX, position.mY, size.mX, size.mY, TRUE); |
1377 | } | 1379 | } |
diff --git a/linden/indra/lscript/lscript_compile/indra.l b/linden/indra/lscript/lscript_compile/indra.l index ba10ef6..74e32fd 100644 --- a/linden/indra/lscript/lscript_compile/indra.l +++ b/linden/indra/lscript/lscript_compile/indra.l | |||
@@ -607,9 +607,10 @@ extern "C" { int yyerror(const char *fmt, ...); } | |||
607 | "CLICK_ACTION_OPEN_MEDIA" { count(); yylval.ival = CLICK_ACTION_OPEN_MEDIA; return(INTEGER_CONSTANT); } | 607 | "CLICK_ACTION_OPEN_MEDIA" { count(); yylval.ival = CLICK_ACTION_OPEN_MEDIA; return(INTEGER_CONSTANT); } |
608 | 608 | ||
609 | "TEXTURE_BLANK" { yylval.sval = new char[UUID_STR_LENGTH]; strcpy(yylval.sval, "5748decc-f629-461c-9a36-a35a221fe21f"); return(STRING_CONSTANT); } | 609 | "TEXTURE_BLANK" { yylval.sval = new char[UUID_STR_LENGTH]; strcpy(yylval.sval, "5748decc-f629-461c-9a36-a35a221fe21f"); return(STRING_CONSTANT); } |
610 | "TEXTURE_DEFAULT" { yylval.sval = new char[UUID_STR_LENGTH]; strcpy(yylval.sval, "8b5fec65-8d8d-9dc5-cda8-8fdf2716e361"); return(STRING_CONSTANT); } | 610 | "TEXTURE_DEFAULT" { yylval.sval = new char[UUID_STR_LENGTH]; strcpy(yylval.sval, "89556747-24cb-43ed-920b-47caed15465f"); return(STRING_CONSTANT); } |
611 | "TEXTURE_PLYWOOD" { yylval.sval = new char[UUID_STR_LENGTH]; strcpy(yylval.sval, "89556747-24cb-43ed-920b-47caed15465f"); return(STRING_CONSTANT); } | 611 | "TEXTURE_MEDIA" { yylval.sval = new char[UUID_STR_LENGTH]; strcpy(yylval.sval, "8b5fec65-8d8d-9dc5-cda8-8fdf2716e361"); return(STRING_CONSTANT); } |
612 | "TEXTURE_TRANSPARENT" { yylval.sval = new char[UUID_STR_LENGTH]; strcpy(yylval.sval, "59facb66-4a72-40a2-815c-7d9b42c56f60"); return(STRING_CONSTANT); } | 612 | "TEXTURE_PLYWOOD" { yylval.sval = new char[UUID_STR_LENGTH]; strcpy(yylval.sval, "89556747-24cb-43ed-920b-47caed15465f"); return(STRING_CONSTANT); } |
613 | "TEXTURE_TRANSPARENT" { yylval.sval = new char[UUID_STR_LENGTH]; strcpy(yylval.sval, "8dcd4a48-2d37-4909-9f78-f7a9eb4ef903"); return(STRING_CONSTANT); } | ||
613 | 614 | ||
614 | {L}({L}|{N})* { count(); yylval.sval = new char[strlen(yytext) + 1]; strcpy(yylval.sval, yytext); return(IDENTIFIER); } | 615 | {L}({L}|{N})* { count(); yylval.sval = new char[strlen(yytext) + 1]; strcpy(yylval.sval, yytext); return(IDENTIFIER); } |
615 | 616 | ||
diff --git a/linden/indra/newview/app_settings/settings.xml b/linden/indra/newview/app_settings/settings.xml index b93f826..18ca143 100644 --- a/linden/indra/newview/app_settings/settings.xml +++ b/linden/indra/newview/app_settings/settings.xml | |||
@@ -5764,17 +5764,6 @@ | |||
5764 | <key>Value</key> | 5764 | <key>Value</key> |
5765 | <integer>1</integer> | 5765 | <integer>1</integer> |
5766 | </map> | 5766 | </map> |
5767 | <key>RenderDynamicReflections</key> | ||
5768 | <map> | ||
5769 | <key>Comment</key> | ||
5770 | <string>Generate a dynamic cube map for reflections (objects reflect their environment, experimental).</string> | ||
5771 | <key>Persist</key> | ||
5772 | <integer>1</integer> | ||
5773 | <key>Type</key> | ||
5774 | <string>Boolean</string> | ||
5775 | <key>Value</key> | ||
5776 | <integer>0</integer> | ||
5777 | </map> | ||
5778 | <key>RenderFSAASamples</key> | 5767 | <key>RenderFSAASamples</key> |
5779 | <map> | 5768 | <map> |
5780 | <key>Comment</key> | 5769 | <key>Comment</key> |
@@ -9928,11 +9917,11 @@ | |||
9928 | <key>Comment</key> | 9917 | <key>Comment</key> |
9929 | <string>Controls whether the thread watchdog timer is activated.</string> | 9918 | <string>Controls whether the thread watchdog timer is activated.</string> |
9930 | <key>Persist</key> | 9919 | <key>Persist</key> |
9931 | <integer>1</integer> | 9920 | <integer>0</integer> |
9932 | <key>Type</key> | 9921 | <key>Type</key> |
9933 | <string>Boolean</string> | 9922 | <string>Boolean</string> |
9934 | <key>Value</key> | 9923 | <key>Value</key> |
9935 | <integer>1</integer> | 9924 | <integer>0</integer> |
9936 | </map> | 9925 | </map> |
9937 | <key>WaterEditPresets</key> | 9926 | <key>WaterEditPresets</key> |
9938 | <map> | 9927 | <map> |
diff --git a/linden/indra/newview/llappviewer.cpp b/linden/indra/newview/llappviewer.cpp index f39610f..96d96dc 100644 --- a/linden/indra/newview/llappviewer.cpp +++ b/linden/indra/newview/llappviewer.cpp | |||
@@ -402,13 +402,13 @@ bool handleCrashSubmitBehaviorChanged(const LLSD& newvalue) | |||
402 | const S32 NEVER_SUBMIT_REPORT = 2; | 402 | const S32 NEVER_SUBMIT_REPORT = 2; |
403 | if(cb == NEVER_SUBMIT_REPORT) | 403 | if(cb == NEVER_SUBMIT_REPORT) |
404 | { | 404 | { |
405 | // LLWatchdog::getInstance()->cleanup(); // SJB: cleaning up a running watchdog is unsafe | 405 | // LLWatchdog::getInstance()->cleanup(); // SJB: cleaning up a running watchdog thread is unsafe |
406 | LLAppViewer::instance()->destroyMainloopTimeout(); | 406 | LLAppViewer::instance()->destroyMainloopTimeout(); |
407 | } | 407 | } |
408 | else if(gSavedSettings.getBOOL("WatchdogEnabled") == TRUE) | 408 | else if(gSavedSettings.getBOOL("WatchdogEnabled") == TRUE) |
409 | { | 409 | { |
410 | // LLWatchdog::getInstance()->init(); | 410 | // Don't re-enable the watchdog when we change the setting; this may get called before it's started |
411 | // LLAppViewer::instance()->initMainloopTimeout("Mainloop Resume"); | 411 | // LLWatchdog::getInstance()->init(); |
412 | } | 412 | } |
413 | return true; | 413 | return true; |
414 | } | 414 | } |
@@ -1580,6 +1580,7 @@ bool LLAppViewer::initConfiguration() | |||
1580 | // on these platform to help debug. | 1580 | // on these platform to help debug. |
1581 | #ifndef LL_RELEASE_FOR_DOWNLOAD | 1581 | #ifndef LL_RELEASE_FOR_DOWNLOAD |
1582 | gSavedSettings.setBOOL("WatchdogEnabled", FALSE); | 1582 | gSavedSettings.setBOOL("WatchdogEnabled", FALSE); |
1583 | gSavedSettings.setBOOL("QAMode", TRUE ); | ||
1583 | #endif | 1584 | #endif |
1584 | 1585 | ||
1585 | #ifndef LL_WINDOWS | 1586 | #ifndef LL_WINDOWS |
@@ -1631,15 +1632,6 @@ bool LLAppViewer::initConfiguration() | |||
1631 | // Do this *before* loading the settings file | 1632 | // Do this *before* loading the settings file |
1632 | LLAlertDialog::parseAlerts("alerts.xml", &gSavedSettings, TRUE); | 1633 | LLAlertDialog::parseAlerts("alerts.xml", &gSavedSettings, TRUE); |
1633 | 1634 | ||
1634 | #if LL_DYNAMIC_FONT_DISCOVERY | ||
1635 | // Linux does *dynamic* font discovery which is preferable to | ||
1636 | // whatever got written-out into the config file last time. This | ||
1637 | // does remove the ability of the user to hand-define the fallbacks | ||
1638 | // though, so from a config-management point of view this is hacky. | ||
1639 | gSavedSettings.setString("FontSansSerifFallback", | ||
1640 | LLWindow::getFontListSans()); | ||
1641 | #endif | ||
1642 | |||
1643 | // - read command line settings. | 1635 | // - read command line settings. |
1644 | LLControlGroupCLP clp; | 1636 | LLControlGroupCLP clp; |
1645 | std::string cmd_line_config = gDirUtilp->getExpandedFilename(LL_PATH_APP_SETTINGS, | 1637 | std::string cmd_line_config = gDirUtilp->getExpandedFilename(LL_PATH_APP_SETTINGS, |
@@ -1684,6 +1676,15 @@ bool LLAppViewer::initConfiguration() | |||
1684 | // - load overrides from user_settings | 1676 | // - load overrides from user_settings |
1685 | loadSettingsFromDirectory(LL_PATH_USER_SETTINGS); | 1677 | loadSettingsFromDirectory(LL_PATH_USER_SETTINGS); |
1686 | 1678 | ||
1679 | #if LL_DYNAMIC_FONT_DISCOVERY | ||
1680 | // Linux does *dynamic* font discovery which is preferable to | ||
1681 | // whatever got written-out into the config file last time. This | ||
1682 | // does remove the ability of the user to hand-define the fallbacks | ||
1683 | // though, so from a config-management point of view this is hacky. | ||
1684 | gSavedSettings.setString("FontSansSerifFallback", | ||
1685 | LLWindow::getFontListSans()); | ||
1686 | #endif | ||
1687 | |||
1687 | // - apply command line settings | 1688 | // - apply command line settings |
1688 | clp.notify(); | 1689 | clp.notify(); |
1689 | 1690 | ||
@@ -2228,7 +2229,11 @@ void LLAppViewer::writeSystemInfo() | |||
2228 | gDebugInfo["RAMInfo"]["Physical"] = (LLSD::Integer)(gSysMemory.getPhysicalMemoryKB()); | 2229 | gDebugInfo["RAMInfo"]["Physical"] = (LLSD::Integer)(gSysMemory.getPhysicalMemoryKB()); |
2229 | gDebugInfo["RAMInfo"]["Allocated"] = (LLSD::Integer)(gMemoryAllocated>>10); // MB -> KB | 2230 | gDebugInfo["RAMInfo"]["Allocated"] = (LLSD::Integer)(gMemoryAllocated>>10); // MB -> KB |
2230 | gDebugInfo["OSInfo"] = getOSInfo().getOSStringSimple(); | 2231 | gDebugInfo["OSInfo"] = getOSInfo().getOSStringSimple(); |
2231 | 2232 | ||
2233 | // The user is not logged on yet, but record the current grid choice login url | ||
2234 | // which may have been the intended grid. This can b | ||
2235 | gDebugInfo["GridName"] = LLViewerLogin::getInstance()->getGridLabel(); | ||
2236 | |||
2232 | // *FIX:Mani - move this ddown in llappviewerwin32 | 2237 | // *FIX:Mani - move this ddown in llappviewerwin32 |
2233 | #ifdef LL_WINDOWS | 2238 | #ifdef LL_WINDOWS |
2234 | DWORD thread_id = GetCurrentThreadId(); | 2239 | DWORD thread_id = GetCurrentThreadId(); |
@@ -2265,9 +2270,6 @@ void LLAppViewer::handleViewerCrash() | |||
2265 | { | 2270 | { |
2266 | llinfos << "Handle viewer crash entry." << llendl; | 2271 | llinfos << "Handle viewer crash entry." << llendl; |
2267 | 2272 | ||
2268 | // Make sure the watchdog gets turned off... | ||
2269 | // LLWatchdog::getInstance()->cleanup(); // SJB: This causes the Watchdog to hang for an extra 20-40s?! | ||
2270 | |||
2271 | LLAppViewer* pApp = LLAppViewer::instance(); | 2273 | LLAppViewer* pApp = LLAppViewer::instance(); |
2272 | if (pApp->beingDebugged()) | 2274 | if (pApp->beingDebugged()) |
2273 | { | 2275 | { |
@@ -2283,6 +2285,9 @@ void LLAppViewer::handleViewerCrash() | |||
2283 | } | 2285 | } |
2284 | pApp->mReportedCrash = TRUE; | 2286 | pApp->mReportedCrash = TRUE; |
2285 | 2287 | ||
2288 | // Make sure the watchdog gets turned off... | ||
2289 | // pApp->destroyMainloopTimeout(); // SJB: Bah. This causes the crash handler to hang, not sure why. | ||
2290 | |||
2286 | //We already do this in writeSystemInfo(), but we do it again here to make /sure/ we have a version | 2291 | //We already do this in writeSystemInfo(), but we do it again here to make /sure/ we have a version |
2287 | //to check against no matter what | 2292 | //to check against no matter what |
2288 | gDebugInfo["ClientInfo"]["Name"] = gSavedSettings.getString("VersionChannelName"); | 2293 | gDebugInfo["ClientInfo"]["Name"] = gSavedSettings.getString("VersionChannelName"); |
diff --git a/linden/indra/newview/lldrawable.cpp b/linden/indra/newview/lldrawable.cpp index db57509..a228f68 100644 --- a/linden/indra/newview/lldrawable.cpp +++ b/linden/indra/newview/lldrawable.cpp | |||
@@ -122,6 +122,11 @@ void LLDrawable::destroy() | |||
122 | sNumZombieDrawables--; | 122 | sNumZombieDrawables--; |
123 | } | 123 | } |
124 | 124 | ||
125 | if (LLSpatialGroup::sNoDelete) | ||
126 | { | ||
127 | llerrs << "Illegal deletion of LLDrawable!" << llendl; | ||
128 | } | ||
129 | |||
125 | LLFace::sDeleteLock = mFaces.size() ; | 130 | LLFace::sDeleteLock = mFaces.size() ; |
126 | std::for_each(mFaces.begin(), mFaces.end(), DeletePointer()); | 131 | std::for_each(mFaces.begin(), mFaces.end(), DeletePointer()); |
127 | mFaces.clear(); | 132 | mFaces.clear(); |
diff --git a/linden/indra/newview/lldrawpoolbump.cpp b/linden/indra/newview/lldrawpoolbump.cpp index c7c19d9..6154c5b 100644 --- a/linden/indra/newview/lldrawpoolbump.cpp +++ b/linden/indra/newview/lldrawpoolbump.cpp | |||
@@ -556,30 +556,7 @@ void LLDrawPoolBump::renderGroup(LLSpatialGroup* group, U32 type, U32 mask, BOOL | |||
556 | for (LLSpatialGroup::drawmap_elem_t::iterator k = draw_info.begin(); k != draw_info.end(); ++k) | 556 | for (LLSpatialGroup::drawmap_elem_t::iterator k = draw_info.begin(); k != draw_info.end(); ++k) |
557 | { | 557 | { |
558 | LLDrawInfo& params = **k; | 558 | LLDrawInfo& params = **k; |
559 | if (LLPipeline::sDynamicReflections) | 559 | |
560 | { | ||
561 | if (params.mReflectionMap.notNull()) | ||
562 | { | ||
563 | params.mReflectionMap->bind(); | ||
564 | } | ||
565 | else | ||
566 | { | ||
567 | if (params.mModelMatrix) | ||
568 | { | ||
569 | sCubeMap = gPipeline.findReflectionMap(params.mModelMatrix->getTranslation()); | ||
570 | } | ||
571 | |||
572 | if (sCubeMap) | ||
573 | { | ||
574 | sCubeMap->bind(); | ||
575 | } | ||
576 | else if (gSky.mVOSkyp->getCubeMap()) | ||
577 | { | ||
578 | gSky.mVOSkyp->getCubeMap()->bind(); | ||
579 | } | ||
580 | } | ||
581 | } | ||
582 | |||
583 | applyModelMatrix(params); | 560 | applyModelMatrix(params); |
584 | 561 | ||
585 | params.mVertexBuffer->setBuffer(mask); | 562 | params.mVertexBuffer->setBuffer(mask); |
@@ -1121,22 +1098,6 @@ void LLDrawPoolBump::pushBatch(LLDrawInfo& params, U32 mask, BOOL texture) | |||
1121 | { | 1098 | { |
1122 | LLImageGL::unbindTexture(0); | 1099 | LLImageGL::unbindTexture(0); |
1123 | } | 1100 | } |
1124 | |||
1125 | if (LLPipeline::sDynamicReflections) | ||
1126 | { | ||
1127 | LLCubeMap* cube_map = params.mReflectionMap; | ||
1128 | |||
1129 | if (!cube_map && params.mModelMatrix) | ||
1130 | { | ||
1131 | cube_map = gPipeline.findReflectionMap(params.mModelMatrix->getTranslation()); | ||
1132 | } | ||
1133 | |||
1134 | if (cube_map) | ||
1135 | { | ||
1136 | cube_map->enableTexture(cube_channel); | ||
1137 | cube_map->bind(); | ||
1138 | } | ||
1139 | } | ||
1140 | } | 1101 | } |
1141 | 1102 | ||
1142 | params.mVertexBuffer->setBuffer(mask); | 1103 | params.mVertexBuffer->setBuffer(mask); |
diff --git a/linden/indra/newview/llfloaterworldmap.cpp b/linden/indra/newview/llfloaterworldmap.cpp index e8b6caa..75fbff2 100644 --- a/linden/indra/newview/llfloaterworldmap.cpp +++ b/linden/indra/newview/llfloaterworldmap.cpp | |||
@@ -871,8 +871,6 @@ void LLFloaterWorldMap::buildLandmarkIDLists() | |||
871 | { | 871 | { |
872 | list->selectItemRange(1, -1); | 872 | list->selectItemRange(1, -1); |
873 | list->operateOnSelection(LLCtrlListInterface::OP_DELETE); | 873 | list->operateOnSelection(LLCtrlListInterface::OP_DELETE); |
874 | |||
875 | llassert_always(list->getItemCount() == 1) ; | ||
876 | } | 874 | } |
877 | 875 | ||
878 | mLandmarkItemIDList.reset(); | 876 | mLandmarkItemIDList.reset(); |
diff --git a/linden/indra/newview/llglslshader.cpp b/linden/indra/newview/llglslshader.cpp index afbafde..a9274b5 100644 --- a/linden/indra/newview/llglslshader.cpp +++ b/linden/indra/newview/llglslshader.cpp | |||
@@ -719,13 +719,11 @@ void LLShaderMgr::setShaders() | |||
719 | 719 | ||
720 | if (gSavedSettings.getBOOL("VertexShaderEnable")) | 720 | if (gSavedSettings.getBOOL("VertexShaderEnable")) |
721 | { | 721 | { |
722 | LLPipeline::sDynamicReflections = gSavedSettings.getBOOL("RenderDynamicReflections") && gGLManager.mHasCubeMap && LLFeatureManager::getInstance()->isFeatureAvailable("RenderCubeMap"); | ||
723 | LLPipeline::sWaterReflections = gGLManager.mHasCubeMap; | 722 | LLPipeline::sWaterReflections = gGLManager.mHasCubeMap; |
724 | LLPipeline::sRenderGlow = gSavedSettings.getBOOL("RenderGlow"); | 723 | LLPipeline::sRenderGlow = gSavedSettings.getBOOL("RenderGlow"); |
725 | } | 724 | } |
726 | else | 725 | else |
727 | { | 726 | { |
728 | LLPipeline::sDynamicReflections = | ||
729 | LLPipeline::sRenderGlow = | 727 | LLPipeline::sRenderGlow = |
730 | LLPipeline::sWaterReflections = FALSE; | 728 | LLPipeline::sWaterReflections = FALSE; |
731 | } | 729 | } |
diff --git a/linden/indra/newview/llgroupnotify.cpp b/linden/indra/newview/llgroupnotify.cpp index bef8eb5..b8d38e4 100644 --- a/linden/indra/newview/llgroupnotify.cpp +++ b/linden/indra/newview/llgroupnotify.cpp | |||
@@ -415,14 +415,15 @@ void LLGroupNotifyBox::moveToBack() | |||
415 | { | 415 | { |
416 | LLView* view = gNotifyBoxView->getFirstChild(); | 416 | LLView* view = gNotifyBoxView->getFirstChild(); |
417 | 417 | ||
418 | llassert_always(view) ; | 418 | if(view && "groupnotify" == view->getName()) |
419 | llassert_always(view->getName() == "groupnotify"); | 419 | { |
420 | 420 | LLGroupNotifyBox* front = (LLGroupNotifyBox*)view; | |
421 | LLGroupNotifyBox* front = (LLGroupNotifyBox*)view; | ||
422 | 421 | ||
423 | llassert_always(front->mNextBtn) ; | 422 | if(front->mNextBtn) |
424 | 423 | { | |
425 | front->mNextBtn->setVisible(TRUE); | 424 | front->mNextBtn->setVisible(TRUE); |
425 | } | ||
426 | } | ||
426 | } | 427 | } |
427 | } | 428 | } |
428 | 429 | ||
diff --git a/linden/indra/newview/llimpanel.cpp b/linden/indra/newview/llimpanel.cpp index d354dbb..b25521d 100644 --- a/linden/indra/newview/llimpanel.cpp +++ b/linden/indra/newview/llimpanel.cpp | |||
@@ -1215,6 +1215,12 @@ LLFloaterIMPanel::~LLFloaterIMPanel() | |||
1215 | 1215 | ||
1216 | delete mVoiceChannel; | 1216 | delete mVoiceChannel; |
1217 | mVoiceChannel = NULL; | 1217 | mVoiceChannel = NULL; |
1218 | |||
1219 | //delete focus lost callback | ||
1220 | if(mInputEditor) | ||
1221 | { | ||
1222 | mInputEditor->setFocusLostCallback( NULL ); | ||
1223 | } | ||
1218 | } | 1224 | } |
1219 | 1225 | ||
1220 | BOOL LLFloaterIMPanel::postBuild() | 1226 | BOOL LLFloaterIMPanel::postBuild() |
diff --git a/linden/indra/newview/llpaneldirplaces.cpp b/linden/indra/newview/llpaneldirplaces.cpp index b75218b..5b63e23 100644 --- a/linden/indra/newview/llpaneldirplaces.cpp +++ b/linden/indra/newview/llpaneldirplaces.cpp | |||
@@ -34,27 +34,27 @@ | |||
34 | #include "llpaneldirplaces.h" | 34 | #include "llpaneldirplaces.h" |
35 | 35 | ||
36 | // linden library includes | 36 | // linden library includes |
37 | //#include "llfontgl.h" | 37 | #include "llfontgl.h" |
38 | #include "message.h" | 38 | #include "message.h" |
39 | //#include "lldir.h" | 39 | #include "lldir.h" |
40 | #include "llparcel.h" // parcel categories | 40 | #include "llparcel.h" |
41 | //#include "llregionflags.h" | 41 | #include "llregionflags.h" |
42 | #include "llqueryflags.h" | 42 | #include "llqueryflags.h" |
43 | 43 | ||
44 | // viewer project includes | 44 | // viewer project includes |
45 | #include "llagent.h" // getID(), isTeen() | 45 | #include "llagent.h" |
46 | //#include "llbutton.h" | 46 | #include "llbutton.h" |
47 | //#include "llcheckboxctrl.h" | 47 | #include "llcheckboxctrl.h" |
48 | //#include "llcombobox.h" | 48 | #include "llcombobox.h" |
49 | //#include "llfloaterdirectory.h" | 49 | #include "llfloaterdirectory.h" |
50 | //#include "lllineeditor.h" | 50 | #include "lllineeditor.h" |
51 | #include "llviewerwindow.h" // alertXml() | 51 | #include "llviewerwindow.h" |
52 | #include "llpaneldirbrowser.h" | 52 | #include "llpaneldirbrowser.h" |
53 | //#include "lltextbox.h" | 53 | #include "lltextbox.h" |
54 | //#include "lluiconstants.h" | 54 | #include "lluiconstants.h" |
55 | #include "llviewercontrol.h" // gSavedSettings | 55 | #include "llviewercontrol.h" |
56 | #include "llviewermessage.h" | 56 | #include "llviewermessage.h" |
57 | //#include "llworldmap.h" | 57 | #include "llworldmap.h" |
58 | 58 | ||
59 | LLPanelDirPlaces::LLPanelDirPlaces(const std::string& name, LLFloaterDirectory* floater) | 59 | LLPanelDirPlaces::LLPanelDirPlaces(const std::string& name, LLFloaterDirectory* floater) |
60 | : LLPanelDirBrowser(name, floater) | 60 | : LLPanelDirBrowser(name, floater) |
diff --git a/linden/indra/newview/llpanellogin.cpp b/linden/indra/newview/llpanellogin.cpp index d8da3c0..065e429 100644 --- a/linden/indra/newview/llpanellogin.cpp +++ b/linden/indra/newview/llpanellogin.cpp | |||
@@ -777,9 +777,8 @@ void LLPanelLogin::getFields(LLString &firstname, LLString &lastname, LLString & | |||
777 | remember = sInstance->childGetValue("remember_check"); | 777 | remember = sInstance->childGetValue("remember_check"); |
778 | } | 778 | } |
779 | 779 | ||
780 | 780 | // static | |
781 | // static. Return TRUE if user made a choice from the popup | 781 | BOOL LLPanelLogin::isGridComboDirty() |
782 | BOOL LLPanelLogin::getServer(LLString &server, S32 &domain_name) | ||
783 | { | 782 | { |
784 | BOOL user_picked = FALSE; | 783 | BOOL user_picked = FALSE; |
785 | if (!sInstance) | 784 | if (!sInstance) |
@@ -789,25 +788,8 @@ BOOL LLPanelLogin::getServer(LLString &server, S32 &domain_name) | |||
789 | else | 788 | else |
790 | { | 789 | { |
791 | LLComboBox* combo = sInstance->getChild<LLComboBox>("server_combo"); | 790 | LLComboBox* combo = sInstance->getChild<LLComboBox>("server_combo"); |
792 | LLSD combo_val = combo->getValue(); | ||
793 | if (LLSD::TypeInteger == combo_val.type()) | ||
794 | { | ||
795 | domain_name = combo->getValue().asInteger(); | ||
796 | |||
797 | if ((S32)GRID_INFO_OTHER == domain_name) | ||
798 | { | ||
799 | server = LLViewerLogin::getInstance()->getGridLabel(); | ||
800 | } | ||
801 | } | ||
802 | else | ||
803 | { | ||
804 | // no valid selection, return other | ||
805 | domain_name = (S32)GRID_INFO_OTHER; | ||
806 | server = combo_val.asString(); | ||
807 | } | ||
808 | user_picked = combo->isDirty(); | 791 | user_picked = combo->isDirty(); |
809 | } | 792 | } |
810 | |||
811 | return user_picked; | 793 | return user_picked; |
812 | } | 794 | } |
813 | 795 | ||
@@ -941,19 +923,13 @@ void LLPanelLogin::loadLoginPage() | |||
941 | curl_free(curl_version); | 923 | curl_free(curl_version); |
942 | 924 | ||
943 | // Grid | 925 | // Grid |
944 | LLString grid; | 926 | char* curl_grid = curl_escape(LLViewerLogin::getInstance()->getGridLabel().c_str(), 0); |
945 | S32 grid_index; | 927 | oStr << "&grid=" << curl_grid; |
946 | getServer( grid, grid_index ); | 928 | curl_free(curl_grid); |
947 | 929 | ||
948 | gViewerWindow->setMenuBackgroundColor(false, !LLViewerLogin::getInstance()->isInProductionGrid()); | 930 | gViewerWindow->setMenuBackgroundColor(false, !LLViewerLogin::getInstance()->isInProductionGrid()); |
949 | gLoginMenuBarView->setBackgroundColor(gMenuBarView->getBackgroundColor()); | 931 | gLoginMenuBarView->setBackgroundColor(gMenuBarView->getBackgroundColor()); |
950 | 932 | ||
951 | if (!grid.empty()) | ||
952 | { | ||
953 | char* curl_grid = curl_escape(grid.c_str(), 0); | ||
954 | oStr << "&grid=" << curl_grid; | ||
955 | curl_free(curl_grid); | ||
956 | } | ||
957 | 933 | ||
958 | #if USE_VIEWER_AUTH | 934 | #if USE_VIEWER_AUTH |
959 | LLURLSimString::sInstance.parse(); | 935 | LLURLSimString::sInstance.parse(); |
@@ -1167,9 +1143,29 @@ void LLPanelLogin::onSelectServer(LLUICtrl*, void*) | |||
1167 | { | 1143 | { |
1168 | // The user twiddled with the grid choice ui. | 1144 | // The user twiddled with the grid choice ui. |
1169 | // apply the selection to the grid setting. | 1145 | // apply the selection to the grid setting. |
1170 | LLString grid; | 1146 | LLString grid_label; |
1171 | S32 grid_index; | 1147 | S32 grid_index; |
1172 | getServer( grid, grid_index ); | 1148 | |
1149 | LLComboBox* combo = sInstance->getChild<LLComboBox>("server_combo"); | ||
1150 | LLSD combo_val = combo->getValue(); | ||
1151 | |||
1152 | if (LLSD::TypeInteger == combo_val.type()) | ||
1153 | { | ||
1154 | grid_index = combo->getValue().asInteger(); | ||
1155 | |||
1156 | if ((S32)GRID_INFO_OTHER == grid_index) | ||
1157 | { | ||
1158 | // This happens if the user specifies a custom grid | ||
1159 | // via command line. | ||
1160 | grid_label = combo->getSimple(); | ||
1161 | } | ||
1162 | } | ||
1163 | else | ||
1164 | { | ||
1165 | // no valid selection, return other | ||
1166 | grid_index = (S32)GRID_INFO_OTHER; | ||
1167 | grid_label = combo_val.asString(); | ||
1168 | } | ||
1173 | 1169 | ||
1174 | // This new seelction will override preset uris | 1170 | // This new seelction will override preset uris |
1175 | // from the command line. | 1171 | // from the command line. |
@@ -1178,11 +1174,10 @@ void LLPanelLogin::onSelectServer(LLUICtrl*, void*) | |||
1178 | if(grid_index != GRID_INFO_OTHER) | 1174 | if(grid_index != GRID_INFO_OTHER) |
1179 | { | 1175 | { |
1180 | vl->setGridChoice((EGridInfo)grid_index); | 1176 | vl->setGridChoice((EGridInfo)grid_index); |
1181 | grid = vl->getGridLabel(); | ||
1182 | } | 1177 | } |
1183 | else | 1178 | else |
1184 | { | 1179 | { |
1185 | vl->setGridChoice(grid); | 1180 | vl->setGridChoice(grid_label); |
1186 | } | 1181 | } |
1187 | 1182 | ||
1188 | // grid changed so show new splash screen (possibly) | 1183 | // grid changed so show new splash screen (possibly) |
diff --git a/linden/indra/newview/llpanellogin.h b/linden/indra/newview/llpanellogin.h index cdf567b..e73ac1c 100644 --- a/linden/indra/newview/llpanellogin.h +++ b/linden/indra/newview/llpanellogin.h | |||
@@ -92,7 +92,7 @@ public: | |||
92 | static void getFields(LLString &firstname, LLString &lastname, | 92 | static void getFields(LLString &firstname, LLString &lastname, |
93 | LLString &password, BOOL &remember); | 93 | LLString &password, BOOL &remember); |
94 | 94 | ||
95 | static BOOL getServer(LLString &server, S32& domain_name); | 95 | static BOOL isGridComboDirty(); |
96 | static void getLocation(LLString &location); | 96 | static void getLocation(LLString &location); |
97 | 97 | ||
98 | static void close(); | 98 | static void close(); |
diff --git a/linden/indra/newview/llspatialpartition.cpp b/linden/indra/newview/llspatialpartition.cpp index 250575c..4ec5720 100644 --- a/linden/indra/newview/llspatialpartition.cpp +++ b/linden/indra/newview/llspatialpartition.cpp | |||
@@ -1158,7 +1158,6 @@ void LLSpatialGroup::destroyGL() | |||
1158 | mVertexBuffer = NULL; | 1158 | mVertexBuffer = NULL; |
1159 | mBufferMap.clear(); | 1159 | mBufferMap.clear(); |
1160 | 1160 | ||
1161 | mReflectionMap = NULL; | ||
1162 | clearDrawMap(); | 1161 | clearDrawMap(); |
1163 | 1162 | ||
1164 | if (mOcclusionQuery) | 1163 | if (mOcclusionQuery) |
@@ -1350,7 +1349,6 @@ LLSpatialPartition::LLSpatialPartition(U32 data_mask, U32 buffer_usage) | |||
1350 | mDepthMask = FALSE; | 1349 | mDepthMask = FALSE; |
1351 | mSlopRatio = 0.25f; | 1350 | mSlopRatio = 0.25f; |
1352 | mRenderByGroup = TRUE; | 1351 | mRenderByGroup = TRUE; |
1353 | mImageEnabled = FALSE; | ||
1354 | mInfiniteFarClip = FALSE; | 1352 | mInfiniteFarClip = FALSE; |
1355 | 1353 | ||
1356 | LLGLNamePool::registerPool(&sQueryPool); | 1354 | LLGLNamePool::registerPool(&sQueryPool); |
@@ -1564,12 +1562,7 @@ public: | |||
1564 | 1562 | ||
1565 | virtual void preprocess(LLSpatialGroup* group) | 1563 | virtual void preprocess(LLSpatialGroup* group) |
1566 | { | 1564 | { |
1567 | if (LLPipeline::sDynamicReflections && | 1565 | |
1568 | group->mOctreeNode->getSize().mdV[0] == 16.0 && | ||
1569 | group->mDistance < 64.f) | ||
1570 | { | ||
1571 | group->mSpatialPartition->markReimage(group); | ||
1572 | } | ||
1573 | } | 1566 | } |
1574 | 1567 | ||
1575 | virtual void processGroup(LLSpatialGroup* group) | 1568 | virtual void processGroup(LLSpatialGroup* group) |
@@ -1837,76 +1830,6 @@ BOOL earlyFail(LLCamera* camera, LLSpatialGroup* group) | |||
1837 | return TRUE; | 1830 | return TRUE; |
1838 | } | 1831 | } |
1839 | 1832 | ||
1840 | void LLSpatialPartition::markReimage(LLSpatialGroup* group) | ||
1841 | { | ||
1842 | if (mImageEnabled && group->isState(LLSpatialGroup::IMAGE_DIRTY)) | ||
1843 | { | ||
1844 | if (!group->isState(LLSpatialGroup::IN_IMAGE_QUEUE)) | ||
1845 | { | ||
1846 | group->setState(LLSpatialGroup::IN_IMAGE_QUEUE); | ||
1847 | mImageQueue.push(group); | ||
1848 | } | ||
1849 | } | ||
1850 | } | ||
1851 | |||
1852 | void LLSpatialPartition::processImagery(LLCamera* camera) | ||
1853 | { | ||
1854 | if (!mImageEnabled) | ||
1855 | { | ||
1856 | return; | ||
1857 | } | ||
1858 | |||
1859 | U32 process_count = 1; | ||
1860 | |||
1861 | S32 pull_count = (S32) mImageQueue.size(); | ||
1862 | |||
1863 | while (process_count > 0 && pull_count > 0 && !mImageQueue.empty()) | ||
1864 | { | ||
1865 | pull_count--; | ||
1866 | LLPointer<LLSpatialGroup> group = mImageQueue.front(); | ||
1867 | mImageQueue.pop(); | ||
1868 | |||
1869 | if (group->isDead()) | ||
1870 | { | ||
1871 | continue; | ||
1872 | } | ||
1873 | |||
1874 | if (group->isState(LLSpatialGroup::GEOM_DIRTY)) | ||
1875 | { //put it back | ||
1876 | mImageQueue.push(group); | ||
1877 | continue; | ||
1878 | } | ||
1879 | |||
1880 | group->clearState(LLSpatialGroup::IN_IMAGE_QUEUE); | ||
1881 | if (LLPipeline::sDynamicReflections) | ||
1882 | { | ||
1883 | process_count--; | ||
1884 | LLVector3 origin = group->mBounds[0]; | ||
1885 | /*LLVector3 at = camera->getOrigin()-origin; | ||
1886 | at.normVec(); | ||
1887 | origin += at* (at * group->mBounds[1]);*/ | ||
1888 | |||
1889 | LLCamera cube_cam; | ||
1890 | cube_cam.setOrigin(origin); | ||
1891 | cube_cam.setFar(64.f); | ||
1892 | |||
1893 | LLPointer<LLCubeMap> cube_map = group->mReflectionMap; | ||
1894 | group->mReflectionMap = NULL; | ||
1895 | if (cube_map.isNull()) | ||
1896 | { | ||
1897 | cube_map = new LLCubeMap(); | ||
1898 | cube_map->initGL(); | ||
1899 | } | ||
1900 | |||
1901 | gPipeline.generateReflectionMap(gPipeline.mCubeBuffer, cube_cam); | ||
1902 | gPipeline.blurReflectionMap(gPipeline.mCubeBuffer, cube_map); | ||
1903 | group->mReflectionMap = cube_map; | ||
1904 | group->setState(LLSpatialGroup::GEOM_DIRTY); | ||
1905 | } | ||
1906 | |||
1907 | group->clearState(LLSpatialGroup::IMAGE_DIRTY); | ||
1908 | } | ||
1909 | } | ||
1910 | 1833 | ||
1911 | void pushVerts(LLDrawInfo* params, U32 mask) | 1834 | void pushVerts(LLDrawInfo* params, U32 mask) |
1912 | { | 1835 | { |
diff --git a/linden/indra/newview/llspatialpartition.h b/linden/indra/newview/llspatialpartition.h index bbd4add..b4b1101 100644 --- a/linden/indra/newview/llspatialpartition.h +++ b/linden/indra/newview/llspatialpartition.h | |||
@@ -66,7 +66,6 @@ public: | |||
66 | 66 | ||
67 | LLPointer<LLVertexBuffer> mVertexBuffer; | 67 | LLPointer<LLVertexBuffer> mVertexBuffer; |
68 | LLPointer<LLViewerImage> mTexture; | 68 | LLPointer<LLViewerImage> mTexture; |
69 | LLPointer<LLCubeMap> mReflectionMap; | ||
70 | LLColor4U mGlowColor; | 69 | LLColor4U mGlowColor; |
71 | S32 mDebugColor; | 70 | S32 mDebugColor; |
72 | const LLMatrix4* mTextureMatrix; | 71 | const LLMatrix4* mTextureMatrix; |
@@ -262,7 +261,6 @@ public: | |||
262 | LLPointer<LLVertexBuffer> mVertexBuffer; | 261 | LLPointer<LLVertexBuffer> mVertexBuffer; |
263 | F32* mOcclusionVerts; | 262 | F32* mOcclusionVerts; |
264 | GLuint mOcclusionQuery; | 263 | GLuint mOcclusionQuery; |
265 | LLPointer<LLCubeMap> mReflectionMap; | ||
266 | 264 | ||
267 | U32 mBufferUsage; | 265 | U32 mBufferUsage; |
268 | draw_map_t mDrawMap; | 266 | draw_map_t mDrawMap; |
@@ -314,8 +312,6 @@ public: | |||
314 | virtual void rebuildGeom(LLSpatialGroup* group); | 312 | virtual void rebuildGeom(LLSpatialGroup* group); |
315 | 313 | ||
316 | S32 cull(LLCamera &camera, std::vector<LLDrawable *>* results = NULL, BOOL for_select = FALSE); // Cull on arbitrary frustum | 314 | S32 cull(LLCamera &camera, std::vector<LLDrawable *>* results = NULL, BOOL for_select = FALSE); // Cull on arbitrary frustum |
317 | void markReimage(LLSpatialGroup* group); | ||
318 | void processImagery(LLCamera* camera); | ||
319 | 315 | ||
320 | BOOL isVisible(const LLVector3& v); | 316 | BOOL isVisible(const LLVector3& v); |
321 | 317 | ||
@@ -326,23 +322,12 @@ public: | |||
326 | void restoreGL(); | 322 | void restoreGL(); |
327 | void resetVertexBuffers(); | 323 | void resetVertexBuffers(); |
328 | 324 | ||
329 | protected: | ||
330 | |||
331 | typedef std::set<LLPointer<LLSpatialGroup> > spatial_group_set_t; | ||
332 | spatial_group_set_t mSpatialGroups; | ||
333 | |||
334 | typedef std::queue<LLPointer<LLSpatialGroup> > spatial_group_queue_t; | ||
335 | |||
336 | //things that need an image update | ||
337 | spatial_group_queue_t mImageQueue; | ||
338 | |||
339 | public: | 325 | public: |
340 | LLSpatialGroup::OctreeNode* mOctree; | 326 | LLSpatialGroup::OctreeNode* mOctree; |
341 | BOOL mOcclusionEnabled; // if TRUE, occlusion culling is performed | 327 | BOOL mOcclusionEnabled; // if TRUE, occlusion culling is performed |
342 | BOOL mInfiniteFarClip; // if TRUE, frustum culling ignores far clip plane | 328 | BOOL mInfiniteFarClip; // if TRUE, frustum culling ignores far clip plane |
343 | U32 mBufferUsage; | 329 | U32 mBufferUsage; |
344 | BOOL mRenderByGroup; | 330 | BOOL mRenderByGroup; |
345 | BOOL mImageEnabled; | ||
346 | U32 mLODSeed; | 331 | U32 mLODSeed; |
347 | U32 mLODPeriod; //number of frames between LOD updates for a given spatial group (staggered by mLODSeed) | 332 | U32 mLODPeriod; //number of frames between LOD updates for a given spatial group (staggered by mLODSeed) |
348 | U32 mVertexDataMask; | 333 | U32 mVertexDataMask; |
diff --git a/linden/indra/newview/llstartup.cpp b/linden/indra/newview/llstartup.cpp index 009cdd2..5a5aa8d 100644 --- a/linden/indra/newview/llstartup.cpp +++ b/linden/indra/newview/llstartup.cpp | |||
@@ -811,26 +811,11 @@ BOOL idle_startup() | |||
811 | 811 | ||
812 | if (show_connect_box) | 812 | if (show_connect_box) |
813 | { | 813 | { |
814 | // TODO only set loginuri based on server choice if ! USE_VIEWER_AUTH | 814 | if ( LLPanelLogin::isGridComboDirty() ) |
815 | LLString server_label; | ||
816 | S32 domain_name_index; | ||
817 | BOOL user_picked_server = LLPanelLogin::getServer( server_label, domain_name_index ); | ||
818 | if((EGridInfo)domain_name_index == GRID_INFO_OTHER) | ||
819 | { | 815 | { |
820 | // Since the grid chosen was an 'other', set the choice by string. | 816 | // User picked a grid from the popup, so clear the |
821 | LLViewerLogin::getInstance()->setGridChoice(server_label); | 817 | // stored uris and they will be reacquired from the grid choice. |
822 | } | ||
823 | else | ||
824 | { | ||
825 | // Set the choice according to index. | ||
826 | LLViewerLogin::getInstance()->setGridChoice((EGridInfo)domain_name_index); | ||
827 | } | ||
828 | |||
829 | if ( user_picked_server ) | ||
830 | { // User picked a grid from the popup, so clear the | ||
831 | // stored uris and they will be re-generated from the GridChoice | ||
832 | sAuthUris.clear(); | 818 | sAuthUris.clear(); |
833 | LLViewerLogin::getInstance()->resetURIs(); | ||
834 | } | 819 | } |
835 | 820 | ||
836 | LLString location; | 821 | LLString location; |
diff --git a/linden/indra/newview/lltexturefetch.cpp b/linden/indra/newview/lltexturefetch.cpp index 2e4283b..e412dfe 100644 --- a/linden/indra/newview/lltexturefetch.cpp +++ b/linden/indra/newview/lltexturefetch.cpp | |||
@@ -48,7 +48,6 @@ | |||
48 | #include "llviewerregion.h" | 48 | #include "llviewerregion.h" |
49 | 49 | ||
50 | ////////////////////////////////////////////////////////////////////////////// | 50 | ////////////////////////////////////////////////////////////////////////////// |
51 | |||
52 | //static | 51 | //static |
53 | class LLTextureFetchWorker : public LLWorkerClass | 52 | class LLTextureFetchWorker : public LLWorkerClass |
54 | { | 53 | { |
@@ -435,6 +434,7 @@ LLTextureFetchWorker::LLTextureFetchWorker(LLTextureFetch* fetcher, | |||
435 | 434 | ||
436 | LLTextureFetchWorker::~LLTextureFetchWorker() | 435 | LLTextureFetchWorker::~LLTextureFetchWorker() |
437 | { | 436 | { |
437 | llassert_always(LLWorkerClass::sDeleteLock) ; | ||
438 | // llinfos << "Destroy: " << mID | 438 | // llinfos << "Destroy: " << mID |
439 | // << " Decoded=" << mDecodedDiscard | 439 | // << " Decoded=" << mDecodedDiscard |
440 | // << " Requested=" << mRequestedDiscard | 440 | // << " Requested=" << mRequestedDiscard |
@@ -1052,9 +1052,11 @@ bool LLTextureFetchWorker::processSimulatorPackets() | |||
1052 | { | 1052 | { |
1053 | if (mLastPacket >= mFirstPacket) | 1053 | if (mLastPacket >= mFirstPacket) |
1054 | { | 1054 | { |
1055 | llassert_always(mFormattedImage) ; | ||
1055 | S32 buffer_size = mFormattedImage->getDataSize(); | 1056 | S32 buffer_size = mFormattedImage->getDataSize(); |
1056 | for (S32 i = mFirstPacket; i<=mLastPacket; i++) | 1057 | for (S32 i = mFirstPacket; i<=mLastPacket; i++) |
1057 | { | 1058 | { |
1059 | llassert_always(mPackets[i]) ; | ||
1058 | buffer_size += mPackets[i]->mSize; | 1060 | buffer_size += mPackets[i]->mSize; |
1059 | } | 1061 | } |
1060 | bool have_all_data = mLastPacket >= mTotalPackets-1; | 1062 | bool have_all_data = mLastPacket >= mTotalPackets-1; |
@@ -1436,13 +1438,16 @@ void LLTextureFetch::removeFromNetworkQueue(LLTextureFetchWorker* worker) | |||
1436 | // call lockQueue() first! | 1438 | // call lockQueue() first! |
1437 | void LLTextureFetch::removeRequest(LLTextureFetchWorker* worker, bool cancel) | 1439 | void LLTextureFetch::removeRequest(LLTextureFetchWorker* worker, bool cancel) |
1438 | { | 1440 | { |
1439 | mRequestMap.erase(worker->mID); | 1441 | size_t erased_1 = mRequestMap.erase(worker->mID); |
1442 | llassert_always(erased_1 > 0) ; | ||
1440 | size_t erased = mNetworkQueue.erase(worker->mID); | 1443 | size_t erased = mNetworkQueue.erase(worker->mID); |
1441 | if (cancel && erased > 0) | 1444 | if (cancel && erased > 0) |
1442 | { | 1445 | { |
1443 | mCancelQueue[worker->mHost].insert(worker->mID); | 1446 | mCancelQueue[worker->mHost].insert(worker->mID); |
1444 | } | 1447 | } |
1445 | worker->scheduleDelete(); | 1448 | llassert_always(!(worker->getFlags(LLWorkerClass::WCF_DELETE_REQUESTED))) ; |
1449 | |||
1450 | worker->scheduleDelete(); | ||
1446 | } | 1451 | } |
1447 | 1452 | ||
1448 | // call lockQueue() first! | 1453 | // call lockQueue() first! |
diff --git a/linden/indra/newview/lltoolpie.cpp b/linden/indra/newview/lltoolpie.cpp index 6879198..4bb2111 100644 --- a/linden/indra/newview/lltoolpie.cpp +++ b/linden/indra/newview/lltoolpie.cpp | |||
@@ -309,7 +309,13 @@ BOOL LLToolPie::pickAndShowMenu(S32 x, S32 y, MASK mask, BOOL always_show) | |||
309 | } | 309 | } |
310 | else if (mHitObjectID == gAgent.getID() ) | 310 | else if (mHitObjectID == gAgent.getID() ) |
311 | { | 311 | { |
312 | llassert_always(gPieSelf) ; | 312 | if(!gPieSelf) |
313 | { | ||
314 | //either at very early startup stage or at late quitting stage, | ||
315 | //this event is ignored. | ||
316 | return TRUE ; | ||
317 | } | ||
318 | |||
313 | gPieSelf->show(x, y, mPieMouseButtonDown); | 319 | gPieSelf->show(x, y, mPieMouseButtonDown); |
314 | } | 320 | } |
315 | else if (object) | 321 | else if (object) |
diff --git a/linden/indra/newview/llviewercontrol.cpp b/linden/indra/newview/llviewercontrol.cpp index 146d738..3f79654 100644 --- a/linden/indra/newview/llviewercontrol.cpp +++ b/linden/indra/newview/llviewercontrol.cpp | |||
@@ -447,7 +447,6 @@ void settings_setup_listeners() | |||
447 | gSavedSettings.getControl("RenderTerrainDetail")->getSignal()->connect(boost::bind(&handleTerrainDetailChanged, _1)); | 447 | gSavedSettings.getControl("RenderTerrainDetail")->getSignal()->connect(boost::bind(&handleTerrainDetailChanged, _1)); |
448 | gSavedSettings.getControl("RenderAvatarVP")->getSignal()->connect(boost::bind(&handleSetShaderChanged, _1)); | 448 | gSavedSettings.getControl("RenderAvatarVP")->getSignal()->connect(boost::bind(&handleSetShaderChanged, _1)); |
449 | gSavedSettings.getControl("VertexShaderEnable")->getSignal()->connect(boost::bind(&handleSetShaderChanged, _1)); | 449 | gSavedSettings.getControl("VertexShaderEnable")->getSignal()->connect(boost::bind(&handleSetShaderChanged, _1)); |
450 | gSavedSettings.getControl("RenderDynamicReflections")->getSignal()->connect(boost::bind(&handleSetShaderChanged, _1)); | ||
451 | gSavedSettings.getControl("RenderGlow")->getSignal()->connect(boost::bind(&handleReleaseGLBufferChanged, _1)); | 450 | gSavedSettings.getControl("RenderGlow")->getSignal()->connect(boost::bind(&handleReleaseGLBufferChanged, _1)); |
452 | gSavedSettings.getControl("RenderGlow")->getSignal()->connect(boost::bind(&handleSetShaderChanged, _1)); | 451 | gSavedSettings.getControl("RenderGlow")->getSignal()->connect(boost::bind(&handleSetShaderChanged, _1)); |
453 | gSavedSettings.getControl("EnableRippleWater")->getSignal()->connect(boost::bind(&handleSetShaderChanged, _1)); | 452 | gSavedSettings.getControl("EnableRippleWater")->getSignal()->connect(boost::bind(&handleSetShaderChanged, _1)); |
diff --git a/linden/indra/newview/llviewerdisplay.cpp b/linden/indra/newview/llviewerdisplay.cpp index b9a5986..e02ff6f 100644 --- a/linden/indra/newview/llviewerdisplay.cpp +++ b/linden/indra/newview/llviewerdisplay.cpp | |||
@@ -613,7 +613,6 @@ void display(BOOL rebuild, F32 zoom_factor, int subfield, BOOL for_snapshot) | |||
613 | if (!for_snapshot) | 613 | if (!for_snapshot) |
614 | { | 614 | { |
615 | LLAppViewer::instance()->pingMainloopTimeout("Display:Imagery"); | 615 | LLAppViewer::instance()->pingMainloopTimeout("Display:Imagery"); |
616 | gPipeline.processImagery(*LLViewerCamera::getInstance()); | ||
617 | gPipeline.generateWaterReflection(*LLViewerCamera::getInstance()); | 616 | gPipeline.generateWaterReflection(*LLViewerCamera::getInstance()); |
618 | } | 617 | } |
619 | 618 | ||
@@ -823,6 +822,7 @@ void render_hud_attachments() | |||
823 | 822 | ||
824 | //cull, sort, and render hud objects | 823 | //cull, sort, and render hud objects |
825 | static LLCullResult result; | 824 | static LLCullResult result; |
825 | LLSpatialGroup::sNoDelete = TRUE; | ||
826 | gPipeline.updateCull(hud_cam, result); | 826 | gPipeline.updateCull(hud_cam, result); |
827 | 827 | ||
828 | gPipeline.toggleRenderType(LLPipeline::RENDER_TYPE_BUMP); | 828 | gPipeline.toggleRenderType(LLPipeline::RENDER_TYPE_BUMP); |
@@ -834,6 +834,8 @@ void render_hud_attachments() | |||
834 | 834 | ||
835 | gPipeline.renderGeom(hud_cam); | 835 | gPipeline.renderGeom(hud_cam); |
836 | 836 | ||
837 | LLSpatialGroup::sNoDelete = FALSE; | ||
838 | |||
837 | render_hud_elements(); | 839 | render_hud_elements(); |
838 | //restore type mask | 840 | //restore type mask |
839 | gPipeline.setRenderTypeMask(mask); | 841 | gPipeline.setRenderTypeMask(mask); |
diff --git a/linden/indra/newview/llviewerimagelist.cpp b/linden/indra/newview/llviewerimagelist.cpp index 44c592a..384de83 100644 --- a/linden/indra/newview/llviewerimagelist.cpp +++ b/linden/indra/newview/llviewerimagelist.cpp | |||
@@ -144,7 +144,7 @@ void LLViewerImageList::doPreloadImages() | |||
144 | image = getImageFromFile("noentrypasslines.j2c", MIPMAP_YES, IMMEDIATE_YES); | 144 | image = getImageFromFile("noentrypasslines.j2c", MIPMAP_YES, IMMEDIATE_YES); |
145 | if (image) | 145 | if (image) |
146 | { | 146 | { |
147 | image->setClamp(FALSE, FALSE); | 147 | image->setClamp(FALSE, FALSE); |
148 | mImagePreloads.insert(image); | 148 | mImagePreloads.insert(image); |
149 | } | 149 | } |
150 | image = getImage(DEFAULT_WATER_NORMAL, MIPMAP_YES, IMMEDIATE_YES); | 150 | image = getImage(DEFAULT_WATER_NORMAL, MIPMAP_YES, IMMEDIATE_YES); |
@@ -153,6 +153,13 @@ void LLViewerImageList::doPreloadImages() | |||
153 | image->setClamp(FALSE, FALSE); | 153 | image->setClamp(FALSE, FALSE); |
154 | mImagePreloads.insert(image); | 154 | mImagePreloads.insert(image); |
155 | } | 155 | } |
156 | image = getImageFromFile("8dcd4a48-2d37-4909-9f78-f7a9eb4ef903.j2c", MIPMAP_YES, IMMEDIATE_YES,0,0,LLUUID("8dcd4a48-2d37-4909-9f78-f7a9eb4ef903")); | ||
157 | if (image) | ||
158 | { | ||
159 | image->setClamp(FALSE, FALSE); | ||
160 | mImagePreloads.insert(image); | ||
161 | } | ||
162 | |||
156 | } | 163 | } |
157 | 164 | ||
158 | static std::string get_texture_list_name() | 165 | static std::string get_texture_list_name() |
diff --git a/linden/indra/newview/llviewermenu.cpp b/linden/indra/newview/llviewermenu.cpp index 00226dd..3e99384 100644 --- a/linden/indra/newview/llviewermenu.cpp +++ b/linden/indra/newview/llviewermenu.cpp | |||
@@ -1455,11 +1455,6 @@ void init_debug_rendering_menu(LLMenuGL* menu) | |||
1455 | item = new LLMenuItemCheckGL("Run Multiple Threads", menu_toggle_control, NULL, menu_check_control, (void*)"RunMultipleThreads"); | 1455 | item = new LLMenuItemCheckGL("Run Multiple Threads", menu_toggle_control, NULL, menu_check_control, (void*)"RunMultipleThreads"); |
1456 | menu->append(item); | 1456 | menu->append(item); |
1457 | 1457 | ||
1458 | #ifndef LL_RELEASE_FOR_DOWNLOAD | ||
1459 | item = new LLMenuItemCheckGL("Dynamic Reflections", menu_toggle_control, NULL, menu_check_control, (void*)"RenderDynamicReflections"); | ||
1460 | menu->append(item); | ||
1461 | #endif | ||
1462 | |||
1463 | item = new LLMenuItemCheckGL("Cheesy Beacon", menu_toggle_control, NULL, menu_check_control, (void*)"CheesyBeacon"); | 1458 | item = new LLMenuItemCheckGL("Cheesy Beacon", menu_toggle_control, NULL, menu_check_control, (void*)"CheesyBeacon"); |
1464 | menu->append(item); | 1459 | menu->append(item); |
1465 | 1460 | ||
diff --git a/linden/indra/newview/llvovolume.cpp b/linden/indra/newview/llvovolume.cpp index a6d3c0b..e352f14 100644 --- a/linden/indra/newview/llvovolume.cpp +++ b/linden/indra/newview/llvovolume.cpp | |||
@@ -1952,7 +1952,6 @@ LLVolumePartition::LLVolumePartition() | |||
1952 | mPartitionType = LLViewerRegion::PARTITION_VOLUME; | 1952 | mPartitionType = LLViewerRegion::PARTITION_VOLUME; |
1953 | mSlopRatio = 0.25f; | 1953 | mSlopRatio = 0.25f; |
1954 | mBufferUsage = GL_DYNAMIC_DRAW_ARB; | 1954 | mBufferUsage = GL_DYNAMIC_DRAW_ARB; |
1955 | mImageEnabled = TRUE; | ||
1956 | } | 1955 | } |
1957 | 1956 | ||
1958 | LLVolumeBridge::LLVolumeBridge(LLDrawable* drawablep) | 1957 | LLVolumeBridge::LLVolumeBridge(LLDrawable* drawablep) |
@@ -2045,7 +2044,6 @@ void LLVolumeGeometryManager::registerFace(LLSpatialGroup* group, LLFace* facep, | |||
2045 | draw_info->mGroup = group; | 2044 | draw_info->mGroup = group; |
2046 | draw_info->mVSize = facep->getVirtualSize(); | 2045 | draw_info->mVSize = facep->getVirtualSize(); |
2047 | draw_vec.push_back(draw_info); | 2046 | draw_vec.push_back(draw_info); |
2048 | draw_info->mReflectionMap = group->mReflectionMap; | ||
2049 | draw_info->mTextureMatrix = tex_mat; | 2047 | draw_info->mTextureMatrix = tex_mat; |
2050 | draw_info->mModelMatrix = model_mat; | 2048 | draw_info->mModelMatrix = model_mat; |
2051 | draw_info->mGlowColor.setVec(0,0,0,glow); | 2049 | draw_info->mGlowColor.setVec(0,0,0,glow); |
@@ -2163,20 +2161,6 @@ void LLVolumeGeometryManager::rebuildGeom(LLSpatialGroup* group) | |||
2163 | 2161 | ||
2164 | LLFastTimer ftm2(LLFastTimer::FTM_REBUILD_VOLUME_VB); | 2162 | LLFastTimer ftm2(LLFastTimer::FTM_REBUILD_VOLUME_VB); |
2165 | 2163 | ||
2166 | //find reflection map | ||
2167 | if (group->mSpatialPartition->mImageEnabled && LLPipeline::sDynamicReflections) | ||
2168 | { | ||
2169 | if (group->mReflectionMap.isNull()) | ||
2170 | { | ||
2171 | LLSpatialGroup* parent = group->getParent(); | ||
2172 | while (parent && group->mReflectionMap.isNull()) | ||
2173 | { | ||
2174 | group->mReflectionMap = parent->mReflectionMap; | ||
2175 | parent = parent->getParent(); | ||
2176 | } | ||
2177 | } | ||
2178 | } | ||
2179 | |||
2180 | group->clearDrawMap(); | 2164 | group->clearDrawMap(); |
2181 | 2165 | ||
2182 | mFaceList.clear(); | 2166 | mFaceList.clear(); |
diff --git a/linden/indra/newview/macview.xcodeproj/project.pbxproj b/linden/indra/newview/macview.xcodeproj/project.pbxproj index c817b27..c361fcf 100644 --- a/linden/indra/newview/macview.xcodeproj/project.pbxproj +++ b/linden/indra/newview/macview.xcodeproj/project.pbxproj | |||
@@ -5607,6 +5607,7 @@ | |||
5607 | "-DLL_RELEASE_FOR_DOWNLOAD=1", | 5607 | "-DLL_RELEASE_FOR_DOWNLOAD=1", |
5608 | "-DNDEBUG", | 5608 | "-DNDEBUG", |
5609 | "-fconstant-cfstrings", | 5609 | "-fconstant-cfstrings", |
5610 | "-mlong-branch", | ||
5610 | ); | 5611 | ); |
5611 | OTHER_CPLUSPLUSFLAGS = ( | 5612 | OTHER_CPLUSPLUSFLAGS = ( |
5612 | "$(OTHER_CFLAGS)", | 5613 | "$(OTHER_CFLAGS)", |
diff --git a/linden/indra/newview/pipeline.cpp b/linden/indra/newview/pipeline.cpp index 67bf647..5088b16 100644 --- a/linden/indra/newview/pipeline.cpp +++ b/linden/indra/newview/pipeline.cpp | |||
@@ -217,7 +217,6 @@ BOOL LLPipeline::sDisableShaders = FALSE; | |||
217 | BOOL LLPipeline::sRenderBump = TRUE; | 217 | BOOL LLPipeline::sRenderBump = TRUE; |
218 | BOOL LLPipeline::sUseFarClip = TRUE; | 218 | BOOL LLPipeline::sUseFarClip = TRUE; |
219 | BOOL LLPipeline::sSkipUpdate = FALSE; | 219 | BOOL LLPipeline::sSkipUpdate = FALSE; |
220 | BOOL LLPipeline::sDynamicReflections = FALSE; | ||
221 | BOOL LLPipeline::sWaterReflections = FALSE; | 220 | BOOL LLPipeline::sWaterReflections = FALSE; |
222 | BOOL LLPipeline::sRenderGlow = FALSE; | 221 | BOOL LLPipeline::sRenderGlow = FALSE; |
223 | BOOL LLPipeline::sReflectionRender = FALSE; | 222 | BOOL LLPipeline::sReflectionRender = FALSE; |
@@ -474,15 +473,14 @@ void LLPipeline::createGLBuffers() | |||
474 | { | 473 | { |
475 | assertInitialized(); | 474 | assertInitialized(); |
476 | 475 | ||
477 | if (LLPipeline::sDynamicReflections || | 476 | if (LLPipeline::sWaterReflections) |
478 | LLPipeline::sWaterReflections) | ||
479 | { //water reflection texture | 477 | { //water reflection texture |
480 | U32 res = (U32) gSavedSettings.getS32("RenderWaterRefResolution"); | 478 | U32 res = (U32) gSavedSettings.getS32("RenderWaterRefResolution"); |
481 | 479 | ||
482 | mWaterRef.allocate(res,res,GL_RGBA,TRUE); | 480 | mWaterRef.allocate(res,res,GL_RGBA,TRUE); |
483 | mWaterDis.allocate(res,res,GL_RGBA,TRUE); | 481 | mWaterDis.allocate(res,res,GL_RGBA,TRUE); |
484 | 482 | ||
485 | if (LLPipeline::sDynamicReflections) | 483 | #if 0 //cube map buffers (keep for future work) |
486 | { | 484 | { |
487 | //reflection map generation buffers | 485 | //reflection map generation buffers |
488 | if (mCubeFrameBuffer == 0) | 486 | if (mCubeFrameBuffer == 0) |
@@ -538,8 +536,10 @@ void LLPipeline::createGLBuffers() | |||
538 | } | 536 | } |
539 | } | 537 | } |
540 | } | 538 | } |
539 | #endif | ||
541 | } | 540 | } |
542 | 541 | ||
542 | |||
543 | stop_glerror(); | 543 | stop_glerror(); |
544 | 544 | ||
545 | if (LLPipeline::sRenderGlow) | 545 | if (LLPipeline::sRenderGlow) |
@@ -910,6 +910,15 @@ void LLPipeline::unlinkDrawable(LLDrawable *drawable) | |||
910 | } | 910 | } |
911 | 911 | ||
912 | mLights.erase(drawablep); | 912 | mLights.erase(drawablep); |
913 | for (light_set_t::iterator iter = mNearbyLights.begin(); | ||
914 | iter != mNearbyLights.end(); iter++) | ||
915 | { | ||
916 | if (iter->drawable == drawablep) | ||
917 | { | ||
918 | mNearbyLights.erase(iter); | ||
919 | break; | ||
920 | } | ||
921 | } | ||
913 | } | 922 | } |
914 | 923 | ||
915 | U32 LLPipeline::addObject(LLViewerObject *vobj) | 924 | U32 LLPipeline::addObject(LLViewerObject *vobj) |
@@ -2124,8 +2133,6 @@ void LLPipeline::postSort(LLCamera& camera) | |||
2124 | } func; | 2133 | } func; |
2125 | LLSelectMgr::getInstance()->getSelection()->applyToTEs(&func); | 2134 | LLSelectMgr::getInstance()->getSelection()->applyToTEs(&func); |
2126 | } | 2135 | } |
2127 | |||
2128 | LLSpatialGroup::sNoDelete = FALSE; | ||
2129 | } | 2136 | } |
2130 | 2137 | ||
2131 | 2138 | ||
@@ -3147,6 +3154,11 @@ void LLPipeline::calcNearbyLights(LLCamera& camera) | |||
3147 | { | 3154 | { |
3148 | assertInitialized(); | 3155 | assertInitialized(); |
3149 | 3156 | ||
3157 | if (LLPipeline::sReflectionRender) | ||
3158 | { | ||
3159 | return; | ||
3160 | } | ||
3161 | |||
3150 | if (mLightingDetail >= 1) | 3162 | if (mLightingDetail >= 1) |
3151 | { | 3163 | { |
3152 | // mNearbyLight (and all light_set_t's) are sorted such that | 3164 | // mNearbyLight (and all light_set_t's) are sorted such that |
@@ -4801,21 +4813,6 @@ void LLPipeline::renderBloom(BOOL for_snapshot) | |||
4801 | 4813 | ||
4802 | } | 4814 | } |
4803 | 4815 | ||
4804 | void LLPipeline::processImagery(LLCamera& camera) | ||
4805 | { | ||
4806 | for (LLWorld::region_list_t::iterator iter = LLWorld::getInstance()->getRegionList().begin(); | ||
4807 | iter != LLWorld::getInstance()->getRegionList().end(); ++iter) | ||
4808 | { | ||
4809 | LLViewerRegion* region = *iter; | ||
4810 | LLSpatialPartition* part = region->getSpatialPartition(LLViewerRegion::PARTITION_VOLUME); | ||
4811 | if (part) | ||
4812 | { | ||
4813 | part->processImagery(&camera); | ||
4814 | } | ||
4815 | } | ||
4816 | } | ||
4817 | |||
4818 | |||
4819 | inline float sgn(float a) | 4816 | inline float sgn(float a) |
4820 | { | 4817 | { |
4821 | if (a > 0.0F) return (1.0F); | 4818 | if (a > 0.0F) return (1.0F); |
@@ -5026,26 +5023,6 @@ void LLPipeline::generateWaterReflection(LLCamera& camera_in) | |||
5026 | } | 5023 | } |
5027 | } | 5024 | } |
5028 | 5025 | ||
5029 | LLCubeMap* LLPipeline::findReflectionMap(const LLVector3& location) | ||
5030 | { | ||
5031 | LLViewerRegion* region = LLWorld::getInstance()->getRegionFromPosAgent(location); | ||
5032 | if (region) | ||
5033 | { | ||
5034 | LLSpatialPartition* part = region->getSpatialPartition(LLViewerRegion::PARTITION_VOLUME); | ||
5035 | if (part) | ||
5036 | { | ||
5037 | LLSpatialGroup::OctreeNode* node = part->mOctree->getNodeAt(LLVector3d(location), 32.0); | ||
5038 | if (node) | ||
5039 | { | ||
5040 | LLSpatialGroup* group = (LLSpatialGroup*) node->getListener(0); | ||
5041 | return group->mReflectionMap; | ||
5042 | } | ||
5043 | } | ||
5044 | } | ||
5045 | |||
5046 | return NULL; | ||
5047 | } | ||
5048 | |||
5049 | void LLPipeline::renderGroups(LLRenderPass* pass, U32 type, U32 mask, BOOL texture) | 5026 | void LLPipeline::renderGroups(LLRenderPass* pass, U32 type, U32 mask, BOOL texture) |
5050 | { | 5027 | { |
5051 | for (LLCullResult::sg_list_t::iterator i = sCull->beginVisibleGroups(); i != sCull->endVisibleGroups(); ++i) | 5028 | for (LLCullResult::sg_list_t::iterator i = sCull->beginVisibleGroups(); i != sCull->endVisibleGroups(); ++i) |
diff --git a/linden/indra/newview/pipeline.h b/linden/indra/newview/pipeline.h index bd857c2..8b032ec 100644 --- a/linden/indra/newview/pipeline.h +++ b/linden/indra/newview/pipeline.h | |||
@@ -96,8 +96,6 @@ public: | |||
96 | void bindScreenToTexture(); | 96 | void bindScreenToTexture(); |
97 | void renderBloom(BOOL for_snapshot); | 97 | void renderBloom(BOOL for_snapshot); |
98 | 98 | ||
99 | LLCubeMap* findReflectionMap(const LLVector3& location); | ||
100 | |||
101 | void init(); | 99 | void init(); |
102 | void cleanup(); | 100 | void cleanup(); |
103 | BOOL isInit() { return mInitialized; }; | 101 | BOOL isInit() { return mInitialized; }; |
@@ -183,7 +181,6 @@ public: | |||
183 | void renderGeom(LLCamera& camera, BOOL forceVBOUpdate = FALSE); | 181 | void renderGeom(LLCamera& camera, BOOL forceVBOUpdate = FALSE); |
184 | void renderGeomDeferred(); | 182 | void renderGeomDeferred(); |
185 | 183 | ||
186 | void processImagery(LLCamera& camera); | ||
187 | void generateWaterReflection(LLCamera& camera); | 184 | void generateWaterReflection(LLCamera& camera); |
188 | void renderHighlights(); | 185 | void renderHighlights(); |
189 | void renderDebug(); | 186 | void renderDebug(); |
@@ -371,7 +368,6 @@ public: | |||
371 | static BOOL sUseFBO; | 368 | static BOOL sUseFBO; |
372 | static BOOL sUseFarClip; | 369 | static BOOL sUseFarClip; |
373 | static BOOL sSkipUpdate; //skip lod updates | 370 | static BOOL sSkipUpdate; //skip lod updates |
374 | static BOOL sDynamicReflections; | ||
375 | static BOOL sWaterReflections; | 371 | static BOOL sWaterReflections; |
376 | static BOOL sDynamicLOD; | 372 | static BOOL sDynamicLOD; |
377 | static BOOL sReflectionRender; | 373 | static BOOL sReflectionRender; |
diff --git a/linden/indra/newview/releasenotes.txt b/linden/indra/newview/releasenotes.txt index bbbe693..f3fbcb1 100644 --- a/linden/indra/newview/releasenotes.txt +++ b/linden/indra/newview/releasenotes.txt | |||
@@ -4,14 +4,60 @@ | |||
4 | | http://wiki.secondlife.com/wiki/Beta_Release_Notes | | 4 | | http://wiki.secondlife.com/wiki/Beta_Release_Notes | |
5 | +------------------------------------------------------+ | 5 | +------------------------------------------------------+ |
6 | 6 | ||
7 | Release Notes for Second Life 1.20(9) May 30th, 2008 | 7 | Release Notes for Second Life 1.20(10) June 9th, 2008 |
8 | ===================================== | 8 | ===================================== |
9 | 9 | ||
10 | Changes: | ||
11 | * Added five texture constants for referencing in llSetLinkTexture: | ||
12 | ** TEXTURE_BLANK is the non-transparent blank texture, equivalent to UUID "5748decc-f629-461c-9a36-a35a221fe21f" | ||
13 | ** TEXTURE_DEFAULT is the default plywood texture, equivalent to UUID "89556747-24cb-43ed-920b-47caed15465f" | ||
14 | ** TEXTURE_PLYWOOD is the default plywood texture, equivalent to UUID "89556747-24cb-43ed-920b-47caed15465f" | ||
15 | ** TEXTURE_TRANSPARENT is a fully transparent texture, equivalent to UUID "8dcd4a48-2d37-4909-9f78-f7a9eb4ef903" | ||
16 | ** TEXTURE_MEDIA is the default Media texture, equivalent to UUID "8b5fec65-8d8d-9dc5-cda8-8fdf2716e361" | ||
17 | ** Note: TEXTURE_DEFAULT is a synonym for TEXTURE_PLYWOOD | ||
18 | ** Compatibility Note: | ||
19 | *** Scripts using these constants will run smoothly in all Second Life viewers, however previous versions of the viewer will NOT be able to edit | ||
20 | and recompile scripts using the new constants. Older versions will report "(XX,YY) : ERROR : Name not defined within scope" when trying to | ||
21 | compile such a script. | ||
22 | *** If you are using an older version of the viewer that does not support the TEXTURE_ contants and want to edit and recompile scripts with a TEXTURE_ constant, | ||
23 | then you have to revert to the earlier LSL requirement to use the UUID of the texture you want to use. | ||
24 | *** The TEXTURE_TRANSPARENT texture will be gray unless you view it with a viewer that supports this transparent texture (1.20.10 or above). | ||
25 | |||
26 | Fixes: | ||
27 | * Fixed: PowerPC Mac unexpectedly quits when SL runs | ||
28 | * Fixed: VWR-7069: Can't login to v1.20 RC until the second try | ||
29 | * Fixed: Openssl hangs on first https request | ||
30 | * Fixed: VWR-7261: pixellation static/rectangle seen nearby avatar imposters | ||
31 | * Fixed: VWR-1715: Macintosh: cyclic short-term freezing of display, getting worse over time: does not respond to commands, eventually change of POV attempt crashes app | ||
32 | * Fixed: VWR-7338: New Texture Constant "TEXTURE_TRANSPARENT" is NOT transparent! | ||
33 | * Fixed: VWR-7315: "TEXTURE_DEFAULT" is a bad constant name | ||
34 | * Fixed: Automatic linux font selection doesn't override legacy data in config file | ||
35 | * Fixed: Viewer crash logger should trim very long SecondLife.log files before sending | ||
36 | * Fixed: viewer sends no grid choice to the web server | ||
37 | * Fixed: Fix the URL used by crash_logger for pre login crashes | ||
38 | * Fixed: Any change to preferences "restores" the viewer window size | ||
39 | * Fixed: Crash on LLSpeakerMgr::findSpeaker | ||
40 | * Fixed: crash on LLAudioData - llaudio/audioengine.cpp | ||
41 | * Fixed: crash on LLGroupNotifyBox::moveToBack | ||
42 | * Fixed: crash on LLPieMenu::show | ||
43 | * Fixed: crash on LLFloaterWorldMap::buildLandmarkIDLists | ||
44 | * Fixed: Setting Preferences > General > Crash Reports to Never Send crashes to desktop | ||
45 | |||
46 | Localization Fixes: | ||
47 | Partial Fix: Repair truncated text in 1.20.9 localizations | ||
48 | |||
49 | Release Notes for Second Life 1.20(9) June 3rd, 2008 | ||
50 | ===================================== | ||
51 | |||
52 | Note about changes to Search: | ||
53 | * We are continuing to iterate on improvements to the Search feature in the Release Candidate. Although the release notes for 1.20(7) | ||
54 | indicated that Search>Places was changed to use web-based search, this tab has been returned to its previous client interface, which | ||
55 | includes "Sort by alphabetical" or "Sort by traffic" options. | ||
56 | |||
10 | Fixes: | 57 | Fixes: |
11 | * Fixed: VWR-7335: Revert to non-HTML search for Search>Places in 1.20 | 58 | * Fixed: VWR-7335: Revert to non-HTML search for Search>Places in 1.20 |
12 | * Fixed: VWR-7322: Chatter's name is not beside chatter's text in Communicate Local Chat (when 'Show Timestamps in chat' is unchecked) | 59 | * Fixed: VWR-7322: Chatter's name is not beside chatter's text in Communicate Local Chat (when 'Show Timestamps in chat' is unchecked) |
13 | * Fixed: VWR-7342: Linux 1.20(7) libexpat.so.1 not found, exit on load | 60 | * Fixed: VWR-7342: Linux 1.20(7) libexpat.so.1 not found, exit on load |
14 | * Fixed: VWR-6240: Snapshot to disk is not a complete image for a custom size larger than the screen size | ||
15 | * Fixed: VWR-6948: Flexi prims are rendered differently in 1.20 - breaks products | 61 | * Fixed: VWR-6948: Flexi prims are rendered differently in 1.20 - breaks products |
16 | * Fixed: VWR-6107: When uploading animations the Ruth model appears dimly lit and unshaded | 62 | * Fixed: VWR-6107: When uploading animations the Ruth model appears dimly lit and unshaded |
17 | * Fixed: VWR-2679: Joystick flycam breaks after switch to fullscreen mode | 63 | * Fixed: VWR-2679: Joystick flycam breaks after switch to fullscreen mode |
@@ -24,19 +70,19 @@ Fixes: | |||
24 | * Fixed: RC7 grid selection doesn't persist | 70 | * Fixed: RC7 grid selection doesn't persist |
25 | * Fixed: Change Linux viewer default compiler from gcc3.4 to gcc4.1 | 71 | * Fixed: Change Linux viewer default compiler from gcc3.4 to gcc4.1 |
26 | * Fixed: crash in LLFolderViewFolder::setSelection | 72 | * Fixed: crash in LLFolderViewFolder::setSelection |
73 | * Fixed: crash on LLSurface::resolvePatchRegion() | ||
74 | * Fixed: crash on LLViewerRegion::setCapability | ||
27 | * Fixed: Infinite loop in wearables (LLWearableList::processGetAssetReply) causes a crash | 75 | * Fixed: Infinite loop in wearables (LLWearableList::processGetAssetReply) causes a crash |
28 | * Fixed: Critical message window should not say "Critical message" because it is the Community Standards document | 76 | * Fixed: Critical message window should not say "Critical message" because it is the Community Standards document |
29 | * Fixed: Remove First Use dialogs for sitting and movement key binding during Orientation Island | 77 | * Fixed: Remove First Use dialogs for sitting and movement key binding during Orientation Island |
30 | * Fixed: option to Send Crash Report is not persisting | ||
31 | * Fixed: Increase thread monitoring mainloop timeout from 10 sec to 20 seconds | ||
32 | * Fixed: Default the mini-map to off for new users | 78 | * Fixed: Default the mini-map to off for new users |
33 | * Fixed: Text on Send button for Group IM is right-justified | 79 | * Fixed: Text on Send button for Group IM is right-justified |
34 | * Fixed: Region/Estate> Estate tab has a misaligned outline on Estate Managers box | 80 | * Fixed: Region/Estate> Estate tab has a misaligned outline on Estate Managers box |
35 | * Fixed: Parcel tag overlaps image on Sell Land floater if longer than 36 characters | 81 | * Fixed: Parcel tag overlaps image on Sell Land floater if longer than 36 characters |
36 | * Fixed: crash on LLSurface::resolvePatchRegion() | 82 | * Fixed: Increase thread monitoring mainloop timeout from 10 sec to 20 seconds |
37 | * Fixed: crash on LLViewerRegion::setCapability | ||
38 | * Fixed: Minor bugfixes to thread monitoring during crashes, purgeAllTextures, and the user setting whether to submit crash reports | ||
39 | * Fixed: Additional thread monitoring tweaks, added a timer to confirm if the watching thread has been hung | 83 | * Fixed: Additional thread monitoring tweaks, added a timer to confirm if the watching thread has been hung |
84 | * Fixed: Minor bugfixes to thread monitoring during crashes, purgeAllTextures, and the user setting whether to submit crash reports | ||
85 | * Fixed: option to Send Crash Report is not persisting | ||
40 | * Partial Fix: VWR-1715: Macintosh cyclic short-term freezing of display, getting worse over time; does not respond to commands, eventually change of POV causes crash | 86 | * Partial Fix: VWR-1715: Macintosh cyclic short-term freezing of display, getting worse over time; does not respond to commands, eventually change of POV causes crash |
41 | 87 | ||
42 | Localization Fixes: | 88 | Localization Fixes: |
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 2e38d5f..608a2e6 100644 --- a/linden/indra/newview/skins/xui/de/need_to_long.xml +++ b/linden/indra/newview/skins/xui/de/need_to_long.xml | |||
@@ -1,7 +1,119 @@ | |||
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> | 4 | <string><a_file>floater_about.xml</a_file> |
5 | <b_path>/floater_about/credits_editor</b_path> | ||
6 | <c_attribute></c_attribute> | ||
7 | <d_old> | ||
8 | 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. | ||
9 | |||
10 | 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 | ||
11 | |||
12 | APR Copyright (C) 2000-2004 The Apache Software Foundation | ||
13 | cURL Copyright (C) 1996-2002, Daniel Stenberg, (daniel@haxx.se) | ||
14 | expat Copyright (C) 1998, 1999, 2000 Thai Open Source Software Center Ltd. | ||
15 | FreeType Copyright (C) 1996-2002, The FreeType Project (www.freetype.org). | ||
16 | GL Copyright (C) 1999-2004 Brian Paul. | ||
17 | Havok.com(TM) Copyright (C) 1999-2001, Telekinesys Research Limited. | ||
18 | jpeg2000 Copyright (C) 2001, David Taubman, The University of New South Wales (UNSW) | ||
19 | jpeglib Copyright (C) 1991-1998, Thomas G. Lane. | ||
20 | ogg/vorbis Copyright (C) 2001, Xiphophorus | ||
21 | OpenSSL Copyright (C) 1998-2002 The OpenSSL Project. | ||
22 | SDL Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002 Sam Lantinga | ||
23 | SSLeay Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | ||
24 | xmlrpc-epi Copyright (C) 2000 Epinions, Inc. | ||
25 | zlib Copyright (C) 1995-2002 Jean-loup Gailly and Mark Adler. | ||
26 | |||
27 | All rights reserved. See licenses.txt for details. | ||
28 | |||
29 | Voice chat Audio coding: Polycom(R) Siren14(TM) (ITU-T Rec. G.722.1 Annex C) | ||
30 | |||
31 | |||
32 | Happiness is a warm puppy. -- Charles M. Schulz | ||
33 | </d_old> | ||
34 | <e_new> | ||
35 | 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. | ||
36 | |||
37 | 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 | ||
38 | |||
39 | 3Dconnexion SDK Copyright (C) 1992-2007 3Dconnexion | ||
40 | APR Copyright (C) 2000-2004 The Apache Software Foundation | ||
41 | cURL Copyright (C) 1996-2002, Daniel Stenberg, (daniel@haxx.se) | ||
42 | expat Copyright (C) 1998, 1999, 2000 Thai Open Source Software Center Ltd. | ||
43 | FreeType Copyright (C) 1996-2002, The FreeType Project (www.freetype.org). | ||
44 | GL Copyright (C) 1999-2004 Brian Paul. | ||
45 | Havok.com(TM) Copyright (C) 1999-2001, Telekinesys Research Limited. | ||
46 | jpeg2000 Copyright (C) 2001, David Taubman, The University of New South Wales (UNSW) | ||
47 | jpeglib Copyright (C) 1991-1998, Thomas G. Lane. | ||
48 | ogg/vorbis Copyright (C) 2001, Xiphophorus | ||
49 | OpenSSL Copyright (C) 1998-2002 The OpenSSL Project. | ||
50 | SDL Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002 Sam Lantinga | ||
51 | SSLeay Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | ||
52 | xmlrpc-epi Copyright (C) 2000 Epinions, Inc. | ||
53 | zlib Copyright (C) 1995-2002 Jean-loup Gailly and Mark Adler. | ||
54 | |||
55 | All rights reserved. See licenses.txt for details. | ||
56 | |||
57 | Voice chat Audio coding: Polycom(R) Siren14(TM) (ITU-T Rec. G.722.1 Annex C) | ||
58 | |||
59 | |||
60 | Happiness is a warm puppy. -- Charles M. Schulz</e_new> | ||
61 | <f_old_trans></f_old_trans> | ||
62 | <f_translation> | ||
63 | 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. | ||
64 | |||
65 | 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 | ||
66 | |||
67 | 3Dconnexion SDK Copyright (C) 1992-2007 3Dconnexion | ||
68 | APR Copyright (C) 2000-2004 The Apache Software Foundation | ||
69 | cURL Copyright (C) 1996-2002, Daniel Stenberg, (daniel@haxx.se) | ||
70 | expat Copyright (C) 1998, 1999, 2000 Thai Open Source Software Center Ltd. | ||
71 | FreeType Copyright (C) 1996-2002, The FreeType Project (www.freetype.org). | ||
72 | GL Copyright (C) 1999-2004 Brian Paul. | ||
73 | Havok.com(TM) Copyright (C) 1999-2001, Telekinesys Research Limited. | ||
74 | jpeg2000 Copyright (C) 2001, David Taubman, The University of New South Wales (UNSW) | ||
75 | jpeglib Copyright (C) 1991-1998, Thomas G. Lane. | ||
76 | ogg/vorbis Copyright (C) 2001, Xiphophorus | ||
77 | OpenSSL Copyright (C) 1998-2002 The OpenSSL Project. | ||
78 | SDL Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002 Sam Lantinga | ||
79 | SSLeay Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | ||
80 | xmlrpc-epi Copyright (C) 2000 Epinions, Inc. | ||
81 | zlib Copyright (C) 1995-2002 Jean-loup Gailly und Mark Adler. | ||
82 | |||
83 | Alle Rechte vorbehalten. Details siehe licenses.txt. | ||
84 | |||
85 | Voice-Chat-Audiocoding: Polycom(R) Siren14(TM) (ITU-T Empf. G.722.1 Anhang C) | ||
86 | |||
87 | |||
88 | Happiness is a warm puppy. -- Charles M. Schulz</f_translation> | ||
89 | <f_old_trans> | ||
90 | 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. | ||
91 | |||
92 | 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 | ||
93 | |||
94 | APR Copyright (C) 2000-2004 The Apache Software Foundation | ||
95 | cURL Copyright (C) 1996-2002, Daniel Stenberg, (daniel@haxx.se) | ||
96 | expat Copyright (C) 1998, 1999, 2000 Thai Open Source Software Center Ltd. | ||
97 | FreeType Copyright (C) 1996-2002, The FreeType Project (www.freetype.org). | ||
98 | GL Copyright (C) 1999-2004 Brian Paul. | ||
99 | Havok.com(TM) Copyright (C) 1999-2001, Telekinesys Research Limited. | ||
100 | jpeg2000 Copyright (C) 2001, David Taubman, The University of New South Wales (UNSW) | ||
101 | jpeglib Copyright (C) 1991-1998, Thomas G. Lane. | ||
102 | ogg/vorbis Copyright (C) 2001, Xiphophorus | ||
103 | OpenSSL Copyright (C) 1998-2002 The OpenSSL Project. | ||
104 | SDL Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002 Sam Lantinga | ||
105 | SSLeay Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | ||
106 | xmlrpc-epi Copyright (C) 2000 Epinions, Inc. | ||
107 | zlib Copyright (C) 1995-2002 Jean-loup Gailly und Mark Adler. | ||
108 | |||
109 | Alle Rechte vorbehalten. Details siehe licenses.txt. | ||
110 | |||
111 | Voice-Chat-Audiocoding: Polycom(R) Siren14(TM) (ITU-T Empf. G.722.1 Anhang C) | ||
112 | |||
113 | |||
114 | Happiness is a warm puppy. -- Charles M. Schulz | ||
115 | </f_old_trans> | ||
116 | </string><string><a_file>alerts.xml</a_file> | ||
5 | <b_path>//GraphicsPreferencesHelp/message</b_path> | 117 | <b_path>//GraphicsPreferencesHelp/message</b_path> |
6 | <c_attribute></c_attribute> | 118 | <c_attribute></c_attribute> |
7 | <d_old> | 119 | <d_old> |
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 bd9d2f2..9dfa30b 100644 --- a/linden/indra/newview/skins/xui/de/need_to_translate.xml +++ b/linden/indra/newview/skins/xui/de/need_to_translate.xml | |||
@@ -2,6 +2,2136 @@ | |||
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>//TutorialNotFound/message</b_path> | ||
6 | <c_attribute></c_attribute> | ||
7 | <d_old></d_old> | ||
8 | <e_new> | ||
9 | No tutorial is currently available. | ||
10 | </e_new> | ||
11 | <f_old_trans></f_old_trans> | ||
12 | <f_translation> | ||
13 | Derzeit ist kein Tutorial verfügbar. | ||
14 | </f_translation> | ||
15 | </string><string><a_file>alerts.xml</a_file> | ||
16 | <b_path>//TutorialNotFound/OK</b_path> | ||
17 | <c_attribute></c_attribute> | ||
18 | <d_old></d_old> | ||
19 | <e_new> | ||
20 | OK | ||
21 | </e_new> | ||
22 | <f_old_trans></f_old_trans> | ||
23 | <f_translation> | ||
24 | OK | ||
25 | </f_translation> | ||
26 | </string><string><a_file>alerts.xml</a_file> | ||
27 | <b_path>//FreezeAvatarFullname/message</b_path> | ||
28 | <c_attribute></c_attribute> | ||
29 | <d_old></d_old> | ||
30 | <e_new> | ||
31 | Freeze [AVATAR_NAME]? | ||
32 | He or she will temporarily be unable to move, | ||
33 | chat, or interact with the world. | ||
34 | </e_new> | ||
35 | <f_old_trans></f_old_trans> | ||
36 | <f_translation> | ||
37 | [AVATAR_NAME] einfrieren? | ||
38 | Der Avatar wird außer Gefecht gesetzt und kann | ||
39 | sich nicht mehr bewegen, chatten oder mit der Welt interagieren. | ||
40 | </f_translation> | ||
41 | </string><string><a_file>alerts.xml</a_file> | ||
42 | <b_path>//FreezeAvatarFullname/Freeze</b_path> | ||
43 | <c_attribute></c_attribute> | ||
44 | <d_old></d_old> | ||
45 | <e_new> | ||
46 | Freeze | ||
47 | </e_new> | ||
48 | <f_old_trans></f_old_trans> | ||
49 | <f_translation> | ||
50 | Einfrieren | ||
51 | </f_translation> | ||
52 | </string><string><a_file>alerts.xml</a_file> | ||
53 | <b_path>//FreezeAvatarFullname/Unfreeze</b_path> | ||
54 | <c_attribute></c_attribute> | ||
55 | <d_old></d_old> | ||
56 | <e_new> | ||
57 | Unfreeze | ||
58 | </e_new> | ||
59 | <f_old_trans></f_old_trans> | ||
60 | <f_translation> | ||
61 | Auftauen | ||
62 | </f_translation> | ||
63 | </string><string><a_file>alerts.xml</a_file> | ||
64 | <b_path>//FreezeAvatarFullname/Cancel</b_path> | ||
65 | <c_attribute></c_attribute> | ||
66 | <d_old></d_old> | ||
67 | <e_new> | ||
68 | Cancel | ||
69 | </e_new> | ||
70 | <f_old_trans></f_old_trans> | ||
71 | <f_translation> | ||
72 | Abbrechen | ||
73 | </f_translation> | ||
74 | </string><string><a_file>alerts.xml</a_file> | ||
75 | <b_path>//EjectAvatarFullname/message</b_path> | ||
76 | <c_attribute></c_attribute> | ||
77 | <d_old></d_old> | ||
78 | <e_new> | ||
79 | Eject [AVATAR_NAME] from your land? | ||
80 | </e_new> | ||
81 | <f_old_trans></f_old_trans> | ||
82 | <f_translation> | ||
83 | [AVATAR_NAME] von Ihrem Land werfen? | ||
84 | </f_translation> | ||
85 | </string><string><a_file>alerts.xml</a_file> | ||
86 | <b_path>//EjectAvatarFullname/Eject</b_path> | ||
87 | <c_attribute></c_attribute> | ||
88 | <d_old></d_old> | ||
89 | <e_new> | ||
90 | Eject | ||
91 | </e_new> | ||
92 | <f_old_trans></f_old_trans> | ||
93 | <f_translation> | ||
94 | Ausschließen | ||
95 | </f_translation> | ||
96 | </string><string><a_file>alerts.xml</a_file> | ||
97 | <b_path>//EjectAvatarFullname/EjectandBan</b_path> | ||
98 | <c_attribute></c_attribute> | ||
99 | <d_old></d_old> | ||
100 | <e_new> | ||
101 | Eject and Ban | ||
102 | </e_new> | ||
103 | <f_old_trans></f_old_trans> | ||
104 | <f_translation> | ||
105 | Ausschließen und Verbannen | ||
106 | </f_translation> | ||
107 | </string><string><a_file>alerts.xml</a_file> | ||
108 | <b_path>//EjectAvatarFullname/Cancel</b_path> | ||
109 | <c_attribute></c_attribute> | ||
110 | <d_old></d_old> | ||
111 | <e_new> | ||
112 | Cancel | ||
113 | </e_new> | ||
114 | <f_old_trans></f_old_trans> | ||
115 | <f_translation> | ||
116 | Abbrechen | ||
117 | </f_translation> | ||
118 | </string><string><a_file>alerts.xml</a_file> | ||
119 | <b_path>//SeachFilteredOnShortWords/message</b_path> | ||
120 | <c_attribute></c_attribute> | ||
121 | <d_old></d_old> | ||
122 | <e_new> | ||
123 | Your search query was modified and the | ||
124 | words that were too short were removed. | ||
125 | |||
126 | Searched for: [FINALQUERY] | ||
127 | </e_new> | ||
128 | <f_old_trans></f_old_trans> | ||
129 | <f_translation> | ||
130 | Ihre Suchanfrage wurde geändert. | ||
131 | Zu kurze Begriffe wurden entfernt. | ||
132 | |||
133 | Ihre Suchanfrage: [FINALQUERY] | ||
134 | </f_translation> | ||
135 | </string><string><a_file>alerts.xml</a_file> | ||
136 | <b_path>//SeachFilteredOnShortWordsEmpty/message</b_path> | ||
137 | <c_attribute></c_attribute> | ||
138 | <d_old></d_old> | ||
139 | <e_new> | ||
140 | Your search terms were too short | ||
141 | so no search was performed. | ||
142 | </e_new> | ||
143 | <f_old_trans></f_old_trans> | ||
144 | <f_translation> | ||
145 | Ihre Suchbegriffe sind zu kurz. | ||
146 | Es wurde keine Suche durchgeführt. | ||
147 | </f_translation> | ||
148 | </string><string><a_file>alerts.xml</a_file> | ||
149 | <b_path>//CannotCloseFloaterBuyLand/message</b_path> | ||
150 | <c_attribute></c_attribute> | ||
151 | <d_old></d_old> | ||
152 | <e_new> | ||
153 | You cannot close the Buy Land window until Second Life | ||
154 | estimates the price of this transaction. | ||
155 | </e_new> | ||
156 | <f_old_trans></f_old_trans> | ||
157 | <f_translation> | ||
158 | Das Fenster 'Land kaufen' kann erst geschlossen werden, | ||
159 | nachdem Second Life den Transaktionspreis geschätzt hat. | ||
160 | </f_translation> | ||
161 | </string><string><a_file>alerts.xml</a_file> | ||
162 | <b_path>//MaxAgentOnRegionBatch/message</b_path> | ||
163 | <c_attribute></c_attribute> | ||
164 | <d_old></d_old> | ||
165 | <e_new> | ||
166 | Failure while attempting to add [NUM_ADDED] agents: | ||
167 | Exceeds the [MAX_AGENTS] [LIST_TYPE] limit by [NUM_EXCESS]. | ||
168 | </e_new> | ||
169 | <f_old_trans></f_old_trans> | ||
170 | <f_translation> | ||
171 | Fehler beim Versuch, [NUM_ADDED] Agenten hinzuzufügen: | ||
172 | Überschreitet den Grenzwert [MAX_AGENTS] [LIST_TYPE] um [NUM_EXCESS]. | ||
173 | </f_translation> | ||
174 | </string><string><a_file>alerts.xml</a_file> | ||
175 | <b_path>//WebLaunchExternalTarget/message</b_path> | ||
176 | <c_attribute></c_attribute> | ||
177 | <d_old></d_old> | ||
178 | <e_new> | ||
179 | Open your system Web browser to view this content? | ||
180 | </e_new> | ||
181 | <f_old_trans></f_old_trans> | ||
182 | <f_translation> | ||
183 | Den System-Webbrowser öffnen, um diesen Inhalt anzuzeigen? | ||
184 | </f_translation> | ||
185 | </string><string><a_file>alerts.xml</a_file> | ||
186 | <b_path>//WebLaunchExternalTarget/ignore</b_path> | ||
187 | <c_attribute></c_attribute> | ||
188 | <d_old></d_old> | ||
189 | <e_new> | ||
190 | When opening your system browser to view a Web page | ||
191 | </e_new> | ||
192 | <f_old_trans></f_old_trans> | ||
193 | <f_translation> | ||
194 | Wenn der System-Webbrowser zur Anzeige einer Webseite geöffnet wird | ||
195 | </f_translation> | ||
196 | </string><string><a_file>alerts.xml</a_file> | ||
197 | <b_path>//WebLaunchExternalTarget/Open</b_path> | ||
198 | <c_attribute></c_attribute> | ||
199 | <d_old></d_old> | ||
200 | <e_new> | ||
201 | OK | ||
202 | </e_new> | ||
203 | <f_old_trans></f_old_trans> | ||
204 | <f_translation> | ||
205 | OK | ||
206 | </f_translation> | ||
207 | </string><string><a_file>alerts.xml</a_file> | ||
208 | <b_path>//WebLaunchExternalTarget/Cancel</b_path> | ||
209 | <c_attribute></c_attribute> | ||
210 | <d_old></d_old> | ||
211 | <e_new> | ||
212 | Cancel | ||
213 | </e_new> | ||
214 | <f_old_trans></f_old_trans> | ||
215 | <f_translation> | ||
216 | Abbrechen | ||
217 | </f_translation> | ||
218 | </string><string><a_file>alerts.xml</a_file> | ||
219 | <b_path>//ProblemAddingEstateGeneric/message</b_path> | ||
220 | <c_attribute></c_attribute> | ||
221 | <d_old></d_old> | ||
222 | <e_new> | ||
223 | Problems adding to this estate list. One or more estates may have a full list. | ||
224 | </e_new> | ||
225 | <f_old_trans></f_old_trans> | ||
226 | <f_translation> | ||
227 | Problem beim Hinzufügen zu dieser Grundstücksliste. Bei mindestens einem Grundstück ist die Liste voll. | ||
228 | </f_translation> | ||
229 | </string><string><a_file>alerts.xml</a_file> | ||
230 | <b_path>//ReplaceAttachment/ignore</b_path> | ||
231 | <c_attribute></c_attribute> | ||
232 | <d_old></d_old> | ||
233 | <e_new> | ||
234 | When replacing existing attachments | ||
235 | </e_new> | ||
236 | <f_old_trans></f_old_trans> | ||
237 | <f_translation> | ||
238 | Beim Wechseln von Anhängen | ||
239 | </f_translation> | ||
240 | </string><string><a_file>alerts.xml</a_file> | ||
241 | <b_path>//BusyModePay/ignore</b_path> | ||
242 | <c_attribute></c_attribute> | ||
243 | <d_old></d_old> | ||
244 | <e_new> | ||
245 | When paying a person or object in busy mode | ||
246 | </e_new> | ||
247 | <f_old_trans></f_old_trans> | ||
248 | <f_translation> | ||
249 | Beim Bezahlen einer Person oder eines Objekts im Beschäftigt-Modus | ||
250 | </f_translation> | ||
251 | </string><string><a_file>floater_about_land.xml</a_file> | ||
252 | <b_path>/floaterland/landtab/land_objects_panel/owner list/type</b_path> | ||
253 | <c_attribute>label</c_attribute> | ||
254 | <d_old></d_old> | ||
255 | <e_new>Type</e_new> | ||
256 | <f_old_trans></f_old_trans> | ||
257 | <f_translation>Typ</f_translation> | ||
258 | </string><string><a_file>floater_about_land.xml</a_file> | ||
259 | <b_path>/floaterland/landtab/land_objects_panel/owner list/name</b_path> | ||
260 | <c_attribute>label</c_attribute> | ||
261 | <d_old></d_old> | ||
262 | <e_new>Name</e_new> | ||
263 | <f_old_trans></f_old_trans> | ||
264 | <f_translation>Name</f_translation> | ||
265 | </string><string><a_file>floater_about_land.xml</a_file> | ||
266 | <b_path>/floaterland/landtab/land_objects_panel/owner list/count</b_path> | ||
267 | <c_attribute>label</c_attribute> | ||
268 | <d_old></d_old> | ||
269 | <e_new>Count</e_new> | ||
270 | <f_old_trans></f_old_trans> | ||
271 | <f_translation>Zählen</f_translation> | ||
272 | </string><string><a_file>floater_active_speakers.xml</a_file> | ||
273 | <b_path>/active_speakers/active_speakers_panel/speakers_list/speaking_status</b_path> | ||
274 | <c_attribute>label</c_attribute> | ||
275 | <d_old></d_old> | ||
276 | <e_new></e_new> | ||
277 | <f_old_trans></f_old_trans> | ||
278 | <f_translation></f_translation> | ||
279 | </string><string><a_file>floater_avatar_textures.xml</a_file> | ||
280 | <b_path>/avatar_texture_debug/baked_label</b_path> | ||
281 | <c_attribute></c_attribute> | ||
282 | <d_old></d_old> | ||
283 | <e_new> | ||
284 | Baked Textures | ||
285 | </e_new> | ||
286 | <f_old_trans></f_old_trans> | ||
287 | <f_translation> | ||
288 | Gebackene Texturen | ||
289 | </f_translation> | ||
290 | </string><string><a_file>floater_avatar_textures.xml</a_file> | ||
291 | <b_path>/avatar_texture_debug/composite_label</b_path> | ||
292 | <c_attribute></c_attribute> | ||
293 | <d_old></d_old> | ||
294 | <e_new> | ||
295 | Composite Textures | ||
296 | </e_new> | ||
297 | <f_old_trans></f_old_trans> | ||
298 | <f_translation> | ||
299 | Zusammengesetzte Texturen | ||
300 | </f_translation> | ||
301 | </string><string><a_file>floater_buy_currency.xml</a_file> | ||
302 | <b_path>/buy currency/getting_data</b_path> | ||
303 | <c_attribute></c_attribute> | ||
304 | <d_old></d_old> | ||
305 | <e_new> | ||
306 | Getting data... | ||
307 | </e_new> | ||
308 | <f_old_trans></f_old_trans> | ||
309 | <f_translation> | ||
310 | Daten werden geladen... | ||
311 | </f_translation> | ||
312 | </string><string><a_file>floater_camera.xml</a_file> | ||
313 | <b_path>/move floater</b_path> | ||
314 | <c_attribute>title</c_attribute> | ||
315 | <d_old></d_old> | ||
316 | <e_new></e_new> | ||
317 | <f_old_trans></f_old_trans> | ||
318 | <f_translation></f_translation> | ||
319 | </string><string><a_file>floater_camera.xml</a_file> | ||
320 | <b_path>/move floater/rotate_tooltip</b_path> | ||
321 | <c_attribute></c_attribute> | ||
322 | <d_old></d_old> | ||
323 | <e_new>Rotate Camera Around Focus</e_new> | ||
324 | <f_old_trans></f_old_trans> | ||
325 | <f_translation>Kamera um Fokus drehen</f_translation> | ||
326 | </string><string><a_file>floater_camera.xml</a_file> | ||
327 | <b_path>/move floater/zoom_tooltip</b_path> | ||
328 | <c_attribute></c_attribute> | ||
329 | <d_old></d_old> | ||
330 | <e_new>Zoom Camera Towards Focus</e_new> | ||
331 | <f_old_trans></f_old_trans> | ||
332 | <f_translation>Kamera auf Fokus zoomen</f_translation> | ||
333 | </string><string><a_file>floater_camera.xml</a_file> | ||
334 | <b_path>/move floater/move_tooltip</b_path> | ||
335 | <c_attribute></c_attribute> | ||
336 | <d_old></d_old> | ||
337 | <e_new>Move Camera Up and Down, Left and Right</e_new> | ||
338 | <f_old_trans></f_old_trans> | ||
339 | <f_translation>Kamera nach oben, unten, links und rechts bewegen</f_translation> | ||
340 | </string><string><a_file>floater_chatterbox.xml</a_file> | ||
341 | <b_path>/floater_chatterbox</b_path> | ||
342 | <c_attribute>title</c_attribute> | ||
343 | <d_old></d_old> | ||
344 | <e_new>Communicate</e_new> | ||
345 | <f_old_trans></f_old_trans> | ||
346 | <f_translation>Unterhalten</f_translation> | ||
347 | </string><string><a_file>floater_chat_history.xml</a_file> | ||
348 | <b_path>/chat floater/IM_logging_string</b_path> | ||
349 | <c_attribute></c_attribute> | ||
350 | <d_old></d_old> | ||
351 | <e_new> | ||
352 | -- Instant message logging enabled -- | ||
353 | </e_new> | ||
354 | <f_old_trans></f_old_trans> | ||
355 | <f_translation> | ||
356 | -- Instant-Message-Protokoll aktiviert -- | ||
357 | </f_translation> | ||
358 | </string><string><a_file>floater_chat_history.xml</a_file> | ||
359 | <b_path>/chat floater/IM_end_log_string</b_path> | ||
360 | <c_attribute></c_attribute> | ||
361 | <d_old></d_old> | ||
362 | <e_new> | ||
363 | -- End of Log -- | ||
364 | </e_new> | ||
365 | <f_old_trans></f_old_trans> | ||
366 | <f_translation> | ||
367 | -- Ende des Protokolls -- | ||
368 | </f_translation> | ||
369 | </string><string><a_file>floater_chat_history.xml</a_file> | ||
370 | <b_path>/chat floater/panels/im_contents_panel/Gesture</b_path> | ||
371 | <c_attribute>label</c_attribute> | ||
372 | <d_old></d_old> | ||
373 | <e_new>Gestures</e_new> | ||
374 | <f_old_trans></f_old_trans> | ||
375 | <f_translation>Gesten</f_translation> | ||
376 | </string><string><a_file>floater_chat_history.xml</a_file> | ||
377 | <b_path>/chat floater/panels/im_contents_panel/Gesture/Gestures</b_path> | ||
378 | <c_attribute></c_attribute> | ||
379 | <d_old></d_old> | ||
380 | <e_new> | ||
381 | Gestures | ||
382 | </e_new> | ||
383 | <f_old_trans></f_old_trans> | ||
384 | <f_translation> | ||
385 | Gesten | ||
386 | </f_translation> | ||
387 | </string><string><a_file>floater_chat_history.xml</a_file> | ||
388 | <b_path>/chat floater/panels/im_contents_panel/show mutes</b_path> | ||
389 | <c_attribute>label</c_attribute> | ||
390 | <d_old></d_old> | ||
391 | <e_new>Show Muted Text</e_new> | ||
392 | <f_old_trans></f_old_trans> | ||
393 | <f_translation>Stummgeschalteten Text anzeigen</f_translation> | ||
394 | </string><string><a_file>floater_chat_history.xml</a_file> | ||
395 | <b_path>/chat floater/panels/im_contents_panel/toggle_active_speakers_btn</b_path> | ||
396 | <c_attribute>label</c_attribute> | ||
397 | <d_old></d_old> | ||
398 | <e_new>< <</e_new> | ||
399 | <f_old_trans></f_old_trans> | ||
400 | <f_translation>< <</f_translation> | ||
401 | </string><string><a_file>floater_chat_history.xml</a_file> | ||
402 | <b_path>/chat floater/panels/im_contents_panel/toggle_active_speakers_btn</b_path> | ||
403 | <c_attribute>label_selected</c_attribute> | ||
404 | <d_old></d_old> | ||
405 | <e_new>> ></e_new> | ||
406 | <f_old_trans></f_old_trans> | ||
407 | <f_translation>> ></f_translation> | ||
408 | </string><string><a_file>floater_chat_history.xml</a_file> | ||
409 | <b_path>/chat floater/panels/im_contents_panel/toggle_active_speakers_btn</b_path> | ||
410 | <c_attribute>tool_tip</c_attribute> | ||
411 | <d_old></d_old> | ||
412 | <e_new>Click here to show list of active participants in this IM session.</e_new> | ||
413 | <f_old_trans></f_old_trans> | ||
414 | <f_translation>Klicken Sie hier, um eine Liste der aktiven Teilnehmer an dieser IM-Sitzung anzuzeigen.</f_translation> | ||
415 | </string><string><a_file>floater_chat_history.xml</a_file> | ||
416 | <b_path>/chat floater/panels/im_contents_panel/chat_panel/Chat Editor</b_path> | ||
417 | <c_attribute>label</c_attribute> | ||
418 | <d_old></d_old> | ||
419 | <e_new>Click here to chat.</e_new> | ||
420 | <f_old_trans></f_old_trans> | ||
421 | <f_translation>Zum Chatten hier klicken.</f_translation> | ||
422 | </string><string><a_file>floater_chat_history.xml</a_file> | ||
423 | <b_path>/chat floater/panels/im_contents_panel/chat_panel/Say</b_path> | ||
424 | <c_attribute>label</c_attribute> | ||
425 | <d_old></d_old> | ||
426 | <e_new>Say</e_new> | ||
427 | <f_old_trans></f_old_trans> | ||
428 | <f_translation>Sprechen</f_translation> | ||
429 | </string><string><a_file>floater_chat_history.xml</a_file> | ||
430 | <b_path>/chat floater/panels/im_contents_panel/chat_panel/Say</b_path> | ||
431 | <c_attribute>tool_tip</c_attribute> | ||
432 | <d_old></d_old> | ||
433 | <e_new>(Enter)</e_new> | ||
434 | <f_old_trans></f_old_trans> | ||
435 | <f_translation>(Eingabe)</f_translation> | ||
436 | </string><string><a_file>floater_critical.xml</a_file> | ||
437 | <b_path>/modal container/tos_title</b_path> | ||
438 | <c_attribute></c_attribute> | ||
439 | <d_old></d_old> | ||
440 | <e_new> | ||
441 | Critical Message | ||
442 | </e_new> | ||
443 | <f_old_trans></f_old_trans> | ||
444 | <f_translation> | ||
445 | Kritische Nachricht | ||
446 | </f_translation> | ||
447 | </string><string><a_file>floater_customize.xml</a_file> | ||
448 | <b_path>/floater customize/customize tab container/body_parts_placeholder</b_path> | ||
449 | <c_attribute>label</c_attribute> | ||
450 | <d_old></d_old> | ||
451 | <e_new>Body Parts</e_new> | ||
452 | <f_old_trans></f_old_trans> | ||
453 | <f_translation>Körperteile</f_translation> | ||
454 | </string><string><a_file>floater_customize.xml</a_file> | ||
455 | <b_path>/floater customize/customize tab container/clothes_placeholder</b_path> | ||
456 | <c_attribute>label</c_attribute> | ||
457 | <d_old></d_old> | ||
458 | <e_new>Clothes</e_new> | ||
459 | <f_old_trans></f_old_trans> | ||
460 | <f_translation>Kleidung</f_translation> | ||
461 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
462 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WLTimeSlider</b_path> | ||
463 | <c_attribute>label</c_attribute> | ||
464 | <d_old></d_old> | ||
465 | <e_new></e_new> | ||
466 | <f_old_trans></f_old_trans> | ||
467 | <f_translation></f_translation> | ||
468 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
469 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WLDayCycleKeys</b_path> | ||
470 | <c_attribute>label</c_attribute> | ||
471 | <d_old></d_old> | ||
472 | <e_new></e_new> | ||
473 | <f_old_trans></f_old_trans> | ||
474 | <f_translation></f_translation> | ||
475 | </string><string><a_file>floater_device_settings.xml</a_file> | ||
476 | <b_path>/floater_device_settings</b_path> | ||
477 | <c_attribute>title</c_attribute> | ||
478 | <d_old></d_old> | ||
479 | <e_new>Voice Chat Device Settings</e_new> | ||
480 | <f_old_trans></f_old_trans> | ||
481 | <f_translation>Geräte-Einstellungen für Voice-Chat</f_translation> | ||
482 | </string><string><a_file>floater_directory.xml</a_file> | ||
483 | <b_path>/directory/Directory Tabs/find_all_old_panel/results/icon</b_path> | ||
484 | <c_attribute>label</c_attribute> | ||
485 | <d_old></d_old> | ||
486 | <e_new></e_new> | ||
487 | <f_old_trans></f_old_trans> | ||
488 | <f_translation></f_translation> | ||
489 | </string><string><a_file>floater_env_settings.xml</a_file> | ||
490 | <b_path>/Environment Editor Floater/EnvTimeSlider</b_path> | ||
491 | <c_attribute>label</c_attribute> | ||
492 | <d_old></d_old> | ||
493 | <e_new></e_new> | ||
494 | <f_old_trans></f_old_trans> | ||
495 | <f_translation></f_translation> | ||
496 | </string><string><a_file>floater_env_settings.xml</a_file> | ||
497 | <b_path>/Environment Editor Floater/EnvCloudSlider</b_path> | ||
498 | <c_attribute>label</c_attribute> | ||
499 | <d_old></d_old> | ||
500 | <e_new></e_new> | ||
501 | <f_old_trans></f_old_trans> | ||
502 | <f_translation></f_translation> | ||
503 | </string><string><a_file>floater_env_settings.xml</a_file> | ||
504 | <b_path>/Environment Editor Floater/EnvWaterFogSlider</b_path> | ||
505 | <c_attribute>label</c_attribute> | ||
506 | <d_old></d_old> | ||
507 | <e_new></e_new> | ||
508 | <f_old_trans></f_old_trans> | ||
509 | <f_translation></f_translation> | ||
510 | </string><string><a_file>floater_hardware_settings.xml</a_file> | ||
511 | <b_path>/Hardware Settings Floater/Antialiasing:</b_path> | ||
512 | <c_attribute></c_attribute> | ||
513 | <d_old></d_old> | ||
514 | <e_new> | ||
515 | Antialiasing: | ||
516 | </e_new> | ||
517 | <f_old_trans></f_old_trans> | ||
518 | <f_translation> | ||
519 | Antialiasing: | ||
520 | </f_translation> | ||
521 | </string><string><a_file>floater_hardware_settings.xml</a_file> | ||
522 | <b_path>/Hardware Settings Floater/fsaa</b_path> | ||
523 | <c_attribute>label</c_attribute> | ||
524 | <d_old></d_old> | ||
525 | <e_new>Antialiasing</e_new> | ||
526 | <f_old_trans></f_old_trans> | ||
527 | <f_translation>Antialiasing</f_translation> | ||
528 | </string><string><a_file>floater_hardware_settings.xml</a_file> | ||
529 | <b_path>/Hardware Settings Floater/fsaa/FSAADisabled</b_path> | ||
530 | <c_attribute></c_attribute> | ||
531 | <d_old></d_old> | ||
532 | <e_new> | ||
533 | Disabled | ||
534 | </e_new> | ||
535 | <f_old_trans></f_old_trans> | ||
536 | <f_translation> | ||
537 | Deaktiviert | ||
538 | </f_translation> | ||
539 | </string><string><a_file>floater_hardware_settings.xml</a_file> | ||
540 | <b_path>/Hardware Settings Floater/fsaa/2x</b_path> | ||
541 | <c_attribute></c_attribute> | ||
542 | <d_old></d_old> | ||
543 | <e_new> | ||
544 | 2x | ||
545 | </e_new> | ||
546 | <f_old_trans></f_old_trans> | ||
547 | <f_translation> | ||
548 | 2x | ||
549 | </f_translation> | ||
550 | </string><string><a_file>floater_hardware_settings.xml</a_file> | ||
551 | <b_path>/Hardware Settings Floater/fsaa/4x</b_path> | ||
552 | <c_attribute></c_attribute> | ||
553 | <d_old></d_old> | ||
554 | <e_new> | ||
555 | 4x | ||
556 | </e_new> | ||
557 | <f_old_trans></f_old_trans> | ||
558 | <f_translation> | ||
559 | 4x | ||
560 | </f_translation> | ||
561 | </string><string><a_file>floater_hardware_settings.xml</a_file> | ||
562 | <b_path>/Hardware Settings Floater/fsaa/8x</b_path> | ||
563 | <c_attribute></c_attribute> | ||
564 | <d_old></d_old> | ||
565 | <e_new> | ||
566 | 8x | ||
567 | </e_new> | ||
568 | <f_old_trans></f_old_trans> | ||
569 | <f_translation> | ||
570 | 8x | ||
571 | </f_translation> | ||
572 | </string><string><a_file>floater_hardware_settings.xml</a_file> | ||
573 | <b_path>/Hardware Settings Floater/fsaa/16x</b_path> | ||
574 | <c_attribute></c_attribute> | ||
575 | <d_old></d_old> | ||
576 | <e_new> | ||
577 | 16x | ||
578 | </e_new> | ||
579 | <f_old_trans></f_old_trans> | ||
580 | <f_translation> | ||
581 | 16x | ||
582 | </f_translation> | ||
583 | </string><string><a_file>floater_hud.xml</a_file> | ||
584 | <b_path>/floater_hud</b_path> | ||
585 | <c_attribute>title</c_attribute> | ||
586 | <d_old></d_old> | ||
587 | <e_new>Tutorial</e_new> | ||
588 | <f_old_trans></f_old_trans> | ||
589 | <f_translation>Tutorial</f_translation> | ||
590 | </string><string><a_file>floater_joystick.xml</a_file> | ||
591 | <b_path>/Joystick</b_path> | ||
592 | <c_attribute>title</c_attribute> | ||
593 | <d_old></d_old> | ||
594 | <e_new>Joystick Configuration</e_new> | ||
595 | <f_old_trans></f_old_trans> | ||
596 | <f_translation>Joystick-Konfiguration</f_translation> | ||
597 | </string><string><a_file>floater_joystick.xml</a_file> | ||
598 | <b_path>/Joystick/JoystickAxis1</b_path> | ||
599 | <c_attribute>label</c_attribute> | ||
600 | <d_old></d_old> | ||
601 | <e_new>X Axis Mapping</e_new> | ||
602 | <f_old_trans></f_old_trans> | ||
603 | <f_translation>X-Achse</f_translation> | ||
604 | </string><string><a_file>floater_joystick.xml</a_file> | ||
605 | <b_path>/Joystick/JoystickAxis2</b_path> | ||
606 | <c_attribute>label</c_attribute> | ||
607 | <d_old></d_old> | ||
608 | <e_new>Y Axis Mapping</e_new> | ||
609 | <f_old_trans></f_old_trans> | ||
610 | <f_translation>Y-Achse</f_translation> | ||
611 | </string><string><a_file>floater_joystick.xml</a_file> | ||
612 | <b_path>/Joystick/JoystickAxis0</b_path> | ||
613 | <c_attribute>label</c_attribute> | ||
614 | <d_old></d_old> | ||
615 | <e_new>Z Axis Mapping</e_new> | ||
616 | <f_old_trans></f_old_trans> | ||
617 | <f_translation>Z-Achse</f_translation> | ||
618 | </string><string><a_file>floater_joystick.xml</a_file> | ||
619 | <b_path>/Joystick/JoystickAxis4</b_path> | ||
620 | <c_attribute>label</c_attribute> | ||
621 | <d_old></d_old> | ||
622 | <e_new>Pitch Mapping</e_new> | ||
623 | <f_old_trans></f_old_trans> | ||
624 | <f_translation>Neigungswinkel</f_translation> | ||
625 | </string><string><a_file>floater_joystick.xml</a_file> | ||
626 | <b_path>/Joystick/JoystickAxis5</b_path> | ||
627 | <c_attribute>label</c_attribute> | ||
628 | <d_old></d_old> | ||
629 | <e_new>Yaw Mapping</e_new> | ||
630 | <f_old_trans></f_old_trans> | ||
631 | <f_translation>Gierwinkel</f_translation> | ||
632 | </string><string><a_file>floater_joystick.xml</a_file> | ||
633 | <b_path>/Joystick/JoystickAxis3</b_path> | ||
634 | <c_attribute>label</c_attribute> | ||
635 | <d_old></d_old> | ||
636 | <e_new>Roll Mapping</e_new> | ||
637 | <f_old_trans></f_old_trans> | ||
638 | <f_translation>Rollwinkel</f_translation> | ||
639 | </string><string><a_file>floater_joystick.xml</a_file> | ||
640 | <b_path>/Joystick/JoystickAxis6</b_path> | ||
641 | <c_attribute>label</c_attribute> | ||
642 | <d_old></d_old> | ||
643 | <e_new>Zoom Mapping</e_new> | ||
644 | <f_old_trans></f_old_trans> | ||
645 | <f_translation>Zoom</f_translation> | ||
646 | </string><string><a_file>floater_joystick.xml</a_file> | ||
647 | <b_path>/Joystick/ZoomDirect</b_path> | ||
648 | <c_attribute>label</c_attribute> | ||
649 | <d_old></d_old> | ||
650 | <e_new>Direct Zoom</e_new> | ||
651 | <f_old_trans></f_old_trans> | ||
652 | <f_translation>Direkt-Zoom</f_translation> | ||
653 | </string><string><a_file>floater_joystick.xml</a_file> | ||
654 | <b_path>/Joystick/Cursor3D</b_path> | ||
655 | <c_attribute>label</c_attribute> | ||
656 | <d_old></d_old> | ||
657 | <e_new>3D Cursor</e_new> | ||
658 | <f_old_trans></f_old_trans> | ||
659 | <f_translation>3D-Cursor</f_translation> | ||
660 | </string><string><a_file>floater_joystick.xml</a_file> | ||
661 | <b_path>/Joystick/AutoLeveling</b_path> | ||
662 | <c_attribute>label</c_attribute> | ||
663 | <d_old></d_old> | ||
664 | <e_new>Auto Level</e_new> | ||
665 | <f_old_trans></f_old_trans> | ||
666 | <f_translation>Automatisch ausrichten</f_translation> | ||
667 | </string><string><a_file>floater_joystick.xml</a_file> | ||
668 | <b_path>/Joystick/Control Modes:</b_path> | ||
669 | <c_attribute></c_attribute> | ||
670 | <d_old></d_old> | ||
671 | <e_new> | ||
672 | Control Modes: | ||
673 | </e_new> | ||
674 | <f_old_trans></f_old_trans> | ||
675 | <f_translation> | ||
676 | Steuermodi: | ||
677 | </f_translation> | ||
678 | </string><string><a_file>floater_joystick.xml</a_file> | ||
679 | <b_path>/Joystick/XScale</b_path> | ||
680 | <c_attribute></c_attribute> | ||
681 | <d_old></d_old> | ||
682 | <e_new>X Scale</e_new> | ||
683 | <f_old_trans></f_old_trans> | ||
684 | <f_translation>X-Skala </f_translation> | ||
685 | </string><string><a_file>floater_joystick.xml</a_file> | ||
686 | <b_path>/Joystick/YScale</b_path> | ||
687 | <c_attribute></c_attribute> | ||
688 | <d_old></d_old> | ||
689 | <e_new>Y Scale</e_new> | ||
690 | <f_old_trans></f_old_trans> | ||
691 | <f_translation>Y-Skala</f_translation> | ||
692 | </string><string><a_file>floater_joystick.xml</a_file> | ||
693 | <b_path>/Joystick/ZScale</b_path> | ||
694 | <c_attribute></c_attribute> | ||
695 | <d_old></d_old> | ||
696 | <e_new>Z Scale</e_new> | ||
697 | <f_old_trans></f_old_trans> | ||
698 | <f_translation>Z-Skala</f_translation> | ||
699 | </string><string><a_file>floater_joystick.xml</a_file> | ||
700 | <b_path>/Joystick/PitchScale</b_path> | ||
701 | <c_attribute></c_attribute> | ||
702 | <d_old></d_old> | ||
703 | <e_new>Pitch Scale</e_new> | ||
704 | <f_old_trans></f_old_trans> | ||
705 | <f_translation>Neigungsskala</f_translation> | ||
706 | </string><string><a_file>floater_joystick.xml</a_file> | ||
707 | <b_path>/Joystick/YawScale</b_path> | ||
708 | <c_attribute></c_attribute> | ||
709 | <d_old></d_old> | ||
710 | <e_new>Yaw Scale</e_new> | ||
711 | <f_old_trans></f_old_trans> | ||
712 | <f_translation>Gierskala</f_translation> | ||
713 | </string><string><a_file>floater_joystick.xml</a_file> | ||
714 | <b_path>/Joystick/RollScale</b_path> | ||
715 | <c_attribute></c_attribute> | ||
716 | <d_old></d_old> | ||
717 | <e_new>Roll Scale</e_new> | ||
718 | <f_old_trans></f_old_trans> | ||
719 | <f_translation>Rollskala</f_translation> | ||
720 | </string><string><a_file>floater_joystick.xml</a_file> | ||
721 | <b_path>/Joystick/XDeadZone</b_path> | ||
722 | <c_attribute></c_attribute> | ||
723 | <d_old></d_old> | ||
724 | <e_new>X Dead Zone</e_new> | ||
725 | <f_old_trans></f_old_trans> | ||
726 | <f_translation>X-Totzone </f_translation> | ||
727 | </string><string><a_file>floater_joystick.xml</a_file> | ||
728 | <b_path>/Joystick/YDeadZone</b_path> | ||
729 | <c_attribute></c_attribute> | ||
730 | <d_old></d_old> | ||
731 | <e_new>Y Dead Zone</e_new> | ||
732 | <f_old_trans></f_old_trans> | ||
733 | <f_translation>Y-Totzone</f_translation> | ||
734 | </string><string><a_file>floater_joystick.xml</a_file> | ||
735 | <b_path>/Joystick/ZDeadZone</b_path> | ||
736 | <c_attribute></c_attribute> | ||
737 | <d_old></d_old> | ||
738 | <e_new>Z Dead Zone</e_new> | ||
739 | <f_old_trans></f_old_trans> | ||
740 | <f_translation>Z-Totzone</f_translation> | ||
741 | </string><string><a_file>floater_joystick.xml</a_file> | ||
742 | <b_path>/Joystick/PitchDeadZone</b_path> | ||
743 | <c_attribute></c_attribute> | ||
744 | <d_old></d_old> | ||
745 | <e_new>Pitch Dead Zone</e_new> | ||
746 | <f_old_trans></f_old_trans> | ||
747 | <f_translation>Neigen-Totzone</f_translation> | ||
748 | </string><string><a_file>floater_joystick.xml</a_file> | ||
749 | <b_path>/Joystick/YawDeadZone</b_path> | ||
750 | <c_attribute></c_attribute> | ||
751 | <d_old></d_old> | ||
752 | <e_new>Yaw Dead Zone</e_new> | ||
753 | <f_old_trans></f_old_trans> | ||
754 | <f_translation>Gieren-Totzone</f_translation> | ||
755 | </string><string><a_file>floater_joystick.xml</a_file> | ||
756 | <b_path>/Joystick/RollDeadZone</b_path> | ||
757 | <c_attribute></c_attribute> | ||
758 | <d_old></d_old> | ||
759 | <e_new>Roll Dead Zone</e_new> | ||
760 | <f_old_trans></f_old_trans> | ||
761 | <f_translation>Rollen-Totzone</f_translation> | ||
762 | </string><string><a_file>floater_joystick.xml</a_file> | ||
763 | <b_path>/Joystick/Feathering</b_path> | ||
764 | <c_attribute></c_attribute> | ||
765 | <d_old></d_old> | ||
766 | <e_new>Feathering</e_new> | ||
767 | <f_old_trans></f_old_trans> | ||
768 | <f_translation>Auslaufen</f_translation> | ||
769 | </string><string><a_file>floater_joystick.xml</a_file> | ||
770 | <b_path>/Joystick/AvatarFeathering</b_path> | ||
771 | <c_attribute>label</c_attribute> | ||
772 | <d_old></d_old> | ||
773 | <e_new></e_new> | ||
774 | <f_old_trans></f_old_trans> | ||
775 | <f_translation></f_translation> | ||
776 | </string><string><a_file>floater_joystick.xml</a_file> | ||
777 | <b_path>/Joystick/BuildFeathering</b_path> | ||
778 | <c_attribute>label</c_attribute> | ||
779 | <d_old></d_old> | ||
780 | <e_new></e_new> | ||
781 | <f_old_trans></f_old_trans> | ||
782 | <f_translation></f_translation> | ||
783 | </string><string><a_file>floater_joystick.xml</a_file> | ||
784 | <b_path>/Joystick/FlycamFeathering</b_path> | ||
785 | <c_attribute>label</c_attribute> | ||
786 | <d_old></d_old> | ||
787 | <e_new></e_new> | ||
788 | <f_old_trans></f_old_trans> | ||
789 | <f_translation></f_translation> | ||
790 | </string><string><a_file>floater_joystick.xml</a_file> | ||
791 | <b_path>/Joystick/ZoomScale2</b_path> | ||
792 | <c_attribute></c_attribute> | ||
793 | <d_old></d_old> | ||
794 | <e_new>Zoom Scale</e_new> | ||
795 | <f_old_trans></f_old_trans> | ||
796 | <f_translation>Zoom-Skala</f_translation> | ||
797 | </string><string><a_file>floater_joystick.xml</a_file> | ||
798 | <b_path>/Joystick/FlycamAxisScale6</b_path> | ||
799 | <c_attribute>label</c_attribute> | ||
800 | <d_old></d_old> | ||
801 | <e_new></e_new> | ||
802 | <f_old_trans></f_old_trans> | ||
803 | <f_translation></f_translation> | ||
804 | </string><string><a_file>floater_joystick.xml</a_file> | ||
805 | <b_path>/Joystick/ZoomDeadZone</b_path> | ||
806 | <c_attribute></c_attribute> | ||
807 | <d_old></d_old> | ||
808 | <e_new>Zoom Dead Zone</e_new> | ||
809 | <f_old_trans></f_old_trans> | ||
810 | <f_translation>Zoom-Totzone</f_translation> | ||
811 | </string><string><a_file>floater_joystick.xml</a_file> | ||
812 | <b_path>/Joystick/FlycamAxisDeadZone6</b_path> | ||
813 | <c_attribute>label</c_attribute> | ||
814 | <d_old></d_old> | ||
815 | <e_new></e_new> | ||
816 | <f_old_trans></f_old_trans> | ||
817 | <f_translation></f_translation> | ||
818 | </string><string><a_file>floater_joystick.xml</a_file> | ||
819 | <b_path>/Joystick/SpaceNavigatorDefaults</b_path> | ||
820 | <c_attribute>label</c_attribute> | ||
821 | <d_old></d_old> | ||
822 | <e_new>SpaceNavigator Defaults</e_new> | ||
823 | <f_old_trans></f_old_trans> | ||
824 | <f_translation>SpaceNavigator-Standards</f_translation> | ||
825 | </string><string><a_file>floater_joystick.xml</a_file> | ||
826 | <b_path>/Joystick/JoystickMonitor</b_path> | ||
827 | <c_attribute></c_attribute> | ||
828 | <d_old></d_old> | ||
829 | <e_new>Joystick Monitor</e_new> | ||
830 | <f_old_trans></f_old_trans> | ||
831 | <f_translation>Joystick-Monitor</f_translation> | ||
832 | </string><string><a_file>floater_joystick.xml</a_file> | ||
833 | <b_path>/Joystick/Axis</b_path> | ||
834 | <c_attribute></c_attribute> | ||
835 | <d_old></d_old> | ||
836 | <e_new>Axis [NUM]</e_new> | ||
837 | <f_old_trans></f_old_trans> | ||
838 | <f_translation>Achse [NUM]</f_translation> | ||
839 | </string><string><a_file>floater_joystick.xml</a_file> | ||
840 | <b_path>/Joystick/NoDevice</b_path> | ||
841 | <c_attribute></c_attribute> | ||
842 | <d_old></d_old> | ||
843 | <e_new>no device detected</e_new> | ||
844 | <f_old_trans></f_old_trans> | ||
845 | <f_translation>Kein Gerät erkannt</f_translation> | ||
846 | </string><string><a_file>floater_post_process.xml</a_file> | ||
847 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiColorFilterPanel/wmiColorFilterBrightness</b_path> | ||
848 | <c_attribute>label</c_attribute> | ||
849 | <d_old></d_old> | ||
850 | <e_new></e_new> | ||
851 | <f_old_trans></f_old_trans> | ||
852 | <f_translation></f_translation> | ||
853 | </string><string><a_file>floater_post_process.xml</a_file> | ||
854 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiColorFilterPanel/wmiColorFilterSaturation</b_path> | ||
855 | <c_attribute>label</c_attribute> | ||
856 | <d_old></d_old> | ||
857 | <e_new></e_new> | ||
858 | <f_old_trans></f_old_trans> | ||
859 | <f_translation></f_translation> | ||
860 | </string><string><a_file>floater_post_process.xml</a_file> | ||
861 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiColorFilterPanel/wmiColorFilterContrast</b_path> | ||
862 | <c_attribute>label</c_attribute> | ||
863 | <d_old></d_old> | ||
864 | <e_new></e_new> | ||
865 | <f_old_trans></f_old_trans> | ||
866 | <f_translation></f_translation> | ||
867 | </string><string><a_file>floater_post_process.xml</a_file> | ||
868 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiNightVisionPanel/wmiNightVisionBrightMult</b_path> | ||
869 | <c_attribute>label</c_attribute> | ||
870 | <d_old></d_old> | ||
871 | <e_new></e_new> | ||
872 | <f_old_trans></f_old_trans> | ||
873 | <f_translation></f_translation> | ||
874 | </string><string><a_file>floater_post_process.xml</a_file> | ||
875 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiNightVisionPanel/wmiNightVisionNoiseSize</b_path> | ||
876 | <c_attribute>label</c_attribute> | ||
877 | <d_old></d_old> | ||
878 | <e_new></e_new> | ||
879 | <f_old_trans></f_old_trans> | ||
880 | <f_translation></f_translation> | ||
881 | </string><string><a_file>floater_post_process.xml</a_file> | ||
882 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiNightVisionPanel/wmiNightVisionNoiseStrength</b_path> | ||
883 | <c_attribute>label</c_attribute> | ||
884 | <d_old></d_old> | ||
885 | <e_new></e_new> | ||
886 | <f_old_trans></f_old_trans> | ||
887 | <f_translation></f_translation> | ||
888 | </string><string><a_file>floater_post_process.xml</a_file> | ||
889 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiBloomPanel/wmiBloomExtract</b_path> | ||
890 | <c_attribute>label</c_attribute> | ||
891 | <d_old></d_old> | ||
892 | <e_new></e_new> | ||
893 | <f_old_trans></f_old_trans> | ||
894 | <f_translation></f_translation> | ||
895 | </string><string><a_file>floater_post_process.xml</a_file> | ||
896 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiBloomPanel/wmiBloomSize</b_path> | ||
897 | <c_attribute>label</c_attribute> | ||
898 | <d_old></d_old> | ||
899 | <e_new></e_new> | ||
900 | <f_old_trans></f_old_trans> | ||
901 | <f_translation></f_translation> | ||
902 | </string><string><a_file>floater_post_process.xml</a_file> | ||
903 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiBloomPanel/wmiBloomStrength</b_path> | ||
904 | <c_attribute>label</c_attribute> | ||
905 | <d_old></d_old> | ||
906 | <e_new></e_new> | ||
907 | <f_old_trans></f_old_trans> | ||
908 | <f_translation></f_translation> | ||
909 | </string><string><a_file>floater_preview_classified.xml</a_file> | ||
910 | <b_path>/classified_preview</b_path> | ||
911 | <c_attribute>title</c_attribute> | ||
912 | <d_old></d_old> | ||
913 | <e_new>Classified Information</e_new> | ||
914 | <f_old_trans></f_old_trans> | ||
915 | <f_translation>Vertrauliche Informationen</f_translation> | ||
916 | </string><string><a_file>floater_preview_event.xml</a_file> | ||
917 | <b_path>/event_preview</b_path> | ||
918 | <c_attribute>title</c_attribute> | ||
919 | <d_old></d_old> | ||
920 | <e_new>Event Information</e_new> | ||
921 | <f_old_trans></f_old_trans> | ||
922 | <f_translation>Event-Informationen</f_translation> | ||
923 | </string><string><a_file>floater_preview_gesture.xml</a_file> | ||
924 | <b_path>/gesture_preview/library_label</b_path> | ||
925 | <c_attribute></c_attribute> | ||
926 | <d_old></d_old> | ||
927 | <e_new> | ||
928 | Library: | ||
929 | </e_new> | ||
930 | <f_old_trans></f_old_trans> | ||
931 | <f_translation> | ||
932 | Bibliothek: | ||
933 | </f_translation> | ||
934 | </string><string><a_file>floater_preview_gesture.xml</a_file> | ||
935 | <b_path>/gesture_preview/steps_label</b_path> | ||
936 | <c_attribute></c_attribute> | ||
937 | <d_old></d_old> | ||
938 | <e_new> | ||
939 | Steps: | ||
940 | </e_new> | ||
941 | <f_old_trans></f_old_trans> | ||
942 | <f_translation> | ||
943 | Schritte: | ||
944 | </f_translation> | ||
945 | </string><string><a_file>floater_preview_gesture.xml</a_file> | ||
946 | <b_path>/gesture_preview/animation_trigger_type/start</b_path> | ||
947 | <c_attribute></c_attribute> | ||
948 | <d_old></d_old> | ||
949 | <e_new> | ||
950 | Start | ||
951 | </e_new> | ||
952 | <f_old_trans></f_old_trans> | ||
953 | <f_translation> | ||
954 | Start | ||
955 | </f_translation> | ||
956 | </string><string><a_file>floater_preview_gesture.xml</a_file> | ||
957 | <b_path>/gesture_preview/animation_trigger_type/stop</b_path> | ||
958 | <c_attribute></c_attribute> | ||
959 | <d_old></d_old> | ||
960 | <e_new> | ||
961 | Stop | ||
962 | </e_new> | ||
963 | <f_old_trans></f_old_trans> | ||
964 | <f_translation> | ||
965 | Stopp | ||
966 | </f_translation> | ||
967 | </string><string><a_file>floater_preview_notecard_keep_discard.xml</a_file> | ||
968 | <b_path>/preview_notecard/not_allowed</b_path> | ||
969 | <c_attribute></c_attribute> | ||
970 | <d_old></d_old> | ||
971 | <e_new>You are not allowed to view this note.</e_new> | ||
972 | <f_old_trans></f_old_trans> | ||
973 | <f_translation>Sie können diese Notiz nicht anzeigen.</f_translation> | ||
974 | </string><string><a_file>floater_preview_url.xml</a_file> | ||
975 | <b_path>/url_preview</b_path> | ||
976 | <c_attribute>title</c_attribute> | ||
977 | <d_old></d_old> | ||
978 | <e_new>Place Information</e_new> | ||
979 | <f_old_trans></f_old_trans> | ||
980 | <f_translation>Ortsinformationen</f_translation> | ||
981 | </string><string><a_file>floater_region_info.xml</a_file> | ||
982 | <b_path>/regioninfo</b_path> | ||
983 | <c_attribute>title</c_attribute> | ||
984 | <d_old></d_old> | ||
985 | <e_new>Region/Estate</e_new> | ||
986 | <f_old_trans></f_old_trans> | ||
987 | <f_translation>Region/Grundstück</f_translation> | ||
988 | </string><string><a_file>floater_tools.xml</a_file> | ||
989 | <b_path>/toolbox floater/ToolCube</b_path> | ||
990 | <c_attribute>tool_tip</c_attribute> | ||
991 | <d_old></d_old> | ||
992 | <e_new>Cube</e_new> | ||
993 | <f_old_trans></f_old_trans> | ||
994 | <f_translation>Würfel</f_translation> | ||
995 | </string><string><a_file>floater_tools.xml</a_file> | ||
996 | <b_path>/toolbox floater/ToolPrism</b_path> | ||
997 | <c_attribute>tool_tip</c_attribute> | ||
998 | <d_old></d_old> | ||
999 | <e_new>Prism</e_new> | ||
1000 | <f_old_trans></f_old_trans> | ||
1001 | <f_translation>Prisma</f_translation> | ||
1002 | </string><string><a_file>floater_tools.xml</a_file> | ||
1003 | <b_path>/toolbox floater/ToolPyramid</b_path> | ||
1004 | <c_attribute>tool_tip</c_attribute> | ||
1005 | <d_old></d_old> | ||
1006 | <e_new>Pyramid</e_new> | ||
1007 | <f_old_trans></f_old_trans> | ||
1008 | <f_translation>Pyramide</f_translation> | ||
1009 | </string><string><a_file>floater_tools.xml</a_file> | ||
1010 | <b_path>/toolbox floater/ToolTetrahedron</b_path> | ||
1011 | <c_attribute>tool_tip</c_attribute> | ||
1012 | <d_old></d_old> | ||
1013 | <e_new>Tetrahedron</e_new> | ||
1014 | <f_old_trans></f_old_trans> | ||
1015 | <f_translation>Tetraeder</f_translation> | ||
1016 | </string><string><a_file>floater_tools.xml</a_file> | ||
1017 | <b_path>/toolbox floater/ToolCylinder</b_path> | ||
1018 | <c_attribute>tool_tip</c_attribute> | ||
1019 | <d_old></d_old> | ||
1020 | <e_new>Cylinder</e_new> | ||
1021 | <f_old_trans></f_old_trans> | ||
1022 | <f_translation>Zylinder</f_translation> | ||
1023 | </string><string><a_file>floater_tools.xml</a_file> | ||
1024 | <b_path>/toolbox floater/ToolHemiCylinder</b_path> | ||
1025 | <c_attribute>tool_tip</c_attribute> | ||
1026 | <d_old></d_old> | ||
1027 | <e_new>Hemicylinder</e_new> | ||
1028 | <f_old_trans></f_old_trans> | ||
1029 | <f_translation>Halbzylinder</f_translation> | ||
1030 | </string><string><a_file>floater_tools.xml</a_file> | ||
1031 | <b_path>/toolbox floater/ToolCone</b_path> | ||
1032 | <c_attribute>tool_tip</c_attribute> | ||
1033 | <d_old></d_old> | ||
1034 | <e_new>Cone</e_new> | ||
1035 | <f_old_trans></f_old_trans> | ||
1036 | <f_translation>Kegel</f_translation> | ||
1037 | </string><string><a_file>floater_tools.xml</a_file> | ||
1038 | <b_path>/toolbox floater/ToolHemiCone</b_path> | ||
1039 | <c_attribute>tool_tip</c_attribute> | ||
1040 | <d_old></d_old> | ||
1041 | <e_new>Hemicone</e_new> | ||
1042 | <f_old_trans></f_old_trans> | ||
1043 | <f_translation>Halbkegel</f_translation> | ||
1044 | </string><string><a_file>floater_tools.xml</a_file> | ||
1045 | <b_path>/toolbox floater/ToolSphere</b_path> | ||
1046 | <c_attribute>tool_tip</c_attribute> | ||
1047 | <d_old></d_old> | ||
1048 | <e_new>Sphere</e_new> | ||
1049 | <f_old_trans></f_old_trans> | ||
1050 | <f_translation>Kugel</f_translation> | ||
1051 | </string><string><a_file>floater_tools.xml</a_file> | ||
1052 | <b_path>/toolbox floater/ToolHemiSphere</b_path> | ||
1053 | <c_attribute>tool_tip</c_attribute> | ||
1054 | <d_old></d_old> | ||
1055 | <e_new>Hemisphere</e_new> | ||
1056 | <f_old_trans></f_old_trans> | ||
1057 | <f_translation>Halbkugel</f_translation> | ||
1058 | </string><string><a_file>floater_tools.xml</a_file> | ||
1059 | <b_path>/toolbox floater/ToolTorus</b_path> | ||
1060 | <c_attribute>tool_tip</c_attribute> | ||
1061 | <d_old></d_old> | ||
1062 | <e_new>Torus</e_new> | ||
1063 | <f_old_trans></f_old_trans> | ||
1064 | <f_translation>Torus</f_translation> | ||
1065 | </string><string><a_file>floater_tools.xml</a_file> | ||
1066 | <b_path>/toolbox floater/ToolTube</b_path> | ||
1067 | <c_attribute>tool_tip</c_attribute> | ||
1068 | <d_old></d_old> | ||
1069 | <e_new>Tube</e_new> | ||
1070 | <f_old_trans></f_old_trans> | ||
1071 | <f_translation>Rohr</f_translation> | ||
1072 | </string><string><a_file>floater_tools.xml</a_file> | ||
1073 | <b_path>/toolbox floater/ToolRing</b_path> | ||
1074 | <c_attribute>tool_tip</c_attribute> | ||
1075 | <d_old></d_old> | ||
1076 | <e_new>Ring</e_new> | ||
1077 | <f_old_trans></f_old_trans> | ||
1078 | <f_translation>Ring</f_translation> | ||
1079 | </string><string><a_file>floater_tools.xml</a_file> | ||
1080 | <b_path>/toolbox floater/ToolTree</b_path> | ||
1081 | <c_attribute>tool_tip</c_attribute> | ||
1082 | <d_old></d_old> | ||
1083 | <e_new>Tree</e_new> | ||
1084 | <f_old_trans></f_old_trans> | ||
1085 | <f_translation>Baum</f_translation> | ||
1086 | </string><string><a_file>floater_tools.xml</a_file> | ||
1087 | <b_path>/toolbox floater/ToolGrass</b_path> | ||
1088 | <c_attribute>tool_tip</c_attribute> | ||
1089 | <d_old></d_old> | ||
1090 | <e_new>Grass</e_new> | ||
1091 | <f_old_trans></f_old_trans> | ||
1092 | <f_translation>Gras</f_translation> | ||
1093 | </string><string><a_file>menu_viewer.xml</a_file> | ||
1094 | <b_path>/Main Menu/View/Joystick Flycam</b_path> | ||
1095 | <c_attribute>label</c_attribute> | ||
1096 | <d_old></d_old> | ||
1097 | <e_new>Joystick Flycam</e_new> | ||
1098 | <f_old_trans></f_old_trans> | ||
1099 | <f_translation>Joystick-Flycam</f_translation> | ||
1100 | </string><string><a_file>menu_viewer.xml</a_file> | ||
1101 | <b_path>/Main Menu/Help/Tutorial</b_path> | ||
1102 | <c_attribute>label</c_attribute> | ||
1103 | <d_old></d_old> | ||
1104 | <e_new>Tutorial</e_new> | ||
1105 | <f_old_trans></f_old_trans> | ||
1106 | <f_translation>Tutorial</f_translation> | ||
1107 | </string><string><a_file>menu_viewer.xml</a_file> | ||
1108 | <b_path>/Main Menu/Help/separator7</b_path> | ||
1109 | <c_attribute>label</c_attribute> | ||
1110 | <d_old></d_old> | ||
1111 | <e_new>-----------</e_new> | ||
1112 | <f_old_trans></f_old_trans> | ||
1113 | <f_translation> -----------</f_translation> | ||
1114 | </string><string><a_file>menu_viewer.xml</a_file> | ||
1115 | <b_path>/Main Menu/Help/Bug Reporting/separator7</b_path> | ||
1116 | <c_attribute>label</c_attribute> | ||
1117 | <d_old></d_old> | ||
1118 | <e_new>-----------</e_new> | ||
1119 | <f_old_trans></f_old_trans> | ||
1120 | <f_translation> -----------</f_translation> | ||
1121 | </string><string><a_file>menu_viewer.xml</a_file> | ||
1122 | <b_path>/Main Menu/Help/Bug Reporting/separator9</b_path> | ||
1123 | <c_attribute>label</c_attribute> | ||
1124 | <d_old></d_old> | ||
1125 | <e_new>-----------</e_new> | ||
1126 | <f_old_trans></f_old_trans> | ||
1127 | <f_translation> -----------</f_translation> | ||
1128 | </string><string><a_file>mime_types.xml</a_file> | ||
1129 | <b_path>/default/web/</b_path> | ||
1130 | <c_attribute></c_attribute> | ||
1131 | <d_old></d_old> | ||
1132 | <e_new> | ||
1133 | Web Content | ||
1134 | </e_new> | ||
1135 | <f_old_trans></f_old_trans> | ||
1136 | <f_translation> | ||
1137 | Webinhalt | ||
1138 | </f_translation> | ||
1139 | </string><string><a_file>mime_types.xml</a_file> | ||
1140 | <b_path>/default/web/</b_path> | ||
1141 | <c_attribute></c_attribute> | ||
1142 | <d_old></d_old> | ||
1143 | <e_new> | ||
1144 | This location has Web content | ||
1145 | </e_new> | ||
1146 | <f_old_trans></f_old_trans> | ||
1147 | <f_translation> | ||
1148 | Dieser Ort verfügt über Webinhalte | ||
1149 | </f_translation> | ||
1150 | </string><string><a_file>mime_types.xml</a_file> | ||
1151 | <b_path>/default/web/</b_path> | ||
1152 | <c_attribute></c_attribute> | ||
1153 | <d_old></d_old> | ||
1154 | <e_new> | ||
1155 | Show Web content | ||
1156 | </e_new> | ||
1157 | <f_old_trans></f_old_trans> | ||
1158 | <f_translation> | ||
1159 | Webinhalt anzeigen | ||
1160 | </f_translation> | ||
1161 | </string><string><a_file>mime_types.xml</a_file> | ||
1162 | <b_path>/default/movie/</b_path> | ||
1163 | <c_attribute></c_attribute> | ||
1164 | <d_old></d_old> | ||
1165 | <e_new> | ||
1166 | Movie | ||
1167 | </e_new> | ||
1168 | <f_old_trans></f_old_trans> | ||
1169 | <f_translation> | ||
1170 | Video | ||
1171 | </f_translation> | ||
1172 | </string><string><a_file>mime_types.xml</a_file> | ||
1173 | <b_path>/default/movie/</b_path> | ||
1174 | <c_attribute></c_attribute> | ||
1175 | <d_old></d_old> | ||
1176 | <e_new> | ||
1177 | There is a movie to play here | ||
1178 | </e_new> | ||
1179 | <f_old_trans></f_old_trans> | ||
1180 | <f_translation> | ||
1181 | Kein Video gefunden | ||
1182 | </f_translation> | ||
1183 | </string><string><a_file>mime_types.xml</a_file> | ||
1184 | <b_path>/default/movie/</b_path> | ||
1185 | <c_attribute></c_attribute> | ||
1186 | <d_old></d_old> | ||
1187 | <e_new> | ||
1188 | Play movie | ||
1189 | </e_new> | ||
1190 | <f_old_trans></f_old_trans> | ||
1191 | <f_translation> | ||
1192 | Video wiedergeben | ||
1193 | </f_translation> | ||
1194 | </string><string><a_file>mime_types.xml</a_file> | ||
1195 | <b_path>/default/none/</b_path> | ||
1196 | <c_attribute></c_attribute> | ||
1197 | <d_old></d_old> | ||
1198 | <e_new> | ||
1199 | No Content | ||
1200 | </e_new> | ||
1201 | <f_old_trans></f_old_trans> | ||
1202 | <f_translation> | ||
1203 | Keine Inhalte | ||
1204 | </f_translation> | ||
1205 | </string><string><a_file>mime_types.xml</a_file> | ||
1206 | <b_path>/default/none/</b_path> | ||
1207 | <c_attribute></c_attribute> | ||
1208 | <d_old></d_old> | ||
1209 | <e_new> | ||
1210 | No media here | ||
1211 | </e_new> | ||
1212 | <f_old_trans></f_old_trans> | ||
1213 | <f_translation> | ||
1214 | Keine Medien gefunden | ||
1215 | </f_translation> | ||
1216 | </string><string><a_file>mime_types.xml</a_file> | ||
1217 | <b_path>/default/image/</b_path> | ||
1218 | <c_attribute></c_attribute> | ||
1219 | <d_old></d_old> | ||
1220 | <e_new> | ||
1221 | Image | ||
1222 | </e_new> | ||
1223 | <f_old_trans></f_old_trans> | ||
1224 | <f_translation> | ||
1225 | Bild | ||
1226 | </f_translation> | ||
1227 | </string><string><a_file>mime_types.xml</a_file> | ||
1228 | <b_path>/default/image/</b_path> | ||
1229 | <c_attribute></c_attribute> | ||
1230 | <d_old></d_old> | ||
1231 | <e_new> | ||
1232 | There is an image at this location | ||
1233 | </e_new> | ||
1234 | <f_old_trans></f_old_trans> | ||
1235 | <f_translation> | ||
1236 | Dieser Ort verfügt über Bildinhalte | ||
1237 | </f_translation> | ||
1238 | </string><string><a_file>mime_types.xml</a_file> | ||
1239 | <b_path>/default/image/</b_path> | ||
1240 | <c_attribute></c_attribute> | ||
1241 | <d_old></d_old> | ||
1242 | <e_new> | ||
1243 | View this location's image | ||
1244 | </e_new> | ||
1245 | <f_old_trans></f_old_trans> | ||
1246 | <f_translation> | ||
1247 | Das Bild an diesem Ort anzeigen | ||
1248 | </f_translation> | ||
1249 | </string><string><a_file>mime_types.xml</a_file> | ||
1250 | <b_path>/default/audio/</b_path> | ||
1251 | <c_attribute></c_attribute> | ||
1252 | <d_old></d_old> | ||
1253 | <e_new> | ||
1254 | Audio | ||
1255 | </e_new> | ||
1256 | <f_old_trans></f_old_trans> | ||
1257 | <f_translation> | ||
1258 | Audio | ||
1259 | </f_translation> | ||
1260 | </string><string><a_file>mime_types.xml</a_file> | ||
1261 | <b_path>/default/audio/</b_path> | ||
1262 | <c_attribute></c_attribute> | ||
1263 | <d_old></d_old> | ||
1264 | <e_new> | ||
1265 | There is audio at this location | ||
1266 | </e_new> | ||
1267 | <f_old_trans></f_old_trans> | ||
1268 | <f_translation> | ||
1269 | Dieser Ort verfügt über Audioinhalte | ||
1270 | </f_translation> | ||
1271 | </string><string><a_file>mime_types.xml</a_file> | ||
1272 | <b_path>/default/audio/</b_path> | ||
1273 | <c_attribute></c_attribute> | ||
1274 | <d_old></d_old> | ||
1275 | <e_new> | ||
1276 | View this location's audio | ||
1277 | </e_new> | ||
1278 | <f_old_trans></f_old_trans> | ||
1279 | <f_translation> | ||
1280 | Audio an diesem Ort wiedergeben | ||
1281 | </f_translation> | ||
1282 | </string><string><a_file>mime_types.xml</a_file> | ||
1283 | <b_path>/default/rtsp/</b_path> | ||
1284 | <c_attribute></c_attribute> | ||
1285 | <d_old></d_old> | ||
1286 | <e_new> | ||
1287 | Real Time Streaming | ||
1288 | </e_new> | ||
1289 | <f_old_trans></f_old_trans> | ||
1290 | <f_translation> | ||
1291 | Echtzeit-Streaming | ||
1292 | </f_translation> | ||
1293 | </string><string><a_file>mime_types.xml</a_file> | ||
1294 | <b_path>/default/blank/</b_path> | ||
1295 | <c_attribute></c_attribute> | ||
1296 | <d_old></d_old> | ||
1297 | <e_new> | ||
1298 | - None - | ||
1299 | </e_new> | ||
1300 | <f_old_trans></f_old_trans> | ||
1301 | <f_translation> | ||
1302 | - Keine - | ||
1303 | </f_translation> | ||
1304 | </string><string><a_file>mime_types.xml</a_file> | ||
1305 | <b_path>/default/"none/none"/</b_path> | ||
1306 | <c_attribute></c_attribute> | ||
1307 | <d_old></d_old> | ||
1308 | <e_new> | ||
1309 | - None - | ||
1310 | </e_new> | ||
1311 | <f_old_trans></f_old_trans> | ||
1312 | <f_translation> | ||
1313 | - Keine - | ||
1314 | </f_translation> | ||
1315 | </string><string><a_file>mime_types.xml</a_file> | ||
1316 | <b_path>/default/"audio/*"/</b_path> | ||
1317 | <c_attribute></c_attribute> | ||
1318 | <d_old></d_old> | ||
1319 | <e_new> | ||
1320 | Audio | ||
1321 | </e_new> | ||
1322 | <f_old_trans></f_old_trans> | ||
1323 | <f_translation> | ||
1324 | Audio | ||
1325 | </f_translation> | ||
1326 | </string><string><a_file>mime_types.xml</a_file> | ||
1327 | <b_path>/default/"video/*"/</b_path> | ||
1328 | <c_attribute></c_attribute> | ||
1329 | <d_old></d_old> | ||
1330 | <e_new> | ||
1331 | Video | ||
1332 | </e_new> | ||
1333 | <f_old_trans></f_old_trans> | ||
1334 | <f_translation> | ||
1335 | Video | ||
1336 | </f_translation> | ||
1337 | </string><string><a_file>mime_types.xml</a_file> | ||
1338 | <b_path>/default/"image/*"/</b_path> | ||
1339 | <c_attribute></c_attribute> | ||
1340 | <d_old></d_old> | ||
1341 | <e_new> | ||
1342 | Image | ||
1343 | </e_new> | ||
1344 | <f_old_trans></f_old_trans> | ||
1345 | <f_translation> | ||
1346 | Bild | ||
1347 | </f_translation> | ||
1348 | </string><string><a_file>mime_types.xml</a_file> | ||
1349 | <b_path>/default/"video/vnd.secondlife.qt.legacy"/</b_path> | ||
1350 | <c_attribute></c_attribute> | ||
1351 | <d_old></d_old> | ||
1352 | <e_new> | ||
1353 | Movie (QuickTime) | ||
1354 | </e_new> | ||
1355 | <f_old_trans></f_old_trans> | ||
1356 | <f_translation> | ||
1357 | Video (QuickTime) | ||
1358 | </f_translation> | ||
1359 | </string><string><a_file>mime_types.xml</a_file> | ||
1360 | <b_path>/default/"application/javascript"/</b_path> | ||
1361 | <c_attribute></c_attribute> | ||
1362 | <d_old></d_old> | ||
1363 | <e_new> | ||
1364 | Javascript | ||
1365 | </e_new> | ||
1366 | <f_old_trans></f_old_trans> | ||
1367 | <f_translation> | ||
1368 | Javascript | ||
1369 | </f_translation> | ||
1370 | </string><string><a_file>mime_types.xml</a_file> | ||
1371 | <b_path>/default/"application/ogg"/</b_path> | ||
1372 | <c_attribute></c_attribute> | ||
1373 | <d_old></d_old> | ||
1374 | <e_new> | ||
1375 | Ogg Audio/Video | ||
1376 | </e_new> | ||
1377 | <f_old_trans></f_old_trans> | ||
1378 | <f_translation> | ||
1379 | Ogg Audio/Video | ||
1380 | </f_translation> | ||
1381 | </string><string><a_file>mime_types.xml</a_file> | ||
1382 | <b_path>/default/"application/pdf"/</b_path> | ||
1383 | <c_attribute></c_attribute> | ||
1384 | <d_old></d_old> | ||
1385 | <e_new> | ||
1386 | PDF Document | ||
1387 | </e_new> | ||
1388 | <f_old_trans></f_old_trans> | ||
1389 | <f_translation> | ||
1390 | PDF-Dokument | ||
1391 | </f_translation> | ||
1392 | </string><string><a_file>mime_types.xml</a_file> | ||
1393 | <b_path>/default/"application/postscript"/</b_path> | ||
1394 | <c_attribute></c_attribute> | ||
1395 | <d_old></d_old> | ||
1396 | <e_new> | ||
1397 | Postscript Document | ||
1398 | </e_new> | ||
1399 | <f_old_trans></f_old_trans> | ||
1400 | <f_translation> | ||
1401 | Postscript-Dokument | ||
1402 | </f_translation> | ||
1403 | </string><string><a_file>mime_types.xml</a_file> | ||
1404 | <b_path>/default/"application/rtf"/</b_path> | ||
1405 | <c_attribute></c_attribute> | ||
1406 | <d_old></d_old> | ||
1407 | <e_new> | ||
1408 | Rich Text (RTF) | ||
1409 | </e_new> | ||
1410 | <f_old_trans></f_old_trans> | ||
1411 | <f_translation> | ||
1412 | Rich Text (RTF) | ||
1413 | </f_translation> | ||
1414 | </string><string><a_file>mime_types.xml</a_file> | ||
1415 | <b_path>/default/"application/xhtml+xml"/</b_path> | ||
1416 | <c_attribute></c_attribute> | ||
1417 | <d_old></d_old> | ||
1418 | <e_new> | ||
1419 | Web Page (XHTML) | ||
1420 | </e_new> | ||
1421 | <f_old_trans></f_old_trans> | ||
1422 | <f_translation> | ||
1423 | Webseite (XHTML) | ||
1424 | </f_translation> | ||
1425 | </string><string><a_file>mime_types.xml</a_file> | ||
1426 | <b_path>/default/"application/x-director"/</b_path> | ||
1427 | <c_attribute></c_attribute> | ||
1428 | <d_old></d_old> | ||
1429 | <e_new> | ||
1430 | Macromedia Director | ||
1431 | </e_new> | ||
1432 | <f_old_trans></f_old_trans> | ||
1433 | <f_translation> | ||
1434 | Macromedia Director | ||
1435 | </f_translation> | ||
1436 | </string><string><a_file>mime_types.xml</a_file> | ||
1437 | <b_path>/default/"application/x-shockwave-flash"/</b_path> | ||
1438 | <c_attribute></c_attribute> | ||
1439 | <d_old></d_old> | ||
1440 | <e_new> | ||
1441 | Flash | ||
1442 | </e_new> | ||
1443 | <f_old_trans></f_old_trans> | ||
1444 | <f_translation> | ||
1445 | Flash | ||
1446 | </f_translation> | ||
1447 | </string><string><a_file>mime_types.xml</a_file> | ||
1448 | <b_path>/default/"audio/mid"/</b_path> | ||
1449 | <c_attribute></c_attribute> | ||
1450 | <d_old></d_old> | ||
1451 | <e_new> | ||
1452 | Audio (MIDI) | ||
1453 | </e_new> | ||
1454 | <f_old_trans></f_old_trans> | ||
1455 | <f_translation> | ||
1456 | Audio (MIDI) | ||
1457 | </f_translation> | ||
1458 | </string><string><a_file>mime_types.xml</a_file> | ||
1459 | <b_path>/default/"audio/mpeg"/</b_path> | ||
1460 | <c_attribute></c_attribute> | ||
1461 | <d_old></d_old> | ||
1462 | <e_new> | ||
1463 | Audio (MP3) | ||
1464 | </e_new> | ||
1465 | <f_old_trans></f_old_trans> | ||
1466 | <f_translation> | ||
1467 | Audio (MP3) | ||
1468 | </f_translation> | ||
1469 | </string><string><a_file>mime_types.xml</a_file> | ||
1470 | <b_path>/default/"audio/x-aiff"/</b_path> | ||
1471 | <c_attribute></c_attribute> | ||
1472 | <d_old></d_old> | ||
1473 | <e_new> | ||
1474 | Audio (AIFF) | ||
1475 | </e_new> | ||
1476 | <f_old_trans></f_old_trans> | ||
1477 | <f_translation> | ||
1478 | Audio (AIFF) | ||
1479 | </f_translation> | ||
1480 | </string><string><a_file>mime_types.xml</a_file> | ||
1481 | <b_path>/default/"audio/x-wav"/</b_path> | ||
1482 | <c_attribute></c_attribute> | ||
1483 | <d_old></d_old> | ||
1484 | <e_new> | ||
1485 | Audio (WAV) | ||
1486 | </e_new> | ||
1487 | <f_old_trans></f_old_trans> | ||
1488 | <f_translation> | ||
1489 | Audio (WAV) | ||
1490 | </f_translation> | ||
1491 | </string><string><a_file>mime_types.xml</a_file> | ||
1492 | <b_path>/default/"image/bmp"/</b_path> | ||
1493 | <c_attribute></c_attribute> | ||
1494 | <d_old></d_old> | ||
1495 | <e_new> | ||
1496 | Image (BMP) | ||
1497 | </e_new> | ||
1498 | <f_old_trans></f_old_trans> | ||
1499 | <f_translation> | ||
1500 | Bild (BMP) | ||
1501 | </f_translation> | ||
1502 | </string><string><a_file>mime_types.xml</a_file> | ||
1503 | <b_path>/default/"image/gif"/</b_path> | ||
1504 | <c_attribute></c_attribute> | ||
1505 | <d_old></d_old> | ||
1506 | <e_new> | ||
1507 | Image (GIF) | ||
1508 | </e_new> | ||
1509 | <f_old_trans></f_old_trans> | ||
1510 | <f_translation> | ||
1511 | Bild (GIF) | ||
1512 | </f_translation> | ||
1513 | </string><string><a_file>mime_types.xml</a_file> | ||
1514 | <b_path>/default/"image/jpeg"/</b_path> | ||
1515 | <c_attribute></c_attribute> | ||
1516 | <d_old></d_old> | ||
1517 | <e_new> | ||
1518 | Image (JPEG) | ||
1519 | </e_new> | ||
1520 | <f_old_trans></f_old_trans> | ||
1521 | <f_translation> | ||
1522 | Bild (JPEG) | ||
1523 | </f_translation> | ||
1524 | </string><string><a_file>mime_types.xml</a_file> | ||
1525 | <b_path>/default/"image/png"/</b_path> | ||
1526 | <c_attribute></c_attribute> | ||
1527 | <d_old></d_old> | ||
1528 | <e_new> | ||
1529 | Image (PNG) | ||
1530 | </e_new> | ||
1531 | <f_old_trans></f_old_trans> | ||
1532 | <f_translation> | ||
1533 | Bild (PNG) | ||
1534 | </f_translation> | ||
1535 | </string><string><a_file>mime_types.xml</a_file> | ||
1536 | <b_path>/default/"image/svg+xml"/</b_path> | ||
1537 | <c_attribute></c_attribute> | ||
1538 | <d_old></d_old> | ||
1539 | <e_new> | ||
1540 | Image (SVG) | ||
1541 | </e_new> | ||
1542 | <f_old_trans></f_old_trans> | ||
1543 | <f_translation> | ||
1544 | Bild (SVG) | ||
1545 | </f_translation> | ||
1546 | </string><string><a_file>mime_types.xml</a_file> | ||
1547 | <b_path>/default/"image/tiff"/</b_path> | ||
1548 | <c_attribute></c_attribute> | ||
1549 | <d_old></d_old> | ||
1550 | <e_new> | ||
1551 | Image (TIFF) | ||
1552 | </e_new> | ||
1553 | <f_old_trans></f_old_trans> | ||
1554 | <f_translation> | ||
1555 | Bild (TIFF) | ||
1556 | </f_translation> | ||
1557 | </string><string><a_file>mime_types.xml</a_file> | ||
1558 | <b_path>/default/"text/html"/</b_path> | ||
1559 | <c_attribute></c_attribute> | ||
1560 | <d_old></d_old> | ||
1561 | <e_new> | ||
1562 | Web Page | ||
1563 | </e_new> | ||
1564 | <f_old_trans></f_old_trans> | ||
1565 | <f_translation> | ||
1566 | Webseite | ||
1567 | </f_translation> | ||
1568 | </string><string><a_file>mime_types.xml</a_file> | ||
1569 | <b_path>/default/"text/plain"/</b_path> | ||
1570 | <c_attribute></c_attribute> | ||
1571 | <d_old></d_old> | ||
1572 | <e_new> | ||
1573 | Text | ||
1574 | </e_new> | ||
1575 | <f_old_trans></f_old_trans> | ||
1576 | <f_translation> | ||
1577 | Text | ||
1578 | </f_translation> | ||
1579 | </string><string><a_file>mime_types.xml</a_file> | ||
1580 | <b_path>/default/"text/xml"/</b_path> | ||
1581 | <c_attribute></c_attribute> | ||
1582 | <d_old></d_old> | ||
1583 | <e_new> | ||
1584 | XML | ||
1585 | </e_new> | ||
1586 | <f_old_trans></f_old_trans> | ||
1587 | <f_translation> | ||
1588 | XML | ||
1589 | </f_translation> | ||
1590 | </string><string><a_file>mime_types.xml</a_file> | ||
1591 | <b_path>/default/"video/mpeg"/</b_path> | ||
1592 | <c_attribute></c_attribute> | ||
1593 | <d_old></d_old> | ||
1594 | <e_new> | ||
1595 | Movie (MPEG) | ||
1596 | </e_new> | ||
1597 | <f_old_trans></f_old_trans> | ||
1598 | <f_translation> | ||
1599 | Video (MPEG) | ||
1600 | </f_translation> | ||
1601 | </string><string><a_file>mime_types.xml</a_file> | ||
1602 | <b_path>/default/"video/mp4"/</b_path> | ||
1603 | <c_attribute></c_attribute> | ||
1604 | <d_old></d_old> | ||
1605 | <e_new> | ||
1606 | Movie (MP4) | ||
1607 | </e_new> | ||
1608 | <f_old_trans></f_old_trans> | ||
1609 | <f_translation> | ||
1610 | Video (MP4) | ||
1611 | </f_translation> | ||
1612 | </string><string><a_file>mime_types.xml</a_file> | ||
1613 | <b_path>/default/"video/quicktime"/</b_path> | ||
1614 | <c_attribute></c_attribute> | ||
1615 | <d_old></d_old> | ||
1616 | <e_new> | ||
1617 | Movie (QuickTime) | ||
1618 | </e_new> | ||
1619 | <f_old_trans></f_old_trans> | ||
1620 | <f_translation> | ||
1621 | Video (QuickTime) | ||
1622 | </f_translation> | ||
1623 | </string><string><a_file>mime_types.xml</a_file> | ||
1624 | <b_path>/default/"video/x-ms-asf"/</b_path> | ||
1625 | <c_attribute></c_attribute> | ||
1626 | <d_old></d_old> | ||
1627 | <e_new> | ||
1628 | Movie (Windows Media ASF) | ||
1629 | </e_new> | ||
1630 | <f_old_trans></f_old_trans> | ||
1631 | <f_translation> | ||
1632 | Video (Windows Media ASF) | ||
1633 | </f_translation> | ||
1634 | </string><string><a_file>mime_types.xml</a_file> | ||
1635 | <b_path>/default/"video/x-ms-wmv"/</b_path> | ||
1636 | <c_attribute></c_attribute> | ||
1637 | <d_old></d_old> | ||
1638 | <e_new> | ||
1639 | Movie (Windows Media WMV) | ||
1640 | </e_new> | ||
1641 | <f_old_trans></f_old_trans> | ||
1642 | <f_translation> | ||
1643 | Video (Windows Media WMV) | ||
1644 | </f_translation> | ||
1645 | </string><string><a_file>mime_types.xml</a_file> | ||
1646 | <b_path>/default/"video/x-msvideo"/</b_path> | ||
1647 | <c_attribute></c_attribute> | ||
1648 | <d_old></d_old> | ||
1649 | <e_new> | ||
1650 | Movie (AVI) | ||
1651 | </e_new> | ||
1652 | <f_old_trans></f_old_trans> | ||
1653 | <f_translation> | ||
1654 | Video (AVI) | ||
1655 | </f_translation> | ||
1656 | </string><string><a_file>notify.xml</a_file> | ||
1657 | <b_path>//RezItemNoPermissions/message</b_path> | ||
1658 | <c_attribute></c_attribute> | ||
1659 | <d_old></d_old> | ||
1660 | <e_new> | ||
1661 | Insufficient permissions to rez object. | ||
1662 | </e_new> | ||
1663 | <f_old_trans></f_old_trans> | ||
1664 | <f_translation> | ||
1665 | Keine Berechtigung zum Rezzen von Objekten. | ||
1666 | </f_translation> | ||
1667 | </string><string><a_file>panel_audio.xml</a_file> | ||
1668 | <b_path>/Media panel/mute_audio</b_path> | ||
1669 | <c_attribute>label</c_attribute> | ||
1670 | <d_old></d_old> | ||
1671 | <e_new></e_new> | ||
1672 | <f_old_trans></f_old_trans> | ||
1673 | <f_translation></f_translation> | ||
1674 | </string><string><a_file>panel_audio.xml</a_file> | ||
1675 | <b_path>/Media panel/mute_music</b_path> | ||
1676 | <c_attribute>label</c_attribute> | ||
1677 | <d_old></d_old> | ||
1678 | <e_new></e_new> | ||
1679 | <f_old_trans></f_old_trans> | ||
1680 | <f_translation></f_translation> | ||
1681 | </string><string><a_file>panel_audio.xml</a_file> | ||
1682 | <b_path>/Media panel/mute_media</b_path> | ||
1683 | <c_attribute>label</c_attribute> | ||
1684 | <d_old></d_old> | ||
1685 | <e_new></e_new> | ||
1686 | <f_old_trans></f_old_trans> | ||
1687 | <f_translation></f_translation> | ||
1688 | </string><string><a_file>panel_audio.xml</a_file> | ||
1689 | <b_path>/Media panel/mute_voice</b_path> | ||
1690 | <c_attribute>label</c_attribute> | ||
1691 | <d_old></d_old> | ||
1692 | <e_new></e_new> | ||
1693 | <f_old_trans></f_old_trans> | ||
1694 | <f_translation></f_translation> | ||
1695 | </string><string><a_file>panel_audio.xml</a_file> | ||
1696 | <b_path>/Media panel/mute_sfx</b_path> | ||
1697 | <c_attribute>label</c_attribute> | ||
1698 | <d_old></d_old> | ||
1699 | <e_new></e_new> | ||
1700 | <f_old_trans></f_old_trans> | ||
1701 | <f_translation></f_translation> | ||
1702 | </string><string><a_file>panel_audio.xml</a_file> | ||
1703 | <b_path>/Media panel/mute_wind</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>panel_audio.xml</a_file> | ||
1710 | <b_path>/Media panel/mute_ui</b_path> | ||
1711 | <c_attribute>label</c_attribute> | ||
1712 | <d_old></d_old> | ||
1713 | <e_new></e_new> | ||
1714 | <f_old_trans></f_old_trans> | ||
1715 | <f_translation></f_translation> | ||
1716 | </string><string><a_file>panel_groups.xml</a_file> | ||
1717 | <b_path>/groups/group list/name</b_path> | ||
1718 | <c_attribute>label</c_attribute> | ||
1719 | <d_old></d_old> | ||
1720 | <e_new></e_new> | ||
1721 | <f_old_trans></f_old_trans> | ||
1722 | <f_translation></f_translation> | ||
1723 | </string><string><a_file>panel_group_invite.xml</a_file> | ||
1724 | <b_path>/invite_panel/help_text</b_path> | ||
1725 | <c_attribute></c_attribute> | ||
1726 | <d_old></d_old> | ||
1727 | <e_new> | ||
1728 | You can select multiple residents to | ||
1729 | invite to your group. Click 'Open | ||
1730 | Person Chooser' to start. | ||
1731 | </e_new> | ||
1732 | <f_old_trans></f_old_trans> | ||
1733 | <f_translation> | ||
1734 | Sie können mehrere Einwohner zu Ihrer | ||
1735 | Gruppe einladen. Klicken Sie auf | ||
1736 | 'Personenauswahl öffnen'. | ||
1737 | </f_translation> | ||
1738 | </string><string><a_file>panel_group_invite.xml</a_file> | ||
1739 | <b_path>/invite_panel/role_text</b_path> | ||
1740 | <c_attribute></c_attribute> | ||
1741 | <d_old></d_old> | ||
1742 | <e_new> | ||
1743 | Choose what Role to assign them to: | ||
1744 | </e_new> | ||
1745 | <f_old_trans></f_old_trans> | ||
1746 | <f_translation> | ||
1747 | Wählen Sie eine Rolle aus: | ||
1748 | </f_translation> | ||
1749 | </string><string><a_file>panel_group_invite.xml</a_file> | ||
1750 | <b_path>/invite_panel/confirm_invite_owner_str</b_path> | ||
1751 | <c_attribute></c_attribute> | ||
1752 | <d_old></d_old> | ||
1753 | <e_new> | ||
1754 | Are you sure you want to invite new owner(s)? This action is permanent! | ||
1755 | </e_new> | ||
1756 | <f_old_trans></f_old_trans> | ||
1757 | <f_translation> | ||
1758 | Möchten Sie wirklich (einen) neue(n) Eigentümer einladen? Dies kann nicht rückgängig gemacht werden! | ||
1759 | </f_translation> | ||
1760 | </string><string><a_file>panel_master_volume.xml</a_file> | ||
1761 | <b_path>/master_volume/mute_master</b_path> | ||
1762 | <c_attribute>label</c_attribute> | ||
1763 | <d_old></d_old> | ||
1764 | <e_new></e_new> | ||
1765 | <f_old_trans></f_old_trans> | ||
1766 | <f_translation></f_translation> | ||
1767 | </string><string><a_file>panel_media_remote_expanded.xml</a_file> | ||
1768 | <b_path>/media_remote/play_label</b_path> | ||
1769 | <c_attribute></c_attribute> | ||
1770 | <d_old></d_old> | ||
1771 | <e_new> | ||
1772 | Play | ||
1773 | </e_new> | ||
1774 | <f_old_trans></f_old_trans> | ||
1775 | <f_translation> | ||
1776 | Wiedergeben | ||
1777 | </f_translation> | ||
1778 | </string><string><a_file>panel_media_remote_expanded.xml</a_file> | ||
1779 | <b_path>/media_remote/stop_label</b_path> | ||
1780 | <c_attribute></c_attribute> | ||
1781 | <d_old></d_old> | ||
1782 | <e_new> | ||
1783 | Stop | ||
1784 | </e_new> | ||
1785 | <f_old_trans></f_old_trans> | ||
1786 | <f_translation> | ||
1787 | Stopp | ||
1788 | </f_translation> | ||
1789 | </string><string><a_file>panel_media_remote_expanded.xml</a_file> | ||
1790 | <b_path>/media_remote/pause_label</b_path> | ||
1791 | <c_attribute></c_attribute> | ||
1792 | <d_old></d_old> | ||
1793 | <e_new> | ||
1794 | Pause | ||
1795 | </e_new> | ||
1796 | <f_old_trans></f_old_trans> | ||
1797 | <f_translation> | ||
1798 | Pause | ||
1799 | </f_translation> | ||
1800 | </string><string><a_file>panel_media_remote_expanded.xml</a_file> | ||
1801 | <b_path>/media_remote/default_tooltip_label</b_path> | ||
1802 | <c_attribute></c_attribute> | ||
1803 | <d_old></d_old> | ||
1804 | <e_new> | ||
1805 | No Media Specified | ||
1806 | </e_new> | ||
1807 | <f_old_trans></f_old_trans> | ||
1808 | <f_translation> | ||
1809 | Keine Medien angegeben | ||
1810 | </f_translation> | ||
1811 | </string><string><a_file>panel_media_remote_expanded.xml</a_file> | ||
1812 | <b_path>/media_remote/media_hidden_label</b_path> | ||
1813 | <c_attribute></c_attribute> | ||
1814 | <d_old></d_old> | ||
1815 | <e_new> | ||
1816 | (URL hidden by parcel owner) | ||
1817 | </e_new> | ||
1818 | <f_old_trans></f_old_trans> | ||
1819 | <f_translation> | ||
1820 | (URL von Parzelleneigentümer versteckt) | ||
1821 | </f_translation> | ||
1822 | </string><string><a_file>panel_media_remote_expanded.xml</a_file> | ||
1823 | <b_path>/media_remote/media_icon_tooltip_web</b_path> | ||
1824 | <c_attribute></c_attribute> | ||
1825 | <d_old></d_old> | ||
1826 | <e_new> | ||
1827 | This location displays content from the World Wide Web. Click the Play button to display Web content. | ||
1828 | </e_new> | ||
1829 | <f_old_trans></f_old_trans> | ||
1830 | <f_translation> | ||
1831 | An diesem Ort werden Inhalte aus dem World Wide Web wiedergegeben. Klicken Sie auf 'Wiedergeben', um Webinhalte wiederzugeben. | ||
1832 | </f_translation> | ||
1833 | </string><string><a_file>panel_media_remote_expanded.xml</a_file> | ||
1834 | <b_path>/media_remote/media_icon_tooltip_movie</b_path> | ||
1835 | <c_attribute></c_attribute> | ||
1836 | <d_old></d_old> | ||
1837 | <e_new> | ||
1838 | This location displays Video content. Click the Play button to play the video. | ||
1839 | </e_new> | ||
1840 | <f_old_trans></f_old_trans> | ||
1841 | <f_translation> | ||
1842 | An diesem Ort werden Videoinhalte wiedergegeben. Klicken Sie auf 'Wiedergeben', um das Video abzuspielen. | ||
1843 | </f_translation> | ||
1844 | </string><string><a_file>panel_media_remote_expanded.xml</a_file> | ||
1845 | <b_path>/media_remote/media_play_tooltip</b_path> | ||
1846 | <c_attribute></c_attribute> | ||
1847 | <d_old></d_old> | ||
1848 | <e_new> | ||
1849 | Display Web content at this location. | ||
1850 | </e_new> | ||
1851 | <f_old_trans></f_old_trans> | ||
1852 | <f_translation> | ||
1853 | Webinhalt an diesem Ort anzeigen. | ||
1854 | </f_translation> | ||
1855 | </string><string><a_file>panel_place.xml</a_file> | ||
1856 | <b_path>/Place/name_label</b_path> | ||
1857 | <c_attribute></c_attribute> | ||
1858 | <d_old></d_old> | ||
1859 | <e_new> | ||
1860 | Name: | ||
1861 | </e_new> | ||
1862 | <f_old_trans></f_old_trans> | ||
1863 | <f_translation> | ||
1864 | Name: | ||
1865 | </f_translation> | ||
1866 | </string><string><a_file>panel_place.xml</a_file> | ||
1867 | <b_path>/Place/description_label</b_path> | ||
1868 | <c_attribute></c_attribute> | ||
1869 | <d_old></d_old> | ||
1870 | <e_new> | ||
1871 | Description: | ||
1872 | </e_new> | ||
1873 | <f_old_trans></f_old_trans> | ||
1874 | <f_translation> | ||
1875 | Beschreibung: | ||
1876 | </f_translation> | ||
1877 | </string><string><a_file>panel_place.xml</a_file> | ||
1878 | <b_path>/Place/information_label</b_path> | ||
1879 | <c_attribute></c_attribute> | ||
1880 | <d_old></d_old> | ||
1881 | <e_new> | ||
1882 | Information: | ||
1883 | </e_new> | ||
1884 | <f_old_trans></f_old_trans> | ||
1885 | <f_translation> | ||
1886 | Information: | ||
1887 | </f_translation> | ||
1888 | </string><string><a_file>panel_place.xml</a_file> | ||
1889 | <b_path>/Place/location_label</b_path> | ||
1890 | <c_attribute></c_attribute> | ||
1891 | <d_old></d_old> | ||
1892 | <e_new> | ||
1893 | Location: | ||
1894 | </e_new> | ||
1895 | <f_old_trans></f_old_trans> | ||
1896 | <f_translation> | ||
1897 | Standort: | ||
1898 | </f_translation> | ||
1899 | </string><string><a_file>panel_place_small.xml</a_file> | ||
1900 | <b_path>/Place/name_label</b_path> | ||
1901 | <c_attribute></c_attribute> | ||
1902 | <d_old></d_old> | ||
1903 | <e_new> | ||
1904 | Name: | ||
1905 | </e_new> | ||
1906 | <f_old_trans></f_old_trans> | ||
1907 | <f_translation> | ||
1908 | Name: | ||
1909 | </f_translation> | ||
1910 | </string><string><a_file>panel_place_small.xml</a_file> | ||
1911 | <b_path>/Place/description_label</b_path> | ||
1912 | <c_attribute></c_attribute> | ||
1913 | <d_old></d_old> | ||
1914 | <e_new> | ||
1915 | Description: | ||
1916 | </e_new> | ||
1917 | <f_old_trans></f_old_trans> | ||
1918 | <f_translation> | ||
1919 | Beschreibung: | ||
1920 | </f_translation> | ||
1921 | </string><string><a_file>panel_place_small.xml</a_file> | ||
1922 | <b_path>/Place/information_label</b_path> | ||
1923 | <c_attribute></c_attribute> | ||
1924 | <d_old></d_old> | ||
1925 | <e_new> | ||
1926 | Information: | ||
1927 | </e_new> | ||
1928 | <f_old_trans></f_old_trans> | ||
1929 | <f_translation> | ||
1930 | Information: | ||
1931 | </f_translation> | ||
1932 | </string><string><a_file>panel_place_small.xml</a_file> | ||
1933 | <b_path>/Place/location_label</b_path> | ||
1934 | <c_attribute></c_attribute> | ||
1935 | <d_old></d_old> | ||
1936 | <e_new> | ||
1937 | Location: | ||
1938 | </e_new> | ||
1939 | <f_old_trans></f_old_trans> | ||
1940 | <f_translation> | ||
1941 | Standort: | ||
1942 | </f_translation> | ||
1943 | </string><string><a_file>panel_preferences_chat.xml</a_file> | ||
1944 | <b_path>/chat/im</b_path> | ||
1945 | <c_attribute>label</c_attribute> | ||
1946 | <d_old></d_old> | ||
1947 | <e_new>IM</e_new> | ||
1948 | <f_old_trans></f_old_trans> | ||
1949 | <f_translation>IM</f_translation> | ||
1950 | </string><string><a_file>panel_preferences_general.xml</a_file> | ||
1951 | <b_path>/general_panel/fade_out_combobox/Never</b_path> | ||
1952 | <c_attribute></c_attribute> | ||
1953 | <d_old></d_old> | ||
1954 | <e_new> | ||
1955 | Never | ||
1956 | </e_new> | ||
1957 | <f_old_trans></f_old_trans> | ||
1958 | <f_translation> | ||
1959 | Nie | ||
1960 | </f_translation> | ||
1961 | </string><string><a_file>panel_preferences_general.xml</a_file> | ||
1962 | <b_path>/general_panel/fade_out_combobox/Show Temporarily</b_path> | ||
1963 | <c_attribute></c_attribute> | ||
1964 | <d_old></d_old> | ||
1965 | <e_new> | ||
1966 | Show Temporarily | ||
1967 | </e_new> | ||
1968 | <f_old_trans></f_old_trans> | ||
1969 | <f_translation> | ||
1970 | Temporär anzeigen | ||
1971 | </f_translation> | ||
1972 | </string><string><a_file>panel_preferences_general.xml</a_file> | ||
1973 | <b_path>/general_panel/fade_out_combobox/Always</b_path> | ||
1974 | <c_attribute></c_attribute> | ||
1975 | <d_old></d_old> | ||
1976 | <e_new> | ||
1977 | Always | ||
1978 | </e_new> | ||
1979 | <f_old_trans></f_old_trans> | ||
1980 | <f_translation> | ||
1981 | Immer | ||
1982 | </f_translation> | ||
1983 | </string><string><a_file>panel_preferences_general.xml</a_file> | ||
1984 | <b_path>/general_panel/group_titles_textbox</b_path> | ||
1985 | <c_attribute></c_attribute> | ||
1986 | <d_old></d_old> | ||
1987 | <e_new> | ||
1988 | Group Titles: | ||
1989 | </e_new> | ||
1990 | <f_old_trans></f_old_trans> | ||
1991 | <f_translation> | ||
1992 | Gruppentitel: | ||
1993 | </f_translation> | ||
1994 | </string><string><a_file>panel_preferences_general.xml</a_file> | ||
1995 | <b_path>/general_panel/show_all_title_checkbox</b_path> | ||
1996 | <c_attribute>label</c_attribute> | ||
1997 | <d_old></d_old> | ||
1998 | <e_new>Hide All Group Titles</e_new> | ||
1999 | <f_old_trans></f_old_trans> | ||
2000 | <f_translation>Alle Gruppentitel ausblenden</f_translation> | ||
2001 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
2002 | <b_path>/Display panel/QualityPerformanceSelection</b_path> | ||
2003 | <c_attribute>label</c_attribute> | ||
2004 | <d_old></d_old> | ||
2005 | <e_new></e_new> | ||
2006 | <f_old_trans></f_old_trans> | ||
2007 | <f_translation></f_translation> | ||
2008 | </string><string><a_file>panel_preferences_input.xml</a_file> | ||
2009 | <b_path>/Input panel/Camera Follow Distance:</b_path> | ||
2010 | <c_attribute></c_attribute> | ||
2011 | <d_old></d_old> | ||
2012 | <e_new> | ||
2013 | Camera Follow Distance: | ||
2014 | </e_new> | ||
2015 | <f_old_trans></f_old_trans> | ||
2016 | <f_translation> | ||
2017 | Kameraabstand: | ||
2018 | </f_translation> | ||
2019 | </string><string><a_file>panel_preferences_input.xml</a_file> | ||
2020 | <b_path>/Input panel/Camera Transition Time:</b_path> | ||
2021 | <c_attribute></c_attribute> | ||
2022 | <d_old></d_old> | ||
2023 | <e_new> | ||
2024 | Camera Transition Time: | ||
2025 | </e_new> | ||
2026 | <f_old_trans></f_old_trans> | ||
2027 | <f_translation> | ||
2028 | Zeit für Kamerawechsel: | ||
2029 | </f_translation> | ||
2030 | </string><string><a_file>panel_preferences_input.xml</a_file> | ||
2031 | <b_path>/Input panel/Camera Smoothing:</b_path> | ||
2032 | <c_attribute></c_attribute> | ||
2033 | <d_old></d_old> | ||
2034 | <e_new> | ||
2035 | Camera Smoothing: | ||
2036 | </e_new> | ||
2037 | <f_old_trans></f_old_trans> | ||
2038 | <f_translation> | ||
2039 | Bewegungsglättung: | ||
2040 | </f_translation> | ||
2041 | </string><string><a_file>panel_preferences_input.xml</a_file> | ||
2042 | <b_path>/Input panel/joystic_setup_button</b_path> | ||
2043 | <c_attribute>label</c_attribute> | ||
2044 | <d_old></d_old> | ||
2045 | <e_new>Joystick Setup</e_new> | ||
2046 | <f_old_trans></f_old_trans> | ||
2047 | <f_translation>Joystick-Einrichtung</f_translation> | ||
2048 | </string><string><a_file>panel_preferences_popups.xml</a_file> | ||
2049 | <b_path>/popups/dont_show_label</b_path> | ||
2050 | <c_attribute></c_attribute> | ||
2051 | <d_old></d_old> | ||
2052 | <e_new> | ||
2053 | Do not show popups: | ||
2054 | </e_new> | ||
2055 | <f_old_trans></f_old_trans> | ||
2056 | <f_translation> | ||
2057 | Popups nicht anzeigen: | ||
2058 | </f_translation> | ||
2059 | </string><string><a_file>panel_preferences_popups.xml</a_file> | ||
2060 | <b_path>/popups/show_label</b_path> | ||
2061 | <c_attribute></c_attribute> | ||
2062 | <d_old></d_old> | ||
2063 | <e_new> | ||
2064 | Show popups: | ||
2065 | </e_new> | ||
2066 | <f_old_trans></f_old_trans> | ||
2067 | <f_translation> | ||
2068 | Popups anzeigen: | ||
2069 | </f_translation> | ||
2070 | </string><string><a_file>panel_speaker_controls.xml</a_file> | ||
2071 | <b_path>/active_speakers_panel/panels/moderation_mode_panel/moderation_mode/OpenVoice</b_path> | ||
2072 | <c_attribute></c_attribute> | ||
2073 | <d_old></d_old> | ||
2074 | <e_new> | ||
2075 | Open Voice (default) | ||
2076 | </e_new> | ||
2077 | <f_old_trans></f_old_trans> | ||
2078 | <f_translation> | ||
2079 | Freies Voice (Standard) | ||
2080 | </f_translation> | ||
2081 | </string><string><a_file>panel_speaker_controls.xml</a_file> | ||
2082 | <b_path>/active_speakers_panel/panels/moderation_mode_panel/moderation_mode/ModeratedVoice</b_path> | ||
2083 | <c_attribute></c_attribute> | ||
2084 | <d_old></d_old> | ||
2085 | <e_new> | ||
2086 | Moderated Voice | ||
2087 | </e_new> | ||
2088 | <f_old_trans></f_old_trans> | ||
2089 | <f_translation> | ||
2090 | Moderiertes Voice | ||
2091 | </f_translation> | ||
2092 | </string><string><a_file>panel_speaker_controls.xml</a_file> | ||
2093 | <b_path>/active_speakers_panel/panels/moderate_chat_panel/speakers_list/speaking_status</b_path> | ||
2094 | <c_attribute>label</c_attribute> | ||
2095 | <d_old></d_old> | ||
2096 | <e_new></e_new> | ||
2097 | <f_old_trans></f_old_trans> | ||
2098 | <f_translation></f_translation> | ||
2099 | </string><string><a_file>panel_speaker_controls.xml</a_file> | ||
2100 | <b_path>/active_speakers_panel/panels/moderate_chat_panel/speaker_controls/profile_btn</b_path> | ||
2101 | <c_attribute>label</c_attribute> | ||
2102 | <d_old></d_old> | ||
2103 | <e_new></e_new> | ||
2104 | <f_old_trans></f_old_trans> | ||
2105 | <f_translation></f_translation> | ||
2106 | </string><string><a_file>panel_status_bar.xml</a_file> | ||
2107 | <b_path>/status/menubar_search_bevel_bg</b_path> | ||
2108 | <c_attribute>label</c_attribute> | ||
2109 | <d_old></d_old> | ||
2110 | <e_new></e_new> | ||
2111 | <f_old_trans></f_old_trans> | ||
2112 | <f_translation></f_translation> | ||
2113 | </string><string><a_file>panel_voice_remote_expanded.xml</a_file> | ||
2114 | <b_path>/voice_remote/voice_channel_bg</b_path> | ||
2115 | <c_attribute>label</c_attribute> | ||
2116 | <d_old></d_old> | ||
2117 | <e_new></e_new> | ||
2118 | <f_old_trans></f_old_trans> | ||
2119 | <f_translation></f_translation> | ||
2120 | </string><string><a_file>panel_voice_remote_expanded.xml</a_file> | ||
2121 | <b_path>/voice_remote/voice_channel_icon</b_path> | ||
2122 | <c_attribute>label</c_attribute> | ||
2123 | <d_old></d_old> | ||
2124 | <e_new></e_new> | ||
2125 | <f_old_trans></f_old_trans> | ||
2126 | <f_translation></f_translation> | ||
2127 | </string><string><a_file>panel_voice_remote_expanded.xml</a_file> | ||
2128 | <b_path>/voice_remote/channel_label</b_path> | ||
2129 | <c_attribute>label</c_attribute> | ||
2130 | <d_old></d_old> | ||
2131 | <e_new></e_new> | ||
2132 | <f_old_trans></f_old_trans> | ||
2133 | <f_translation></f_translation> | ||
2134 | </string><string><a_file>alerts.xml</a_file> | ||
5 | <b_path>//UnsupportedHardware/ignore</b_path> | 2135 | <b_path>//UnsupportedHardware/ignore</b_path> |
6 | <c_attribute></c_attribute> | 2136 | <c_attribute></c_attribute> |
7 | <d_old></d_old> | 2137 | <d_old></d_old> |
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 4fe5b1c..87b80a4 100644 --- a/linden/indra/newview/skins/xui/de/need_to_update.xml +++ b/linden/indra/newview/skins/xui/de/need_to_update.xml | |||
@@ -2,6 +2,348 @@ | |||
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>//GrantModifyRights/message</b_path> | ||
6 | <c_attribute></c_attribute> | ||
7 | <d_old> | ||
8 | Granting modify rights to another resident allows them to change | ||
9 | ANY objects you may have in-world. Be VERY careful when handing | ||
10 | out this permission. | ||
11 | Do you want to grant modify rights for [FIRST_NAME] [LAST_NAME]? | ||
12 | </d_old> | ||
13 | <e_new> | ||
14 | Granting modify rights to another resident allows them to change, | ||
15 | delete or take ANY objects you may have in-world. Be VERY careful | ||
16 | when handing out this permission. | ||
17 | Do you want to grant modify rights for [FIRST_NAME] [LAST_NAME]? | ||
18 | </e_new> | ||
19 | <f_translation> | ||
20 | Die Gewährung von Änderungsrechten an andere Einwohner ermöglicht es diesen, | ||
21 | JEDES BELIEBIGE Objekt zu ändern oder an sich zu nehmen, das Sie in der Second Life-Welt besitzen. Seien Sie SEHR vorsichtig beim Erteilen | ||
22 | dieser Erlaubnis. | ||
23 | Möchten Sie [FIRST_NAME] [LAST_NAME] Änderungsrechte gewähren? | ||
24 | </f_translation> | ||
25 | <f_old_trans> | ||
26 | Die Gewährung von Änderungsrechten an einen anderen Einwohner ermöglicht es diesem, | ||
27 | JEDES BELIEBIGE Objekt zu ändern, das Sie in der Second Life-Welt besitzen. Seien Sie SEHR vorsichtig, | ||
28 | wenn Sie diese Erlaubnis erteilen. | ||
29 | Möchten Sie [FIRST_NAME] [LAST_NAME] Änderungsrechte gewähren? | ||
30 | </f_old_trans> | ||
31 | </string><string><a_file>alerts.xml</a_file> | ||
32 | <b_path>//CannotBuyLandNoRegion/message</b_path> | ||
33 | <c_attribute></c_attribute> | ||
34 | <d_old> | ||
35 | Unable to buy land: | ||
36 | Cannot find the region this land is in. | ||
37 | </d_old> | ||
38 | <e_new> | ||
39 | Unable to buy land: | ||
40 | Cannot find the region this land is in. | ||
41 | </e_new> | ||
42 | <f_translation> | ||
43 | Land kann nicht gekauft werden: | ||
44 | Kann die Region nicht finden, in der sich dieses Land befindet. | ||
45 | </f_translation> | ||
46 | <f_old_trans> | ||
47 | Land kann nicht gekauft werden: | ||
48 | Kann die Region nicht finden, in der sich dieses Land befindet. | ||
49 | </f_old_trans> | ||
50 | </string><string><a_file>alerts.xml</a_file> | ||
51 | <b_path>//ParcelCanPlayMedia/message</b_path> | ||
52 | <c_attribute></c_attribute> | ||
53 | <d_old> | ||
54 | This location can play streaming video. | ||
55 | Streaming video requires a 768 kbps or | ||
56 | faster Internet connection. | ||
57 | |||
58 | Play streaming video when available? | ||
59 | (You can change this option later under | ||
60 | Preferences > Audio & Video.) | ||
61 | </d_old> | ||
62 | <e_new> | ||
63 | This location can play streaming media. | ||
64 | Streaming media requires a fast Internet connection. | ||
65 | |||
66 | Play streaming media when available? | ||
67 | (You can change this option later under | ||
68 | Preferences > Audio & Video.) | ||
69 | </e_new> | ||
70 | <f_translation> | ||
71 | Dieser Ort kann Streaming-Medien abspielen. | ||
72 | Streaming-Medien erfordern eine schnelle Internet-Verbindung. | ||
73 | |||
74 | Streaming-Medien abspielen, wenn verfügbar? | ||
75 | (Sie können diese Option später unter | ||
76 | 'Einstellungen' > 'Audio & Video' ändern.) | ||
77 | </f_translation> | ||
78 | <f_old_trans> | ||
79 | Dieser Ort kann Streaming-Video abspielen. | ||
80 | Streaming-Video erfordert eine Internetverbindung | ||
81 | mit mindestens 768 kbit/s. | ||
82 | |||
83 | Streaming-Video abspielen, wenn verfügbar? | ||
84 | (Sie können diese Option später unter | ||
85 | 'Einstellungen' > 'Audio & Video' ändern.) | ||
86 | </f_old_trans> | ||
87 | </string><string><a_file>alerts.xml</a_file> | ||
88 | <b_path>//ConfirmClearBrowserCache/message</b_path> | ||
89 | <c_attribute></c_attribute> | ||
90 | <d_old> | ||
91 | Are you sure you want to clear your | ||
92 | browser cache? | ||
93 | </d_old> | ||
94 | <e_new> | ||
95 | Are you sure you want to clear your browser cache? | ||
96 | </e_new> | ||
97 | <f_translation> | ||
98 | Möchten Sie Ihren Browser-Cache wirklich leeren? | ||
99 | </f_translation> | ||
100 | <f_old_trans> | ||
101 | Möchten Sie Ihren Browser-Cache | ||
102 | wirklich löschen? | ||
103 | </f_old_trans> | ||
104 | </string><string><a_file>alerts.xml</a_file> | ||
105 | <b_path>//HelpWaterNormalMap/message</b_path> | ||
106 | <c_attribute></c_attribute> | ||
107 | <d_old> | ||
108 | Controls what normal map is layered across the water | ||
109 | to determine reflections/refractions. | ||
110 | </d_old> | ||
111 | <e_new> | ||
112 | Controls what normal map is layered across the water to determine reflections/refractions. | ||
113 | </e_new> | ||
114 | <f_translation> | ||
115 | Ermöglicht die Auswahl einer Normal-Map zur Berechnung von Reflexionen/Brechungen auf dem Wasser. | ||
116 | </f_translation> | ||
117 | <f_old_trans> | ||
118 | Ermöglicht die Auswahl einer Normal-Map zur | ||
119 | Berechnung von Reflexionen/Brechungen auf dem Wasser. | ||
120 | </f_old_trans> | ||
121 | </string><string><a_file>alerts.xml</a_file> | ||
122 | <b_path>//HelpWaterWave1/message</b_path> | ||
123 | <c_attribute></c_attribute> | ||
124 | <d_old> | ||
125 | Controls where and how fast the large scaled version of the normal | ||
126 | map moves in the X and Y direction. | ||
127 | </d_old> | ||
128 | <e_new> | ||
129 | Controls where and how fast the large scaled version of the normal map moves in the X and Y direction. | ||
130 | </e_new> | ||
131 | <f_translation> | ||
132 | Steuert die Bewegungsgeschwindigkeit und -richtung der großen Normal-Map-Version in X- und Y-Richtung. | ||
133 | </f_translation> | ||
134 | <f_old_trans> | ||
135 | Steuert die Bewegungsgeschwindigkeit und -richtung der großen | ||
136 | Normal-Map-Version in X- und Y-Richtung. | ||
137 | </f_old_trans> | ||
138 | </string><string><a_file>alerts.xml</a_file> | ||
139 | <b_path>//HelpWaterWave2/message</b_path> | ||
140 | <c_attribute></c_attribute> | ||
141 | <d_old> | ||
142 | Controls where and how fast the the small scaled version of the | ||
143 | normal map moves in the X and Y direction. | ||
144 | </d_old> | ||
145 | <e_new> | ||
146 | Controls where and how fast the the small scaled version of the normal map moves in the X and Y direction. | ||
147 | </e_new> | ||
148 | <f_translation> | ||
149 | Steuert die Bewegungsgeschwindigkeit und -richtung der kleinen Normal-Map-Version in X- und Y-Richtung. | ||
150 | </f_translation> | ||
151 | <f_old_trans> | ||
152 | Steuert die Bewegungsgeschwindigkeit und -richtung der kleinen | ||
153 | Normal-Map-Version in X- und Y-Richtung. | ||
154 | </f_old_trans> | ||
155 | </string><string><a_file>floater_buy_land.xml</a_file> | ||
156 | <b_path>/buy land/land_use_reason</b_path> | ||
157 | <c_attribute></c_attribute> | ||
158 | <d_old> | ||
159 | You hold 1,309 square meters of land. | ||
160 | This parcel is 512 square meters of land. | ||
161 | </d_old> | ||
162 | <e_new> | ||
163 | You hold 1,309 square meters of land. | ||
164 | This parcel is 512 square meters of land. | ||
165 | </e_new> | ||
166 | <f_translation> | ||
167 | Sie besitzen 1.309 qm Land. | ||
168 | Diese Parzelle ist 512 qm groß. | ||
169 | </f_translation> | ||
170 | <f_old_trans> | ||
171 | Sie besitzen 1.309 qm Land. | ||
172 | Diese Parzelle ist 512 qm groß. | ||
173 | </f_old_trans> | ||
174 | </string><string><a_file>floater_buy_land.xml</a_file> | ||
175 | <b_path>/buy land/multiple_parcels_selected</b_path> | ||
176 | <c_attribute></c_attribute> | ||
177 | <d_old> | ||
178 | Multiple different parcels selected. | ||
179 | Try selecting a smaller area. | ||
180 | </d_old> | ||
181 | <e_new> | ||
182 | Multiple different parcels selected. | ||
183 | Try selecting a smaller area. | ||
184 | </e_new> | ||
185 | <f_translation> | ||
186 | Mehrere unterschiedliche Parzellen ausgewählt. | ||
187 | Verkleinern Sie Ihre Auswahl. | ||
188 | </f_translation> | ||
189 | <f_old_trans> | ||
190 | Mehrere unterschiedliche Parzellen ausgewählt. | ||
191 | Verkleinern Sie Ihre Auswahl. | ||
192 | </f_old_trans> | ||
193 | </string><string><a_file>floater_buy_land.xml</a_file> | ||
194 | <b_path>/buy land/not_owned_by_you</b_path> | ||
195 | <c_attribute></c_attribute> | ||
196 | <d_old> | ||
197 | Land owned by another user is selected. | ||
198 | Try selecting a smaller area. | ||
199 | </d_old> | ||
200 | <e_new> | ||
201 | Land owned by another user is selected. | ||
202 | Try selecting a smaller area. | ||
203 | </e_new> | ||
204 | <f_translation> | ||
205 | Sie haben Land ausgewählt, das einer anderen Person gehört. | ||
206 | Verkleinern Sie Ihre Auswahl. | ||
207 | </f_translation> | ||
208 | <f_old_trans> | ||
209 | Sie haben Land ausgewählt, das einer anderen Person gehört. | ||
210 | Verkleinern Sie Ihre Auswahl. | ||
211 | </f_old_trans> | ||
212 | </string><string><a_file>floater_buy_land.xml</a_file> | ||
213 | <b_path>/buy land/for_first_time_group</b_path> | ||
214 | <c_attribute></c_attribute> | ||
215 | <d_old> | ||
216 | This land is reserved for first time buyers. | ||
217 | You cannot buy it for a group. | ||
218 | </d_old> | ||
219 | <e_new> | ||
220 | This land is reserved for first time buyers. | ||
221 | You cannot buy it for a group. | ||
222 | </e_new> | ||
223 | <f_translation> | ||
224 | Dieses Land ist für Erstkäufer reserviert. | ||
225 | Es kann nicht für eine Gruppe gekauft werden. | ||
226 | </f_translation> | ||
227 | <f_old_trans> | ||
228 | Dieses Land ist für Erstkäufer reserviert. | ||
229 | Es kann nicht für eine Gruppe gekauft werden. | ||
230 | </f_old_trans> | ||
231 | </string><string><a_file>floater_buy_land.xml</a_file> | ||
232 | <b_path>/buy land/for_first_time</b_path> | ||
233 | <c_attribute></c_attribute> | ||
234 | <d_old> | ||
235 | This land is reserved for first time buyers. | ||
236 | You already own land. | ||
237 | </d_old> | ||
238 | <e_new> | ||
239 | This land is reserved for first time buyers. | ||
240 | You already own land. | ||
241 | </e_new> | ||
242 | <f_translation> | ||
243 | Dieses Land ist für Erstkäufer reserviert. | ||
244 | Sie besitzen bereits Land. | ||
245 | </f_translation> | ||
246 | <f_old_trans> | ||
247 | Dieses Land ist für Erstkäufer reserviert. | ||
248 | Sie besitzen bereits Land. | ||
249 | </f_old_trans> | ||
250 | </string><string><a_file>floater_gesture.xml</a_file> | ||
251 | <b_path>/gestures/help_label</b_path> | ||
252 | <c_attribute></c_attribute> | ||
253 | <d_old> | ||
254 | Click a gesture or press a key to play animations and sounds. | ||
255 | </d_old> | ||
256 | <e_new> | ||
257 | Double-click a gesture to play animations and sounds. | ||
258 | </e_new> | ||
259 | <f_translation> | ||
260 | Doppelklicken Sie auf eine Geste, um Animationen und Sound abzuspielen. | ||
261 | </f_translation> | ||
262 | <f_old_trans> | ||
263 | Klicken Sie auf eine Geste oder drücken Sie eine Taste, | ||
264 | um Animationen und Sound abzuspielen. | ||
265 | </f_old_trans> | ||
266 | </string><string><a_file>floater_joystick.xml</a_file> | ||
267 | <b_path>/Joystick</b_path> | ||
268 | <c_attribute>title</c_attribute> | ||
269 | <d_old>Flycam Options</d_old> | ||
270 | <e_new>Joystick Configuration</e_new> | ||
271 | <f_translation>Joystick-Konfiguration</f_translation> | ||
272 | </string><string><a_file>floater_preview_notecard_keep_discard.xml</a_file> | ||
273 | <b_path>/preview_notecard/no_object</b_path> | ||
274 | <c_attribute></c_attribute> | ||
275 | <d_old> | ||
276 | Unable to find object containing this note.: | ||
277 | </d_old> | ||
278 | <e_new>Unable to find object containing this note.:</e_new> | ||
279 | <f_translation>Es wurde kein Objekt gefunden, das diese Notiz enthält:</f_translation> | ||
280 | <f_old_trans> | ||
281 | Es wurde kein Objekt gefunden, das diese Notiz enthält: | ||
282 | </f_old_trans> | ||
283 | </string><string><a_file>panel_friends.xml</a_file> | ||
284 | <b_path>/friends/friend_list/icon_edit_mine</b_path> | ||
285 | <c_attribute>tool_tip</c_attribute> | ||
286 | <d_old>Friend can edit your objects</d_old> | ||
287 | <e_new>Friend can edit, delete or take objects</e_new> | ||
288 | <f_translation>Freunde können Objekte bearbeiten, löschen und an sich nehmen</f_translation> | ||
289 | <f_old_trans>Freund kann Ihre Objekte bearbeiten</f_old_trans> | ||
290 | </string><string><a_file>panel_group_invite.xml</a_file> | ||
291 | <b_path>/invite_panel/invitee_list</b_path> | ||
292 | <c_attribute>tool_tip</c_attribute> | ||
293 | <d_old>Hold the Ctrl key and click resident names to multi-select.</d_old> | ||
294 | <e_new>Hold the Ctrl key and click resident names to multi-select.</e_new> | ||
295 | <f_translation>Halten Sie zur Mehrfachauswahl die Strg-Taste gedrückt und klicken Sie auf die Einwohnernamen.</f_translation> | ||
296 | <f_old_trans>Halten Sie zur Mehrfachauswahl die Strg-Taste gedrückt und klicken Sie auf die Einwohnernamen.</f_old_trans> | ||
297 | </string><string><a_file>panel_group_invite.xml</a_file> | ||
298 | <b_path>/invite_panel/role_name</b_path> | ||
299 | <c_attribute>tool_tip</c_attribute> | ||
300 | <d_old>Choose from the list of Roles you are allowed to assign members to.</d_old> | ||
301 | <e_new>Choose from the list of Roles you are allowed to assign members to.</e_new> | ||
302 | <f_translation>Wählen Sie aus der Liste der Rollen, die Sie an Mitglieder vergeben dürfen.</f_translation> | ||
303 | <f_old_trans>Choose from the list of Roles you are allowed to assign members to.</f_old_trans> | ||
304 | </string><string><a_file>panel_group_invite.xml</a_file> | ||
305 | <b_path>/invite_panel/loading</b_path> | ||
306 | <c_attribute></c_attribute> | ||
307 | <d_old> | ||
308 | (loading...) | ||
309 | </d_old> | ||
310 | <e_new>(loading...)</e_new> | ||
311 | <f_translation>(wird geladen...)</f_translation> | ||
312 | <f_old_trans> | ||
313 | (wird geladen...) | ||
314 | </f_old_trans> | ||
315 | </string><string><a_file>panel_preferences_chat.xml</a_file> | ||
316 | <b_path>/chat/users</b_path> | ||
317 | <c_attribute>label</c_attribute> | ||
318 | <d_old>Users</d_old> | ||
319 | <e_new>Chat</e_new> | ||
320 | <f_translation>Chat</f_translation> | ||
321 | <f_old_trans>Benutzer</f_old_trans> | ||
322 | </string><string><a_file>panel_preferences_voice.xml</a_file> | ||
323 | <b_path>/chat/device_settings_text</b_path> | ||
324 | <c_attribute></c_attribute> | ||
325 | <d_old> | ||
326 | NOTE: Running the Device Settings or Voice Chat Setup will temporarily disconnect you from Voice Chat. | ||
327 | </d_old> | ||
328 | <e_new> | ||
329 | NOTE: Running the Device Settings will temporarily disconnect you from Voice Chat. | ||
330 | </e_new> | ||
331 | <f_translation> | ||
332 | HINWEIS: Beim Öffnen der Geräte-Einstellungen werden Sie vorübergehend vom Voice-Chat getrennt. | ||
333 | </f_translation> | ||
334 | <f_old_trans> | ||
335 | HINWEIS: Beim Öffnen der Geräte-Einstellungen oder der Voice-Chat-Einrichtung werden Sie vorübergehend vom Voice-Chat getrennt. | ||
336 | </f_old_trans> | ||
337 | </string><string><a_file>panel_toolbar.xml</a_file> | ||
338 | <b_path>/toolbar/Redock Windows</b_path> | ||
339 | <c_attribute></c_attribute> | ||
340 | <d_old> | ||
341 | Redock Windows | ||
342 | </d_old> | ||
343 | <e_new>Redock Windows</e_new> | ||
344 | <f_translation>Fenster andocken</f_translation> | ||
345 | <f_old_trans>Fenster andocken</f_old_trans> | ||
346 | </string><string><a_file>alerts.xml</a_file> | ||
5 | <b_path>//ClothingLoading/message</b_path> | 347 | <b_path>//ClothingLoading/message</b_path> |
6 | <c_attribute></c_attribute> | 348 | <c_attribute></c_attribute> |
7 | <d_old> | 349 | <d_old> |
diff --git a/linden/indra/newview/skins/xui/de/panel_group_notices.xml b/linden/indra/newview/skins/xui/de/panel_group_notices.xml index 0e151de..56a384b 100644 --- a/linden/indra/newview/skins/xui/de/panel_group_notices.xml +++ b/linden/indra/newview/skins/xui/de/panel_group_notices.xml | |||
@@ -16,8 +16,8 @@ gesendet. Mitteilungen können unter | |||
16 | Gruppenmitteilungsarchiv | 16 | Gruppenmitteilungsarchiv |
17 | </text> | 17 | </text> |
18 | <text name="lbl2"> | 18 | <text name="lbl2"> |
19 | Mitteilungen werden 14 Tage lang aufbewahrt. Klicken Sie auf eine Mitteilung, um sie anzuzeigen. | 19 | Mitteilungen werden 14 Tage lang aufbewahrt. Klicken Sie auf eine Mitteilung, |
20 | Klicken Sie auf 'Aktualisieren', um neue Mitteilungen zu suchen. | 20 | um sie anzuzeigen. Klicken Sie auf 'Aktualisieren', um neue Mitteilungen zu suchen. |
21 | Eine Mitteilungsliste speichert maximal 200 Mitteilungen pro Gruppe täglich. | 21 | Eine Mitteilungsliste speichert maximal 200 Mitteilungen pro Gruppe täglich. |
22 | </text> | 22 | </text> |
23 | <scroll_list name="notice_list"> | 23 | <scroll_list name="notice_list"> |
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 84dc606..205da47 100644 --- a/linden/indra/newview/skins/xui/ja/need_to_long.xml +++ b/linden/indra/newview/skins/xui/ja/need_to_long.xml | |||
@@ -2,6 +2,156 @@ | |||
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>//HelpRegionObjectBonus/message</b_path> | ||
6 | <c_attribute></c_attribute> | ||
7 | <d_old> | ||
8 | The Object Bonus is a multiplier for primitives allowed on any given | ||
9 | parcel. The range allowed is 1 to 10. Set at '1', each 512m2 parcel | ||
10 | is allowed 117 objects. Set at '2', each 512m2 parcel is | ||
11 | allowed 234, or twice as many, and so on. The max number of objects | ||
12 | allowed per region remains 15,000 no matter what the | ||
13 | Object Bonus is. once set, be aware that lowering the Object Bonus may cause | ||
14 | objects to be returned or deleted. | ||
15 | |||
16 | Default: 1.0 | ||
17 | </d_old> | ||
18 | <e_new> | ||
19 | The Object Bonus is a multiplier for primitives allowed on any given | ||
20 | parcel. The range allowed is 1 to 10. Set at '1', each 512m2 parcel | ||
21 | is allowed 117 objects. Set at '2', each 512m2 parcel is | ||
22 | allowed 234, or twice as many, and so on. The max number of objects | ||
23 | allowed per region remains 15,000 no matter what the | ||
24 | Object Bonus is. Once set, be aware that lowering the Object Bonus may cause objects to be returned or deleted. | ||
25 | |||
26 | Default: 1.0 | ||
27 | </e_new> | ||
28 | <f_translation> | ||
29 | オブジェクトボーナスは、区画において許可されているプリムの倍率数を | ||
30 | 意味します。認可されている範囲は1から10です。したがって、'1'に設定すると、512 m2の土地には、 | ||
31 | 117のオブジェクトが許可されます。'2'に設定すると、同じ512 m2の土地には、1のときの2倍にあたる | ||
32 | 234のオブジェクトが許可され、3以降も同様に増えていきます。全地域の最高オブジェクト数は、 | ||
33 | オブジェクトボーナスの値に影響されず、 | ||
34 | 15,000のまま変わりません。いったん決定した後でオブジェクトボーナスの値を下げると、オブジェクトが返却または削除される可能性がありますのでご注意ください。 | ||
35 | ディフォルト: 1.0 | ||
36 | </f_translation> | ||
37 | <f_old_trans> | ||
38 | オブジェクトボーナスは、区画において許可されているプリムの倍率数を | ||
39 | 意味します。認可されている範囲は1から10です。したがって、'1'に設定すると、512 m2の土地には、 | ||
40 | 117のオブジェクトが許可されます。'2'に設定すると、同じ512 m2の土地には、1のときの2倍にあたる | ||
41 | 234のオブジェクトが許可され、3以降も同様に増えていきます。全地域の最高オブジェクト数は、 | ||
42 | オブジェクトボーナスの値に影響されず、 | ||
43 | 15,000のまま変わりません。いったん決定した後でオブジェクトボーナスの値を下げると、 | ||
44 | オブジェクトが返却または削除される可能性がありますのでご注意ください。 | ||
45 | |||
46 | デフォルト: 1.0 | ||
47 | </f_old_trans> | ||
48 | </string><string><a_file>floater_about.xml</a_file> | ||
49 | <b_path>/floater_about/credits_editor</b_path> | ||
50 | <c_attribute></c_attribute> | ||
51 | <d_old> | ||
52 | 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. | ||
53 | |||
54 | 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 | ||
55 | |||
56 | APR Copyright (C) 2000-2004 The Apache Software Foundation | ||
57 | cURL Copyright (C) 1996-2002, Daniel Stenberg, (daniel@haxx.se) | ||
58 | expat Copyright (C) 1998, 1999, 2000 Thai Open Source Software Center Ltd. | ||
59 | FreeType Copyright (C) 1996-2002, The FreeType Project (www.freetype.org). | ||
60 | GL Copyright (C) 1999-2004 Brian Paul. | ||
61 | Havok.com(TM) Copyright (C) 1999-2001, Telekinesys Research Limited. | ||
62 | jpeg2000 Copyright (C) 2001, David Taubman, The University of New South Wales (UNSW) | ||
63 | jpeglib Copyright (C) 1991-1998, Thomas G. Lane. | ||
64 | ogg/vorbis Copyright (C) 2001, Xiphophorus | ||
65 | OpenSSL Copyright (C) 1998-2002 The OpenSSL Project. | ||
66 | SDL Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002 Sam Lantinga | ||
67 | SSLeay Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | ||
68 | xmlrpc-epi Copyright (C) 2000 Epinions, Inc. | ||
69 | zlib Copyright (C) 1995-2002 Jean-loup Gailly and Mark Adler. | ||
70 | |||
71 | All rights reserved. See licenses.txt for details. | ||
72 | |||
73 | Voice chat Audio coding: Polycom(R) Siren14(TM) (ITU-T Rec. G.722.1 Annex C) | ||
74 | |||
75 | |||
76 | Happiness is a warm puppy. -- Charles M. Schulz | ||
77 | </d_old> | ||
78 | <e_new> | ||
79 | 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. | ||
80 | |||
81 | 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 | ||
82 | |||
83 | 3Dconnexion SDK Copyright (C) 1992-2007 3Dconnexion | ||
84 | APR Copyright (C) 2000-2004 The Apache Software Foundation | ||
85 | cURL Copyright (C) 1996-2002, Daniel Stenberg, (daniel@haxx.se) | ||
86 | expat Copyright (C) 1998, 1999, 2000 Thai Open Source Software Center Ltd. | ||
87 | FreeType Copyright (C) 1996-2002, The FreeType Project (www.freetype.org). | ||
88 | GL Copyright (C) 1999-2004 Brian Paul. | ||
89 | Havok.com(TM) Copyright (C) 1999-2001, Telekinesys Research Limited. | ||
90 | jpeg2000 Copyright (C) 2001, David Taubman, The University of New South Wales (UNSW) | ||
91 | jpeglib Copyright (C) 1991-1998, Thomas G. Lane. | ||
92 | ogg/vorbis Copyright (C) 2001, Xiphophorus | ||
93 | OpenSSL Copyright (C) 1998-2002 The OpenSSL Project. | ||
94 | SDL Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002 Sam Lantinga | ||
95 | SSLeay Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | ||
96 | xmlrpc-epi Copyright (C) 2000 Epinions, Inc. | ||
97 | zlib Copyright (C) 1995-2002 Jean-loup Gailly and Mark Adler. | ||
98 | |||
99 | All rights reserved. See licenses.txt for details. | ||
100 | |||
101 | Voice chat Audio coding: Polycom(R) Siren14(TM) (ITU-T Rec. G.722.1 Annex C) | ||
102 | |||
103 | |||
104 | Happiness is a warm puppy. -- Charles M. Schulz</e_new> | ||
105 | <f_translation> | ||
106 | 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 と、その他多数の人達によって作成されました。 | ||
107 | |||
108 | このバージョンをこれまでで最高のものになるようご協力をいただいた以下の住人の皆様に深く感謝いたします。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 | ||
109 | |||
110 | 3Dconnexion SDK Copyright (C) 1992-2007 3Dconnexion | ||
111 | APR Copyright (C) 2000-2004 The Apache Software Foundation | ||
112 | cURL Copyright (C) 1996-2002, Daniel Stenberg, (daniel@haxx.se) | ||
113 | expat Copyright (C) 1998, 1999, 2000 Thai Open Source Software Center Ltd. | ||
114 | FreeType Copyright (C) 1996-2002, The FreeType Project (www.freetype.org). | ||
115 | GL Copyright (C) 1999-2004 Brian Paul. | ||
116 | Havok.com(TM) Copyright (C) 1999-2001, Telekinesys Research Limited. | ||
117 | jpeg2000 Copyright (C) 2001, David Taubman, The University of New South Wales (UNSW) | ||
118 | jpeglib Copyright (C) 1991-1998, Thomas G. Lane. | ||
119 | ogg/vorbis Copyright (C) 2001, Xiphophorus | ||
120 | OpenSSL Copyright (C) 1998-2002 The OpenSSL Project. | ||
121 | SDL Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002 Sam Lantinga | ||
122 | SSLeay Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | ||
123 | xmlrpc-epi Copyright (C) 2000 Epinions, Inc. | ||
124 | zlib Copyright (C) 1995-2002 Jean-loup Gailly and Mark Adler. | ||
125 | |||
126 | 無断複写・転載を禁じます。詳細はlicenses.txtを参照してください。 | ||
127 | |||
128 | Voice chat Audio coding:Polycom(R) Siren14(TM) (ITU-T Rec.G.722.1 Annex C) | ||
129 | |||
130 | |||
131 | Happiness is a warm puppy. (しあわせはcあったかい子犬)-- チャールズ・M・シュルツ</f_translation> | ||
132 | <f_old_trans> | ||
133 | 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 と、その他多数の人達によって作成されました。 | ||
134 | |||
135 | このバージョンをこれまでで最高のものになるようご協力をいただいた以下の住人の皆様に深く感謝いたします。 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 | ||
136 | |||
137 | 3Dconnexion SDK Copyright (C) 1992-2007 3Dconnexion | ||
138 | APR Copyright (C) 2000-2004 The Apache Software Foundation | ||
139 | cURL Copyright (C) 1996-2002, Daniel Stenberg, (daniel@haxx.se) | ||
140 | expat Copyright (C) 1998, 1999, 2000 Thai Open Source Software Center Ltd. | ||
141 | FreeType Copyright (C) 1996-2002, The FreeType Project (www.freetype.org). | ||
142 | GL Copyright (C) 1999-2004 Brian Paul. | ||
143 | Havok.com(TM) Copyright (C) 1999-2001, Telekinesys Research Limited. | ||
144 | jpeg2000 Copyright (C) 2001, David Taubman, The University of New South Wales (UNSW) | ||
145 | jpeglib Copyright (C) 1991-1998, Thomas G. Lane. | ||
146 | ogg/vorbis Copyright (C) 2001, Xiphophorus | ||
147 | OpenSSL Copyright (C) 1998-2002 The OpenSSL Project. | ||
148 | SDL Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002 Sam Lantinga | ||
149 | SSLeay Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | ||
150 | xmlrpc-epi Copyright (C) 2000 Epinions, Inc. | ||
151 | zlib Copyright (C) 1995-2002 Jean-loup Gailly and Mark Adler. | ||
152 | |||
153 | </f_old_trans> | ||
154 | </string><string><a_file>alerts.xml</a_file> | ||
5 | <b_path>//GraphicsPreferencesHelp/message</b_path> | 155 | <b_path>//GraphicsPreferencesHelp/message</b_path> |
6 | <c_attribute></c_attribute> | 156 | <c_attribute></c_attribute> |
7 | <d_old> | 157 | <d_old> |
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 3fd5d5e..893906b 100644 --- a/linden/indra/newview/skins/xui/ja/need_to_translate.xml +++ b/linden/indra/newview/skins/xui/ja/need_to_translate.xml | |||
@@ -2,6 +2,2130 @@ | |||
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>//TutorialNotFound/message</b_path> | ||
6 | <c_attribute></c_attribute> | ||
7 | <d_old></d_old> | ||
8 | <e_new> | ||
9 | No tutorial is currently available. | ||
10 | </e_new> | ||
11 | <f_old_trans></f_old_trans> | ||
12 | <f_translation> | ||
13 | 現在利用可能なチュートリアルはありません。 | ||
14 | </f_translation> | ||
15 | </string><string><a_file>alerts.xml</a_file> | ||
16 | <b_path>//TutorialNotFound/OK</b_path> | ||
17 | <c_attribute></c_attribute> | ||
18 | <d_old></d_old> | ||
19 | <e_new> | ||
20 | OK | ||
21 | </e_new> | ||
22 | <f_old_trans></f_old_trans> | ||
23 | <f_translation> | ||
24 | OK | ||
25 | </f_translation> | ||
26 | </string><string><a_file>alerts.xml</a_file> | ||
27 | <b_path>//FreezeAvatarFullname/message</b_path> | ||
28 | <c_attribute></c_attribute> | ||
29 | <d_old></d_old> | ||
30 | <e_new> | ||
31 | Freeze [AVATAR_NAME]? | ||
32 | He or she will temporarily be unable to move, | ||
33 | chat, or interact with the world. | ||
34 | </e_new> | ||
35 | <f_old_trans></f_old_trans> | ||
36 | <f_translation> | ||
37 | [AVATAR_NAME]をフリーズしますか? | ||
38 | フリーズされた人は一時的に動けなくなり、チャットなど、この世界に対する関わりを持つことができなくなります。 | ||
39 | </f_translation> | ||
40 | </string><string><a_file>alerts.xml</a_file> | ||
41 | <b_path>//FreezeAvatarFullname/Freeze</b_path> | ||
42 | <c_attribute></c_attribute> | ||
43 | <d_old></d_old> | ||
44 | <e_new> | ||
45 | Freeze | ||
46 | </e_new> | ||
47 | <f_old_trans></f_old_trans> | ||
48 | <f_translation> | ||
49 | フリーズ | ||
50 | </f_translation> | ||
51 | </string><string><a_file>alerts.xml</a_file> | ||
52 | <b_path>//FreezeAvatarFullname/Unfreeze</b_path> | ||
53 | <c_attribute></c_attribute> | ||
54 | <d_old></d_old> | ||
55 | <e_new> | ||
56 | Unfreeze | ||
57 | </e_new> | ||
58 | <f_old_trans></f_old_trans> | ||
59 | <f_translation> | ||
60 | 解凍 | ||
61 | </f_translation> | ||
62 | </string><string><a_file>alerts.xml</a_file> | ||
63 | <b_path>//FreezeAvatarFullname/Cancel</b_path> | ||
64 | <c_attribute></c_attribute> | ||
65 | <d_old></d_old> | ||
66 | <e_new> | ||
67 | Cancel | ||
68 | </e_new> | ||
69 | <f_old_trans></f_old_trans> | ||
70 | <f_translation> | ||
71 | キャンセル | ||
72 | </f_translation> | ||
73 | </string><string><a_file>alerts.xml</a_file> | ||
74 | <b_path>//EjectAvatarFullname/message</b_path> | ||
75 | <c_attribute></c_attribute> | ||
76 | <d_old></d_old> | ||
77 | <e_new> | ||
78 | Eject [AVATAR_NAME] from your land? | ||
79 | </e_new> | ||
80 | <f_old_trans></f_old_trans> | ||
81 | <f_translation> | ||
82 | あなたの土地から[AVATAR_NAME]を追放しますか? | ||
83 | </f_translation> | ||
84 | </string><string><a_file>alerts.xml</a_file> | ||
85 | <b_path>//EjectAvatarFullname/Eject</b_path> | ||
86 | <c_attribute></c_attribute> | ||
87 | <d_old></d_old> | ||
88 | <e_new> | ||
89 | Eject | ||
90 | </e_new> | ||
91 | <f_old_trans></f_old_trans> | ||
92 | <f_translation> | ||
93 | 追放 | ||
94 | </f_translation> | ||
95 | </string><string><a_file>alerts.xml</a_file> | ||
96 | <b_path>//EjectAvatarFullname/EjectandBan</b_path> | ||
97 | <c_attribute></c_attribute> | ||
98 | <d_old></d_old> | ||
99 | <e_new> | ||
100 | Eject and Ban | ||
101 | </e_new> | ||
102 | <f_old_trans></f_old_trans> | ||
103 | <f_translation> | ||
104 | 追放と禁止 | ||
105 | </f_translation> | ||
106 | </string><string><a_file>alerts.xml</a_file> | ||
107 | <b_path>//EjectAvatarFullname/Cancel</b_path> | ||
108 | <c_attribute></c_attribute> | ||
109 | <d_old></d_old> | ||
110 | <e_new> | ||
111 | Cancel | ||
112 | </e_new> | ||
113 | <f_old_trans></f_old_trans> | ||
114 | <f_translation> | ||
115 | キャンセル | ||
116 | </f_translation> | ||
117 | </string><string><a_file>alerts.xml</a_file> | ||
118 | <b_path>//SeachFilteredOnShortWords/message</b_path> | ||
119 | <c_attribute></c_attribute> | ||
120 | <d_old></d_old> | ||
121 | <e_new> | ||
122 | Your search query was modified and the | ||
123 | words that were too short were removed. | ||
124 | |||
125 | Searched for: [FINALQUERY] | ||
126 | </e_new> | ||
127 | <f_old_trans></f_old_trans> | ||
128 | <f_translation> | ||
129 | 指定した検索クエリは変更され、短すぎる語句は取り除かれています。 | ||
130 | |||
131 | 検索語句: [FINALQUERY] | ||
132 | </f_translation> | ||
133 | </string><string><a_file>alerts.xml</a_file> | ||
134 | <b_path>//SeachFilteredOnShortWordsEmpty/message</b_path> | ||
135 | <c_attribute></c_attribute> | ||
136 | <d_old></d_old> | ||
137 | <e_new> | ||
138 | Your search terms were too short | ||
139 | so no search was performed. | ||
140 | </e_new> | ||
141 | <f_old_trans></f_old_trans> | ||
142 | <f_translation> | ||
143 | 指定した検索語句が短すぎたため、検索は行われませんでした。 | ||
144 | </f_translation> | ||
145 | </string><string><a_file>alerts.xml</a_file> | ||
146 | <b_path>//CannotCloseFloaterBuyLand/message</b_path> | ||
147 | <c_attribute></c_attribute> | ||
148 | <d_old></d_old> | ||
149 | <e_new> | ||
150 | You cannot close the Buy Land window until Second Life | ||
151 | estimates the price of this transaction. | ||
152 | </e_new> | ||
153 | <f_old_trans></f_old_trans> | ||
154 | <f_translation> | ||
155 | Second Lifeによるこの取引の見積りが完了するまで[土地を購入]ウィンドウを閉じることはできません。 | ||
156 | </f_translation> | ||
157 | </string><string><a_file>alerts.xml</a_file> | ||
158 | <b_path>//MaxAgentOnRegionBatch/message</b_path> | ||
159 | <c_attribute></c_attribute> | ||
160 | <d_old></d_old> | ||
161 | <e_new> | ||
162 | Failure while attempting to add [NUM_ADDED] agents: | ||
163 | Exceeds the [MAX_AGENTS] [LIST_TYPE] limit by [NUM_EXCESS]. | ||
164 | </e_new> | ||
165 | <f_old_trans></f_old_trans> | ||
166 | <f_translation> | ||
167 | [NUM_ADDED] 個のエージェントを追加しようとして失敗しました: [MAX_AGENTS] [LIST_TYPE] 制限を [NUM_EXCESS] 個超過しています。 | ||
168 | </f_translation> | ||
169 | </string><string><a_file>alerts.xml</a_file> | ||
170 | <b_path>//WebLaunchExternalTarget/message</b_path> | ||
171 | <c_attribute></c_attribute> | ||
172 | <d_old></d_old> | ||
173 | <e_new> | ||
174 | Open your system Web browser to view this content? | ||
175 | </e_new> | ||
176 | <f_old_trans></f_old_trans> | ||
177 | <f_translation> | ||
178 | お使いのシステムのウェブ・ブラウザーを開いて、この内容を表示しますか? | ||
179 | </f_translation> | ||
180 | </string><string><a_file>alerts.xml</a_file> | ||
181 | <b_path>//WebLaunchExternalTarget/ignore</b_path> | ||
182 | <c_attribute></c_attribute> | ||
183 | <d_old></d_old> | ||
184 | <e_new> | ||
185 | When opening your system browser to view a Web page | ||
186 | </e_new> | ||
187 | <f_old_trans></f_old_trans> | ||
188 | <f_translation> | ||
189 | お使いのシステムのブラウザーを開いてウェブ・ページを表示しようとしたとき | ||
190 | </f_translation> | ||
191 | </string><string><a_file>alerts.xml</a_file> | ||
192 | <b_path>//WebLaunchExternalTarget/Open</b_path> | ||
193 | <c_attribute></c_attribute> | ||
194 | <d_old></d_old> | ||
195 | <e_new> | ||
196 | OK | ||
197 | </e_new> | ||
198 | <f_old_trans></f_old_trans> | ||
199 | <f_translation> | ||
200 | OK | ||
201 | </f_translation> | ||
202 | </string><string><a_file>alerts.xml</a_file> | ||
203 | <b_path>//WebLaunchExternalTarget/Cancel</b_path> | ||
204 | <c_attribute></c_attribute> | ||
205 | <d_old></d_old> | ||
206 | <e_new> | ||
207 | Cancel | ||
208 | </e_new> | ||
209 | <f_old_trans></f_old_trans> | ||
210 | <f_translation> | ||
211 | キャンセル | ||
212 | </f_translation> | ||
213 | </string><string><a_file>alerts.xml</a_file> | ||
214 | <b_path>//ProblemAddingEstateGeneric/message</b_path> | ||
215 | <c_attribute></c_attribute> | ||
216 | <d_old></d_old> | ||
217 | <e_new> | ||
218 | Problems adding to this estate list. One or more estates may have a full list. | ||
219 | </e_new> | ||
220 | <f_old_trans></f_old_trans> | ||
221 | <f_translation> | ||
222 | 不動産リストの追加に関する問題。1つ以上の不動産で、リストが満杯になっています。 | ||
223 | </f_translation> | ||
224 | </string><string><a_file>alerts.xml</a_file> | ||
225 | <b_path>//ReplaceAttachment/ignore</b_path> | ||
226 | <c_attribute></c_attribute> | ||
227 | <d_old></d_old> | ||
228 | <e_new> | ||
229 | When replacing existing attachments | ||
230 | </e_new> | ||
231 | <f_old_trans></f_old_trans> | ||
232 | <f_translation> | ||
233 | 現在、装着しているものを置換するとき | ||
234 | </f_translation> | ||
235 | </string><string><a_file>alerts.xml</a_file> | ||
236 | <b_path>//BusyModePay/ignore</b_path> | ||
237 | <c_attribute></c_attribute> | ||
238 | <d_old></d_old> | ||
239 | <e_new> | ||
240 | When paying a person or object in busy mode | ||
241 | </e_new> | ||
242 | <f_old_trans></f_old_trans> | ||
243 | <f_translation> | ||
244 | ビジー・モードの人またはオブジェクトに支払うとき | ||
245 | </f_translation> | ||
246 | </string><string><a_file>floater_about_land.xml</a_file> | ||
247 | <b_path>/floaterland/landtab/land_objects_panel/owner list/type</b_path> | ||
248 | <c_attribute>label</c_attribute> | ||
249 | <d_old></d_old> | ||
250 | <e_new>Type</e_new> | ||
251 | <f_old_trans></f_old_trans> | ||
252 | <f_translation>タイプ</f_translation> | ||
253 | </string><string><a_file>floater_about_land.xml</a_file> | ||
254 | <b_path>/floaterland/landtab/land_objects_panel/owner list/name</b_path> | ||
255 | <c_attribute>label</c_attribute> | ||
256 | <d_old></d_old> | ||
257 | <e_new>Name</e_new> | ||
258 | <f_old_trans></f_old_trans> | ||
259 | <f_translation>名前</f_translation> | ||
260 | </string><string><a_file>floater_about_land.xml</a_file> | ||
261 | <b_path>/floaterland/landtab/land_objects_panel/owner list/count</b_path> | ||
262 | <c_attribute>label</c_attribute> | ||
263 | <d_old></d_old> | ||
264 | <e_new>Count</e_new> | ||
265 | <f_old_trans></f_old_trans> | ||
266 | <f_translation>カウント</f_translation> | ||
267 | </string><string><a_file>floater_active_speakers.xml</a_file> | ||
268 | <b_path>/active_speakers/active_speakers_panel/speakers_list/speaking_status</b_path> | ||
269 | <c_attribute>label</c_attribute> | ||
270 | <d_old></d_old> | ||
271 | <e_new></e_new> | ||
272 | <f_old_trans></f_old_trans> | ||
273 | <f_translation></f_translation> | ||
274 | </string><string><a_file>floater_avatar_textures.xml</a_file> | ||
275 | <b_path>/avatar_texture_debug/baked_label</b_path> | ||
276 | <c_attribute></c_attribute> | ||
277 | <d_old></d_old> | ||
278 | <e_new> | ||
279 | Baked Textures | ||
280 | </e_new> | ||
281 | <f_old_trans></f_old_trans> | ||
282 | <f_translation> | ||
283 | 構築されたテクスチャー | ||
284 | </f_translation> | ||
285 | </string><string><a_file>floater_avatar_textures.xml</a_file> | ||
286 | <b_path>/avatar_texture_debug/composite_label</b_path> | ||
287 | <c_attribute></c_attribute> | ||
288 | <d_old></d_old> | ||
289 | <e_new> | ||
290 | Composite Textures | ||
291 | </e_new> | ||
292 | <f_old_trans></f_old_trans> | ||
293 | <f_translation> | ||
294 | 合成テクスチャー | ||
295 | </f_translation> | ||
296 | </string><string><a_file>floater_buy_currency.xml</a_file> | ||
297 | <b_path>/buy currency/getting_data</b_path> | ||
298 | <c_attribute></c_attribute> | ||
299 | <d_old></d_old> | ||
300 | <e_new> | ||
301 | Getting data... | ||
302 | </e_new> | ||
303 | <f_old_trans></f_old_trans> | ||
304 | <f_translation> | ||
305 | データを取得しています... | ||
306 | </f_translation> | ||
307 | </string><string><a_file>floater_camera.xml</a_file> | ||
308 | <b_path>/move floater</b_path> | ||
309 | <c_attribute>title</c_attribute> | ||
310 | <d_old></d_old> | ||
311 | <e_new></e_new> | ||
312 | <f_old_trans></f_old_trans> | ||
313 | <f_translation></f_translation> | ||
314 | </string><string><a_file>floater_camera.xml</a_file> | ||
315 | <b_path>/move floater/rotate_tooltip</b_path> | ||
316 | <c_attribute></c_attribute> | ||
317 | <d_old></d_old> | ||
318 | <e_new>Rotate Camera Around Focus</e_new> | ||
319 | <f_old_trans></f_old_trans> | ||
320 | <f_translation>フォーカスを中心にカメラを回転</f_translation> | ||
321 | </string><string><a_file>floater_camera.xml</a_file> | ||
322 | <b_path>/move floater/zoom_tooltip</b_path> | ||
323 | <c_attribute></c_attribute> | ||
324 | <d_old></d_old> | ||
325 | <e_new>Zoom Camera Towards Focus</e_new> | ||
326 | <f_old_trans></f_old_trans> | ||
327 | <f_translation>フォーカスに向けてカメラをズーム</f_translation> | ||
328 | </string><string><a_file>floater_camera.xml</a_file> | ||
329 | <b_path>/move floater/move_tooltip</b_path> | ||
330 | <c_attribute></c_attribute> | ||
331 | <d_old></d_old> | ||
332 | <e_new>Move Camera Up and Down, Left and Right</e_new> | ||
333 | <f_old_trans></f_old_trans> | ||
334 | <f_translation>カメラを上下左右に移動</f_translation> | ||
335 | </string><string><a_file>floater_chatterbox.xml</a_file> | ||
336 | <b_path>/floater_chatterbox</b_path> | ||
337 | <c_attribute>title</c_attribute> | ||
338 | <d_old></d_old> | ||
339 | <e_new>Communicate</e_new> | ||
340 | <f_old_trans></f_old_trans> | ||
341 | <f_translation>コミュニケーション</f_translation> | ||
342 | </string><string><a_file>floater_chat_history.xml</a_file> | ||
343 | <b_path>/chat floater/IM_logging_string</b_path> | ||
344 | <c_attribute></c_attribute> | ||
345 | <d_old></d_old> | ||
346 | <e_new> | ||
347 | -- Instant message logging enabled -- | ||
348 | </e_new> | ||
349 | <f_old_trans></f_old_trans> | ||
350 | <f_translation> | ||
351 | -- インスタント・メッセージのログ記録が有効 -- | ||
352 | </f_translation> | ||
353 | </string><string><a_file>floater_chat_history.xml</a_file> | ||
354 | <b_path>/chat floater/IM_end_log_string</b_path> | ||
355 | <c_attribute></c_attribute> | ||
356 | <d_old></d_old> | ||
357 | <e_new> | ||
358 | -- End of Log -- | ||
359 | </e_new> | ||
360 | <f_old_trans></f_old_trans> | ||
361 | <f_translation> | ||
362 | -- ログ記録終了 -- | ||
363 | </f_translation> | ||
364 | </string><string><a_file>floater_chat_history.xml</a_file> | ||
365 | <b_path>/chat floater/panels/im_contents_panel/Gesture</b_path> | ||
366 | <c_attribute>label</c_attribute> | ||
367 | <d_old></d_old> | ||
368 | <e_new>Gestures</e_new> | ||
369 | <f_old_trans></f_old_trans> | ||
370 | <f_translation>ジェスチャー</f_translation> | ||
371 | </string><string><a_file>floater_chat_history.xml</a_file> | ||
372 | <b_path>/chat floater/panels/im_contents_panel/Gesture/Gestures</b_path> | ||
373 | <c_attribute></c_attribute> | ||
374 | <d_old></d_old> | ||
375 | <e_new> | ||
376 | Gestures | ||
377 | </e_new> | ||
378 | <f_old_trans></f_old_trans> | ||
379 | <f_translation> | ||
380 | ジェスチャー | ||
381 | </f_translation> | ||
382 | </string><string><a_file>floater_chat_history.xml</a_file> | ||
383 | <b_path>/chat floater/panels/im_contents_panel/show mutes</b_path> | ||
384 | <c_attribute>label</c_attribute> | ||
385 | <d_old></d_old> | ||
386 | <e_new>Show Muted Text</e_new> | ||
387 | <f_old_trans></f_old_trans> | ||
388 | <f_translation>ミュートされたテキストを表示</f_translation> | ||
389 | </string><string><a_file>floater_chat_history.xml</a_file> | ||
390 | <b_path>/chat floater/panels/im_contents_panel/toggle_active_speakers_btn</b_path> | ||
391 | <c_attribute>label</c_attribute> | ||
392 | <d_old></d_old> | ||
393 | <e_new>< <</e_new> | ||
394 | <f_old_trans></f_old_trans> | ||
395 | <f_translation>< <</f_translation> | ||
396 | </string><string><a_file>floater_chat_history.xml</a_file> | ||
397 | <b_path>/chat floater/panels/im_contents_panel/toggle_active_speakers_btn</b_path> | ||
398 | <c_attribute>label_selected</c_attribute> | ||
399 | <d_old></d_old> | ||
400 | <e_new>> ></e_new> | ||
401 | <f_old_trans></f_old_trans> | ||
402 | <f_translation>> ></f_translation> | ||
403 | </string><string><a_file>floater_chat_history.xml</a_file> | ||
404 | <b_path>/chat floater/panels/im_contents_panel/toggle_active_speakers_btn</b_path> | ||
405 | <c_attribute>tool_tip</c_attribute> | ||
406 | <d_old></d_old> | ||
407 | <e_new>Click here to show list of active participants in this IM session.</e_new> | ||
408 | <f_old_trans></f_old_trans> | ||
409 | <f_translation>ここをクリックして、このIMセッションへのアクティブな参加者リストを表示。</f_translation> | ||
410 | </string><string><a_file>floater_chat_history.xml</a_file> | ||
411 | <b_path>/chat floater/panels/im_contents_panel/chat_panel/Chat Editor</b_path> | ||
412 | <c_attribute>label</c_attribute> | ||
413 | <d_old></d_old> | ||
414 | <e_new>Click here to chat.</e_new> | ||
415 | <f_old_trans></f_old_trans> | ||
416 | <f_translation>チャットを開始するには、ここをクリックします。</f_translation> | ||
417 | </string><string><a_file>floater_chat_history.xml</a_file> | ||
418 | <b_path>/chat floater/panels/im_contents_panel/chat_panel/Say</b_path> | ||
419 | <c_attribute>label</c_attribute> | ||
420 | <d_old></d_old> | ||
421 | <e_new>Say</e_new> | ||
422 | <f_old_trans></f_old_trans> | ||
423 | <f_translation>発言</f_translation> | ||
424 | </string><string><a_file>floater_chat_history.xml</a_file> | ||
425 | <b_path>/chat floater/panels/im_contents_panel/chat_panel/Say</b_path> | ||
426 | <c_attribute>tool_tip</c_attribute> | ||
427 | <d_old></d_old> | ||
428 | <e_new>(Enter)</e_new> | ||
429 | <f_old_trans></f_old_trans> | ||
430 | <f_translation>(Enter)</f_translation> | ||
431 | </string><string><a_file>floater_critical.xml</a_file> | ||
432 | <b_path>/modal container/tos_title</b_path> | ||
433 | <c_attribute></c_attribute> | ||
434 | <d_old></d_old> | ||
435 | <e_new> | ||
436 | Critical Message | ||
437 | </e_new> | ||
438 | <f_old_trans></f_old_trans> | ||
439 | <f_translation> | ||
440 | クリティカル・メッセージ | ||
441 | </f_translation> | ||
442 | </string><string><a_file>floater_customize.xml</a_file> | ||
443 | <b_path>/floater customize/customize tab container/body_parts_placeholder</b_path> | ||
444 | <c_attribute>label</c_attribute> | ||
445 | <d_old></d_old> | ||
446 | <e_new>Body Parts</e_new> | ||
447 | <f_old_trans></f_old_trans> | ||
448 | <f_translation>身体部位</f_translation> | ||
449 | </string><string><a_file>floater_customize.xml</a_file> | ||
450 | <b_path>/floater customize/customize tab container/clothes_placeholder</b_path> | ||
451 | <c_attribute>label</c_attribute> | ||
452 | <d_old></d_old> | ||
453 | <e_new>Clothes</e_new> | ||
454 | <f_old_trans></f_old_trans> | ||
455 | <f_translation>服</f_translation> | ||
456 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
457 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WLTimeSlider</b_path> | ||
458 | <c_attribute>label</c_attribute> | ||
459 | <d_old></d_old> | ||
460 | <e_new></e_new> | ||
461 | <f_old_trans></f_old_trans> | ||
462 | <f_translation></f_translation> | ||
463 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
464 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WLDayCycleKeys</b_path> | ||
465 | <c_attribute>label</c_attribute> | ||
466 | <d_old></d_old> | ||
467 | <e_new></e_new> | ||
468 | <f_old_trans></f_old_trans> | ||
469 | <f_translation></f_translation> | ||
470 | </string><string><a_file>floater_device_settings.xml</a_file> | ||
471 | <b_path>/floater_device_settings</b_path> | ||
472 | <c_attribute>title</c_attribute> | ||
473 | <d_old></d_old> | ||
474 | <e_new>Voice Chat Device Settings</e_new> | ||
475 | <f_old_trans></f_old_trans> | ||
476 | <f_translation>ボイスチャット機器の設定</f_translation> | ||
477 | </string><string><a_file>floater_directory.xml</a_file> | ||
478 | <b_path>/directory/Directory Tabs/find_all_old_panel/results/icon</b_path> | ||
479 | <c_attribute>label</c_attribute> | ||
480 | <d_old></d_old> | ||
481 | <e_new></e_new> | ||
482 | <f_old_trans></f_old_trans> | ||
483 | <f_translation></f_translation> | ||
484 | </string><string><a_file>floater_env_settings.xml</a_file> | ||
485 | <b_path>/Environment Editor Floater/EnvTimeSlider</b_path> | ||
486 | <c_attribute>label</c_attribute> | ||
487 | <d_old></d_old> | ||
488 | <e_new></e_new> | ||
489 | <f_old_trans></f_old_trans> | ||
490 | <f_translation></f_translation> | ||
491 | </string><string><a_file>floater_env_settings.xml</a_file> | ||
492 | <b_path>/Environment Editor Floater/EnvCloudSlider</b_path> | ||
493 | <c_attribute>label</c_attribute> | ||
494 | <d_old></d_old> | ||
495 | <e_new></e_new> | ||
496 | <f_old_trans></f_old_trans> | ||
497 | <f_translation></f_translation> | ||
498 | </string><string><a_file>floater_env_settings.xml</a_file> | ||
499 | <b_path>/Environment Editor Floater/EnvWaterFogSlider</b_path> | ||
500 | <c_attribute>label</c_attribute> | ||
501 | <d_old></d_old> | ||
502 | <e_new></e_new> | ||
503 | <f_old_trans></f_old_trans> | ||
504 | <f_translation></f_translation> | ||
505 | </string><string><a_file>floater_groups.xml</a_file> | ||
506 | <b_path>/groups/group list/name</b_path> | ||
507 | <c_attribute>label</c_attribute> | ||
508 | <d_old></d_old> | ||
509 | <e_new></e_new> | ||
510 | <f_old_trans></f_old_trans> | ||
511 | <f_translation></f_translation> | ||
512 | </string><string><a_file>floater_hardware_settings.xml</a_file> | ||
513 | <b_path>/Hardware Settings Floater/Antialiasing:</b_path> | ||
514 | <c_attribute></c_attribute> | ||
515 | <d_old></d_old> | ||
516 | <e_new> | ||
517 | Antialiasing: | ||
518 | </e_new> | ||
519 | <f_old_trans></f_old_trans> | ||
520 | <f_translation> | ||
521 | アンチエイリアシング: | ||
522 | </f_translation> | ||
523 | </string><string><a_file>floater_hardware_settings.xml</a_file> | ||
524 | <b_path>/Hardware Settings Floater/fsaa</b_path> | ||
525 | <c_attribute>label</c_attribute> | ||
526 | <d_old></d_old> | ||
527 | <e_new>Antialiasing</e_new> | ||
528 | <f_old_trans></f_old_trans> | ||
529 | <f_translation>アンチエイリアシング</f_translation> | ||
530 | </string><string><a_file>floater_hardware_settings.xml</a_file> | ||
531 | <b_path>/Hardware Settings Floater/fsaa/FSAADisabled</b_path> | ||
532 | <c_attribute></c_attribute> | ||
533 | <d_old></d_old> | ||
534 | <e_new> | ||
535 | Disabled | ||
536 | </e_new> | ||
537 | <f_old_trans></f_old_trans> | ||
538 | <f_translation> | ||
539 | 無効 | ||
540 | </f_translation> | ||
541 | </string><string><a_file>floater_hardware_settings.xml</a_file> | ||
542 | <b_path>/Hardware Settings Floater/fsaa/2x</b_path> | ||
543 | <c_attribute></c_attribute> | ||
544 | <d_old></d_old> | ||
545 | <e_new> | ||
546 | 2x | ||
547 | </e_new> | ||
548 | <f_old_trans></f_old_trans> | ||
549 | <f_translation> | ||
550 | 2x | ||
551 | </f_translation> | ||
552 | </string><string><a_file>floater_hardware_settings.xml</a_file> | ||
553 | <b_path>/Hardware Settings Floater/fsaa/4x</b_path> | ||
554 | <c_attribute></c_attribute> | ||
555 | <d_old></d_old> | ||
556 | <e_new> | ||
557 | 4x | ||
558 | </e_new> | ||
559 | <f_old_trans></f_old_trans> | ||
560 | <f_translation> | ||
561 | 4x | ||
562 | </f_translation> | ||
563 | </string><string><a_file>floater_hardware_settings.xml</a_file> | ||
564 | <b_path>/Hardware Settings Floater/fsaa/8x</b_path> | ||
565 | <c_attribute></c_attribute> | ||
566 | <d_old></d_old> | ||
567 | <e_new> | ||
568 | 8x | ||
569 | </e_new> | ||
570 | <f_old_trans></f_old_trans> | ||
571 | <f_translation> | ||
572 | 8x | ||
573 | </f_translation> | ||
574 | </string><string><a_file>floater_hardware_settings.xml</a_file> | ||
575 | <b_path>/Hardware Settings Floater/fsaa/16x</b_path> | ||
576 | <c_attribute></c_attribute> | ||
577 | <d_old></d_old> | ||
578 | <e_new> | ||
579 | 16x | ||
580 | </e_new> | ||
581 | <f_old_trans></f_old_trans> | ||
582 | <f_translation> | ||
583 | 16x | ||
584 | </f_translation> | ||
585 | </string><string><a_file>floater_hud.xml</a_file> | ||
586 | <b_path>/floater_hud</b_path> | ||
587 | <c_attribute>title</c_attribute> | ||
588 | <d_old></d_old> | ||
589 | <e_new>Tutorial</e_new> | ||
590 | <f_old_trans></f_old_trans> | ||
591 | <f_translation>チュートリアル</f_translation> | ||
592 | </string><string><a_file>floater_joystick.xml</a_file> | ||
593 | <b_path>/Joystick</b_path> | ||
594 | <c_attribute>title</c_attribute> | ||
595 | <d_old></d_old> | ||
596 | <e_new>Joystick Configuration</e_new> | ||
597 | <f_old_trans></f_old_trans> | ||
598 | <f_translation>ジョイスティックの設定</f_translation> | ||
599 | </string><string><a_file>floater_joystick.xml</a_file> | ||
600 | <b_path>/Joystick/JoystickAxis1</b_path> | ||
601 | <c_attribute>label</c_attribute> | ||
602 | <d_old></d_old> | ||
603 | <e_new>X Axis Mapping</e_new> | ||
604 | <f_old_trans></f_old_trans> | ||
605 | <f_translation>X軸マッピング</f_translation> | ||
606 | </string><string><a_file>floater_joystick.xml</a_file> | ||
607 | <b_path>/Joystick/JoystickAxis2</b_path> | ||
608 | <c_attribute>label</c_attribute> | ||
609 | <d_old></d_old> | ||
610 | <e_new>Y Axis Mapping</e_new> | ||
611 | <f_old_trans></f_old_trans> | ||
612 | <f_translation>Y軸マッピング</f_translation> | ||
613 | </string><string><a_file>floater_joystick.xml</a_file> | ||
614 | <b_path>/Joystick/JoystickAxis0</b_path> | ||
615 | <c_attribute>label</c_attribute> | ||
616 | <d_old></d_old> | ||
617 | <e_new>Z Axis Mapping</e_new> | ||
618 | <f_old_trans></f_old_trans> | ||
619 | <f_translation>Z軸マッピング</f_translation> | ||
620 | </string><string><a_file>floater_joystick.xml</a_file> | ||
621 | <b_path>/Joystick/JoystickAxis4</b_path> | ||
622 | <c_attribute>label</c_attribute> | ||
623 | <d_old></d_old> | ||
624 | <e_new>Pitch Mapping</e_new> | ||
625 | <f_old_trans></f_old_trans> | ||
626 | <f_translation>ピッチ・マッピング</f_translation> | ||
627 | </string><string><a_file>floater_joystick.xml</a_file> | ||
628 | <b_path>/Joystick/JoystickAxis5</b_path> | ||
629 | <c_attribute>label</c_attribute> | ||
630 | <d_old></d_old> | ||
631 | <e_new>Yaw Mapping</e_new> | ||
632 | <f_old_trans></f_old_trans> | ||
633 | <f_translation>ヨー・マッピング</f_translation> | ||
634 | </string><string><a_file>floater_joystick.xml</a_file> | ||
635 | <b_path>/Joystick/JoystickAxis3</b_path> | ||
636 | <c_attribute>label</c_attribute> | ||
637 | <d_old></d_old> | ||
638 | <e_new>Roll Mapping</e_new> | ||
639 | <f_old_trans></f_old_trans> | ||
640 | <f_translation>ロール・マッピング</f_translation> | ||
641 | </string><string><a_file>floater_joystick.xml</a_file> | ||
642 | <b_path>/Joystick/JoystickAxis6</b_path> | ||
643 | <c_attribute>label</c_attribute> | ||
644 | <d_old></d_old> | ||
645 | <e_new>Zoom Mapping</e_new> | ||
646 | <f_old_trans></f_old_trans> | ||
647 | <f_translation>ズーム・マッピング</f_translation> | ||
648 | </string><string><a_file>floater_joystick.xml</a_file> | ||
649 | <b_path>/Joystick/ZoomDirect</b_path> | ||
650 | <c_attribute>label</c_attribute> | ||
651 | <d_old></d_old> | ||
652 | <e_new>Direct Zoom</e_new> | ||
653 | <f_old_trans></f_old_trans> | ||
654 | <f_translation>直接ズーム</f_translation> | ||
655 | </string><string><a_file>floater_joystick.xml</a_file> | ||
656 | <b_path>/Joystick/Cursor3D</b_path> | ||
657 | <c_attribute>label</c_attribute> | ||
658 | <d_old></d_old> | ||
659 | <e_new>3D Cursor</e_new> | ||
660 | <f_old_trans></f_old_trans> | ||
661 | <f_translation>3Dカーソル</f_translation> | ||
662 | </string><string><a_file>floater_joystick.xml</a_file> | ||
663 | <b_path>/Joystick/AutoLeveling</b_path> | ||
664 | <c_attribute>label</c_attribute> | ||
665 | <d_old></d_old> | ||
666 | <e_new>Auto Level</e_new> | ||
667 | <f_old_trans></f_old_trans> | ||
668 | <f_translation>自動レベル</f_translation> | ||
669 | </string><string><a_file>floater_joystick.xml</a_file> | ||
670 | <b_path>/Joystick/Control Modes:</b_path> | ||
671 | <c_attribute></c_attribute> | ||
672 | <d_old></d_old> | ||
673 | <e_new> | ||
674 | Control Modes: | ||
675 | </e_new> | ||
676 | <f_old_trans></f_old_trans> | ||
677 | <f_translation> | ||
678 | 制御モード: | ||
679 | </f_translation> | ||
680 | </string><string><a_file>floater_joystick.xml</a_file> | ||
681 | <b_path>/Joystick/XScale</b_path> | ||
682 | <c_attribute></c_attribute> | ||
683 | <d_old></d_old> | ||
684 | <e_new>X Scale</e_new> | ||
685 | <f_old_trans></f_old_trans> | ||
686 | <f_translation>Xスケール</f_translation> | ||
687 | </string><string><a_file>floater_joystick.xml</a_file> | ||
688 | <b_path>/Joystick/YScale</b_path> | ||
689 | <c_attribute></c_attribute> | ||
690 | <d_old></d_old> | ||
691 | <e_new>Y Scale</e_new> | ||
692 | <f_old_trans></f_old_trans> | ||
693 | <f_translation>Yスケール</f_translation> | ||
694 | </string><string><a_file>floater_joystick.xml</a_file> | ||
695 | <b_path>/Joystick/ZScale</b_path> | ||
696 | <c_attribute></c_attribute> | ||
697 | <d_old></d_old> | ||
698 | <e_new>Z Scale</e_new> | ||
699 | <f_old_trans></f_old_trans> | ||
700 | <f_translation>Zスケール</f_translation> | ||
701 | </string><string><a_file>floater_joystick.xml</a_file> | ||
702 | <b_path>/Joystick/PitchScale</b_path> | ||
703 | <c_attribute></c_attribute> | ||
704 | <d_old></d_old> | ||
705 | <e_new>Pitch Scale</e_new> | ||
706 | <f_old_trans></f_old_trans> | ||
707 | <f_translation>ピッチ・スケール</f_translation> | ||
708 | </string><string><a_file>floater_joystick.xml</a_file> | ||
709 | <b_path>/Joystick/YawScale</b_path> | ||
710 | <c_attribute></c_attribute> | ||
711 | <d_old></d_old> | ||
712 | <e_new>Yaw Scale</e_new> | ||
713 | <f_old_trans></f_old_trans> | ||
714 | <f_translation>ヨー・スケール</f_translation> | ||
715 | </string><string><a_file>floater_joystick.xml</a_file> | ||
716 | <b_path>/Joystick/RollScale</b_path> | ||
717 | <c_attribute></c_attribute> | ||
718 | <d_old></d_old> | ||
719 | <e_new>Roll Scale</e_new> | ||
720 | <f_old_trans></f_old_trans> | ||
721 | <f_translation>ロール・スケール</f_translation> | ||
722 | </string><string><a_file>floater_joystick.xml</a_file> | ||
723 | <b_path>/Joystick/XDeadZone</b_path> | ||
724 | <c_attribute></c_attribute> | ||
725 | <d_old></d_old> | ||
726 | <e_new>X Dead Zone</e_new> | ||
727 | <f_old_trans></f_old_trans> | ||
728 | <f_translation>Xデッド・ゾーン</f_translation> | ||
729 | </string><string><a_file>floater_joystick.xml</a_file> | ||
730 | <b_path>/Joystick/YDeadZone</b_path> | ||
731 | <c_attribute></c_attribute> | ||
732 | <d_old></d_old> | ||
733 | <e_new>Y Dead Zone</e_new> | ||
734 | <f_old_trans></f_old_trans> | ||
735 | <f_translation>Yデッド・ゾーン</f_translation> | ||
736 | </string><string><a_file>floater_joystick.xml</a_file> | ||
737 | <b_path>/Joystick/ZDeadZone</b_path> | ||
738 | <c_attribute></c_attribute> | ||
739 | <d_old></d_old> | ||
740 | <e_new>Z Dead Zone</e_new> | ||
741 | <f_old_trans></f_old_trans> | ||
742 | <f_translation>Zデッド・ゾーン</f_translation> | ||
743 | </string><string><a_file>floater_joystick.xml</a_file> | ||
744 | <b_path>/Joystick/PitchDeadZone</b_path> | ||
745 | <c_attribute></c_attribute> | ||
746 | <d_old></d_old> | ||
747 | <e_new>Pitch Dead Zone</e_new> | ||
748 | <f_old_trans></f_old_trans> | ||
749 | <f_translation>ピッチ・デッド・ゾーン</f_translation> | ||
750 | </string><string><a_file>floater_joystick.xml</a_file> | ||
751 | <b_path>/Joystick/YawDeadZone</b_path> | ||
752 | <c_attribute></c_attribute> | ||
753 | <d_old></d_old> | ||
754 | <e_new>Yaw Dead Zone</e_new> | ||
755 | <f_old_trans></f_old_trans> | ||
756 | <f_translation>ヨー・デッド・ゾーン</f_translation> | ||
757 | </string><string><a_file>floater_joystick.xml</a_file> | ||
758 | <b_path>/Joystick/RollDeadZone</b_path> | ||
759 | <c_attribute></c_attribute> | ||
760 | <d_old></d_old> | ||
761 | <e_new>Roll Dead Zone</e_new> | ||
762 | <f_old_trans></f_old_trans> | ||
763 | <f_translation>ロール・デッド・ゾーン</f_translation> | ||
764 | </string><string><a_file>floater_joystick.xml</a_file> | ||
765 | <b_path>/Joystick/Feathering</b_path> | ||
766 | <c_attribute></c_attribute> | ||
767 | <d_old></d_old> | ||
768 | <e_new>Feathering</e_new> | ||
769 | <f_old_trans></f_old_trans> | ||
770 | <f_translation>羽毛</f_translation> | ||
771 | </string><string><a_file>floater_joystick.xml</a_file> | ||
772 | <b_path>/Joystick/AvatarFeathering</b_path> | ||
773 | <c_attribute>label</c_attribute> | ||
774 | <d_old></d_old> | ||
775 | <e_new></e_new> | ||
776 | <f_old_trans></f_old_trans> | ||
777 | <f_translation></f_translation> | ||
778 | </string><string><a_file>floater_joystick.xml</a_file> | ||
779 | <b_path>/Joystick/BuildFeathering</b_path> | ||
780 | <c_attribute>label</c_attribute> | ||
781 | <d_old></d_old> | ||
782 | <e_new></e_new> | ||
783 | <f_old_trans></f_old_trans> | ||
784 | <f_translation></f_translation> | ||
785 | </string><string><a_file>floater_joystick.xml</a_file> | ||
786 | <b_path>/Joystick/FlycamFeathering</b_path> | ||
787 | <c_attribute>label</c_attribute> | ||
788 | <d_old></d_old> | ||
789 | <e_new></e_new> | ||
790 | <f_old_trans></f_old_trans> | ||
791 | <f_translation></f_translation> | ||
792 | </string><string><a_file>floater_joystick.xml</a_file> | ||
793 | <b_path>/Joystick/ZoomScale2</b_path> | ||
794 | <c_attribute></c_attribute> | ||
795 | <d_old></d_old> | ||
796 | <e_new>Zoom Scale</e_new> | ||
797 | <f_old_trans></f_old_trans> | ||
798 | <f_translation>ズーム・スケール</f_translation> | ||
799 | </string><string><a_file>floater_joystick.xml</a_file> | ||
800 | <b_path>/Joystick/FlycamAxisScale6</b_path> | ||
801 | <c_attribute>label</c_attribute> | ||
802 | <d_old></d_old> | ||
803 | <e_new></e_new> | ||
804 | <f_old_trans></f_old_trans> | ||
805 | <f_translation></f_translation> | ||
806 | </string><string><a_file>floater_joystick.xml</a_file> | ||
807 | <b_path>/Joystick/ZoomDeadZone</b_path> | ||
808 | <c_attribute></c_attribute> | ||
809 | <d_old></d_old> | ||
810 | <e_new>Zoom Dead Zone</e_new> | ||
811 | <f_old_trans></f_old_trans> | ||
812 | <f_translation>ズーム・デッド・ゾーン</f_translation> | ||
813 | </string><string><a_file>floater_joystick.xml</a_file> | ||
814 | <b_path>/Joystick/FlycamAxisDeadZone6</b_path> | ||
815 | <c_attribute>label</c_attribute> | ||
816 | <d_old></d_old> | ||
817 | <e_new></e_new> | ||
818 | <f_old_trans></f_old_trans> | ||
819 | <f_translation></f_translation> | ||
820 | </string><string><a_file>floater_joystick.xml</a_file> | ||
821 | <b_path>/Joystick/SpaceNavigatorDefaults</b_path> | ||
822 | <c_attribute>label</c_attribute> | ||
823 | <d_old></d_old> | ||
824 | <e_new>SpaceNavigator Defaults</e_new> | ||
825 | <f_old_trans></f_old_trans> | ||
826 | <f_translation>SpaceNavigatorのデフォルト設定</f_translation> | ||
827 | </string><string><a_file>floater_joystick.xml</a_file> | ||
828 | <b_path>/Joystick/JoystickMonitor</b_path> | ||
829 | <c_attribute></c_attribute> | ||
830 | <d_old></d_old> | ||
831 | <e_new>Joystick Monitor</e_new> | ||
832 | <f_old_trans></f_old_trans> | ||
833 | <f_translation>ジョイスティック・モニター</f_translation> | ||
834 | </string><string><a_file>floater_joystick.xml</a_file> | ||
835 | <b_path>/Joystick/Axis</b_path> | ||
836 | <c_attribute></c_attribute> | ||
837 | <d_old></d_old> | ||
838 | <e_new>Axis [NUM]</e_new> | ||
839 | <f_old_trans></f_old_trans> | ||
840 | <f_translation>軸 [NUM]</f_translation> | ||
841 | </string><string><a_file>floater_joystick.xml</a_file> | ||
842 | <b_path>/Joystick/NoDevice</b_path> | ||
843 | <c_attribute></c_attribute> | ||
844 | <d_old></d_old> | ||
845 | <e_new>no device detected</e_new> | ||
846 | <f_old_trans></f_old_trans> | ||
847 | <f_translation>デバイスは検出されませんでした</f_translation> | ||
848 | </string><string><a_file>floater_post_process.xml</a_file> | ||
849 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiColorFilterPanel/wmiColorFilterBrightness</b_path> | ||
850 | <c_attribute>label</c_attribute> | ||
851 | <d_old></d_old> | ||
852 | <e_new></e_new> | ||
853 | <f_old_trans></f_old_trans> | ||
854 | <f_translation></f_translation> | ||
855 | </string><string><a_file>floater_post_process.xml</a_file> | ||
856 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiColorFilterPanel/wmiColorFilterSaturation</b_path> | ||
857 | <c_attribute>label</c_attribute> | ||
858 | <d_old></d_old> | ||
859 | <e_new></e_new> | ||
860 | <f_old_trans></f_old_trans> | ||
861 | <f_translation></f_translation> | ||
862 | </string><string><a_file>floater_post_process.xml</a_file> | ||
863 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiColorFilterPanel/wmiColorFilterContrast</b_path> | ||
864 | <c_attribute>label</c_attribute> | ||
865 | <d_old></d_old> | ||
866 | <e_new></e_new> | ||
867 | <f_old_trans></f_old_trans> | ||
868 | <f_translation></f_translation> | ||
869 | </string><string><a_file>floater_post_process.xml</a_file> | ||
870 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiNightVisionPanel/wmiNightVisionBrightMult</b_path> | ||
871 | <c_attribute>label</c_attribute> | ||
872 | <d_old></d_old> | ||
873 | <e_new></e_new> | ||
874 | <f_old_trans></f_old_trans> | ||
875 | <f_translation></f_translation> | ||
876 | </string><string><a_file>floater_post_process.xml</a_file> | ||
877 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiNightVisionPanel/wmiNightVisionNoiseSize</b_path> | ||
878 | <c_attribute>label</c_attribute> | ||
879 | <d_old></d_old> | ||
880 | <e_new></e_new> | ||
881 | <f_old_trans></f_old_trans> | ||
882 | <f_translation></f_translation> | ||
883 | </string><string><a_file>floater_post_process.xml</a_file> | ||
884 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiNightVisionPanel/wmiNightVisionNoiseStrength</b_path> | ||
885 | <c_attribute>label</c_attribute> | ||
886 | <d_old></d_old> | ||
887 | <e_new></e_new> | ||
888 | <f_old_trans></f_old_trans> | ||
889 | <f_translation></f_translation> | ||
890 | </string><string><a_file>floater_post_process.xml</a_file> | ||
891 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiBloomPanel/wmiBloomExtract</b_path> | ||
892 | <c_attribute>label</c_attribute> | ||
893 | <d_old></d_old> | ||
894 | <e_new></e_new> | ||
895 | <f_old_trans></f_old_trans> | ||
896 | <f_translation></f_translation> | ||
897 | </string><string><a_file>floater_post_process.xml</a_file> | ||
898 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiBloomPanel/wmiBloomSize</b_path> | ||
899 | <c_attribute>label</c_attribute> | ||
900 | <d_old></d_old> | ||
901 | <e_new></e_new> | ||
902 | <f_old_trans></f_old_trans> | ||
903 | <f_translation></f_translation> | ||
904 | </string><string><a_file>floater_post_process.xml</a_file> | ||
905 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiBloomPanel/wmiBloomStrength</b_path> | ||
906 | <c_attribute>label</c_attribute> | ||
907 | <d_old></d_old> | ||
908 | <e_new></e_new> | ||
909 | <f_old_trans></f_old_trans> | ||
910 | <f_translation></f_translation> | ||
911 | </string><string><a_file>floater_preview_classified.xml</a_file> | ||
912 | <b_path>/classified_preview</b_path> | ||
913 | <c_attribute>title</c_attribute> | ||
914 | <d_old></d_old> | ||
915 | <e_new>Classified Information</e_new> | ||
916 | <f_old_trans></f_old_trans> | ||
917 | <f_translation>クラシファイド広告情報</f_translation> | ||
918 | </string><string><a_file>floater_preview_event.xml</a_file> | ||
919 | <b_path>/event_preview</b_path> | ||
920 | <c_attribute>title</c_attribute> | ||
921 | <d_old></d_old> | ||
922 | <e_new>Event Information</e_new> | ||
923 | <f_old_trans></f_old_trans> | ||
924 | <f_translation>イベント情報</f_translation> | ||
925 | </string><string><a_file>floater_preview_gesture.xml</a_file> | ||
926 | <b_path>/gesture_preview/library_label</b_path> | ||
927 | <c_attribute></c_attribute> | ||
928 | <d_old></d_old> | ||
929 | <e_new> | ||
930 | Library: | ||
931 | </e_new> | ||
932 | <f_old_trans></f_old_trans> | ||
933 | <f_translation> | ||
934 | ライブラリ: | ||
935 | </f_translation> | ||
936 | </string><string><a_file>floater_preview_gesture.xml</a_file> | ||
937 | <b_path>/gesture_preview/steps_label</b_path> | ||
938 | <c_attribute></c_attribute> | ||
939 | <d_old></d_old> | ||
940 | <e_new> | ||
941 | Steps: | ||
942 | </e_new> | ||
943 | <f_old_trans></f_old_trans> | ||
944 | <f_translation> | ||
945 | 手順: | ||
946 | </f_translation> | ||
947 | </string><string><a_file>floater_preview_gesture.xml</a_file> | ||
948 | <b_path>/gesture_preview/animation_trigger_type/start</b_path> | ||
949 | <c_attribute></c_attribute> | ||
950 | <d_old></d_old> | ||
951 | <e_new> | ||
952 | Start | ||
953 | </e_new> | ||
954 | <f_old_trans></f_old_trans> | ||
955 | <f_translation> | ||
956 | 開始 | ||
957 | </f_translation> | ||
958 | </string><string><a_file>floater_preview_gesture.xml</a_file> | ||
959 | <b_path>/gesture_preview/animation_trigger_type/stop</b_path> | ||
960 | <c_attribute></c_attribute> | ||
961 | <d_old></d_old> | ||
962 | <e_new> | ||
963 | Stop | ||
964 | </e_new> | ||
965 | <f_old_trans></f_old_trans> | ||
966 | <f_translation> | ||
967 | 停止 | ||
968 | </f_translation> | ||
969 | </string><string><a_file>floater_preview_notecard_keep_discard.xml</a_file> | ||
970 | <b_path>/preview_notecard/not_allowed</b_path> | ||
971 | <c_attribute></c_attribute> | ||
972 | <d_old></d_old> | ||
973 | <e_new>You are not allowed to view this note.</e_new> | ||
974 | <f_old_trans></f_old_trans> | ||
975 | <f_translation>あなたはこのノートを見ることができません。</f_translation> | ||
976 | </string><string><a_file>floater_preview_url.xml</a_file> | ||
977 | <b_path>/url_preview</b_path> | ||
978 | <c_attribute>title</c_attribute> | ||
979 | <d_old></d_old> | ||
980 | <e_new>Place Information</e_new> | ||
981 | <f_old_trans></f_old_trans> | ||
982 | <f_translation>場所の情報</f_translation> | ||
983 | </string><string><a_file>floater_region_info.xml</a_file> | ||
984 | <b_path>/regioninfo</b_path> | ||
985 | <c_attribute>title</c_attribute> | ||
986 | <d_old></d_old> | ||
987 | <e_new>Region/Estate</e_new> | ||
988 | <f_old_trans></f_old_trans> | ||
989 | <f_translation>地域/不動産</f_translation> | ||
990 | </string><string><a_file>floater_tools.xml</a_file> | ||
991 | <b_path>/toolbox floater/ToolCube</b_path> | ||
992 | <c_attribute>tool_tip</c_attribute> | ||
993 | <d_old></d_old> | ||
994 | <e_new>Cube</e_new> | ||
995 | <f_old_trans></f_old_trans> | ||
996 | <f_translation>キューブ</f_translation> | ||
997 | </string><string><a_file>floater_tools.xml</a_file> | ||
998 | <b_path>/toolbox floater/ToolPrism</b_path> | ||
999 | <c_attribute>tool_tip</c_attribute> | ||
1000 | <d_old></d_old> | ||
1001 | <e_new>Prism</e_new> | ||
1002 | <f_old_trans></f_old_trans> | ||
1003 | <f_translation>プリズム</f_translation> | ||
1004 | </string><string><a_file>floater_tools.xml</a_file> | ||
1005 | <b_path>/toolbox floater/ToolPyramid</b_path> | ||
1006 | <c_attribute>tool_tip</c_attribute> | ||
1007 | <d_old></d_old> | ||
1008 | <e_new>Pyramid</e_new> | ||
1009 | <f_old_trans></f_old_trans> | ||
1010 | <f_translation>ピラミッド</f_translation> | ||
1011 | </string><string><a_file>floater_tools.xml</a_file> | ||
1012 | <b_path>/toolbox floater/ToolTetrahedron</b_path> | ||
1013 | <c_attribute>tool_tip</c_attribute> | ||
1014 | <d_old></d_old> | ||
1015 | <e_new>Tetrahedron</e_new> | ||
1016 | <f_old_trans></f_old_trans> | ||
1017 | <f_translation>4面体</f_translation> | ||
1018 | </string><string><a_file>floater_tools.xml</a_file> | ||
1019 | <b_path>/toolbox floater/ToolCylinder</b_path> | ||
1020 | <c_attribute>tool_tip</c_attribute> | ||
1021 | <d_old></d_old> | ||
1022 | <e_new>Cylinder</e_new> | ||
1023 | <f_old_trans></f_old_trans> | ||
1024 | <f_translation>シリンダー</f_translation> | ||
1025 | </string><string><a_file>floater_tools.xml</a_file> | ||
1026 | <b_path>/toolbox floater/ToolHemiCylinder</b_path> | ||
1027 | <c_attribute>tool_tip</c_attribute> | ||
1028 | <d_old></d_old> | ||
1029 | <e_new>Hemicylinder</e_new> | ||
1030 | <f_old_trans></f_old_trans> | ||
1031 | <f_translation>半円柱</f_translation> | ||
1032 | </string><string><a_file>floater_tools.xml</a_file> | ||
1033 | <b_path>/toolbox floater/ToolCone</b_path> | ||
1034 | <c_attribute>tool_tip</c_attribute> | ||
1035 | <d_old></d_old> | ||
1036 | <e_new>Cone</e_new> | ||
1037 | <f_old_trans></f_old_trans> | ||
1038 | <f_translation>円錐</f_translation> | ||
1039 | </string><string><a_file>floater_tools.xml</a_file> | ||
1040 | <b_path>/toolbox floater/ToolHemiCone</b_path> | ||
1041 | <c_attribute>tool_tip</c_attribute> | ||
1042 | <d_old></d_old> | ||
1043 | <e_new>Hemicone</e_new> | ||
1044 | <f_old_trans></f_old_trans> | ||
1045 | <f_translation>半円錐</f_translation> | ||
1046 | </string><string><a_file>floater_tools.xml</a_file> | ||
1047 | <b_path>/toolbox floater/ToolSphere</b_path> | ||
1048 | <c_attribute>tool_tip</c_attribute> | ||
1049 | <d_old></d_old> | ||
1050 | <e_new>Sphere</e_new> | ||
1051 | <f_old_trans></f_old_trans> | ||
1052 | <f_translation>球形</f_translation> | ||
1053 | </string><string><a_file>floater_tools.xml</a_file> | ||
1054 | <b_path>/toolbox floater/ToolHemiSphere</b_path> | ||
1055 | <c_attribute>tool_tip</c_attribute> | ||
1056 | <d_old></d_old> | ||
1057 | <e_new>Hemisphere</e_new> | ||
1058 | <f_old_trans></f_old_trans> | ||
1059 | <f_translation>半球</f_translation> | ||
1060 | </string><string><a_file>floater_tools.xml</a_file> | ||
1061 | <b_path>/toolbox floater/ToolTorus</b_path> | ||
1062 | <c_attribute>tool_tip</c_attribute> | ||
1063 | <d_old></d_old> | ||
1064 | <e_new>Torus</e_new> | ||
1065 | <f_old_trans></f_old_trans> | ||
1066 | <f_translation>トーラス</f_translation> | ||
1067 | </string><string><a_file>floater_tools.xml</a_file> | ||
1068 | <b_path>/toolbox floater/ToolTube</b_path> | ||
1069 | <c_attribute>tool_tip</c_attribute> | ||
1070 | <d_old></d_old> | ||
1071 | <e_new>Tube</e_new> | ||
1072 | <f_old_trans></f_old_trans> | ||
1073 | <f_translation>チューブ</f_translation> | ||
1074 | </string><string><a_file>floater_tools.xml</a_file> | ||
1075 | <b_path>/toolbox floater/ToolRing</b_path> | ||
1076 | <c_attribute>tool_tip</c_attribute> | ||
1077 | <d_old></d_old> | ||
1078 | <e_new>Ring</e_new> | ||
1079 | <f_old_trans></f_old_trans> | ||
1080 | <f_translation>リング</f_translation> | ||
1081 | </string><string><a_file>floater_tools.xml</a_file> | ||
1082 | <b_path>/toolbox floater/ToolTree</b_path> | ||
1083 | <c_attribute>tool_tip</c_attribute> | ||
1084 | <d_old></d_old> | ||
1085 | <e_new>Tree</e_new> | ||
1086 | <f_old_trans></f_old_trans> | ||
1087 | <f_translation>樹木</f_translation> | ||
1088 | </string><string><a_file>floater_tools.xml</a_file> | ||
1089 | <b_path>/toolbox floater/ToolGrass</b_path> | ||
1090 | <c_attribute>tool_tip</c_attribute> | ||
1091 | <d_old></d_old> | ||
1092 | <e_new>Grass</e_new> | ||
1093 | <f_old_trans></f_old_trans> | ||
1094 | <f_translation>草地</f_translation> | ||
1095 | </string><string><a_file>menu_viewer.xml</a_file> | ||
1096 | <b_path>/Main Menu/View/Joystick Flycam</b_path> | ||
1097 | <c_attribute>label</c_attribute> | ||
1098 | <d_old></d_old> | ||
1099 | <e_new>Joystick Flycam</e_new> | ||
1100 | <f_old_trans></f_old_trans> | ||
1101 | <f_translation>ジョイスティック・フライカム</f_translation> | ||
1102 | </string><string><a_file>menu_viewer.xml</a_file> | ||
1103 | <b_path>/Main Menu/Help/Tutorial</b_path> | ||
1104 | <c_attribute>label</c_attribute> | ||
1105 | <d_old></d_old> | ||
1106 | <e_new>Tutorial</e_new> | ||
1107 | <f_old_trans></f_old_trans> | ||
1108 | <f_translation>チュートリアル</f_translation> | ||
1109 | </string><string><a_file>menu_viewer.xml</a_file> | ||
1110 | <b_path>/Main Menu/Help/separator7</b_path> | ||
1111 | <c_attribute>label</c_attribute> | ||
1112 | <d_old></d_old> | ||
1113 | <e_new>-----------</e_new> | ||
1114 | <f_old_trans></f_old_trans> | ||
1115 | <f_translation>-----------</f_translation> | ||
1116 | </string><string><a_file>menu_viewer.xml</a_file> | ||
1117 | <b_path>/Main Menu/Help/Bug Reporting/separator9</b_path> | ||
1118 | <c_attribute>label</c_attribute> | ||
1119 | <d_old></d_old> | ||
1120 | <e_new>-----------</e_new> | ||
1121 | <f_old_trans></f_old_trans> | ||
1122 | <f_translation>-----------</f_translation> | ||
1123 | </string><string><a_file>mime_types.xml</a_file> | ||
1124 | <b_path>/default/web/</b_path> | ||
1125 | <c_attribute></c_attribute> | ||
1126 | <d_old></d_old> | ||
1127 | <e_new> | ||
1128 | Web Content | ||
1129 | </e_new> | ||
1130 | <f_old_trans></f_old_trans> | ||
1131 | <f_translation> | ||
1132 | ウェブ・コンテンツ | ||
1133 | </f_translation> | ||
1134 | </string><string><a_file>mime_types.xml</a_file> | ||
1135 | <b_path>/default/web/</b_path> | ||
1136 | <c_attribute></c_attribute> | ||
1137 | <d_old></d_old> | ||
1138 | <e_new> | ||
1139 | This location has Web content | ||
1140 | </e_new> | ||
1141 | <f_old_trans></f_old_trans> | ||
1142 | <f_translation> | ||
1143 | ここにウェブ・コンテンツがあります。 | ||
1144 | </f_translation> | ||
1145 | </string><string><a_file>mime_types.xml</a_file> | ||
1146 | <b_path>/default/web/</b_path> | ||
1147 | <c_attribute></c_attribute> | ||
1148 | <d_old></d_old> | ||
1149 | <e_new> | ||
1150 | Show Web content | ||
1151 | </e_new> | ||
1152 | <f_old_trans></f_old_trans> | ||
1153 | <f_translation> | ||
1154 | ウェブ・コンテンツを表示 | ||
1155 | </f_translation> | ||
1156 | </string><string><a_file>mime_types.xml</a_file> | ||
1157 | <b_path>/default/movie/</b_path> | ||
1158 | <c_attribute></c_attribute> | ||
1159 | <d_old></d_old> | ||
1160 | <e_new> | ||
1161 | Movie | ||
1162 | </e_new> | ||
1163 | <f_old_trans></f_old_trans> | ||
1164 | <f_translation> | ||
1165 | ムービー | ||
1166 | </f_translation> | ||
1167 | </string><string><a_file>mime_types.xml</a_file> | ||
1168 | <b_path>/default/movie/</b_path> | ||
1169 | <c_attribute></c_attribute> | ||
1170 | <d_old></d_old> | ||
1171 | <e_new> | ||
1172 | There is a movie to play here | ||
1173 | </e_new> | ||
1174 | <f_old_trans></f_old_trans> | ||
1175 | <f_translation> | ||
1176 | ここにはムービーがあります | ||
1177 | </f_translation> | ||
1178 | </string><string><a_file>mime_types.xml</a_file> | ||
1179 | <b_path>/default/movie/</b_path> | ||
1180 | <c_attribute></c_attribute> | ||
1181 | <d_old></d_old> | ||
1182 | <e_new> | ||
1183 | Play movie | ||
1184 | </e_new> | ||
1185 | <f_old_trans></f_old_trans> | ||
1186 | <f_translation> | ||
1187 | ムービー再生 | ||
1188 | </f_translation> | ||
1189 | </string><string><a_file>mime_types.xml</a_file> | ||
1190 | <b_path>/default/none/</b_path> | ||
1191 | <c_attribute></c_attribute> | ||
1192 | <d_old></d_old> | ||
1193 | <e_new> | ||
1194 | No Content | ||
1195 | </e_new> | ||
1196 | <f_old_trans></f_old_trans> | ||
1197 | <f_translation> | ||
1198 | コンテンツなし | ||
1199 | </f_translation> | ||
1200 | </string><string><a_file>mime_types.xml</a_file> | ||
1201 | <b_path>/default/none/</b_path> | ||
1202 | <c_attribute></c_attribute> | ||
1203 | <d_old></d_old> | ||
1204 | <e_new> | ||
1205 | No media here | ||
1206 | </e_new> | ||
1207 | <f_old_trans></f_old_trans> | ||
1208 | <f_translation> | ||
1209 | メディアなし | ||
1210 | </f_translation> | ||
1211 | </string><string><a_file>mime_types.xml</a_file> | ||
1212 | <b_path>/default/image/</b_path> | ||
1213 | <c_attribute></c_attribute> | ||
1214 | <d_old></d_old> | ||
1215 | <e_new> | ||
1216 | Image | ||
1217 | </e_new> | ||
1218 | <f_old_trans></f_old_trans> | ||
1219 | <f_translation> | ||
1220 | 画像 | ||
1221 | </f_translation> | ||
1222 | </string><string><a_file>mime_types.xml</a_file> | ||
1223 | <b_path>/default/image/</b_path> | ||
1224 | <c_attribute></c_attribute> | ||
1225 | <d_old></d_old> | ||
1226 | <e_new> | ||
1227 | There is an image at this location | ||
1228 | </e_new> | ||
1229 | <f_old_trans></f_old_trans> | ||
1230 | <f_translation> | ||
1231 | ここには画像があります | ||
1232 | </f_translation> | ||
1233 | </string><string><a_file>mime_types.xml</a_file> | ||
1234 | <b_path>/default/image/</b_path> | ||
1235 | <c_attribute></c_attribute> | ||
1236 | <d_old></d_old> | ||
1237 | <e_new> | ||
1238 | View this location's image | ||
1239 | </e_new> | ||
1240 | <f_old_trans></f_old_trans> | ||
1241 | <f_translation> | ||
1242 | ここの画像を表示 | ||
1243 | </f_translation> | ||
1244 | </string><string><a_file>mime_types.xml</a_file> | ||
1245 | <b_path>/default/audio/</b_path> | ||
1246 | <c_attribute></c_attribute> | ||
1247 | <d_old></d_old> | ||
1248 | <e_new> | ||
1249 | Audio | ||
1250 | </e_new> | ||
1251 | <f_old_trans></f_old_trans> | ||
1252 | <f_translation> | ||
1253 | オーディオ | ||
1254 | </f_translation> | ||
1255 | </string><string><a_file>mime_types.xml</a_file> | ||
1256 | <b_path>/default/audio/</b_path> | ||
1257 | <c_attribute></c_attribute> | ||
1258 | <d_old></d_old> | ||
1259 | <e_new> | ||
1260 | There is audio at this location | ||
1261 | </e_new> | ||
1262 | <f_old_trans></f_old_trans> | ||
1263 | <f_translation> | ||
1264 | ここではオーディオが聞けます | ||
1265 | </f_translation> | ||
1266 | </string><string><a_file>mime_types.xml</a_file> | ||
1267 | <b_path>/default/audio/</b_path> | ||
1268 | <c_attribute></c_attribute> | ||
1269 | <d_old></d_old> | ||
1270 | <e_new> | ||
1271 | View this location's audio | ||
1272 | </e_new> | ||
1273 | <f_old_trans></f_old_trans> | ||
1274 | <f_translation> | ||
1275 | ここのオーディオを再生する | ||
1276 | </f_translation> | ||
1277 | </string><string><a_file>mime_types.xml</a_file> | ||
1278 | <b_path>/default/rtsp/</b_path> | ||
1279 | <c_attribute></c_attribute> | ||
1280 | <d_old></d_old> | ||
1281 | <e_new> | ||
1282 | Real Time Streaming | ||
1283 | </e_new> | ||
1284 | <f_old_trans></f_old_trans> | ||
1285 | <f_translation> | ||
1286 | リアルタイム・ストリーミング | ||
1287 | </f_translation> | ||
1288 | </string><string><a_file>mime_types.xml</a_file> | ||
1289 | <b_path>/default/blank/</b_path> | ||
1290 | <c_attribute></c_attribute> | ||
1291 | <d_old></d_old> | ||
1292 | <e_new> | ||
1293 | - None - | ||
1294 | </e_new> | ||
1295 | <f_old_trans></f_old_trans> | ||
1296 | <f_translation> | ||
1297 | -- なし -- | ||
1298 | </f_translation> | ||
1299 | </string><string><a_file>mime_types.xml</a_file> | ||
1300 | <b_path>/default/"none/none"/</b_path> | ||
1301 | <c_attribute></c_attribute> | ||
1302 | <d_old></d_old> | ||
1303 | <e_new> | ||
1304 | - None - | ||
1305 | </e_new> | ||
1306 | <f_old_trans></f_old_trans> | ||
1307 | <f_translation> | ||
1308 | -- なし -- | ||
1309 | </f_translation> | ||
1310 | </string><string><a_file>mime_types.xml</a_file> | ||
1311 | <b_path>/default/"audio/*"/</b_path> | ||
1312 | <c_attribute></c_attribute> | ||
1313 | <d_old></d_old> | ||
1314 | <e_new> | ||
1315 | Audio | ||
1316 | </e_new> | ||
1317 | <f_old_trans></f_old_trans> | ||
1318 | <f_translation> | ||
1319 | オーディオ | ||
1320 | </f_translation> | ||
1321 | </string><string><a_file>mime_types.xml</a_file> | ||
1322 | <b_path>/default/"video/*"/</b_path> | ||
1323 | <c_attribute></c_attribute> | ||
1324 | <d_old></d_old> | ||
1325 | <e_new> | ||
1326 | Video | ||
1327 | </e_new> | ||
1328 | <f_old_trans></f_old_trans> | ||
1329 | <f_translation> | ||
1330 | ビデオ | ||
1331 | </f_translation> | ||
1332 | </string><string><a_file>mime_types.xml</a_file> | ||
1333 | <b_path>/default/"image/*"/</b_path> | ||
1334 | <c_attribute></c_attribute> | ||
1335 | <d_old></d_old> | ||
1336 | <e_new> | ||
1337 | Image | ||
1338 | </e_new> | ||
1339 | <f_old_trans></f_old_trans> | ||
1340 | <f_translation> | ||
1341 | 画像 | ||
1342 | </f_translation> | ||
1343 | </string><string><a_file>mime_types.xml</a_file> | ||
1344 | <b_path>/default/"video/vnd.secondlife.qt.legacy"/</b_path> | ||
1345 | <c_attribute></c_attribute> | ||
1346 | <d_old></d_old> | ||
1347 | <e_new> | ||
1348 | Movie (QuickTime) | ||
1349 | </e_new> | ||
1350 | <f_old_trans></f_old_trans> | ||
1351 | <f_translation> | ||
1352 | ムービー (QuickTime) | ||
1353 | </f_translation> | ||
1354 | </string><string><a_file>mime_types.xml</a_file> | ||
1355 | <b_path>/default/"application/javascript"/</b_path> | ||
1356 | <c_attribute></c_attribute> | ||
1357 | <d_old></d_old> | ||
1358 | <e_new> | ||
1359 | Javascript | ||
1360 | </e_new> | ||
1361 | <f_old_trans></f_old_trans> | ||
1362 | <f_translation> | ||
1363 | Javascript | ||
1364 | </f_translation> | ||
1365 | </string><string><a_file>mime_types.xml</a_file> | ||
1366 | <b_path>/default/"application/ogg"/</b_path> | ||
1367 | <c_attribute></c_attribute> | ||
1368 | <d_old></d_old> | ||
1369 | <e_new> | ||
1370 | Ogg Audio/Video | ||
1371 | </e_new> | ||
1372 | <f_old_trans></f_old_trans> | ||
1373 | <f_translation> | ||
1374 | Oggオーディオ/ビデオ | ||
1375 | </f_translation> | ||
1376 | </string><string><a_file>mime_types.xml</a_file> | ||
1377 | <b_path>/default/"application/pdf"/</b_path> | ||
1378 | <c_attribute></c_attribute> | ||
1379 | <d_old></d_old> | ||
1380 | <e_new> | ||
1381 | PDF Document | ||
1382 | </e_new> | ||
1383 | <f_old_trans></f_old_trans> | ||
1384 | <f_translation> | ||
1385 | PDFドキュメント | ||
1386 | </f_translation> | ||
1387 | </string><string><a_file>mime_types.xml</a_file> | ||
1388 | <b_path>/default/"application/postscript"/</b_path> | ||
1389 | <c_attribute></c_attribute> | ||
1390 | <d_old></d_old> | ||
1391 | <e_new> | ||
1392 | Postscript Document | ||
1393 | </e_new> | ||
1394 | <f_old_trans></f_old_trans> | ||
1395 | <f_translation> | ||
1396 | Postscriptドキュメント | ||
1397 | </f_translation> | ||
1398 | </string><string><a_file>mime_types.xml</a_file> | ||
1399 | <b_path>/default/"application/rtf"/</b_path> | ||
1400 | <c_attribute></c_attribute> | ||
1401 | <d_old></d_old> | ||
1402 | <e_new> | ||
1403 | Rich Text (RTF) | ||
1404 | </e_new> | ||
1405 | <f_old_trans></f_old_trans> | ||
1406 | <f_translation> | ||
1407 | リッチ・テキスト (RTF) | ||
1408 | </f_translation> | ||
1409 | </string><string><a_file>mime_types.xml</a_file> | ||
1410 | <b_path>/default/"application/xhtml+xml"/</b_path> | ||
1411 | <c_attribute></c_attribute> | ||
1412 | <d_old></d_old> | ||
1413 | <e_new> | ||
1414 | Web Page (XHTML) | ||
1415 | </e_new> | ||
1416 | <f_old_trans></f_old_trans> | ||
1417 | <f_translation> | ||
1418 | ウェブ・ページ (XHTML) | ||
1419 | </f_translation> | ||
1420 | </string><string><a_file>mime_types.xml</a_file> | ||
1421 | <b_path>/default/"application/x-director"/</b_path> | ||
1422 | <c_attribute></c_attribute> | ||
1423 | <d_old></d_old> | ||
1424 | <e_new> | ||
1425 | Macromedia Director | ||
1426 | </e_new> | ||
1427 | <f_old_trans></f_old_trans> | ||
1428 | <f_translation> | ||
1429 | Macromedia Director | ||
1430 | </f_translation> | ||
1431 | </string><string><a_file>mime_types.xml</a_file> | ||
1432 | <b_path>/default/"application/x-shockwave-flash"/</b_path> | ||
1433 | <c_attribute></c_attribute> | ||
1434 | <d_old></d_old> | ||
1435 | <e_new> | ||
1436 | Flash | ||
1437 | </e_new> | ||
1438 | <f_old_trans></f_old_trans> | ||
1439 | <f_translation> | ||
1440 | Flash | ||
1441 | </f_translation> | ||
1442 | </string><string><a_file>mime_types.xml</a_file> | ||
1443 | <b_path>/default/"audio/mid"/</b_path> | ||
1444 | <c_attribute></c_attribute> | ||
1445 | <d_old></d_old> | ||
1446 | <e_new> | ||
1447 | Audio (MIDI) | ||
1448 | </e_new> | ||
1449 | <f_old_trans></f_old_trans> | ||
1450 | <f_translation> | ||
1451 | オーディオ (MIDI) | ||
1452 | </f_translation> | ||
1453 | </string><string><a_file>mime_types.xml</a_file> | ||
1454 | <b_path>/default/"audio/mpeg"/</b_path> | ||
1455 | <c_attribute></c_attribute> | ||
1456 | <d_old></d_old> | ||
1457 | <e_new> | ||
1458 | Audio (MP3) | ||
1459 | </e_new> | ||
1460 | <f_old_trans></f_old_trans> | ||
1461 | <f_translation> | ||
1462 | オーディオ (MP3) | ||
1463 | </f_translation> | ||
1464 | </string><string><a_file>mime_types.xml</a_file> | ||
1465 | <b_path>/default/"audio/x-aiff"/</b_path> | ||
1466 | <c_attribute></c_attribute> | ||
1467 | <d_old></d_old> | ||
1468 | <e_new> | ||
1469 | Audio (AIFF) | ||
1470 | </e_new> | ||
1471 | <f_old_trans></f_old_trans> | ||
1472 | <f_translation> | ||
1473 | オーディオ (AIFF) | ||
1474 | </f_translation> | ||
1475 | </string><string><a_file>mime_types.xml</a_file> | ||
1476 | <b_path>/default/"audio/x-wav"/</b_path> | ||
1477 | <c_attribute></c_attribute> | ||
1478 | <d_old></d_old> | ||
1479 | <e_new> | ||
1480 | Audio (WAV) | ||
1481 | </e_new> | ||
1482 | <f_old_trans></f_old_trans> | ||
1483 | <f_translation> | ||
1484 | オーディオ (WAV) | ||
1485 | </f_translation> | ||
1486 | </string><string><a_file>mime_types.xml</a_file> | ||
1487 | <b_path>/default/"image/bmp"/</b_path> | ||
1488 | <c_attribute></c_attribute> | ||
1489 | <d_old></d_old> | ||
1490 | <e_new> | ||
1491 | Image (BMP) | ||
1492 | </e_new> | ||
1493 | <f_old_trans></f_old_trans> | ||
1494 | <f_translation> | ||
1495 | 画像 (BMP) | ||
1496 | </f_translation> | ||
1497 | </string><string><a_file>mime_types.xml</a_file> | ||
1498 | <b_path>/default/"image/gif"/</b_path> | ||
1499 | <c_attribute></c_attribute> | ||
1500 | <d_old></d_old> | ||
1501 | <e_new> | ||
1502 | Image (GIF) | ||
1503 | </e_new> | ||
1504 | <f_old_trans></f_old_trans> | ||
1505 | <f_translation> | ||
1506 | 画像 (GIF) | ||
1507 | </f_translation> | ||
1508 | </string><string><a_file>mime_types.xml</a_file> | ||
1509 | <b_path>/default/"image/jpeg"/</b_path> | ||
1510 | <c_attribute></c_attribute> | ||
1511 | <d_old></d_old> | ||
1512 | <e_new> | ||
1513 | Image (JPEG) | ||
1514 | </e_new> | ||
1515 | <f_old_trans></f_old_trans> | ||
1516 | <f_translation> | ||
1517 | 画像 (JPEG) | ||
1518 | </f_translation> | ||
1519 | </string><string><a_file>mime_types.xml</a_file> | ||
1520 | <b_path>/default/"image/png"/</b_path> | ||
1521 | <c_attribute></c_attribute> | ||
1522 | <d_old></d_old> | ||
1523 | <e_new> | ||
1524 | Image (PNG) | ||
1525 | </e_new> | ||
1526 | <f_old_trans></f_old_trans> | ||
1527 | <f_translation> | ||
1528 | 画像 (PNG) | ||
1529 | </f_translation> | ||
1530 | </string><string><a_file>mime_types.xml</a_file> | ||
1531 | <b_path>/default/"image/svg+xml"/</b_path> | ||
1532 | <c_attribute></c_attribute> | ||
1533 | <d_old></d_old> | ||
1534 | <e_new> | ||
1535 | Image (SVG) | ||
1536 | </e_new> | ||
1537 | <f_old_trans></f_old_trans> | ||
1538 | <f_translation> | ||
1539 | 画像 (SVG) | ||
1540 | </f_translation> | ||
1541 | </string><string><a_file>mime_types.xml</a_file> | ||
1542 | <b_path>/default/"image/tiff"/</b_path> | ||
1543 | <c_attribute></c_attribute> | ||
1544 | <d_old></d_old> | ||
1545 | <e_new> | ||
1546 | Image (TIFF) | ||
1547 | </e_new> | ||
1548 | <f_old_trans></f_old_trans> | ||
1549 | <f_translation> | ||
1550 | 画像 (TIFF) | ||
1551 | </f_translation> | ||
1552 | </string><string><a_file>mime_types.xml</a_file> | ||
1553 | <b_path>/default/"text/html"/</b_path> | ||
1554 | <c_attribute></c_attribute> | ||
1555 | <d_old></d_old> | ||
1556 | <e_new> | ||
1557 | Web Page | ||
1558 | </e_new> | ||
1559 | <f_old_trans></f_old_trans> | ||
1560 | <f_translation> | ||
1561 | ウェブ・ページ | ||
1562 | </f_translation> | ||
1563 | </string><string><a_file>mime_types.xml</a_file> | ||
1564 | <b_path>/default/"text/plain"/</b_path> | ||
1565 | <c_attribute></c_attribute> | ||
1566 | <d_old></d_old> | ||
1567 | <e_new> | ||
1568 | Text | ||
1569 | </e_new> | ||
1570 | <f_old_trans></f_old_trans> | ||
1571 | <f_translation> | ||
1572 | テキスト | ||
1573 | </f_translation> | ||
1574 | </string><string><a_file>mime_types.xml</a_file> | ||
1575 | <b_path>/default/"text/xml"/</b_path> | ||
1576 | <c_attribute></c_attribute> | ||
1577 | <d_old></d_old> | ||
1578 | <e_new> | ||
1579 | XML | ||
1580 | </e_new> | ||
1581 | <f_old_trans></f_old_trans> | ||
1582 | <f_translation> | ||
1583 | XML | ||
1584 | </f_translation> | ||
1585 | </string><string><a_file>mime_types.xml</a_file> | ||
1586 | <b_path>/default/"video/mpeg"/</b_path> | ||
1587 | <c_attribute></c_attribute> | ||
1588 | <d_old></d_old> | ||
1589 | <e_new> | ||
1590 | Movie (MPEG) | ||
1591 | </e_new> | ||
1592 | <f_old_trans></f_old_trans> | ||
1593 | <f_translation> | ||
1594 | ムービー (MPEG) | ||
1595 | </f_translation> | ||
1596 | </string><string><a_file>mime_types.xml</a_file> | ||
1597 | <b_path>/default/"video/mp4"/</b_path> | ||
1598 | <c_attribute></c_attribute> | ||
1599 | <d_old></d_old> | ||
1600 | <e_new> | ||
1601 | Movie (MP4) | ||
1602 | </e_new> | ||
1603 | <f_old_trans></f_old_trans> | ||
1604 | <f_translation> | ||
1605 | ムービー (MP4) | ||
1606 | </f_translation> | ||
1607 | </string><string><a_file>mime_types.xml</a_file> | ||
1608 | <b_path>/default/"video/quicktime"/</b_path> | ||
1609 | <c_attribute></c_attribute> | ||
1610 | <d_old></d_old> | ||
1611 | <e_new> | ||
1612 | Movie (QuickTime) | ||
1613 | </e_new> | ||
1614 | <f_old_trans></f_old_trans> | ||
1615 | <f_translation> | ||
1616 | ムービー (QuickTime) | ||
1617 | </f_translation> | ||
1618 | </string><string><a_file>mime_types.xml</a_file> | ||
1619 | <b_path>/default/"video/x-ms-asf"/</b_path> | ||
1620 | <c_attribute></c_attribute> | ||
1621 | <d_old></d_old> | ||
1622 | <e_new> | ||
1623 | Movie (Windows Media ASF) | ||
1624 | </e_new> | ||
1625 | <f_old_trans></f_old_trans> | ||
1626 | <f_translation> | ||
1627 | ムービー (Windows Media ASF) | ||
1628 | </f_translation> | ||
1629 | </string><string><a_file>mime_types.xml</a_file> | ||
1630 | <b_path>/default/"video/x-ms-wmv"/</b_path> | ||
1631 | <c_attribute></c_attribute> | ||
1632 | <d_old></d_old> | ||
1633 | <e_new> | ||
1634 | Movie (Windows Media WMV) | ||
1635 | </e_new> | ||
1636 | <f_old_trans></f_old_trans> | ||
1637 | <f_translation> | ||
1638 | ムービー (Windows Media WMV) | ||
1639 | </f_translation> | ||
1640 | </string><string><a_file>mime_types.xml</a_file> | ||
1641 | <b_path>/default/"video/x-msvideo"/</b_path> | ||
1642 | <c_attribute></c_attribute> | ||
1643 | <d_old></d_old> | ||
1644 | <e_new> | ||
1645 | Movie (AVI) | ||
1646 | </e_new> | ||
1647 | <f_old_trans></f_old_trans> | ||
1648 | <f_translation> | ||
1649 | ムービー (AVI) | ||
1650 | </f_translation> | ||
1651 | </string><string><a_file>notify.xml</a_file> | ||
1652 | <b_path>//RezItemNoPermissions/message</b_path> | ||
1653 | <c_attribute></c_attribute> | ||
1654 | <d_old></d_old> | ||
1655 | <e_new> | ||
1656 | Insufficient permissions to rez object. | ||
1657 | </e_new> | ||
1658 | <f_old_trans></f_old_trans> | ||
1659 | <f_translation> | ||
1660 | オブジェクトをrezするにはパーミッション(承認)が不足してます。 | ||
1661 | </f_translation> | ||
1662 | </string><string><a_file>panel_audio.xml</a_file> | ||
1663 | <b_path>/Media panel/mute_audio</b_path> | ||
1664 | <c_attribute>label</c_attribute> | ||
1665 | <d_old></d_old> | ||
1666 | <e_new></e_new> | ||
1667 | <f_old_trans></f_old_trans> | ||
1668 | <f_translation></f_translation> | ||
1669 | <f_old_trans></f_old_trans> | ||
1670 | </string><string><a_file>panel_audio.xml</a_file> | ||
1671 | <b_path>/Media panel/mute_music</b_path> | ||
1672 | <c_attribute>label</c_attribute> | ||
1673 | <d_old></d_old> | ||
1674 | <e_new></e_new> | ||
1675 | <f_old_trans></f_old_trans> | ||
1676 | <f_translation></f_translation> | ||
1677 | </string><string><a_file>panel_audio.xml</a_file> | ||
1678 | <b_path>/Media panel/mute_media</b_path> | ||
1679 | <c_attribute>label</c_attribute> | ||
1680 | <d_old></d_old> | ||
1681 | <e_new></e_new> | ||
1682 | <f_old_trans></f_old_trans> | ||
1683 | <f_translation></f_translation> | ||
1684 | </string><string><a_file>panel_audio.xml</a_file> | ||
1685 | <b_path>/Media panel/mute_voice</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>panel_audio.xml</a_file> | ||
1692 | <b_path>/Media panel/mute_sfx</b_path> | ||
1693 | <c_attribute>label</c_attribute> | ||
1694 | <d_old></d_old> | ||
1695 | <e_new></e_new> | ||
1696 | <f_old_trans></f_old_trans> | ||
1697 | <f_translation></f_translation> | ||
1698 | </string><string><a_file>panel_audio.xml</a_file> | ||
1699 | <b_path>/Media panel/mute_wind</b_path> | ||
1700 | <c_attribute>label</c_attribute> | ||
1701 | <d_old></d_old> | ||
1702 | <e_new></e_new> | ||
1703 | <f_old_trans></f_old_trans> | ||
1704 | <f_translation></f_translation> | ||
1705 | </string><string><a_file>panel_audio.xml</a_file> | ||
1706 | <b_path>/Media panel/mute_ui</b_path> | ||
1707 | <c_attribute>label</c_attribute> | ||
1708 | <d_old></d_old> | ||
1709 | <e_new></e_new> | ||
1710 | <f_old_trans></f_old_trans> | ||
1711 | <f_translation></f_translation> | ||
1712 | </string><string><a_file>panel_groups.xml</a_file> | ||
1713 | <b_path>/groups/group list/name</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>panel_group_invite.xml</a_file> | ||
1720 | <b_path>/invite_panel/help_text</b_path> | ||
1721 | <c_attribute></c_attribute> | ||
1722 | <d_old></d_old> | ||
1723 | <e_new> | ||
1724 | You can select multiple residents to | ||
1725 | invite to your group. Click 'Open | ||
1726 | Person Chooser' to start. | ||
1727 | </e_new> | ||
1728 | <f_old_trans></f_old_trans> | ||
1729 | <f_translation> | ||
1730 | あなたのグループに、一度に複数の人を招待することができます。[リストから人を選ぶ]をクリックしてください。 | ||
1731 | </f_translation> | ||
1732 | </string><string><a_file>panel_group_invite.xml</a_file> | ||
1733 | <b_path>/invite_panel/role_text</b_path> | ||
1734 | <c_attribute></c_attribute> | ||
1735 | <d_old></d_old> | ||
1736 | <e_new> | ||
1737 | Choose what Role to assign them to: | ||
1738 | </e_new> | ||
1739 | <f_old_trans></f_old_trans> | ||
1740 | <f_translation> | ||
1741 | 割り当て先の役割を選択: | ||
1742 | </f_translation> | ||
1743 | </string><string><a_file>panel_group_invite.xml</a_file> | ||
1744 | <b_path>/invite_panel/confirm_invite_owner_str</b_path> | ||
1745 | <c_attribute></c_attribute> | ||
1746 | <d_old></d_old> | ||
1747 | <e_new> | ||
1748 | Are you sure you want to invite new owner(s)? This action is permanent! | ||
1749 | </e_new> | ||
1750 | <f_old_trans></f_old_trans> | ||
1751 | <f_translation> | ||
1752 | 本当に新しい所有者を招待しますか?この操作は取り消しできません。 | ||
1753 | </f_translation> | ||
1754 | </string><string><a_file>panel_master_volume.xml</a_file> | ||
1755 | <b_path>/master_volume/mute_master</b_path> | ||
1756 | <c_attribute>label</c_attribute> | ||
1757 | <d_old></d_old> | ||
1758 | <e_new></e_new> | ||
1759 | <f_old_trans></f_old_trans> | ||
1760 | <f_translation></f_translation> | ||
1761 | </string><string><a_file>panel_media_remote_expanded.xml</a_file> | ||
1762 | <b_path>/media_remote/play_label</b_path> | ||
1763 | <c_attribute></c_attribute> | ||
1764 | <d_old></d_old> | ||
1765 | <e_new> | ||
1766 | Play | ||
1767 | </e_new> | ||
1768 | <f_old_trans></f_old_trans> | ||
1769 | <f_translation> | ||
1770 | 再生 | ||
1771 | </f_translation> | ||
1772 | </string><string><a_file>panel_media_remote_expanded.xml</a_file> | ||
1773 | <b_path>/media_remote/stop_label</b_path> | ||
1774 | <c_attribute></c_attribute> | ||
1775 | <d_old></d_old> | ||
1776 | <e_new> | ||
1777 | Stop | ||
1778 | </e_new> | ||
1779 | <f_old_trans></f_old_trans> | ||
1780 | <f_translation> | ||
1781 | 停止 | ||
1782 | </f_translation> | ||
1783 | </string><string><a_file>panel_media_remote_expanded.xml</a_file> | ||
1784 | <b_path>/media_remote/pause_label</b_path> | ||
1785 | <c_attribute></c_attribute> | ||
1786 | <d_old></d_old> | ||
1787 | <e_new> | ||
1788 | Pause | ||
1789 | </e_new> | ||
1790 | <f_old_trans></f_old_trans> | ||
1791 | <f_translation> | ||
1792 | 一時停止 | ||
1793 | </f_translation> | ||
1794 | </string><string><a_file>panel_media_remote_expanded.xml</a_file> | ||
1795 | <b_path>/media_remote/default_tooltip_label</b_path> | ||
1796 | <c_attribute></c_attribute> | ||
1797 | <d_old></d_old> | ||
1798 | <e_new> | ||
1799 | No Media Specified | ||
1800 | </e_new> | ||
1801 | <f_old_trans></f_old_trans> | ||
1802 | <f_translation> | ||
1803 | メディアが指定されていません | ||
1804 | </f_translation> | ||
1805 | </string><string><a_file>panel_media_remote_expanded.xml</a_file> | ||
1806 | <b_path>/media_remote/media_hidden_label</b_path> | ||
1807 | <c_attribute></c_attribute> | ||
1808 | <d_old></d_old> | ||
1809 | <e_new> | ||
1810 | (URL hidden by parcel owner) | ||
1811 | </e_new> | ||
1812 | <f_old_trans></f_old_trans> | ||
1813 | <f_translation> | ||
1814 | (区画オーナーが URL を非表示に設定) | ||
1815 | </f_translation> | ||
1816 | </string><string><a_file>panel_media_remote_expanded.xml</a_file> | ||
1817 | <b_path>/media_remote/media_icon_tooltip_web</b_path> | ||
1818 | <c_attribute></c_attribute> | ||
1819 | <d_old></d_old> | ||
1820 | <e_new> | ||
1821 | This location displays content from the World Wide Web. Click the Play button to display Web content. | ||
1822 | </e_new> | ||
1823 | <f_old_trans></f_old_trans> | ||
1824 | <f_translation> | ||
1825 | このロケーションではワールド・ワイド・ウェブの内容が表示されます。ウェブ・コンテンツを表示するには[再生]ボタンをクリックしてください。 | ||
1826 | </f_translation> | ||
1827 | </string><string><a_file>panel_media_remote_expanded.xml</a_file> | ||
1828 | <b_path>/media_remote/media_icon_tooltip_movie</b_path> | ||
1829 | <c_attribute></c_attribute> | ||
1830 | <d_old></d_old> | ||
1831 | <e_new> | ||
1832 | This location displays Video content. Click the Play button to play the video. | ||
1833 | </e_new> | ||
1834 | <f_old_trans></f_old_trans> | ||
1835 | <f_translation> | ||
1836 | このロケーションではビデオ・コンテンツが表示されます。ビデオを再生するには[再生]ボタンをクリックしてください。 | ||
1837 | </f_translation> | ||
1838 | </string><string><a_file>panel_media_remote_expanded.xml</a_file> | ||
1839 | <b_path>/media_remote/media_play_tooltip</b_path> | ||
1840 | <c_attribute></c_attribute> | ||
1841 | <d_old></d_old> | ||
1842 | <e_new> | ||
1843 | Display Web content at this location. | ||
1844 | </e_new> | ||
1845 | <f_old_trans></f_old_trans> | ||
1846 | <f_translation> | ||
1847 | このロケーションでウェブ・コンテンツを表示します。 | ||
1848 | </f_translation> | ||
1849 | </string><string><a_file>panel_place.xml</a_file> | ||
1850 | <b_path>/Place/name_label</b_path> | ||
1851 | <c_attribute></c_attribute> | ||
1852 | <d_old></d_old> | ||
1853 | <e_new> | ||
1854 | Name: | ||
1855 | </e_new> | ||
1856 | <f_old_trans></f_old_trans> | ||
1857 | <f_translation> | ||
1858 | 名前: | ||
1859 | </f_translation> | ||
1860 | </string><string><a_file>panel_place.xml</a_file> | ||
1861 | <b_path>/Place/description_label</b_path> | ||
1862 | <c_attribute></c_attribute> | ||
1863 | <d_old></d_old> | ||
1864 | <e_new> | ||
1865 | Description: | ||
1866 | </e_new> | ||
1867 | <f_old_trans></f_old_trans> | ||
1868 | <f_translation> | ||
1869 | 説明: | ||
1870 | </f_translation> | ||
1871 | </string><string><a_file>panel_place.xml</a_file> | ||
1872 | <b_path>/Place/information_label</b_path> | ||
1873 | <c_attribute></c_attribute> | ||
1874 | <d_old></d_old> | ||
1875 | <e_new> | ||
1876 | Information: | ||
1877 | </e_new> | ||
1878 | <f_old_trans></f_old_trans> | ||
1879 | <f_translation> | ||
1880 | 情報: | ||
1881 | </f_translation> | ||
1882 | </string><string><a_file>panel_place.xml</a_file> | ||
1883 | <b_path>/Place/location_label</b_path> | ||
1884 | <c_attribute></c_attribute> | ||
1885 | <d_old></d_old> | ||
1886 | <e_new> | ||
1887 | Location: | ||
1888 | </e_new> | ||
1889 | <f_old_trans></f_old_trans> | ||
1890 | <f_translation> | ||
1891 | ロケーション: | ||
1892 | </f_translation> | ||
1893 | </string><string><a_file>panel_place_small.xml</a_file> | ||
1894 | <b_path>/Place/name_label</b_path> | ||
1895 | <c_attribute></c_attribute> | ||
1896 | <d_old></d_old> | ||
1897 | <e_new> | ||
1898 | Name: | ||
1899 | </e_new> | ||
1900 | <f_old_trans></f_old_trans> | ||
1901 | <f_translation> | ||
1902 | 名前: | ||
1903 | </f_translation> | ||
1904 | </string><string><a_file>panel_place_small.xml</a_file> | ||
1905 | <b_path>/Place/description_label</b_path> | ||
1906 | <c_attribute></c_attribute> | ||
1907 | <d_old></d_old> | ||
1908 | <e_new> | ||
1909 | Description: | ||
1910 | </e_new> | ||
1911 | <f_old_trans></f_old_trans> | ||
1912 | <f_translation> | ||
1913 | 説明: | ||
1914 | </f_translation> | ||
1915 | </string><string><a_file>panel_place_small.xml</a_file> | ||
1916 | <b_path>/Place/information_label</b_path> | ||
1917 | <c_attribute></c_attribute> | ||
1918 | <d_old></d_old> | ||
1919 | <e_new> | ||
1920 | Information: | ||
1921 | </e_new> | ||
1922 | <f_old_trans></f_old_trans> | ||
1923 | <f_translation> | ||
1924 | 情報: | ||
1925 | </f_translation> | ||
1926 | </string><string><a_file>panel_place_small.xml</a_file> | ||
1927 | <b_path>/Place/location_label</b_path> | ||
1928 | <c_attribute></c_attribute> | ||
1929 | <d_old></d_old> | ||
1930 | <e_new> | ||
1931 | Location: | ||
1932 | </e_new> | ||
1933 | <f_old_trans></f_old_trans> | ||
1934 | <f_translation> | ||
1935 | ロケーション: | ||
1936 | </f_translation> | ||
1937 | </string><string><a_file>panel_preferences_chat.xml</a_file> | ||
1938 | <b_path>/chat/im</b_path> | ||
1939 | <c_attribute>label</c_attribute> | ||
1940 | <d_old></d_old> | ||
1941 | <e_new>IM</e_new> | ||
1942 | <f_old_trans></f_old_trans> | ||
1943 | <f_translation>IM</f_translation> | ||
1944 | </string><string><a_file>panel_preferences_general.xml</a_file> | ||
1945 | <b_path>/general_panel/fade_out_combobox/Never</b_path> | ||
1946 | <c_attribute></c_attribute> | ||
1947 | <d_old></d_old> | ||
1948 | <e_new> | ||
1949 | Never | ||
1950 | </e_new> | ||
1951 | <f_old_trans></f_old_trans> | ||
1952 | <f_translation> | ||
1953 | なし | ||
1954 | </f_translation> | ||
1955 | </string><string><a_file>panel_preferences_general.xml</a_file> | ||
1956 | <b_path>/general_panel/fade_out_combobox/Show Temporarily</b_path> | ||
1957 | <c_attribute></c_attribute> | ||
1958 | <d_old></d_old> | ||
1959 | <e_new> | ||
1960 | Show Temporarily | ||
1961 | </e_new> | ||
1962 | <f_old_trans></f_old_trans> | ||
1963 | <f_translation> | ||
1964 | 一時的に表示 | ||
1965 | </f_translation> | ||
1966 | </string><string><a_file>panel_preferences_general.xml</a_file> | ||
1967 | <b_path>/general_panel/fade_out_combobox/Always</b_path> | ||
1968 | <c_attribute></c_attribute> | ||
1969 | <d_old></d_old> | ||
1970 | <e_new> | ||
1971 | Always | ||
1972 | </e_new> | ||
1973 | <f_old_trans></f_old_trans> | ||
1974 | <f_translation> | ||
1975 | いつも | ||
1976 | </f_translation> | ||
1977 | </string><string><a_file>panel_preferences_general.xml</a_file> | ||
1978 | <b_path>/general_panel/group_titles_textbox</b_path> | ||
1979 | <c_attribute></c_attribute> | ||
1980 | <d_old></d_old> | ||
1981 | <e_new> | ||
1982 | Group Titles: | ||
1983 | </e_new> | ||
1984 | <f_old_trans></f_old_trans> | ||
1985 | <f_translation> | ||
1986 | グループ・タイトル: | ||
1987 | </f_translation> | ||
1988 | </string><string><a_file>panel_preferences_general.xml</a_file> | ||
1989 | <b_path>/general_panel/show_all_title_checkbox</b_path> | ||
1990 | <c_attribute>label</c_attribute> | ||
1991 | <d_old></d_old> | ||
1992 | <e_new>Hide All Group Titles</e_new> | ||
1993 | <f_old_trans></f_old_trans> | ||
1994 | <f_translation>グループ・タイトルをすべて非表示</f_translation> | ||
1995 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
1996 | <b_path>/Display panel/QualityPerformanceSelection</b_path> | ||
1997 | <c_attribute>label</c_attribute> | ||
1998 | <d_old></d_old> | ||
1999 | <e_new></e_new> | ||
2000 | <f_old_trans></f_old_trans> | ||
2001 | <f_translation></f_translation> | ||
2002 | </string><string><a_file>panel_preferences_input.xml</a_file> | ||
2003 | <b_path>/Input panel/Camera Follow Distance:</b_path> | ||
2004 | <c_attribute></c_attribute> | ||
2005 | <d_old></d_old> | ||
2006 | <e_new> | ||
2007 | Camera Follow Distance: | ||
2008 | </e_new> | ||
2009 | <f_old_trans></f_old_trans> | ||
2010 | <f_translation> | ||
2011 | カメラ追従距離: | ||
2012 | </f_translation> | ||
2013 | </string><string><a_file>panel_preferences_input.xml</a_file> | ||
2014 | <b_path>/Input panel/Camera Transition Time:</b_path> | ||
2015 | <c_attribute></c_attribute> | ||
2016 | <d_old></d_old> | ||
2017 | <e_new> | ||
2018 | Camera Transition Time: | ||
2019 | </e_new> | ||
2020 | <f_old_trans></f_old_trans> | ||
2021 | <f_translation> | ||
2022 | カメラ移動時間: | ||
2023 | </f_translation> | ||
2024 | </string><string><a_file>panel_preferences_input.xml</a_file> | ||
2025 | <b_path>/Input panel/Camera Smoothing:</b_path> | ||
2026 | <c_attribute></c_attribute> | ||
2027 | <d_old></d_old> | ||
2028 | <e_new> | ||
2029 | Camera Smoothing: | ||
2030 | </e_new> | ||
2031 | <f_old_trans></f_old_trans> | ||
2032 | <f_translation> | ||
2033 | カメラ・スムージング: | ||
2034 | </f_translation> | ||
2035 | </string><string><a_file>panel_preferences_input.xml</a_file> | ||
2036 | <b_path>/Input panel/joystic_setup_button</b_path> | ||
2037 | <c_attribute>label</c_attribute> | ||
2038 | <d_old></d_old> | ||
2039 | <e_new>Joystick Setup</e_new> | ||
2040 | <f_old_trans></f_old_trans> | ||
2041 | <f_translation>ジョイスティック設定</f_translation> | ||
2042 | </string><string><a_file>panel_preferences_popups.xml</a_file> | ||
2043 | <b_path>/popups/dont_show_label</b_path> | ||
2044 | <c_attribute></c_attribute> | ||
2045 | <d_old></d_old> | ||
2046 | <e_new> | ||
2047 | Do not show popups: | ||
2048 | </e_new> | ||
2049 | <f_old_trans></f_old_trans> | ||
2050 | <f_translation> | ||
2051 | ポップアップを表示しない: | ||
2052 | </f_translation> | ||
2053 | </string><string><a_file>panel_preferences_popups.xml</a_file> | ||
2054 | <b_path>/popups/show_label</b_path> | ||
2055 | <c_attribute></c_attribute> | ||
2056 | <d_old></d_old> | ||
2057 | <e_new> | ||
2058 | Show popups: | ||
2059 | </e_new> | ||
2060 | <f_old_trans></f_old_trans> | ||
2061 | <f_translation> | ||
2062 | ポップアップを表示: | ||
2063 | </f_translation> | ||
2064 | </string><string><a_file>panel_speaker_controls.xml</a_file> | ||
2065 | <b_path>/active_speakers_panel/panels/moderation_mode_panel/moderation_mode/OpenVoice</b_path> | ||
2066 | <c_attribute></c_attribute> | ||
2067 | <d_old></d_old> | ||
2068 | <e_new> | ||
2069 | Open Voice (default) | ||
2070 | </e_new> | ||
2071 | <f_old_trans></f_old_trans> | ||
2072 | <f_translation> | ||
2073 | ボイスを開く(デフォルト) | ||
2074 | </f_translation> | ||
2075 | </string><string><a_file>panel_speaker_controls.xml</a_file> | ||
2076 | <b_path>/active_speakers_panel/panels/moderation_mode_panel/moderation_mode/ModeratedVoice</b_path> | ||
2077 | <c_attribute></c_attribute> | ||
2078 | <d_old></d_old> | ||
2079 | <e_new> | ||
2080 | Moderated Voice | ||
2081 | </e_new> | ||
2082 | <f_old_trans></f_old_trans> | ||
2083 | <f_translation> | ||
2084 | モデレート済みボイス | ||
2085 | </f_translation> | ||
2086 | </string><string><a_file>panel_speaker_controls.xml</a_file> | ||
2087 | <b_path>/active_speakers_panel/panels/moderate_chat_panel/speakers_list/speaking_status</b_path> | ||
2088 | <c_attribute>label</c_attribute> | ||
2089 | <d_old></d_old> | ||
2090 | <e_new></e_new> | ||
2091 | <f_old_trans></f_old_trans> | ||
2092 | <f_translation></f_translation> | ||
2093 | </string><string><a_file>panel_speaker_controls.xml</a_file> | ||
2094 | <b_path>/active_speakers_panel/panels/moderate_chat_panel/speaker_controls/profile_btn</b_path> | ||
2095 | <c_attribute>label</c_attribute> | ||
2096 | <d_old></d_old> | ||
2097 | <e_new></e_new> | ||
2098 | <f_old_trans></f_old_trans> | ||
2099 | <f_translation></f_translation> | ||
2100 | </string><string><a_file>panel_status_bar.xml</a_file> | ||
2101 | <b_path>/status/menubar_search_bevel_bg</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>panel_voice_remote_expanded.xml</a_file> | ||
2108 | <b_path>/voice_remote/voice_channel_bg</b_path> | ||
2109 | <c_attribute>label</c_attribute> | ||
2110 | <d_old></d_old> | ||
2111 | <e_new></e_new> | ||
2112 | <f_old_trans></f_old_trans> | ||
2113 | <f_translation></f_translation> | ||
2114 | </string><string><a_file>panel_voice_remote_expanded.xml</a_file> | ||
2115 | <b_path>/voice_remote/voice_channel_icon</b_path> | ||
2116 | <c_attribute>label</c_attribute> | ||
2117 | <d_old></d_old> | ||
2118 | <e_new></e_new> | ||
2119 | <f_old_trans></f_old_trans> | ||
2120 | <f_translation></f_translation> | ||
2121 | </string><string><a_file>panel_voice_remote_expanded.xml</a_file> | ||
2122 | <b_path>/voice_remote/channel_label</b_path> | ||
2123 | <c_attribute>label</c_attribute> | ||
2124 | <d_old></d_old> | ||
2125 | <e_new></e_new> | ||
2126 | <f_old_trans></f_old_trans> | ||
2127 | <f_translation></f_translation> | ||
2128 | </string><string><a_file>alerts.xml</a_file> | ||
5 | <b_path>//UnsupportedHardware/ignore</b_path> | 2129 | <b_path>//UnsupportedHardware/ignore</b_path> |
6 | <c_attribute></c_attribute> | 2130 | <c_attribute></c_attribute> |
7 | <d_old></d_old> | 2131 | <d_old></d_old> |
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 c8763a5..4489411 100644 --- a/linden/indra/newview/skins/xui/ja/need_to_update.xml +++ b/linden/indra/newview/skins/xui/ja/need_to_update.xml | |||
@@ -2,6 +2,342 @@ | |||
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>//GrantModifyRights/message</b_path> | ||
6 | <c_attribute></c_attribute> | ||
7 | <d_old> | ||
8 | Granting modify rights to another resident allows them to change | ||
9 | ANY objects you may have in-world. Be VERY careful when handing | ||
10 | out this permission. | ||
11 | Do you want to grant modify rights for [FIRST_NAME] [LAST_NAME]? | ||
12 | </d_old> | ||
13 | <e_new> | ||
14 | Granting modify rights to another resident allows them to change, | ||
15 | delete or take ANY objects you may have in-world. Be VERY careful | ||
16 | when handing out this permission. | ||
17 | Do you want to grant modify rights for [FIRST_NAME] [LAST_NAME]? | ||
18 | </e_new> | ||
19 | <f_translation> | ||
20 | 他の住人に変更権限を与えると、その人はあなたが所有している | ||
21 | すべてのオブジェクトを変更、削除、または取得することができるようになります。この許可を与えるときは細心の注意を払ってください。 | ||
22 | [FIRST_NAME][LAST_NAME]に対して変更権限を与えますか? | ||
23 | </f_translation> | ||
24 | <f_old_trans> | ||
25 | 他の住人に変更権限を与えると、その人はあなたが所有している | ||
26 | すべてのオブジェクトを変更できるようになります。 この許可を与えるときには細心の注意を払ってください。 | ||
27 | [FIRST_NAME] [LAST_NAME]に変更権限を与えますか? | ||
28 | </f_old_trans> | ||
29 | </string><string><a_file>alerts.xml</a_file> | ||
30 | <b_path>//CannotBuyLandNoRegion/message</b_path> | ||
31 | <c_attribute></c_attribute> | ||
32 | <d_old> | ||
33 | Unable to buy land: | ||
34 | Cannot find the region this land is in. | ||
35 | </d_old> | ||
36 | <e_new> | ||
37 | Unable to buy land: | ||
38 | Cannot find the region this land is in. | ||
39 | </e_new> | ||
40 | <f_translation> | ||
41 | 土地を購入できません: | ||
42 | この土地がある地域を見つけることができません。 | ||
43 | </f_translation> | ||
44 | <f_old_trans> | ||
45 | 土地を購入できません: | ||
46 | この土地がある地域が見つかりません。 | ||
47 | </f_old_trans> | ||
48 | </string><string><a_file>alerts.xml</a_file> | ||
49 | <b_path>//ParcelCanPlayMedia/message</b_path> | ||
50 | <c_attribute></c_attribute> | ||
51 | <d_old> | ||
52 | This location can play streaming video. | ||
53 | Streaming video requires a 768 kbps or | ||
54 | faster Internet connection. | ||
55 | |||
56 | Play streaming video when available? | ||
57 | (You can change this option later under | ||
58 | Preferences > Audio & Video.) | ||
59 | </d_old> | ||
60 | <e_new> | ||
61 | This location can play streaming media. | ||
62 | Streaming media requires a fast Internet connection. | ||
63 | |||
64 | Play streaming media when available? | ||
65 | (You can change this option later under | ||
66 | Preferences > Audio & Video.) | ||
67 | </e_new> | ||
68 | <f_translation> | ||
69 | ここではストリーミング・メディア再生が可能です。 | ||
70 | メディアのストリーミングには、高速なインターネット接続環境が必要です。 | ||
71 | |||
72 | 利用可能になったら再生しますか? | ||
73 | (このオプションは、[環境設定]>[オーディオ&ビデオ]で後からでも変更できます) | ||
74 | </f_translation> | ||
75 | <f_old_trans> | ||
76 | ここではストリーミング・ビデオ再生が可能です。 | ||
77 | ビデオの再生には768 kbpsより速い | ||
78 | 接続環境が必要です。 | ||
79 | |||
80 | 利用可能になったら再生しますか? | ||
81 | (このオプションは、 | ||
82 | [環境設定]>[音声とビデオ]を通じて後からでも変更できます) | ||
83 | </f_old_trans> | ||
84 | </string><string><a_file>alerts.xml</a_file> | ||
85 | <b_path>//ConfirmClearBrowserCache/message</b_path> | ||
86 | <c_attribute></c_attribute> | ||
87 | <d_old> | ||
88 | Are you sure you want to clear your | ||
89 | browser cache? | ||
90 | </d_old> | ||
91 | <e_new> | ||
92 | Are you sure you want to clear your browser cache? | ||
93 | </e_new> | ||
94 | <f_translation> | ||
95 | 本当にブラウザのキャッシュをクリアしますか? | ||
96 | </f_translation> | ||
97 | <f_old_trans> | ||
98 | 本当にブラウザのキャッシュを | ||
99 | クリアしますか? | ||
100 | </f_old_trans> | ||
101 | </string><string><a_file>alerts.xml</a_file> | ||
102 | <b_path>//HelpWaterNormalMap/message</b_path> | ||
103 | <c_attribute></c_attribute> | ||
104 | <d_old> | ||
105 | Controls what normal map is layered across the water | ||
106 | to determine reflections/refractions. | ||
107 | </d_old> | ||
108 | <e_new> | ||
109 | Controls what normal map is layered across the water to determine reflections/refractions. | ||
110 | </e_new> | ||
111 | <f_translation> | ||
112 | 反射や屈折を決定するために水に重ねられるノーマル・マップを制御します。 | ||
113 | </f_translation> | ||
114 | <f_old_trans> | ||
115 | 反射や屈折を決定するために水に重ねられるノーマル・マップを制御します。 | ||
116 | </f_old_trans> | ||
117 | </string><string><a_file>alerts.xml</a_file> | ||
118 | <b_path>//HelpWaterWave1/message</b_path> | ||
119 | <c_attribute></c_attribute> | ||
120 | <d_old> | ||
121 | Controls where and how fast the large scaled version of the normal | ||
122 | map moves in the X and Y direction. | ||
123 | </d_old> | ||
124 | <e_new> | ||
125 | Controls where and how fast the large scaled version of the normal map moves in the X and Y direction. | ||
126 | </e_new> | ||
127 | <f_translation> | ||
128 | 拡大されたノーマル・マップが移動する方向(X 軸と Y 軸で表現)と速度を制御します。 | ||
129 | </f_translation> | ||
130 | <f_old_trans> | ||
131 | 引き伸ばされたノーマル・マップがX と Y 軸でどの方向にそして | ||
132 | どのくらいの速度で移動するかを制御します。 | ||
133 | </f_old_trans> | ||
134 | </string><string><a_file>alerts.xml</a_file> | ||
135 | <b_path>//HelpWaterWave2/message</b_path> | ||
136 | <c_attribute></c_attribute> | ||
137 | <d_old> | ||
138 | Controls where and how fast the the small scaled version of the | ||
139 | normal map moves in the X and Y direction. | ||
140 | </d_old> | ||
141 | <e_new> | ||
142 | Controls where and how fast the the small scaled version of the normal map moves in the X and Y direction. | ||
143 | </e_new> | ||
144 | <f_translation> | ||
145 | 縮小されたノーマル・マップが移動する方向(X 軸と Y 軸で表現)と速度を制御します。 | ||
146 | </f_translation> | ||
147 | <f_old_trans> | ||
148 | 縮められたノーマル・マップがX と Y 軸でどの方向にそしてどのくらいの速度で移動するかを制御します。 | ||
149 | </f_old_trans> | ||
150 | </string><string><a_file>floater_buy_land.xml</a_file> | ||
151 | <b_path>/buy land/land_use_reason</b_path> | ||
152 | <c_attribute></c_attribute> | ||
153 | <d_old> | ||
154 | You hold 1,309 square meters of land. | ||
155 | This parcel is 512 square meters of land. | ||
156 | </d_old> | ||
157 | <e_new> | ||
158 | You hold 1,309 square meters of land. | ||
159 | This parcel is 512 square meters of land. | ||
160 | </e_new> | ||
161 | <f_translation> | ||
162 | あなたは1,309平方メートルの土地を所有しています。 | ||
163 | この区画は512平方メートルです。 | ||
164 | </f_translation> | ||
165 | <f_old_trans> | ||
166 | あなたには1,309平方メートルの土地があります。 | ||
167 | この区画は 512平方メートルです。 | ||
168 | </f_old_trans> | ||
169 | </string><string><a_file>floater_buy_land.xml</a_file> | ||
170 | <b_path>/buy land/multiple_parcels_selected</b_path> | ||
171 | <c_attribute></c_attribute> | ||
172 | <d_old> | ||
173 | Multiple different parcels selected. | ||
174 | Try selecting a smaller area. | ||
175 | </d_old> | ||
176 | <e_new> | ||
177 | Multiple different parcels selected. | ||
178 | Try selecting a smaller area. | ||
179 | </e_new> | ||
180 | <f_translation> | ||
181 | 複数の異なった区画を選択しました。 | ||
182 | これより小さなエリアを選択してください。 | ||
183 | </f_translation> | ||
184 | <f_old_trans> | ||
185 | 複数の区域が選択されています。 | ||
186 | 選択領域を狭めてみてください。 | ||
187 | </f_old_trans> | ||
188 | </string><string><a_file>floater_buy_land.xml</a_file> | ||
189 | <b_path>/buy land/not_owned_by_you</b_path> | ||
190 | <c_attribute></c_attribute> | ||
191 | <d_old> | ||
192 | Land owned by another user is selected. | ||
193 | Try selecting a smaller area. | ||
194 | </d_old> | ||
195 | <e_new> | ||
196 | Land owned by another user is selected. | ||
197 | Try selecting a smaller area. | ||
198 | </e_new> | ||
199 | <f_translation> | ||
200 | 他の使用者に所有された土地が選択されています。 | ||
201 | これより小さなエリアを選択してください。 | ||
202 | </f_translation> | ||
203 | <f_old_trans> | ||
204 | 選択した土地は、他のユーザーが所有しています。 | ||
205 | 選択領域を狭めてみてください。 | ||
206 | </f_old_trans> | ||
207 | </string><string><a_file>floater_buy_land.xml</a_file> | ||
208 | <b_path>/buy land/for_first_time_group</b_path> | ||
209 | <c_attribute></c_attribute> | ||
210 | <d_old> | ||
211 | This land is reserved for first time buyers. | ||
212 | You cannot buy it for a group. | ||
213 | </d_old> | ||
214 | <e_new> | ||
215 | This land is reserved for first time buyers. | ||
216 | You cannot buy it for a group. | ||
217 | </e_new> | ||
218 | <f_translation> | ||
219 | 本土地は初めて土地購入をする人のために確保されています。 | ||
220 | グループのために購入することはできません。 | ||
221 | </f_translation> | ||
222 | <f_old_trans> | ||
223 | これは初めて土地を購入する人用の土地です。 | ||
224 | グループ用には購入できません。 | ||
225 | </f_old_trans> | ||
226 | </string><string><a_file>floater_buy_land.xml</a_file> | ||
227 | <b_path>/buy land/for_first_time</b_path> | ||
228 | <c_attribute></c_attribute> | ||
229 | <d_old> | ||
230 | This land is reserved for first time buyers. | ||
231 | You already own land. | ||
232 | </d_old> | ||
233 | <e_new> | ||
234 | This land is reserved for first time buyers. | ||
235 | You already own land. | ||
236 | </e_new> | ||
237 | <f_translation> | ||
238 | 本土地は初めて土地購入をする人のために確保されています。 | ||
239 | あなたは、すでに土地を所有しています。 | ||
240 | </f_translation> | ||
241 | <f_old_trans> | ||
242 | これは初めて土地を購入する人用の土地です。 | ||
243 | あなたはすでに土地を持っています。 | ||
244 | </f_old_trans> | ||
245 | </string><string><a_file>floater_gesture.xml</a_file> | ||
246 | <b_path>/gestures/help_label</b_path> | ||
247 | <c_attribute></c_attribute> | ||
248 | <d_old> | ||
249 | Click a gesture or press a key to play animations and sounds. | ||
250 | </d_old> | ||
251 | <e_new> | ||
252 | Double-click a gesture to play animations and sounds. | ||
253 | </e_new> | ||
254 | <f_translation> | ||
255 | ジェスチャーをダブルクリックして、アニメーションとサウンドを再生。 | ||
256 | </f_translation> | ||
257 | <f_old_trans> | ||
258 | ジェスチャーをクリックするか、キーを押してアニメーションとサウンドを再生。 | ||
259 | </f_old_trans> | ||
260 | </string><string><a_file>floater_joystick.xml</a_file> | ||
261 | <b_path>/Joystick</b_path> | ||
262 | <c_attribute>title</c_attribute> | ||
263 | <d_old>Flycam Options</d_old> | ||
264 | <e_new>Joystick Configuration</e_new> | ||
265 | <f_translation>ジョイスティックの設定</f_translation> | ||
266 | </string><string><a_file>floater_preview_notecard_keep_discard.xml</a_file> | ||
267 | <b_path>/preview_notecard/no_object</b_path> | ||
268 | <c_attribute></c_attribute> | ||
269 | <d_old> | ||
270 | Unable to find object containing this note.: | ||
271 | </d_old> | ||
272 | <e_new>Unable to find object containing this note.:</e_new> | ||
273 | <f_translation>このノートを含んだオブジェクトが見つかりません:</f_translation> | ||
274 | <f_old_trans> | ||
275 | このノートを含んだオブジェクトが見つかりません: | ||
276 | </f_old_trans> | ||
277 | </string><string><a_file>panel_friends.xml</a_file> | ||
278 | <b_path>/friends/friend_list/icon_edit_mine</b_path> | ||
279 | <c_attribute>tool_tip</c_attribute> | ||
280 | <d_old>Friend can edit your objects</d_old> | ||
281 | <e_new>Friend can edit, delete or take objects</e_new> | ||
282 | <f_translation>フレンドは、オブジェクトを編集、削除、または取得することができます。</f_translation> | ||
283 | <f_old_trans>フレンドは、あなたのオブジェクトを編集することができます。</f_old_trans> | ||
284 | </string><string><a_file>panel_group_invite.xml</a_file> | ||
285 | <b_path>/invite_panel/invitee_list</b_path> | ||
286 | <c_attribute>tool_tip</c_attribute> | ||
287 | <d_old>Hold the Ctrl key and click resident names to multi-select.</d_old> | ||
288 | <e_new>Hold the Ctrl key and click resident names to multi-select.</e_new> | ||
289 | <f_translation>複数の住人を選択するには、Ctrlキーを押しながら住人名をクリックします。</f_translation> | ||
290 | <f_old_trans>複数の住人を選択するには、Ctrlキーを押しながら住人名をクリックします。</f_old_trans> | ||
291 | </string><string><a_file>panel_group_invite.xml</a_file> | ||
292 | <b_path>/invite_panel/role_name</b_path> | ||
293 | <c_attribute>tool_tip</c_attribute> | ||
294 | <d_old>Choose from the list of Roles you are allowed to assign members to.</d_old> | ||
295 | <e_new>Choose from the list of Roles you are allowed to assign members to.</e_new> | ||
296 | <f_translation>メンバーに割り当て可能な役割をリストから選択。</f_translation> | ||
297 | <f_old_trans>Choose from the list of Roles you are allowed to assign members to.</f_old_trans> | ||
298 | </string><string><a_file>panel_group_invite.xml</a_file> | ||
299 | <b_path>/invite_panel/loading</b_path> | ||
300 | <c_attribute></c_attribute> | ||
301 | <d_old> | ||
302 | (loading...) | ||
303 | </d_old> | ||
304 | <e_new>(loading...)</e_new> | ||
305 | <f_translation>(ローディング...)</f_translation> | ||
306 | <f_old_trans> | ||
307 | (ローディング...) | ||
308 | </f_old_trans> | ||
309 | </string><string><a_file>panel_preferences_chat.xml</a_file> | ||
310 | <b_path>/chat/users</b_path> | ||
311 | <c_attribute>label</c_attribute> | ||
312 | <d_old>Users</d_old> | ||
313 | <e_new>Chat</e_new> | ||
314 | <f_translation>チャット</f_translation> | ||
315 | <f_old_trans>ユーザー</f_old_trans> | ||
316 | </string><string><a_file>panel_preferences_voice.xml</a_file> | ||
317 | <b_path>/chat/device_settings_text</b_path> | ||
318 | <c_attribute></c_attribute> | ||
319 | <d_old> | ||
320 | NOTE: Running the Device Settings or Voice Chat Setup will temporarily disconnect you from Voice Chat. | ||
321 | </d_old> | ||
322 | <e_new> | ||
323 | NOTE: Running the Device Settings will temporarily disconnect you from Voice Chat. | ||
324 | </e_new> | ||
325 | <f_translation> | ||
326 | 注意:「機器の設定」を実行すると、一時的にボイス・チャットから切断されます。 | ||
327 | </f_translation> | ||
328 | <f_old_trans> | ||
329 | メモ: 「機器の設定」または「ボイス・チャットの設定」を実行すると、一時的にボイス・チャットから切断されます。 | ||
330 | </f_old_trans> | ||
331 | </string><string><a_file>panel_toolbar.xml</a_file> | ||
332 | <b_path>/toolbar/Redock Windows</b_path> | ||
333 | <c_attribute></c_attribute> | ||
334 | <d_old> | ||
335 | Redock Windows | ||
336 | </d_old> | ||
337 | <e_new>Redock Windows</e_new> | ||
338 | <f_translation>ウィンドウを再置する</f_translation> | ||
339 | <f_old_trans>ウィンドウを再置する</f_old_trans> | ||
340 | </string><string><a_file>alerts.xml</a_file> | ||
5 | <b_path>//ClothingLoading/message</b_path> | 341 | <b_path>//ClothingLoading/message</b_path> |
6 | <c_attribute></c_attribute> | 342 | <c_attribute></c_attribute> |
7 | <d_old> | 343 | <d_old> |
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 f1fe853..d185c4d 100644 --- a/linden/indra/newview/skins/xui/ko/need_to_long.xml +++ b/linden/indra/newview/skins/xui/ko/need_to_long.xml | |||
@@ -2,6 +2,163 @@ | |||
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>//HelpRegionObjectBonus/message</b_path> | ||
6 | <c_attribute></c_attribute> | ||
7 | <d_old> | ||
8 | The Object Bonus is a multiplier for primitives allowed on any given | ||
9 | parcel. The range allowed is 1 to 10. Set at '1', each 512m2 parcel | ||
10 | is allowed 117 objects. Set at '2', each 512m2 parcel is | ||
11 | allowed 234, or twice as many, and so on. The max number of objects | ||
12 | allowed per region remains 15,000 no matter what the | ||
13 | Object Bonus is. once set, be aware that lowering the Object Bonus may cause | ||
14 | objects to be returned or deleted. | ||
15 | |||
16 | Default: 1.0 | ||
17 | </d_old> | ||
18 | <e_new> | ||
19 | The Object Bonus is a multiplier for primitives allowed on any given | ||
20 | parcel. The range allowed is 1 to 10. Set at '1', each 512m2 parcel | ||
21 | is allowed 117 objects. Set at '2', each 512m2 parcel is | ||
22 | allowed 234, or twice as many, and so on. The max number of objects | ||
23 | allowed per region remains 15,000 no matter what the | ||
24 | Object Bonus is. Once set, be aware that lowering the Object Bonus may cause objects to be returned or deleted. | ||
25 | |||
26 | Default: 1.0 | ||
27 | </e_new> | ||
28 | <f_translation> | ||
29 | 오브젝트 보너스는 특정 구획에 허락된 프림에 대해 배로 | ||
30 | 증가합니다. 허용 범위는 1에서 10입니다. '1'로 설정했을 때 각 512m2 구획에 | ||
31 | 117 개 오브젝트가 허용됩니다. '2'로 설정하면 각 512m2 구획에 허용되는 | ||
32 | 오브젝트는 두 배인 234개로 됩니다. 지역당 허용되는 | ||
33 | 최대 오브젝트 수는 오브젝트 보너스에 상관없이 15,000 개 | ||
34 | 입니다. 일단 설정한 후 오브젝트 보너스를 낮추게 되면 오브젝트가반환되거나 삭제될 수 있는점을 알아 두십시오. | ||
35 | |||
36 | 기본 설정: 1.0 | ||
37 | </f_translation> | ||
38 | <f_old_trans> | ||
39 | 오브젝트 보너스는 특정 구획에 허락된 프림에 대해 배로 | ||
40 | 증가합니다. 허용 범위는 1에서 10입니다. '1'로 설정했을 때 각 512m2 구획에 | ||
41 | 허용되는 오브젝트는 117개입니다. '2'로 설정하면 각 512m2 구획에 허용되는 | ||
42 | 오브젝트가 두 배인 234개로 됩니다. 지역당 허용되는 | ||
43 | 오브젝트의 최대 개수는 오브젝트 보너스에 대해 설정된 값과 상관없이 | ||
44 | 15,000개입니다. 이 값을 설정한 후에는, 값 변경으로 인해 | ||
45 | 현재 구획 내의 오브젝트가 반환되거나 삭제될 것이 확실하기 전까지는 | ||
46 | 이 값을 낮추면 안됩니다. | ||
47 | |||
48 | 기본 설정: 1.0 | ||
49 | </f_old_trans> | ||
50 | </string><string><a_file>floater_about.xml</a_file> | ||
51 | <b_path>/floater_about/credits_editor</b_path> | ||
52 | <c_attribute></c_attribute> | ||
53 | <d_old> | ||
54 | 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. | ||
55 | |||
56 | 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 | ||
57 | |||
58 | APR Copyright (C) 2000-2004 The Apache Software Foundation | ||
59 | cURL Copyright (C) 1996-2002, Daniel Stenberg, (daniel@haxx.se) | ||
60 | expat Copyright (C) 1998, 1999, 2000 Thai Open Source Software Center Ltd. | ||
61 | FreeType Copyright (C) 1996-2002, The FreeType Project (www.freetype.org). | ||
62 | GL Copyright (C) 1999-2004 Brian Paul. | ||
63 | Havok.com(TM) Copyright (C) 1999-2001, Telekinesys Research Limited. | ||
64 | jpeg2000 Copyright (C) 2001, David Taubman, The University of New South Wales (UNSW) | ||
65 | jpeglib Copyright (C) 1991-1998, Thomas G. Lane. | ||
66 | ogg/vorbis Copyright (C) 2001, Xiphophorus | ||
67 | OpenSSL Copyright (C) 1998-2002 The OpenSSL Project. | ||
68 | SDL Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002 Sam Lantinga | ||
69 | SSLeay Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | ||
70 | xmlrpc-epi Copyright (C) 2000 Epinions, Inc. | ||
71 | zlib Copyright (C) 1995-2002 Jean-loup Gailly and Mark Adler. | ||
72 | |||
73 | All rights reserved. See licenses.txt for details. | ||
74 | |||
75 | Voice chat Audio coding: Polycom(R) Siren14(TM) (ITU-T Rec. G.722.1 Annex C) | ||
76 | |||
77 | |||
78 | Happiness is a warm puppy. -- Charles M. Schulz | ||
79 | </d_old> | ||
80 | <e_new> | ||
81 | 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. | ||
82 | |||
83 | 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 | ||
84 | |||
85 | 3Dconnexion SDK Copyright (C) 1992-2007 3Dconnexion | ||
86 | APR Copyright (C) 2000-2004 The Apache Software Foundation | ||
87 | cURL Copyright (C) 1996-2002, Daniel Stenberg, (daniel@haxx.se) | ||
88 | expat Copyright (C) 1998, 1999, 2000 Thai Open Source Software Center Ltd. | ||
89 | FreeType Copyright (C) 1996-2002, The FreeType Project (www.freetype.org). | ||
90 | GL Copyright (C) 1999-2004 Brian Paul. | ||
91 | Havok.com(TM) Copyright (C) 1999-2001, Telekinesys Research Limited. | ||
92 | jpeg2000 Copyright (C) 2001, David Taubman, The University of New South Wales (UNSW) | ||
93 | jpeglib Copyright (C) 1991-1998, Thomas G. Lane. | ||
94 | ogg/vorbis Copyright (C) 2001, Xiphophorus | ||
95 | OpenSSL Copyright (C) 1998-2002 The OpenSSL Project. | ||
96 | SDL Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002 Sam Lantinga | ||
97 | SSLeay Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | ||
98 | xmlrpc-epi Copyright (C) 2000 Epinions, Inc. | ||
99 | zlib Copyright (C) 1995-2002 Jean-loup Gailly and Mark Adler. | ||
100 | |||
101 | All rights reserved. See licenses.txt for details. | ||
102 | |||
103 | Voice chat Audio coding: Polycom(R) Siren14(TM) (ITU-T Rec. G.722.1 Annex C) | ||
104 | |||
105 | |||
106 | Happiness is a warm puppy. -- Charles M. Schulz</e_new> | ||
107 | <f_translation> | ||
108 | 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, 그 외에 많은 분들이 수고해 주셨습니다. | ||
109 | |||
110 | 현재 버전이 최상의 버전이 될 수 있도록 도와주신 게이머 여러분께 감사드립니다: 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 | ||
111 | |||
112 | 3Dconnexion SDK Copyright (C) 1992-2007 3Dconnexion | ||
113 | APR Copyright (C) 2000-2004 The Apache Software Foundation | ||
114 | cURL Copyright (C) 1996-2002, Daniel Stenberg, (daniel@haxx.se) | ||
115 | expat Copyright (C) 1998, 1999, 2000 Thai Open Source Software Center Ltd. | ||
116 | FreeType Copyright (C) 1996-2002, The FreeType Project (www.freetype.org). | ||
117 | GL Copyright (C) 1999-2004 Brian Paul. | ||
118 | Havok.com(TM) Copyright (C) 1999-2001, Telekinesys Research Limited. | ||
119 | jpeg2000 Copyright (C) 2001, David Taubman, The University of New South Wales (UNSW) | ||
120 | jpeglib Copyright (C) 1991-1998, Thomas G. Lane. | ||
121 | ogg/vorbis Copyright (C) 2001, Xiphophorus | ||
122 | OpenSSL Copyright (C) 1998-2002 The OpenSSL Project. | ||
123 | SDL Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002 Sam Lantinga | ||
124 | SSLeay Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | ||
125 | xmlrpc-epi Copyright (C) 2000 Epinions, Inc. | ||
126 | zlib Copyright (C) 1995-2002 Jean-loup Gailly and Mark Adler. | ||
127 | |||
128 | 저작권 보유. 자세한 내용은 licenses.txt를 참조하십시오. | ||
129 | |||
130 | 음성 채팅 오디오 코딩: Polycom(R) Siren14(TM) (ITU-T Rec. G.722.1 Annex C) | ||
131 | |||
132 | |||
133 | 행복이란 포근한 강아지 한마리다. -- Charles M. Schulz</f_translation> | ||
134 | <f_old_trans> | ||
135 | 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, 그 외에 많은 분들이 수고해 주셨습니다. | ||
136 | |||
137 | 현재 버전이 최상의 버전이 될 수 있도록 도와주신 게이머 여러분께 감사드립니다: 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 | ||
138 | |||
139 | APR Copyright (C) 2000-2004 The Apache Software Foundation | ||
140 | cURL Copyright (C) 1996-2002, Daniel Stenberg, (daniel@haxx.se) | ||
141 | expat Copyright (C) 1998, 1999, 2000 Thai Open Source Software Center Ltd. | ||
142 | FreeType Copyright (C) 1996-2002, The FreeType Project (www.freetype.org). | ||
143 | GL Copyright (C) 1999-2004 Brian Paul. | ||
144 | Havok.com(TM) Copyright (C) 1999-2001, Telekinesys Research Limited. | ||
145 | jpeg2000 Copyright (C) 2001, David Taubman, The University of New South Wales (UNSW) | ||
146 | jpeglib Copyright (C) 1991-1998, Thomas G. Lane. | ||
147 | ogg/vorbis Copyright (C) 2001, Xiphophorus | ||
148 | OpenSSL Copyright (C) 1998-2002 The OpenSSL Project. | ||
149 | SDL Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002 Sam Lantinga | ||
150 | SSLeay Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | ||
151 | xmlrpc-epi Copyright (C) 2000 Epinions, Inc. | ||
152 | zlib Copyright (C) 1995-2002 Jean-loup Gailly and Mark Adler. | ||
153 | |||
154 | 저작권 보유. 자세한 내용은 licenses.txt를 참조하십시오. | ||
155 | |||
156 | 음성 채팅 오디오 코딩: Polycom(R) Siren14(TM) (ITU-T Rec. G.722.1 Annex C) | ||
157 | |||
158 | |||
159 | 행복이란 포근한 강아지 한마리다. -- Charles M. Schulz | ||
160 | </f_old_trans> | ||
161 | </string><string><a_file>alerts.xml</a_file> | ||
5 | <b_path>//GraphicsPreferencesHelp/message</b_path> | 162 | <b_path>//GraphicsPreferencesHelp/message</b_path> |
6 | <c_attribute></c_attribute> | 163 | <c_attribute></c_attribute> |
7 | <d_old> | 164 | <d_old> |
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 c179201..a541bf2 100644 --- a/linden/indra/newview/skins/xui/ko/need_to_translate.xml +++ b/linden/indra/newview/skins/xui/ko/need_to_translate.xml | |||
@@ -2,6 +2,2248 @@ | |||
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>//TutorialNotFound/message</b_path> | ||
6 | <c_attribute></c_attribute> | ||
7 | <d_old></d_old> | ||
8 | <e_new> | ||
9 | No tutorial is currently available. | ||
10 | </e_new> | ||
11 | <f_old_trans></f_old_trans> | ||
12 | <f_translation> | ||
13 | 현재 튜토리얼을 사용할 수 없습니다. | ||
14 | </f_translation> | ||
15 | </string><string><a_file>alerts.xml</a_file> | ||
16 | <b_path>//TutorialNotFound/OK</b_path> | ||
17 | <c_attribute></c_attribute> | ||
18 | <d_old></d_old> | ||
19 | <e_new> | ||
20 | OK | ||
21 | </e_new> | ||
22 | <f_old_trans></f_old_trans> | ||
23 | <f_translation> | ||
24 | 확인 | ||
25 | </f_translation> | ||
26 | </string><string><a_file>alerts.xml</a_file> | ||
27 | <b_path>//FreezeAvatarFullname/message</b_path> | ||
28 | <c_attribute></c_attribute> | ||
29 | <d_old></d_old> | ||
30 | <e_new> | ||
31 | Freeze [AVATAR_NAME]? | ||
32 | He or she will temporarily be unable to move, | ||
33 | chat, or interact with the world. | ||
34 | </e_new> | ||
35 | <f_old_trans></f_old_trans> | ||
36 | <f_translation> | ||
37 | [AVATAR_NAME]을(를) 정지시키겠습니까? | ||
38 | 이렇게 하면 일시적으로 움직이지 못하게 되고, | ||
39 | 채팅이나 상호작용을 할 수 없습니다. | ||
40 | </f_translation> | ||
41 | </string><string><a_file>alerts.xml</a_file> | ||
42 | <b_path>//FreezeAvatarFullname/Freeze</b_path> | ||
43 | <c_attribute></c_attribute> | ||
44 | <d_old></d_old> | ||
45 | <e_new> | ||
46 | Freeze | ||
47 | </e_new> | ||
48 | <f_old_trans></f_old_trans> | ||
49 | <f_translation> | ||
50 | 정지 | ||
51 | </f_translation> | ||
52 | </string><string><a_file>alerts.xml</a_file> | ||
53 | <b_path>//FreezeAvatarFullname/Unfreeze</b_path> | ||
54 | <c_attribute></c_attribute> | ||
55 | <d_old></d_old> | ||
56 | <e_new> | ||
57 | Unfreeze | ||
58 | </e_new> | ||
59 | <f_old_trans></f_old_trans> | ||
60 | <f_translation> | ||
61 | 정지 해제 | ||
62 | </f_translation> | ||
63 | </string><string><a_file>alerts.xml</a_file> | ||
64 | <b_path>//FreezeAvatarFullname/Cancel</b_path> | ||
65 | <c_attribute></c_attribute> | ||
66 | <d_old></d_old> | ||
67 | <e_new> | ||
68 | Cancel | ||
69 | </e_new> | ||
70 | <f_old_trans></f_old_trans> | ||
71 | <f_translation> | ||
72 | 취소 | ||
73 | </f_translation> | ||
74 | </string><string><a_file>alerts.xml</a_file> | ||
75 | <b_path>//EjectAvatarFullname/message</b_path> | ||
76 | <c_attribute></c_attribute> | ||
77 | <d_old></d_old> | ||
78 | <e_new> | ||
79 | Eject [AVATAR_NAME] from your land? | ||
80 | </e_new> | ||
81 | <f_old_trans></f_old_trans> | ||
82 | <f_translation> | ||
83 | [AVATAR_NAME]을(를) 본인의 토지에서 강제로 퇴장시키겠습니까? | ||
84 | </f_translation> | ||
85 | </string><string><a_file>alerts.xml</a_file> | ||
86 | <b_path>//EjectAvatarFullname/Eject</b_path> | ||
87 | <c_attribute></c_attribute> | ||
88 | <d_old></d_old> | ||
89 | <e_new> | ||
90 | Eject | ||
91 | </e_new> | ||
92 | <f_old_trans></f_old_trans> | ||
93 | <f_translation> | ||
94 | 강퇴 | ||
95 | </f_translation> | ||
96 | </string><string><a_file>alerts.xml</a_file> | ||
97 | <b_path>//EjectAvatarFullname/EjectandBan</b_path> | ||
98 | <c_attribute></c_attribute> | ||
99 | <d_old></d_old> | ||
100 | <e_new> | ||
101 | Eject and Ban | ||
102 | </e_new> | ||
103 | <f_old_trans></f_old_trans> | ||
104 | <f_translation> | ||
105 | 강퇴 및 차단 | ||
106 | </f_translation> | ||
107 | </string><string><a_file>alerts.xml</a_file> | ||
108 | <b_path>//EjectAvatarFullname/Cancel</b_path> | ||
109 | <c_attribute></c_attribute> | ||
110 | <d_old></d_old> | ||
111 | <e_new> | ||
112 | Cancel | ||
113 | </e_new> | ||
114 | <f_old_trans></f_old_trans> | ||
115 | <f_translation> | ||
116 | 취소 | ||
117 | </f_translation> | ||
118 | </string><string><a_file>alerts.xml</a_file> | ||
119 | <b_path>//SeachFilteredOnShortWords/message</b_path> | ||
120 | <c_attribute></c_attribute> | ||
121 | <d_old></d_old> | ||
122 | <e_new> | ||
123 | Your search query was modified and the | ||
124 | words that were too short were removed. | ||
125 | |||
126 | Searched for: [FINALQUERY] | ||
127 | </e_new> | ||
128 | <f_old_trans></f_old_trans> | ||
129 | <f_translation> | ||
130 | 귀하의 검색 질문이 수정되었으며 | ||
131 | 너무 짧은 검색어는 삭제되었습니다. | ||
132 | |||
133 | 검색 대상: [FINALQUERY] | ||
134 | </f_translation> | ||
135 | </string><string><a_file>alerts.xml</a_file> | ||
136 | <b_path>//SeachFilteredOnShortWordsEmpty/message</b_path> | ||
137 | <c_attribute></c_attribute> | ||
138 | <d_old></d_old> | ||
139 | <e_new> | ||
140 | Your search terms were too short | ||
141 | so no search was performed. | ||
142 | </e_new> | ||
143 | <f_old_trans></f_old_trans> | ||
144 | <f_translation> | ||
145 | 검색어가 너무 짧아 | ||
146 | 검색할 수 없습니다. | ||
147 | </f_translation> | ||
148 | </string><string><a_file>alerts.xml</a_file> | ||
149 | <b_path>//CannotCloseFloaterBuyLand/message</b_path> | ||
150 | <c_attribute></c_attribute> | ||
151 | <d_old></d_old> | ||
152 | <e_new> | ||
153 | You cannot close the Buy Land window until Second Life | ||
154 | estimates the price of this transaction. | ||
155 | </e_new> | ||
156 | <f_old_trans></f_old_trans> | ||
157 | <f_translation> | ||
158 | 세컨드라이프에서 이 거래 비용을 산정할 때까지 | ||
159 | 토지 구매 창을 닫을 수 없습니다. | ||
160 | </f_translation> | ||
161 | </string><string><a_file>alerts.xml</a_file> | ||
162 | <b_path>//MaxAgentOnRegionBatch/message</b_path> | ||
163 | <c_attribute></c_attribute> | ||
164 | <d_old></d_old> | ||
165 | <e_new> | ||
166 | Failure while attempting to add [NUM_ADDED] agents: | ||
167 | Exceeds the [MAX_AGENTS] [LIST_TYPE] limit by [NUM_EXCESS]. | ||
168 | </e_new> | ||
169 | <f_old_trans></f_old_trans> | ||
170 | <f_translation> | ||
171 | [NUM_ADDED] 에이전트를 추가하는 데 실패했습니다: | ||
172 | [NUM_EXCESS]에 지정된 [MAX_AGENTS] [LIST_TYPE] 제한이 초과하였습니다. | ||
173 | </f_translation> | ||
174 | </string><string><a_file>alerts.xml</a_file> | ||
175 | <b_path>//WebLaunchExternalTarget/message</b_path> | ||
176 | <c_attribute></c_attribute> | ||
177 | <d_old></d_old> | ||
178 | <e_new> | ||
179 | Open your system Web browser to view this content? | ||
180 | </e_new> | ||
181 | <f_old_trans></f_old_trans> | ||
182 | <f_translation> | ||
183 | 컨텐츠를 보려면 시스템 웹 브라우저를 여십시오. | ||
184 | </f_translation> | ||
185 | </string><string><a_file>alerts.xml</a_file> | ||
186 | <b_path>//WebLaunchExternalTarget/ignore</b_path> | ||
187 | <c_attribute></c_attribute> | ||
188 | <d_old></d_old> | ||
189 | <e_new> | ||
190 | When opening your system browser to view a Web page | ||
191 | </e_new> | ||
192 | <f_old_trans></f_old_trans> | ||
193 | <f_translation> | ||
194 | 시스템 브라우저를 열어 웹 페이지를 확인할 경우 | ||
195 | </f_translation> | ||
196 | </string><string><a_file>alerts.xml</a_file> | ||
197 | <b_path>//WebLaunchExternalTarget/Open</b_path> | ||
198 | <c_attribute></c_attribute> | ||
199 | <d_old></d_old> | ||
200 | <e_new> | ||
201 | OK | ||
202 | </e_new> | ||
203 | <f_old_trans></f_old_trans> | ||
204 | <f_translation> | ||
205 | 확인 | ||
206 | </f_translation> | ||
207 | </string><string><a_file>alerts.xml</a_file> | ||
208 | <b_path>//WebLaunchExternalTarget/Cancel</b_path> | ||
209 | <c_attribute></c_attribute> | ||
210 | <d_old></d_old> | ||
211 | <e_new> | ||
212 | Cancel | ||
213 | </e_new> | ||
214 | <f_old_trans></f_old_trans> | ||
215 | <f_translation> | ||
216 | 취소 | ||
217 | </f_translation> | ||
218 | </string><string><a_file>alerts.xml</a_file> | ||
219 | <b_path>//ProblemAddingEstateGeneric/message</b_path> | ||
220 | <c_attribute></c_attribute> | ||
221 | <d_old></d_old> | ||
222 | <e_new> | ||
223 | Problems adding to this estate list. One or more estates may have a full list. | ||
224 | </e_new> | ||
225 | <f_old_trans></f_old_trans> | ||
226 | <f_translation> | ||
227 | 사유지 목록에 추가하는 동안 문제가 발생했습니다. 하나 이상의 사유지 관리자 목록이 모두 찬 상태입니다. | ||
228 | </f_translation> | ||
229 | </string><string><a_file>floater_about_land.xml</a_file> | ||
230 | <b_path>/floaterland/landtab/land_objects_panel/owner list/type</b_path> | ||
231 | <c_attribute>label</c_attribute> | ||
232 | <d_old></d_old> | ||
233 | <e_new>Type</e_new> | ||
234 | <f_old_trans></f_old_trans> | ||
235 | <f_translation>유형</f_translation> | ||
236 | </string><string><a_file>floater_about_land.xml</a_file> | ||
237 | <b_path>/floaterland/landtab/land_objects_panel/owner list/name</b_path> | ||
238 | <c_attribute>label</c_attribute> | ||
239 | <d_old></d_old> | ||
240 | <e_new>Name</e_new> | ||
241 | <f_old_trans></f_old_trans> | ||
242 | <f_translation>이름</f_translation> | ||
243 | </string><string><a_file>floater_about_land.xml</a_file> | ||
244 | <b_path>/floaterland/landtab/land_objects_panel/owner list/count</b_path> | ||
245 | <c_attribute>label</c_attribute> | ||
246 | <d_old></d_old> | ||
247 | <e_new>Count</e_new> | ||
248 | <f_old_trans></f_old_trans> | ||
249 | <f_translation>개수</f_translation> | ||
250 | </string><string><a_file>floater_active_speakers.xml</a_file> | ||
251 | <b_path>/active_speakers/active_speakers_panel/speakers_list/speaking_status</b_path> | ||
252 | <c_attribute>label</c_attribute> | ||
253 | <d_old></d_old> | ||
254 | <e_new></e_new> | ||
255 | <f_old_trans></f_old_trans> | ||
256 | <f_translation></f_translation> | ||
257 | </string><string><a_file>floater_avatar_textures.xml</a_file> | ||
258 | <b_path>/avatar_texture_debug/baked_label</b_path> | ||
259 | <c_attribute></c_attribute> | ||
260 | <d_old></d_old> | ||
261 | <e_new> | ||
262 | Baked Textures | ||
263 | </e_new> | ||
264 | <f_old_trans></f_old_trans> | ||
265 | <f_translation> | ||
266 | 저장된 텍스처 | ||
267 | </f_translation> | ||
268 | </string><string><a_file>floater_avatar_textures.xml</a_file> | ||
269 | <b_path>/avatar_texture_debug/composite_label</b_path> | ||
270 | <c_attribute></c_attribute> | ||
271 | <d_old></d_old> | ||
272 | <e_new> | ||
273 | Composite Textures | ||
274 | </e_new> | ||
275 | <f_old_trans></f_old_trans> | ||
276 | <f_translation> | ||
277 | 복합 텍스처 | ||
278 | </f_translation> | ||
279 | </string><string><a_file>floater_buy_currency.xml</a_file> | ||
280 | <b_path>/buy currency/getting_data</b_path> | ||
281 | <c_attribute></c_attribute> | ||
282 | <d_old></d_old> | ||
283 | <e_new> | ||
284 | Getting data... | ||
285 | </e_new> | ||
286 | <f_old_trans></f_old_trans> | ||
287 | <f_translation> | ||
288 | 데이터를 가져오는 중... | ||
289 | </f_translation> | ||
290 | </string><string><a_file>floater_camera.xml</a_file> | ||
291 | <b_path>/move floater</b_path> | ||
292 | <c_attribute>title</c_attribute> | ||
293 | <d_old></d_old> | ||
294 | <e_new></e_new> | ||
295 | <f_old_trans></f_old_trans> | ||
296 | <f_translation></f_translation> | ||
297 | </string><string><a_file>floater_camera.xml</a_file> | ||
298 | <b_path>/move floater/rotate_tooltip</b_path> | ||
299 | <c_attribute></c_attribute> | ||
300 | <d_old></d_old> | ||
301 | <e_new>Rotate Camera Around Focus</e_new> | ||
302 | <f_old_trans></f_old_trans> | ||
303 | <f_translation>초점 주위로 카메라 회전</f_translation> | ||
304 | </string><string><a_file>floater_camera.xml</a_file> | ||
305 | <b_path>/move floater/zoom_tooltip</b_path> | ||
306 | <c_attribute></c_attribute> | ||
307 | <d_old></d_old> | ||
308 | <e_new>Zoom Camera Towards Focus</e_new> | ||
309 | <f_old_trans></f_old_trans> | ||
310 | <f_translation>초점을 향해 카메라 확대/축소</f_translation> | ||
311 | </string><string><a_file>floater_camera.xml</a_file> | ||
312 | <b_path>/move floater/move_tooltip</b_path> | ||
313 | <c_attribute></c_attribute> | ||
314 | <d_old></d_old> | ||
315 | <e_new>Move Camera Up and Down, Left and Right</e_new> | ||
316 | <f_old_trans></f_old_trans> | ||
317 | <f_translation>위/아래, 왼쪽/오른쪽으로 카메라 이동</f_translation> | ||
318 | </string><string><a_file>floater_chatterbox.xml</a_file> | ||
319 | <b_path>/floater_chatterbox</b_path> | ||
320 | <c_attribute>title</c_attribute> | ||
321 | <d_old></d_old> | ||
322 | <e_new>Communicate</e_new> | ||
323 | <f_old_trans></f_old_trans> | ||
324 | <f_translation>통신</f_translation> | ||
325 | </string><string><a_file>floater_chat_history.xml</a_file> | ||
326 | <b_path>/chat floater/IM_logging_string</b_path> | ||
327 | <c_attribute></c_attribute> | ||
328 | <d_old></d_old> | ||
329 | <e_new> | ||
330 | -- Instant message logging enabled -- | ||
331 | </e_new> | ||
332 | <f_old_trans></f_old_trans> | ||
333 | <f_translation> | ||
334 | -- 메신저 로깅 사용 -- | ||
335 | </f_translation> | ||
336 | </string><string><a_file>floater_chat_history.xml</a_file> | ||
337 | <b_path>/chat floater/IM_end_log_string</b_path> | ||
338 | <c_attribute></c_attribute> | ||
339 | <d_old></d_old> | ||
340 | <e_new> | ||
341 | -- End of Log -- | ||
342 | </e_new> | ||
343 | <f_old_trans></f_old_trans> | ||
344 | <f_translation> | ||
345 | -- 로그 끝 -- | ||
346 | </f_translation> | ||
347 | </string><string><a_file>floater_chat_history.xml</a_file> | ||
348 | <b_path>/chat floater/panels/im_contents_panel/Gesture</b_path> | ||
349 | <c_attribute>label</c_attribute> | ||
350 | <d_old></d_old> | ||
351 | <e_new>Gestures</e_new> | ||
352 | <f_old_trans></f_old_trans> | ||
353 | <f_translation>제스처</f_translation> | ||
354 | </string><string><a_file>floater_chat_history.xml</a_file> | ||
355 | <b_path>/chat floater/panels/im_contents_panel/Gesture/Gestures</b_path> | ||
356 | <c_attribute></c_attribute> | ||
357 | <d_old></d_old> | ||
358 | <e_new> | ||
359 | Gestures | ||
360 | </e_new> | ||
361 | <f_old_trans></f_old_trans> | ||
362 | <f_translation> | ||
363 | 제스처 | ||
364 | </f_translation> | ||
365 | </string><string><a_file>floater_chat_history.xml</a_file> | ||
366 | <b_path>/chat floater/panels/im_contents_panel/show mutes</b_path> | ||
367 | <c_attribute>label</c_attribute> | ||
368 | <d_old></d_old> | ||
369 | <e_new>Show Muted Text</e_new> | ||
370 | <f_old_trans></f_old_trans> | ||
371 | <f_translation>차단된 텍스트 표시하기</f_translation> | ||
372 | </string><string><a_file>floater_chat_history.xml</a_file> | ||
373 | <b_path>/chat floater/panels/im_contents_panel/toggle_active_speakers_btn</b_path> | ||
374 | <c_attribute>label</c_attribute> | ||
375 | <d_old></d_old> | ||
376 | <e_new>< <</e_new> | ||
377 | <f_old_trans></f_old_trans> | ||
378 | <f_translation>< <</f_translation> | ||
379 | </string><string><a_file>floater_chat_history.xml</a_file> | ||
380 | <b_path>/chat floater/panels/im_contents_panel/toggle_active_speakers_btn</b_path> | ||
381 | <c_attribute>label_selected</c_attribute> | ||
382 | <d_old></d_old> | ||
383 | <e_new>> ></e_new> | ||
384 | <f_old_trans></f_old_trans> | ||
385 | <f_translation>> ></f_translation> | ||
386 | </string><string><a_file>floater_chat_history.xml</a_file> | ||
387 | <b_path>/chat floater/panels/im_contents_panel/toggle_active_speakers_btn</b_path> | ||
388 | <c_attribute>tool_tip</c_attribute> | ||
389 | <d_old></d_old> | ||
390 | <e_new>Click here to show list of active participants in this IM session.</e_new> | ||
391 | <f_old_trans></f_old_trans> | ||
392 | <f_translation>채팅 참가자 목록 보기 </f_translation> | ||
393 | </string><string><a_file>floater_chat_history.xml</a_file> | ||
394 | <b_path>/chat floater/panels/im_contents_panel/chat_panel/Chat Editor</b_path> | ||
395 | <c_attribute>label</c_attribute> | ||
396 | <d_old></d_old> | ||
397 | <e_new>Click here to chat.</e_new> | ||
398 | <f_old_trans></f_old_trans> | ||
399 | <f_translation>채팅하려면 여기를 클릭하십시오.</f_translation> | ||
400 | </string><string><a_file>floater_chat_history.xml</a_file> | ||
401 | <b_path>/chat floater/panels/im_contents_panel/chat_panel/Say</b_path> | ||
402 | <c_attribute>label</c_attribute> | ||
403 | <d_old></d_old> | ||
404 | <e_new>Say</e_new> | ||
405 | <f_old_trans></f_old_trans> | ||
406 | <f_translation>말하기</f_translation> | ||
407 | </string><string><a_file>floater_chat_history.xml</a_file> | ||
408 | <b_path>/chat floater/panels/im_contents_panel/chat_panel/Say</b_path> | ||
409 | <c_attribute>tool_tip</c_attribute> | ||
410 | <d_old></d_old> | ||
411 | <e_new>(Enter)</e_new> | ||
412 | <f_old_trans></f_old_trans> | ||
413 | <f_translation>(입력)</f_translation> | ||
414 | </string><string><a_file>floater_critical.xml</a_file> | ||
415 | <b_path>/modal container/tos_title</b_path> | ||
416 | <c_attribute></c_attribute> | ||
417 | <d_old></d_old> | ||
418 | <e_new> | ||
419 | Critical Message | ||
420 | </e_new> | ||
421 | <f_old_trans></f_old_trans> | ||
422 | <f_translation> | ||
423 | 중요 메시지 | ||
424 | </f_translation> | ||
425 | </string><string><a_file>floater_customize.xml</a_file> | ||
426 | <b_path>/floater customize/customize tab container/body_parts_placeholder</b_path> | ||
427 | <c_attribute>label</c_attribute> | ||
428 | <d_old></d_old> | ||
429 | <e_new>Body Parts</e_new> | ||
430 | <f_old_trans></f_old_trans> | ||
431 | <f_translation>신체 부위</f_translation> | ||
432 | </string><string><a_file>floater_customize.xml</a_file> | ||
433 | <b_path>/floater customize/customize tab container/clothes_placeholder</b_path> | ||
434 | <c_attribute>label</c_attribute> | ||
435 | <d_old></d_old> | ||
436 | <e_new>Clothes</e_new> | ||
437 | <f_old_trans></f_old_trans> | ||
438 | <f_translation>의상</f_translation> | ||
439 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
440 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WLTimeSlider</b_path> | ||
441 | <c_attribute>label</c_attribute> | ||
442 | <d_old></d_old> | ||
443 | <e_new></e_new> | ||
444 | <f_old_trans></f_old_trans> | ||
445 | <f_translation></f_translation> | ||
446 | </string><string><a_file>floater_day_cycle_options.xml</a_file> | ||
447 | <b_path>/Day Cycle Floater/Day Cycle Tabs/Day Cycle/WLDayCycleKeys</b_path> | ||
448 | <c_attribute>label</c_attribute> | ||
449 | <d_old></d_old> | ||
450 | <e_new></e_new> | ||
451 | <f_old_trans></f_old_trans> | ||
452 | <f_translation></f_translation> | ||
453 | </string><string><a_file>floater_device_settings.xml</a_file> | ||
454 | <b_path>/floater_device_settings</b_path> | ||
455 | <c_attribute>title</c_attribute> | ||
456 | <d_old></d_old> | ||
457 | <e_new>Voice Chat Device Settings</e_new> | ||
458 | <f_old_trans></f_old_trans> | ||
459 | <f_translation>음성 채팅 장치 설정</f_translation> | ||
460 | </string><string><a_file>floater_directory.xml</a_file> | ||
461 | <b_path>/directory/Directory Tabs/find_all_old_panel/results/icon</b_path> | ||
462 | <c_attribute>label</c_attribute> | ||
463 | <d_old></d_old> | ||
464 | <e_new></e_new> | ||
465 | <f_old_trans></f_old_trans> | ||
466 | <f_translation></f_translation> | ||
467 | </string><string><a_file>floater_env_settings.xml</a_file> | ||
468 | <b_path>/Environment Editor Floater/EnvTimeSlider</b_path> | ||
469 | <c_attribute>label</c_attribute> | ||
470 | <d_old></d_old> | ||
471 | <e_new></e_new> | ||
472 | <f_old_trans></f_old_trans> | ||
473 | <f_translation></f_translation> | ||
474 | </string><string><a_file>floater_env_settings.xml</a_file> | ||
475 | <b_path>/Environment Editor Floater/EnvCloudSlider</b_path> | ||
476 | <c_attribute>label</c_attribute> | ||
477 | <d_old></d_old> | ||
478 | <e_new></e_new> | ||
479 | <f_old_trans></f_old_trans> | ||
480 | <f_translation></f_translation> | ||
481 | </string><string><a_file>floater_env_settings.xml</a_file> | ||
482 | <b_path>/Environment Editor Floater/EnvWaterFogSlider</b_path> | ||
483 | <c_attribute>label</c_attribute> | ||
484 | <d_old></d_old> | ||
485 | <e_new></e_new> | ||
486 | <f_old_trans></f_old_trans> | ||
487 | <f_translation></f_translation> | ||
488 | </string><string><a_file>floater_groups.xml</a_file> | ||
489 | <b_path>/groups/group list/name</b_path> | ||
490 | <c_attribute>label</c_attribute> | ||
491 | <d_old></d_old> | ||
492 | <e_new></e_new> | ||
493 | <f_old_trans></f_old_trans> | ||
494 | <f_translation></f_translation> | ||
495 | </string><string><a_file>floater_hardware_settings.xml</a_file> | ||
496 | <b_path>/Hardware Settings Floater/Antialiasing:</b_path> | ||
497 | <c_attribute></c_attribute> | ||
498 | <d_old></d_old> | ||
499 | <e_new> | ||
500 | Antialiasing: | ||
501 | </e_new> | ||
502 | <f_old_trans></f_old_trans> | ||
503 | <f_translation> | ||
504 | 앤티앨리어싱: | ||
505 | </f_translation> | ||
506 | </string><string><a_file>floater_hardware_settings.xml</a_file> | ||
507 | <b_path>/Hardware Settings Floater/fsaa</b_path> | ||
508 | <c_attribute>label</c_attribute> | ||
509 | <d_old></d_old> | ||
510 | <e_new>Antialiasing</e_new> | ||
511 | <f_old_trans></f_old_trans> | ||
512 | <f_translation>앤티앨리어싱</f_translation> | ||
513 | </string><string><a_file>floater_hardware_settings.xml</a_file> | ||
514 | <b_path>/Hardware Settings Floater/fsaa/FSAADisabled</b_path> | ||
515 | <c_attribute></c_attribute> | ||
516 | <d_old></d_old> | ||
517 | <e_new> | ||
518 | Disabled | ||
519 | </e_new> | ||
520 | <f_old_trans></f_old_trans> | ||
521 | <f_translation> | ||
522 | 비활성화됨 | ||
523 | </f_translation> | ||
524 | </string><string><a_file>floater_hardware_settings.xml</a_file> | ||
525 | <b_path>/Hardware Settings Floater/fsaa/2x</b_path> | ||
526 | <c_attribute></c_attribute> | ||
527 | <d_old></d_old> | ||
528 | <e_new> | ||
529 | 2x | ||
530 | </e_new> | ||
531 | <f_old_trans></f_old_trans> | ||
532 | <f_translation> | ||
533 | 2x | ||
534 | </f_translation> | ||
535 | </string><string><a_file>floater_hardware_settings.xml</a_file> | ||
536 | <b_path>/Hardware Settings Floater/fsaa/4x</b_path> | ||
537 | <c_attribute></c_attribute> | ||
538 | <d_old></d_old> | ||
539 | <e_new> | ||
540 | 4x | ||
541 | </e_new> | ||
542 | <f_old_trans></f_old_trans> | ||
543 | <f_translation> | ||
544 | 4x | ||
545 | </f_translation> | ||
546 | </string><string><a_file>floater_hardware_settings.xml</a_file> | ||
547 | <b_path>/Hardware Settings Floater/fsaa/8x</b_path> | ||
548 | <c_attribute></c_attribute> | ||
549 | <d_old></d_old> | ||
550 | <e_new> | ||
551 | 8x | ||
552 | </e_new> | ||
553 | <f_old_trans></f_old_trans> | ||
554 | <f_translation> | ||
555 | 8x | ||
556 | </f_translation> | ||
557 | </string><string><a_file>floater_hardware_settings.xml</a_file> | ||
558 | <b_path>/Hardware Settings Floater/fsaa/16x</b_path> | ||
559 | <c_attribute></c_attribute> | ||
560 | <d_old></d_old> | ||
561 | <e_new> | ||
562 | 16x | ||
563 | </e_new> | ||
564 | <f_old_trans></f_old_trans> | ||
565 | <f_translation> | ||
566 | 16x | ||
567 | </f_translation> | ||
568 | </string><string><a_file>floater_hud.xml</a_file> | ||
569 | <b_path>/floater_hud</b_path> | ||
570 | <c_attribute>title</c_attribute> | ||
571 | <d_old></d_old> | ||
572 | <e_new>Tutorial</e_new> | ||
573 | <f_old_trans></f_old_trans> | ||
574 | <f_translation>튜토리얼</f_translation> | ||
575 | </string><string><a_file>floater_joystick.xml</a_file> | ||
576 | <b_path>/Joystick</b_path> | ||
577 | <c_attribute>title</c_attribute> | ||
578 | <d_old></d_old> | ||
579 | <e_new>Joystick Configuration</e_new> | ||
580 | <f_old_trans></f_old_trans> | ||
581 | <f_translation>조이스틱 설정</f_translation> | ||
582 | </string><string><a_file>floater_joystick.xml</a_file> | ||
583 | <b_path>/Joystick/JoystickAxis1</b_path> | ||
584 | <c_attribute>label</c_attribute> | ||
585 | <d_old></d_old> | ||
586 | <e_new>X Axis Mapping</e_new> | ||
587 | <f_old_trans></f_old_trans> | ||
588 | <f_translation>X축 매핑</f_translation> | ||
589 | </string><string><a_file>floater_joystick.xml</a_file> | ||
590 | <b_path>/Joystick/JoystickAxis2</b_path> | ||
591 | <c_attribute>label</c_attribute> | ||
592 | <d_old></d_old> | ||
593 | <e_new>Y Axis Mapping</e_new> | ||
594 | <f_old_trans></f_old_trans> | ||
595 | <f_translation>Y축 매핑</f_translation> | ||
596 | </string><string><a_file>floater_joystick.xml</a_file> | ||
597 | <b_path>/Joystick/JoystickAxis0</b_path> | ||
598 | <c_attribute>label</c_attribute> | ||
599 | <d_old></d_old> | ||
600 | <e_new>Z Axis Mapping</e_new> | ||
601 | <f_old_trans></f_old_trans> | ||
602 | <f_translation>Z축 매핑</f_translation> | ||
603 | </string><string><a_file>floater_joystick.xml</a_file> | ||
604 | <b_path>/Joystick/JoystickAxis4</b_path> | ||
605 | <c_attribute>label</c_attribute> | ||
606 | <d_old></d_old> | ||
607 | <e_new>Pitch Mapping</e_new> | ||
608 | <f_old_trans></f_old_trans> | ||
609 | <f_translation>피치 매핑</f_translation> | ||
610 | </string><string><a_file>floater_joystick.xml</a_file> | ||
611 | <b_path>/Joystick/JoystickAxis5</b_path> | ||
612 | <c_attribute>label</c_attribute> | ||
613 | <d_old></d_old> | ||
614 | <e_new>Yaw Mapping</e_new> | ||
615 | <f_old_trans></f_old_trans> | ||
616 | <f_translation>요 매핑</f_translation> | ||
617 | </string><string><a_file>floater_joystick.xml</a_file> | ||
618 | <b_path>/Joystick/JoystickAxis3</b_path> | ||
619 | <c_attribute>label</c_attribute> | ||
620 | <d_old></d_old> | ||
621 | <e_new>Roll Mapping</e_new> | ||
622 | <f_old_trans></f_old_trans> | ||
623 | <f_translation>롤 매핑</f_translation> | ||
624 | </string><string><a_file>floater_joystick.xml</a_file> | ||
625 | <b_path>/Joystick/JoystickAxis6</b_path> | ||
626 | <c_attribute>label</c_attribute> | ||
627 | <d_old></d_old> | ||
628 | <e_new>Zoom Mapping</e_new> | ||
629 | <f_old_trans></f_old_trans> | ||
630 | <f_translation>확대/축소 매핑</f_translation> | ||
631 | </string><string><a_file>floater_joystick.xml</a_file> | ||
632 | <b_path>/Joystick/ZoomDirect</b_path> | ||
633 | <c_attribute>label</c_attribute> | ||
634 | <d_old></d_old> | ||
635 | <e_new>Direct Zoom</e_new> | ||
636 | <f_old_trans></f_old_trans> | ||
637 | <f_translation>직접 확대/축소</f_translation> | ||
638 | </string><string><a_file>floater_joystick.xml</a_file> | ||
639 | <b_path>/Joystick/Cursor3D</b_path> | ||
640 | <c_attribute>label</c_attribute> | ||
641 | <d_old></d_old> | ||
642 | <e_new>3D Cursor</e_new> | ||
643 | <f_old_trans></f_old_trans> | ||
644 | <f_translation>3D 커서</f_translation> | ||
645 | </string><string><a_file>floater_joystick.xml</a_file> | ||
646 | <b_path>/Joystick/AutoLeveling</b_path> | ||
647 | <c_attribute>label</c_attribute> | ||
648 | <d_old></d_old> | ||
649 | <e_new>Auto Level</e_new> | ||
650 | <f_old_trans></f_old_trans> | ||
651 | <f_translation>레벨 자동 수정</f_translation> | ||
652 | </string><string><a_file>floater_joystick.xml</a_file> | ||
653 | <b_path>/Joystick/Control Modes:</b_path> | ||
654 | <c_attribute></c_attribute> | ||
655 | <d_old></d_old> | ||
656 | <e_new> | ||
657 | Control Modes: | ||
658 | </e_new> | ||
659 | <f_old_trans></f_old_trans> | ||
660 | <f_translation> | ||
661 | 조절 모드: | ||
662 | </f_translation> | ||
663 | </string><string><a_file>floater_joystick.xml</a_file> | ||
664 | <b_path>/Joystick/XScale</b_path> | ||
665 | <c_attribute></c_attribute> | ||
666 | <d_old></d_old> | ||
667 | <e_new>X Scale</e_new> | ||
668 | <f_old_trans></f_old_trans> | ||
669 | <f_translation>X 크기</f_translation> | ||
670 | </string><string><a_file>floater_joystick.xml</a_file> | ||
671 | <b_path>/Joystick/YScale</b_path> | ||
672 | <c_attribute></c_attribute> | ||
673 | <d_old></d_old> | ||
674 | <e_new>Y Scale</e_new> | ||
675 | <f_old_trans></f_old_trans> | ||
676 | <f_translation>Y 크기</f_translation> | ||
677 | </string><string><a_file>floater_joystick.xml</a_file> | ||
678 | <b_path>/Joystick/ZScale</b_path> | ||
679 | <c_attribute></c_attribute> | ||
680 | <d_old></d_old> | ||
681 | <e_new>Z Scale</e_new> | ||
682 | <f_old_trans></f_old_trans> | ||
683 | <f_translation>Z 크기</f_translation> | ||
684 | </string><string><a_file>floater_joystick.xml</a_file> | ||
685 | <b_path>/Joystick/PitchScale</b_path> | ||
686 | <c_attribute></c_attribute> | ||
687 | <d_old></d_old> | ||
688 | <e_new>Pitch Scale</e_new> | ||
689 | <f_old_trans></f_old_trans> | ||
690 | <f_translation>피치 크기</f_translation> | ||
691 | </string><string><a_file>floater_joystick.xml</a_file> | ||
692 | <b_path>/Joystick/YawScale</b_path> | ||
693 | <c_attribute></c_attribute> | ||
694 | <d_old></d_old> | ||
695 | <e_new>Yaw Scale</e_new> | ||
696 | <f_old_trans></f_old_trans> | ||
697 | <f_translation>요 크기</f_translation> | ||
698 | </string><string><a_file>floater_joystick.xml</a_file> | ||
699 | <b_path>/Joystick/RollScale</b_path> | ||
700 | <c_attribute></c_attribute> | ||
701 | <d_old></d_old> | ||
702 | <e_new>Roll Scale</e_new> | ||
703 | <f_old_trans></f_old_trans> | ||
704 | <f_translation>롤 크기</f_translation> | ||
705 | </string><string><a_file>floater_joystick.xml</a_file> | ||
706 | <b_path>/Joystick/XDeadZone</b_path> | ||
707 | <c_attribute></c_attribute> | ||
708 | <d_old></d_old> | ||
709 | <e_new>X Dead Zone</e_new> | ||
710 | <f_old_trans></f_old_trans> | ||
711 | <f_translation>X 사각지대</f_translation> | ||
712 | </string><string><a_file>floater_joystick.xml</a_file> | ||
713 | <b_path>/Joystick/YDeadZone</b_path> | ||
714 | <c_attribute></c_attribute> | ||
715 | <d_old></d_old> | ||
716 | <e_new>Y Dead Zone</e_new> | ||
717 | <f_old_trans></f_old_trans> | ||
718 | <f_translation>Y 사각지대</f_translation> | ||
719 | </string><string><a_file>floater_joystick.xml</a_file> | ||
720 | <b_path>/Joystick/ZDeadZone</b_path> | ||
721 | <c_attribute></c_attribute> | ||
722 | <d_old></d_old> | ||
723 | <e_new>Z Dead Zone</e_new> | ||
724 | <f_old_trans></f_old_trans> | ||
725 | <f_translation>Z 사각지대</f_translation> | ||
726 | </string><string><a_file>floater_joystick.xml</a_file> | ||
727 | <b_path>/Joystick/PitchDeadZone</b_path> | ||
728 | <c_attribute></c_attribute> | ||
729 | <d_old></d_old> | ||
730 | <e_new>Pitch Dead Zone</e_new> | ||
731 | <f_old_trans></f_old_trans> | ||
732 | <f_translation>피치 사각지대</f_translation> | ||
733 | </string><string><a_file>floater_joystick.xml</a_file> | ||
734 | <b_path>/Joystick/YawDeadZone</b_path> | ||
735 | <c_attribute></c_attribute> | ||
736 | <d_old></d_old> | ||
737 | <e_new>Yaw Dead Zone</e_new> | ||
738 | <f_old_trans></f_old_trans> | ||
739 | <f_translation>요 사각지대</f_translation> | ||
740 | </string><string><a_file>floater_joystick.xml</a_file> | ||
741 | <b_path>/Joystick/RollDeadZone</b_path> | ||
742 | <c_attribute></c_attribute> | ||
743 | <d_old></d_old> | ||
744 | <e_new>Roll Dead Zone</e_new> | ||
745 | <f_old_trans></f_old_trans> | ||
746 | <f_translation>롤 사각지대</f_translation> | ||
747 | </string><string><a_file>floater_joystick.xml</a_file> | ||
748 | <b_path>/Joystick/Feathering</b_path> | ||
749 | <c_attribute></c_attribute> | ||
750 | <d_old></d_old> | ||
751 | <e_new>Feathering</e_new> | ||
752 | <f_old_trans></f_old_trans> | ||
753 | <f_translation>부드러움 효과</f_translation> | ||
754 | </string><string><a_file>floater_joystick.xml</a_file> | ||
755 | <b_path>/Joystick/AvatarFeathering</b_path> | ||
756 | <c_attribute>label</c_attribute> | ||
757 | <d_old></d_old> | ||
758 | <e_new></e_new> | ||
759 | <f_old_trans></f_old_trans> | ||
760 | <f_translation></f_translation> | ||
761 | </string><string><a_file>floater_joystick.xml</a_file> | ||
762 | <b_path>/Joystick/BuildFeathering</b_path> | ||
763 | <c_attribute>label</c_attribute> | ||
764 | <d_old></d_old> | ||
765 | <e_new></e_new> | ||
766 | <f_old_trans></f_old_trans> | ||
767 | <f_translation></f_translation> | ||
768 | </string><string><a_file>floater_joystick.xml</a_file> | ||
769 | <b_path>/Joystick/FlycamFeathering</b_path> | ||
770 | <c_attribute>label</c_attribute> | ||
771 | <d_old></d_old> | ||
772 | <e_new></e_new> | ||
773 | <f_old_trans></f_old_trans> | ||
774 | <f_translation></f_translation> | ||
775 | </string><string><a_file>floater_joystick.xml</a_file> | ||
776 | <b_path>/Joystick/ZoomScale2</b_path> | ||
777 | <c_attribute></c_attribute> | ||
778 | <d_old></d_old> | ||
779 | <e_new>Zoom Scale</e_new> | ||
780 | <f_old_trans></f_old_trans> | ||
781 | <f_translation>확대/축소 크기</f_translation> | ||
782 | </string><string><a_file>floater_joystick.xml</a_file> | ||
783 | <b_path>/Joystick/FlycamAxisScale6</b_path> | ||
784 | <c_attribute>label</c_attribute> | ||
785 | <d_old></d_old> | ||
786 | <e_new></e_new> | ||
787 | <f_old_trans></f_old_trans> | ||
788 | <f_translation></f_translation> | ||
789 | </string><string><a_file>floater_joystick.xml</a_file> | ||
790 | <b_path>/Joystick/ZoomDeadZone</b_path> | ||
791 | <c_attribute></c_attribute> | ||
792 | <d_old></d_old> | ||
793 | <e_new>Zoom Dead Zone</e_new> | ||
794 | <f_old_trans></f_old_trans> | ||
795 | <f_translation>확대/축소 사각지대</f_translation> | ||
796 | </string><string><a_file>floater_joystick.xml</a_file> | ||
797 | <b_path>/Joystick/FlycamAxisDeadZone6</b_path> | ||
798 | <c_attribute>label</c_attribute> | ||
799 | <d_old></d_old> | ||
800 | <e_new></e_new> | ||
801 | <f_old_trans></f_old_trans> | ||
802 | <f_translation></f_translation> | ||
803 | </string><string><a_file>floater_joystick.xml</a_file> | ||
804 | <b_path>/Joystick/SpaceNavigatorDefaults</b_path> | ||
805 | <c_attribute>label</c_attribute> | ||
806 | <d_old></d_old> | ||
807 | <e_new>SpaceNavigator Defaults</e_new> | ||
808 | <f_old_trans></f_old_trans> | ||
809 | <f_translation>SpaceNavigator 기본값</f_translation> | ||
810 | </string><string><a_file>floater_joystick.xml</a_file> | ||
811 | <b_path>/Joystick/JoystickMonitor</b_path> | ||
812 | <c_attribute></c_attribute> | ||
813 | <d_old></d_old> | ||
814 | <e_new>Joystick Monitor</e_new> | ||
815 | <f_old_trans></f_old_trans> | ||
816 | <f_translation>조이스틱 검사</f_translation> | ||
817 | </string><string><a_file>floater_joystick.xml</a_file> | ||
818 | <b_path>/Joystick/Axis</b_path> | ||
819 | <c_attribute></c_attribute> | ||
820 | <d_old></d_old> | ||
821 | <e_new>Axis [NUM]</e_new> | ||
822 | <f_old_trans></f_old_trans> | ||
823 | <f_translation>축 [NUM]</f_translation> | ||
824 | </string><string><a_file>floater_joystick.xml</a_file> | ||
825 | <b_path>/Joystick/NoDevice</b_path> | ||
826 | <c_attribute></c_attribute> | ||
827 | <d_old></d_old> | ||
828 | <e_new>no device detected</e_new> | ||
829 | <f_old_trans></f_old_trans> | ||
830 | <f_translation>검색된 장치가 없습니다.</f_translation> | ||
831 | </string><string><a_file>floater_post_process.xml</a_file> | ||
832 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiColorFilterPanel/wmiColorFilterBrightness</b_path> | ||
833 | <c_attribute>label</c_attribute> | ||
834 | <d_old></d_old> | ||
835 | <e_new></e_new> | ||
836 | <f_old_trans></f_old_trans> | ||
837 | <f_translation></f_translation> | ||
838 | </string><string><a_file>floater_post_process.xml</a_file> | ||
839 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiColorFilterPanel/wmiColorFilterSaturation</b_path> | ||
840 | <c_attribute>label</c_attribute> | ||
841 | <d_old></d_old> | ||
842 | <e_new></e_new> | ||
843 | <f_old_trans></f_old_trans> | ||
844 | <f_translation></f_translation> | ||
845 | </string><string><a_file>floater_post_process.xml</a_file> | ||
846 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiColorFilterPanel/wmiColorFilterContrast</b_path> | ||
847 | <c_attribute>label</c_attribute> | ||
848 | <d_old></d_old> | ||
849 | <e_new></e_new> | ||
850 | <f_old_trans></f_old_trans> | ||
851 | <f_translation></f_translation> | ||
852 | </string><string><a_file>floater_post_process.xml</a_file> | ||
853 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiNightVisionPanel/wmiNightVisionBrightMult</b_path> | ||
854 | <c_attribute>label</c_attribute> | ||
855 | <d_old></d_old> | ||
856 | <e_new></e_new> | ||
857 | <f_old_trans></f_old_trans> | ||
858 | <f_translation></f_translation> | ||
859 | </string><string><a_file>floater_post_process.xml</a_file> | ||
860 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiNightVisionPanel/wmiNightVisionNoiseSize</b_path> | ||
861 | <c_attribute>label</c_attribute> | ||
862 | <d_old></d_old> | ||
863 | <e_new></e_new> | ||
864 | <f_old_trans></f_old_trans> | ||
865 | <f_translation></f_translation> | ||
866 | </string><string><a_file>floater_post_process.xml</a_file> | ||
867 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiNightVisionPanel/wmiNightVisionNoiseStrength</b_path> | ||
868 | <c_attribute>label</c_attribute> | ||
869 | <d_old></d_old> | ||
870 | <e_new></e_new> | ||
871 | <f_old_trans></f_old_trans> | ||
872 | <f_translation></f_translation> | ||
873 | </string><string><a_file>floater_post_process.xml</a_file> | ||
874 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiBloomPanel/wmiBloomExtract</b_path> | ||
875 | <c_attribute>label</c_attribute> | ||
876 | <d_old></d_old> | ||
877 | <e_new></e_new> | ||
878 | <f_old_trans></f_old_trans> | ||
879 | <f_translation></f_translation> | ||
880 | </string><string><a_file>floater_post_process.xml</a_file> | ||
881 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiBloomPanel/wmiBloomSize</b_path> | ||
882 | <c_attribute>label</c_attribute> | ||
883 | <d_old></d_old> | ||
884 | <e_new></e_new> | ||
885 | <f_old_trans></f_old_trans> | ||
886 | <f_translation></f_translation> | ||
887 | </string><string><a_file>floater_post_process.xml</a_file> | ||
888 | <b_path>/Post-Process Floater/Post-Process Tabs/wmiBloomPanel/wmiBloomStrength</b_path> | ||
889 | <c_attribute>label</c_attribute> | ||
890 | <d_old></d_old> | ||
891 | <e_new></e_new> | ||
892 | <f_old_trans></f_old_trans> | ||
893 | <f_translation></f_translation> | ||
894 | </string><string><a_file>floater_preview_classified.xml</a_file> | ||
895 | <b_path>/classified_preview</b_path> | ||
896 | <c_attribute>title</c_attribute> | ||
897 | <d_old></d_old> | ||
898 | <e_new>Classified Information</e_new> | ||
899 | <f_old_trans></f_old_trans> | ||
900 | <f_translation>광고 정보</f_translation> | ||
901 | </string><string><a_file>floater_preview_event.xml</a_file> | ||
902 | <b_path>/event_preview</b_path> | ||
903 | <c_attribute>title</c_attribute> | ||
904 | <d_old></d_old> | ||
905 | <e_new>Event Information</e_new> | ||
906 | <f_old_trans></f_old_trans> | ||
907 | <f_translation>이벤트 정보</f_translation> | ||
908 | </string><string><a_file>floater_preview_gesture.xml</a_file> | ||
909 | <b_path>/gesture_preview/library_label</b_path> | ||
910 | <c_attribute></c_attribute> | ||
911 | <d_old></d_old> | ||
912 | <e_new> | ||
913 | Library: | ||
914 | </e_new> | ||
915 | <f_old_trans></f_old_trans> | ||
916 | <f_translation> | ||
917 | 라이브러리: | ||
918 | </f_translation> | ||
919 | </string><string><a_file>floater_preview_gesture.xml</a_file> | ||
920 | <b_path>/gesture_preview/steps_label</b_path> | ||
921 | <c_attribute></c_attribute> | ||
922 | <d_old></d_old> | ||
923 | <e_new> | ||
924 | Steps: | ||
925 | </e_new> | ||
926 | <f_old_trans></f_old_trans> | ||
927 | <f_translation> | ||
928 | 단계: | ||
929 | </f_translation> | ||
930 | </string><string><a_file>floater_preview_gesture.xml</a_file> | ||
931 | <b_path>/gesture_preview/animation_trigger_type/start</b_path> | ||
932 | <c_attribute></c_attribute> | ||
933 | <d_old></d_old> | ||
934 | <e_new> | ||
935 | Start | ||
936 | </e_new> | ||
937 | <f_old_trans></f_old_trans> | ||
938 | <f_translation> | ||
939 | 시작 | ||
940 | </f_translation> | ||
941 | </string><string><a_file>floater_preview_gesture.xml</a_file> | ||
942 | <b_path>/gesture_preview/animation_trigger_type/stop</b_path> | ||
943 | <c_attribute></c_attribute> | ||
944 | <d_old></d_old> | ||
945 | <e_new> | ||
946 | Stop | ||
947 | </e_new> | ||
948 | <f_old_trans></f_old_trans> | ||
949 | <f_translation> | ||
950 | 중지 | ||
951 | </f_translation> | ||
952 | </string><string><a_file>floater_preview_notecard_keep_discard.xml</a_file> | ||
953 | <b_path>/preview_notecard/not_allowed</b_path> | ||
954 | <c_attribute></c_attribute> | ||
955 | <d_old></d_old> | ||
956 | <e_new>You are not allowed to view this note.</e_new> | ||
957 | <f_old_trans></f_old_trans> | ||
958 | <f_translation>사용자는 이 노트를 볼 수 없습니다.</f_translation> | ||
959 | </string><string><a_file>floater_preview_url.xml</a_file> | ||
960 | <b_path>/url_preview</b_path> | ||
961 | <c_attribute>title</c_attribute> | ||
962 | <d_old></d_old> | ||
963 | <e_new>Place Information</e_new> | ||
964 | <f_old_trans></f_old_trans> | ||
965 | <f_translation>장소 정보</f_translation> | ||
966 | </string><string><a_file>floater_region_info.xml</a_file> | ||
967 | <b_path>/regioninfo</b_path> | ||
968 | <c_attribute>title</c_attribute> | ||
969 | <d_old></d_old> | ||
970 | <e_new>Region/Estate</e_new> | ||
971 | <f_old_trans></f_old_trans> | ||
972 | <f_translation>지역/사유지</f_translation> | ||
973 | </string><string><a_file>floater_tools.xml</a_file> | ||
974 | <b_path>/toolbox floater/ToolCube</b_path> | ||
975 | <c_attribute>tool_tip</c_attribute> | ||
976 | <d_old></d_old> | ||
977 | <e_new>Cube</e_new> | ||
978 | <f_old_trans></f_old_trans> | ||
979 | <f_translation>정육면체</f_translation> | ||
980 | </string><string><a_file>floater_tools.xml</a_file> | ||
981 | <b_path>/toolbox floater/ToolPrism</b_path> | ||
982 | <c_attribute>tool_tip</c_attribute> | ||
983 | <d_old></d_old> | ||
984 | <e_new>Prism</e_new> | ||
985 | <f_old_trans></f_old_trans> | ||
986 | <f_translation>삼각기둥</f_translation> | ||
987 | </string><string><a_file>floater_tools.xml</a_file> | ||
988 | <b_path>/toolbox floater/ToolPyramid</b_path> | ||
989 | <c_attribute>tool_tip</c_attribute> | ||
990 | <d_old></d_old> | ||
991 | <e_new>Pyramid</e_new> | ||
992 | <f_old_trans></f_old_trans> | ||
993 | <f_translation>삼각뿔</f_translation> | ||
994 | </string><string><a_file>floater_tools.xml</a_file> | ||
995 | <b_path>/toolbox floater/ToolTetrahedron</b_path> | ||
996 | <c_attribute>tool_tip</c_attribute> | ||
997 | <d_old></d_old> | ||
998 | <e_new>Tetrahedron</e_new> | ||
999 | <f_old_trans></f_old_trans> | ||
1000 | <f_translation>사면체</f_translation> | ||
1001 | </string><string><a_file>floater_tools.xml</a_file> | ||
1002 | <b_path>/toolbox floater/ToolCylinder</b_path> | ||
1003 | <c_attribute>tool_tip</c_attribute> | ||
1004 | <d_old></d_old> | ||
1005 | <e_new>Cylinder</e_new> | ||
1006 | <f_old_trans></f_old_trans> | ||
1007 | <f_translation>원통</f_translation> | ||
1008 | </string><string><a_file>floater_tools.xml</a_file> | ||
1009 | <b_path>/toolbox floater/ToolHemiCylinder</b_path> | ||
1010 | <c_attribute>tool_tip</c_attribute> | ||
1011 | <d_old></d_old> | ||
1012 | <e_new>Hemicylinder</e_new> | ||
1013 | <f_old_trans></f_old_trans> | ||
1014 | <f_translation>반원통</f_translation> | ||
1015 | </string><string><a_file>floater_tools.xml</a_file> | ||
1016 | <b_path>/toolbox floater/ToolCone</b_path> | ||
1017 | <c_attribute>tool_tip</c_attribute> | ||
1018 | <d_old></d_old> | ||
1019 | <e_new>Cone</e_new> | ||
1020 | <f_old_trans></f_old_trans> | ||
1021 | <f_translation>원뿔</f_translation> | ||
1022 | </string><string><a_file>floater_tools.xml</a_file> | ||
1023 | <b_path>/toolbox floater/ToolHemiCone</b_path> | ||
1024 | <c_attribute>tool_tip</c_attribute> | ||
1025 | <d_old></d_old> | ||
1026 | <e_new>Hemicone</e_new> | ||
1027 | <f_old_trans></f_old_trans> | ||
1028 | <f_translation>반원뿔</f_translation> | ||
1029 | </string><string><a_file>floater_tools.xml</a_file> | ||
1030 | <b_path>/toolbox floater/ToolSphere</b_path> | ||
1031 | <c_attribute>tool_tip</c_attribute> | ||
1032 | <d_old></d_old> | ||
1033 | <e_new>Sphere</e_new> | ||
1034 | <f_old_trans></f_old_trans> | ||
1035 | <f_translation>구</f_translation> | ||
1036 | </string><string><a_file>floater_tools.xml</a_file> | ||
1037 | <b_path>/toolbox floater/ToolHemiSphere</b_path> | ||
1038 | <c_attribute>tool_tip</c_attribute> | ||
1039 | <d_old></d_old> | ||
1040 | <e_new>Hemisphere</e_new> | ||
1041 | <f_old_trans></f_old_trans> | ||
1042 | <f_translation>반구</f_translation> | ||
1043 | </string><string><a_file>floater_tools.xml</a_file> | ||
1044 | <b_path>/toolbox floater/ToolTorus</b_path> | ||
1045 | <c_attribute>tool_tip</c_attribute> | ||
1046 | <d_old></d_old> | ||
1047 | <e_new>Torus</e_new> | ||
1048 | <f_old_trans></f_old_trans> | ||
1049 | <f_translation>원환</f_translation> | ||
1050 | </string><string><a_file>floater_tools.xml</a_file> | ||
1051 | <b_path>/toolbox floater/ToolTube</b_path> | ||
1052 | <c_attribute>tool_tip</c_attribute> | ||
1053 | <d_old></d_old> | ||
1054 | <e_new>Tube</e_new> | ||
1055 | <f_old_trans></f_old_trans> | ||
1056 | <f_translation>관</f_translation> | ||
1057 | </string><string><a_file>floater_tools.xml</a_file> | ||
1058 | <b_path>/toolbox floater/ToolRing</b_path> | ||
1059 | <c_attribute>tool_tip</c_attribute> | ||
1060 | <d_old></d_old> | ||
1061 | <e_new>Ring</e_new> | ||
1062 | <f_old_trans></f_old_trans> | ||
1063 | <f_translation>반지</f_translation> | ||
1064 | </string><string><a_file>floater_tools.xml</a_file> | ||
1065 | <b_path>/toolbox floater/ToolTree</b_path> | ||
1066 | <c_attribute>tool_tip</c_attribute> | ||
1067 | <d_old></d_old> | ||
1068 | <e_new>Tree</e_new> | ||
1069 | <f_old_trans></f_old_trans> | ||
1070 | <f_translation>나무</f_translation> | ||
1071 | </string><string><a_file>floater_tools.xml</a_file> | ||
1072 | <b_path>/toolbox floater/ToolGrass</b_path> | ||
1073 | <c_attribute>tool_tip</c_attribute> | ||
1074 | <d_old></d_old> | ||
1075 | <e_new>Grass</e_new> | ||
1076 | <f_old_trans></f_old_trans> | ||
1077 | <f_translation>잔디</f_translation> | ||
1078 | </string><string><a_file>menu_viewer.xml</a_file> | ||
1079 | <b_path>/Main Menu/View/Joystick Flycam</b_path> | ||
1080 | <c_attribute>label</c_attribute> | ||
1081 | <d_old></d_old> | ||
1082 | <e_new>Joystick Flycam</e_new> | ||
1083 | <f_old_trans></f_old_trans> | ||
1084 | <f_translation>조이스틱 Flycam</f_translation> | ||
1085 | </string><string><a_file>menu_viewer.xml</a_file> | ||
1086 | <b_path>/Main Menu/Help/Tutorial</b_path> | ||
1087 | <c_attribute>label</c_attribute> | ||
1088 | <d_old></d_old> | ||
1089 | <e_new>Tutorial</e_new> | ||
1090 | <f_old_trans></f_old_trans> | ||
1091 | <f_translation>튜토리얼</f_translation> | ||
1092 | </string><string><a_file>menu_viewer.xml</a_file> | ||
1093 | <b_path>/Main Menu/Help/separator7</b_path> | ||
1094 | <c_attribute>label</c_attribute> | ||
1095 | <d_old></d_old> | ||
1096 | <e_new>-----------</e_new> | ||
1097 | <f_old_trans></f_old_trans> | ||
1098 | <f_translation>-----------</f_translation> | ||
1099 | </string><string><a_file>menu_viewer.xml</a_file> | ||
1100 | <b_path>/Main Menu/Help/Bug Reporting/separator9</b_path> | ||
1101 | <c_attribute>label</c_attribute> | ||
1102 | <d_old></d_old> | ||
1103 | <e_new>-----------</e_new> | ||
1104 | <f_old_trans></f_old_trans> | ||
1105 | <f_translation>-----------</f_translation> | ||
1106 | </string><string><a_file>mime_types.xml</a_file> | ||
1107 | <b_path>/default/web/</b_path> | ||
1108 | <c_attribute></c_attribute> | ||
1109 | <d_old></d_old> | ||
1110 | <e_new> | ||
1111 | Web Content | ||
1112 | </e_new> | ||
1113 | <f_old_trans></f_old_trans> | ||
1114 | <f_translation> | ||
1115 | 웹 컨텐츠 | ||
1116 | </f_translation> | ||
1117 | </string><string><a_file>mime_types.xml</a_file> | ||
1118 | <b_path>/default/web/</b_path> | ||
1119 | <c_attribute></c_attribute> | ||
1120 | <d_old></d_old> | ||
1121 | <e_new> | ||
1122 | This location has Web content | ||
1123 | </e_new> | ||
1124 | <f_old_trans></f_old_trans> | ||
1125 | <f_translation> | ||
1126 | 이 위치에는 웹 컨텐츠가 포함되어 있습니다. | ||
1127 | </f_translation> | ||
1128 | </string><string><a_file>mime_types.xml</a_file> | ||
1129 | <b_path>/default/web/</b_path> | ||
1130 | <c_attribute></c_attribute> | ||
1131 | <d_old></d_old> | ||
1132 | <e_new> | ||
1133 | Show Web content | ||
1134 | </e_new> | ||
1135 | <f_old_trans></f_old_trans> | ||
1136 | <f_translation> | ||
1137 | 웹 컨텐츠 표시 | ||
1138 | </f_translation> | ||
1139 | </string><string><a_file>mime_types.xml</a_file> | ||
1140 | <b_path>/default/movie/</b_path> | ||
1141 | <c_attribute></c_attribute> | ||
1142 | <d_old></d_old> | ||
1143 | <e_new> | ||
1144 | Movie | ||
1145 | </e_new> | ||
1146 | <f_old_trans></f_old_trans> | ||
1147 | <f_translation> | ||
1148 | 동영상 | ||
1149 | </f_translation> | ||
1150 | </string><string><a_file>mime_types.xml</a_file> | ||
1151 | <b_path>/default/movie/</b_path> | ||
1152 | <c_attribute></c_attribute> | ||
1153 | <d_old></d_old> | ||
1154 | <e_new> | ||
1155 | There is a movie to play here | ||
1156 | </e_new> | ||
1157 | <f_old_trans></f_old_trans> | ||
1158 | <f_translation> | ||
1159 | 여기서 동영상을 재생할 수 있습니다. | ||
1160 | </f_translation> | ||
1161 | </string><string><a_file>mime_types.xml</a_file> | ||
1162 | <b_path>/default/movie/</b_path> | ||
1163 | <c_attribute></c_attribute> | ||
1164 | <d_old></d_old> | ||
1165 | <e_new> | ||
1166 | Play movie | ||
1167 | </e_new> | ||
1168 | <f_old_trans></f_old_trans> | ||
1169 | <f_translation> | ||
1170 | 동영상 재생 | ||
1171 | </f_translation> | ||
1172 | </string><string><a_file>mime_types.xml</a_file> | ||
1173 | <b_path>/default/none/</b_path> | ||
1174 | <c_attribute></c_attribute> | ||
1175 | <d_old></d_old> | ||
1176 | <e_new> | ||
1177 | No Content | ||
1178 | </e_new> | ||
1179 | <f_old_trans></f_old_trans> | ||
1180 | <f_translation> | ||
1181 | 컨텐츠 없음 | ||
1182 | </f_translation> | ||
1183 | </string><string><a_file>mime_types.xml</a_file> | ||
1184 | <b_path>/default/none/</b_path> | ||
1185 | <c_attribute></c_attribute> | ||
1186 | <d_old></d_old> | ||
1187 | <e_new> | ||
1188 | No media here | ||
1189 | </e_new> | ||
1190 | <f_old_trans></f_old_trans> | ||
1191 | <f_translation> | ||
1192 | 미디어 없음 | ||
1193 | </f_translation> | ||
1194 | </string><string><a_file>mime_types.xml</a_file> | ||
1195 | <b_path>/default/image/</b_path> | ||
1196 | <c_attribute></c_attribute> | ||
1197 | <d_old></d_old> | ||
1198 | <e_new> | ||
1199 | Image | ||
1200 | </e_new> | ||
1201 | <f_old_trans></f_old_trans> | ||
1202 | <f_translation> | ||
1203 | 이미지 | ||
1204 | </f_translation> | ||
1205 | </string><string><a_file>mime_types.xml</a_file> | ||
1206 | <b_path>/default/image/</b_path> | ||
1207 | <c_attribute></c_attribute> | ||
1208 | <d_old></d_old> | ||
1209 | <e_new> | ||
1210 | There is an image at this location | ||
1211 | </e_new> | ||
1212 | <f_old_trans></f_old_trans> | ||
1213 | <f_translation> | ||
1214 | 이 위치에 이미지가 있습니다. | ||
1215 | </f_translation> | ||
1216 | </string><string><a_file>mime_types.xml</a_file> | ||
1217 | <b_path>/default/image/</b_path> | ||
1218 | <c_attribute></c_attribute> | ||
1219 | <d_old></d_old> | ||
1220 | <e_new> | ||
1221 | View this location's image | ||
1222 | </e_new> | ||
1223 | <f_old_trans></f_old_trans> | ||
1224 | <f_translation> | ||
1225 | 이 위치의 이미지 보기 | ||
1226 | </f_translation> | ||
1227 | </string><string><a_file>mime_types.xml</a_file> | ||
1228 | <b_path>/default/audio/</b_path> | ||
1229 | <c_attribute></c_attribute> | ||
1230 | <d_old></d_old> | ||
1231 | <e_new> | ||
1232 | Audio | ||
1233 | </e_new> | ||
1234 | <f_old_trans></f_old_trans> | ||
1235 | <f_translation> | ||
1236 | 오디오 | ||
1237 | </f_translation> | ||
1238 | </string><string><a_file>mime_types.xml</a_file> | ||
1239 | <b_path>/default/audio/</b_path> | ||
1240 | <c_attribute></c_attribute> | ||
1241 | <d_old></d_old> | ||
1242 | <e_new> | ||
1243 | There is audio at this location | ||
1244 | </e_new> | ||
1245 | <f_old_trans></f_old_trans> | ||
1246 | <f_translation> | ||
1247 | 이 위치에 오디오가 있습니다. | ||
1248 | </f_translation> | ||
1249 | </string><string><a_file>mime_types.xml</a_file> | ||
1250 | <b_path>/default/audio/</b_path> | ||
1251 | <c_attribute></c_attribute> | ||
1252 | <d_old></d_old> | ||
1253 | <e_new> | ||
1254 | View this location's audio | ||
1255 | </e_new> | ||
1256 | <f_old_trans></f_old_trans> | ||
1257 | <f_translation> | ||
1258 | 이 위치의 오디오 보기 | ||
1259 | </f_translation> | ||
1260 | </string><string><a_file>mime_types.xml</a_file> | ||
1261 | <b_path>/default/rtsp/</b_path> | ||
1262 | <c_attribute></c_attribute> | ||
1263 | <d_old></d_old> | ||
1264 | <e_new> | ||
1265 | Real Time Streaming | ||
1266 | </e_new> | ||
1267 | <f_old_trans></f_old_trans> | ||
1268 | <f_translation> | ||
1269 | 실시간 스트리밍 | ||
1270 | </f_translation> | ||
1271 | </string><string><a_file>mime_types.xml</a_file> | ||
1272 | <b_path>/default/blank/</b_path> | ||
1273 | <c_attribute></c_attribute> | ||
1274 | <d_old></d_old> | ||
1275 | <e_new> | ||
1276 | - None - | ||
1277 | </e_new> | ||
1278 | <f_old_trans></f_old_trans> | ||
1279 | <f_translation> | ||
1280 | - 없음 - | ||
1281 | </f_translation> | ||
1282 | </string><string><a_file>mime_types.xml</a_file> | ||
1283 | <b_path>/default/"none/none"/</b_path> | ||
1284 | <c_attribute></c_attribute> | ||
1285 | <d_old></d_old> | ||
1286 | <e_new> | ||
1287 | - None - | ||
1288 | </e_new> | ||
1289 | <f_old_trans></f_old_trans> | ||
1290 | <f_translation> | ||
1291 | - 없음 - | ||
1292 | </f_translation> | ||
1293 | </string><string><a_file>mime_types.xml</a_file> | ||
1294 | <b_path>/default/"audio/*"/</b_path> | ||
1295 | <c_attribute></c_attribute> | ||
1296 | <d_old></d_old> | ||
1297 | <e_new> | ||
1298 | Audio | ||
1299 | </e_new> | ||
1300 | <f_old_trans></f_old_trans> | ||
1301 | <f_translation> | ||
1302 | 오디오 | ||
1303 | </f_translation> | ||
1304 | </string><string><a_file>mime_types.xml</a_file> | ||
1305 | <b_path>/default/"video/*"/</b_path> | ||
1306 | <c_attribute></c_attribute> | ||
1307 | <d_old></d_old> | ||
1308 | <e_new> | ||
1309 | Video | ||
1310 | </e_new> | ||
1311 | <f_old_trans></f_old_trans> | ||
1312 | <f_translation> | ||
1313 | 비디오 | ||
1314 | </f_translation> | ||
1315 | </string><string><a_file>mime_types.xml</a_file> | ||
1316 | <b_path>/default/"image/*"/</b_path> | ||
1317 | <c_attribute></c_attribute> | ||
1318 | <d_old></d_old> | ||
1319 | <e_new> | ||
1320 | Image | ||
1321 | </e_new> | ||
1322 | <f_old_trans></f_old_trans> | ||
1323 | <f_translation> | ||
1324 | 이미지 | ||
1325 | </f_translation> | ||
1326 | </string><string><a_file>mime_types.xml</a_file> | ||
1327 | <b_path>/default/"video/vnd.secondlife.qt.legacy"/</b_path> | ||
1328 | <c_attribute></c_attribute> | ||
1329 | <d_old></d_old> | ||
1330 | <e_new> | ||
1331 | Movie (QuickTime) | ||
1332 | </e_new> | ||
1333 | <f_old_trans></f_old_trans> | ||
1334 | <f_translation> | ||
1335 | 동영상(QuickTime) | ||
1336 | </f_translation> | ||
1337 | </string><string><a_file>mime_types.xml</a_file> | ||
1338 | <b_path>/default/"application/javascript"/</b_path> | ||
1339 | <c_attribute></c_attribute> | ||
1340 | <d_old></d_old> | ||
1341 | <e_new> | ||
1342 | Javascript | ||
1343 | </e_new> | ||
1344 | <f_old_trans></f_old_trans> | ||
1345 | <f_translation> | ||
1346 | Javascript | ||
1347 | </f_translation> | ||
1348 | </string><string><a_file>mime_types.xml</a_file> | ||
1349 | <b_path>/default/"application/ogg"/</b_path> | ||
1350 | <c_attribute></c_attribute> | ||
1351 | <d_old></d_old> | ||
1352 | <e_new> | ||
1353 | Ogg Audio/Video | ||
1354 | </e_new> | ||
1355 | <f_old_trans></f_old_trans> | ||
1356 | <f_translation> | ||
1357 | Ogg 오디오/비디오 | ||
1358 | </f_translation> | ||
1359 | </string><string><a_file>mime_types.xml</a_file> | ||
1360 | <b_path>/default/"application/pdf"/</b_path> | ||
1361 | <c_attribute></c_attribute> | ||
1362 | <d_old></d_old> | ||
1363 | <e_new> | ||
1364 | PDF Document | ||
1365 | </e_new> | ||
1366 | <f_old_trans></f_old_trans> | ||
1367 | <f_translation> | ||
1368 | PDF 문서 | ||
1369 | </f_translation> | ||
1370 | </string><string><a_file>mime_types.xml</a_file> | ||
1371 | <b_path>/default/"application/postscript"/</b_path> | ||
1372 | <c_attribute></c_attribute> | ||
1373 | <d_old></d_old> | ||
1374 | <e_new> | ||
1375 | Postscript Document | ||
1376 | </e_new> | ||
1377 | <f_old_trans></f_old_trans> | ||
1378 | <f_translation> | ||
1379 | 포스트스크립트 문서 | ||
1380 | </f_translation> | ||
1381 | </string><string><a_file>mime_types.xml</a_file> | ||
1382 | <b_path>/default/"application/rtf"/</b_path> | ||
1383 | <c_attribute></c_attribute> | ||
1384 | <d_old></d_old> | ||
1385 | <e_new> | ||
1386 | Rich Text (RTF) | ||
1387 | </e_new> | ||
1388 | <f_old_trans></f_old_trans> | ||
1389 | <f_translation> | ||
1390 | 서식있는 텍스트(RTF) | ||
1391 | </f_translation> | ||
1392 | </string><string><a_file>mime_types.xml</a_file> | ||
1393 | <b_path>/default/"application/xhtml+xml"/</b_path> | ||
1394 | <c_attribute></c_attribute> | ||
1395 | <d_old></d_old> | ||
1396 | <e_new> | ||
1397 | Web Page (XHTML) | ||
1398 | </e_new> | ||
1399 | <f_old_trans></f_old_trans> | ||
1400 | <f_translation> | ||
1401 | 웹 페이지(XHTML) | ||
1402 | </f_translation> | ||
1403 | </string><string><a_file>mime_types.xml</a_file> | ||
1404 | <b_path>/default/"application/x-director"/</b_path> | ||
1405 | <c_attribute></c_attribute> | ||
1406 | <d_old></d_old> | ||
1407 | <e_new> | ||
1408 | Macromedia Director | ||
1409 | </e_new> | ||
1410 | <f_old_trans></f_old_trans> | ||
1411 | <f_translation> | ||
1412 | Macromedia Director | ||
1413 | </f_translation> | ||
1414 | </string><string><a_file>mime_types.xml</a_file> | ||
1415 | <b_path>/default/"application/x-shockwave-flash"/</b_path> | ||
1416 | <c_attribute></c_attribute> | ||
1417 | <d_old></d_old> | ||
1418 | <e_new> | ||
1419 | Flash | ||
1420 | </e_new> | ||
1421 | <f_old_trans></f_old_trans> | ||
1422 | <f_translation> | ||
1423 | 플래시 | ||
1424 | </f_translation> | ||
1425 | </string><string><a_file>mime_types.xml</a_file> | ||
1426 | <b_path>/default/"audio/mid"/</b_path> | ||
1427 | <c_attribute></c_attribute> | ||
1428 | <d_old></d_old> | ||
1429 | <e_new> | ||
1430 | Audio (MIDI) | ||
1431 | </e_new> | ||
1432 | <f_old_trans></f_old_trans> | ||
1433 | <f_translation> | ||
1434 | 오디오(MIDI) | ||
1435 | </f_translation> | ||
1436 | </string><string><a_file>mime_types.xml</a_file> | ||
1437 | <b_path>/default/"audio/mpeg"/</b_path> | ||
1438 | <c_attribute></c_attribute> | ||
1439 | <d_old></d_old> | ||
1440 | <e_new> | ||
1441 | Audio (MP3) | ||
1442 | </e_new> | ||
1443 | <f_old_trans></f_old_trans> | ||
1444 | <f_translation> | ||
1445 | 오디오(MP3) | ||
1446 | </f_translation> | ||
1447 | </string><string><a_file>mime_types.xml</a_file> | ||
1448 | <b_path>/default/"audio/x-aiff"/</b_path> | ||
1449 | <c_attribute></c_attribute> | ||
1450 | <d_old></d_old> | ||
1451 | <e_new> | ||
1452 | Audio (AIFF) | ||
1453 | </e_new> | ||
1454 | <f_old_trans></f_old_trans> | ||
1455 | <f_translation> | ||
1456 | 오디오(AIFF) | ||
1457 | </f_translation> | ||
1458 | </string><string><a_file>mime_types.xml</a_file> | ||
1459 | <b_path>/default/"audio/x-wav"/</b_path> | ||
1460 | <c_attribute></c_attribute> | ||
1461 | <d_old></d_old> | ||
1462 | <e_new> | ||
1463 | Audio (WAV) | ||
1464 | </e_new> | ||
1465 | <f_old_trans></f_old_trans> | ||
1466 | <f_translation> | ||
1467 | 오디오(WAV) | ||
1468 | </f_translation> | ||
1469 | </string><string><a_file>mime_types.xml</a_file> | ||
1470 | <b_path>/default/"image/bmp"/</b_path> | ||
1471 | <c_attribute></c_attribute> | ||
1472 | <d_old></d_old> | ||
1473 | <e_new> | ||
1474 | Image (BMP) | ||
1475 | </e_new> | ||
1476 | <f_old_trans></f_old_trans> | ||
1477 | <f_translation> | ||
1478 | 이미지(BMP) | ||
1479 | </f_translation> | ||
1480 | </string><string><a_file>mime_types.xml</a_file> | ||
1481 | <b_path>/default/"image/gif"/</b_path> | ||
1482 | <c_attribute></c_attribute> | ||
1483 | <d_old></d_old> | ||
1484 | <e_new> | ||
1485 | Image (GIF) | ||
1486 | </e_new> | ||
1487 | <f_old_trans></f_old_trans> | ||
1488 | <f_translation> | ||
1489 | 이미지(GIF) | ||
1490 | </f_translation> | ||
1491 | </string><string><a_file>mime_types.xml</a_file> | ||
1492 | <b_path>/default/"image/jpeg"/</b_path> | ||
1493 | <c_attribute></c_attribute> | ||
1494 | <d_old></d_old> | ||
1495 | <e_new> | ||
1496 | Image (JPEG) | ||
1497 | </e_new> | ||
1498 | <f_old_trans></f_old_trans> | ||
1499 | <f_translation> | ||
1500 | 이미지(JPEG) | ||
1501 | </f_translation> | ||
1502 | </string><string><a_file>mime_types.xml</a_file> | ||
1503 | <b_path>/default/"image/png"/</b_path> | ||
1504 | <c_attribute></c_attribute> | ||
1505 | <d_old></d_old> | ||
1506 | <e_new> | ||
1507 | Image (PNG) | ||
1508 | </e_new> | ||
1509 | <f_old_trans></f_old_trans> | ||
1510 | <f_translation> | ||
1511 | 이미지(PNG) | ||
1512 | </f_translation> | ||
1513 | </string><string><a_file>mime_types.xml</a_file> | ||
1514 | <b_path>/default/"image/svg+xml"/</b_path> | ||
1515 | <c_attribute></c_attribute> | ||
1516 | <d_old></d_old> | ||
1517 | <e_new> | ||
1518 | Image (SVG) | ||
1519 | </e_new> | ||
1520 | <f_old_trans></f_old_trans> | ||
1521 | <f_translation> | ||
1522 | 이미지(SVG) | ||
1523 | </f_translation> | ||
1524 | </string><string><a_file>mime_types.xml</a_file> | ||
1525 | <b_path>/default/"image/tiff"/</b_path> | ||
1526 | <c_attribute></c_attribute> | ||
1527 | <d_old></d_old> | ||
1528 | <e_new> | ||
1529 | Image (TIFF) | ||
1530 | </e_new> | ||
1531 | <f_old_trans></f_old_trans> | ||
1532 | <f_translation> | ||
1533 | 이미지(TIFF) | ||
1534 | </f_translation> | ||
1535 | </string><string><a_file>mime_types.xml</a_file> | ||
1536 | <b_path>/default/"text/html"/</b_path> | ||
1537 | <c_attribute></c_attribute> | ||
1538 | <d_old></d_old> | ||
1539 | <e_new> | ||
1540 | Web Page | ||
1541 | </e_new> | ||
1542 | <f_old_trans></f_old_trans> | ||
1543 | <f_translation> | ||
1544 | 웹 페이지 | ||
1545 | </f_translation> | ||
1546 | </string><string><a_file>mime_types.xml</a_file> | ||
1547 | <b_path>/default/"text/plain"/</b_path> | ||
1548 | <c_attribute></c_attribute> | ||
1549 | <d_old></d_old> | ||
1550 | <e_new> | ||
1551 | Text | ||
1552 | </e_new> | ||
1553 | <f_old_trans></f_old_trans> | ||
1554 | <f_translation> | ||
1555 | 텍스트 | ||
1556 | </f_translation> | ||
1557 | </string><string><a_file>mime_types.xml</a_file> | ||
1558 | <b_path>/default/"text/xml"/</b_path> | ||
1559 | <c_attribute></c_attribute> | ||
1560 | <d_old></d_old> | ||
1561 | <e_new> | ||
1562 | XML | ||
1563 | </e_new> | ||
1564 | <f_old_trans></f_old_trans> | ||
1565 | <f_translation> | ||
1566 | XML | ||
1567 | </f_translation> | ||
1568 | </string><string><a_file>mime_types.xml</a_file> | ||
1569 | <b_path>/default/"video/mpeg"/</b_path> | ||
1570 | <c_attribute></c_attribute> | ||
1571 | <d_old></d_old> | ||
1572 | <e_new> | ||
1573 | Movie (MPEG) | ||
1574 | </e_new> | ||
1575 | <f_old_trans></f_old_trans> | ||
1576 | <f_translation> | ||
1577 | 동영상(MPEG) | ||
1578 | </f_translation> | ||
1579 | </string><string><a_file>mime_types.xml</a_file> | ||
1580 | <b_path>/default/"video/mp4"/</b_path> | ||
1581 | <c_attribute></c_attribute> | ||
1582 | <d_old></d_old> | ||
1583 | <e_new> | ||
1584 | Movie (MP4) | ||
1585 | </e_new> | ||
1586 | <f_old_trans></f_old_trans> | ||
1587 | <f_translation> | ||
1588 | 동영상(MP4) | ||
1589 | </f_translation> | ||
1590 | </string><string><a_file>mime_types.xml</a_file> | ||
1591 | <b_path>/default/"video/quicktime"/</b_path> | ||
1592 | <c_attribute></c_attribute> | ||
1593 | <d_old></d_old> | ||
1594 | <e_new> | ||
1595 | Movie (QuickTime) | ||
1596 | </e_new> | ||
1597 | <f_old_trans></f_old_trans> | ||
1598 | <f_translation> | ||
1599 | 동영상(QuickTime) | ||
1600 | </f_translation> | ||
1601 | </string><string><a_file>mime_types.xml</a_file> | ||
1602 | <b_path>/default/"video/x-ms-asf"/</b_path> | ||
1603 | <c_attribute></c_attribute> | ||
1604 | <d_old></d_old> | ||
1605 | <e_new> | ||
1606 | Movie (Windows Media ASF) | ||
1607 | </e_new> | ||
1608 | <f_old_trans></f_old_trans> | ||
1609 | <f_translation> | ||
1610 | 동영상(Windows Media ASF) | ||
1611 | </f_translation> | ||
1612 | </string><string><a_file>mime_types.xml</a_file> | ||
1613 | <b_path>/default/"video/x-ms-wmv"/</b_path> | ||
1614 | <c_attribute></c_attribute> | ||
1615 | <d_old></d_old> | ||
1616 | <e_new> | ||
1617 | Movie (Windows Media WMV) | ||
1618 | </e_new> | ||
1619 | <f_old_trans></f_old_trans> | ||
1620 | <f_translation> | ||
1621 | 동영상(Windows Media WMV) | ||
1622 | </f_translation> | ||
1623 | </string><string><a_file>mime_types.xml</a_file> | ||
1624 | <b_path>/default/"video/x-msvideo"/</b_path> | ||
1625 | <c_attribute></c_attribute> | ||
1626 | <d_old></d_old> | ||
1627 | <e_new> | ||
1628 | Movie (AVI) | ||
1629 | </e_new> | ||
1630 | <f_old_trans></f_old_trans> | ||
1631 | <f_translation> | ||
1632 | 동영상(AVI) | ||
1633 | </f_translation> | ||
1634 | </string><string><a_file>notify.xml</a_file> | ||
1635 | <b_path>//RezItemNoPermissions/message</b_path> | ||
1636 | <c_attribute></c_attribute> | ||
1637 | <d_old></d_old> | ||
1638 | <e_new> | ||
1639 | Insufficient permissions to rez object. | ||
1640 | </e_new> | ||
1641 | <f_old_trans></f_old_trans> | ||
1642 | <f_translation> | ||
1643 | rez 오브젝트에 대한 권한이 부족합니다. | ||
1644 | </f_translation> | ||
1645 | </string><string><a_file>panel_audio.xml</a_file> | ||
1646 | <b_path>/Media panel/mute_audio</b_path> | ||
1647 | <c_attribute>label</c_attribute> | ||
1648 | <d_old></d_old> | ||
1649 | <e_new></e_new> | ||
1650 | <f_old_trans></f_old_trans> | ||
1651 | <f_translation></f_translation> | ||
1652 | </string><string><a_file>panel_audio.xml</a_file> | ||
1653 | <b_path>/Media panel/mute_music</b_path> | ||
1654 | <c_attribute>label</c_attribute> | ||
1655 | <d_old></d_old> | ||
1656 | <e_new></e_new> | ||
1657 | <f_old_trans></f_old_trans> | ||
1658 | <f_translation></f_translation> | ||
1659 | </string><string><a_file>panel_audio.xml</a_file> | ||
1660 | <b_path>/Media panel/mute_media</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>panel_audio.xml</a_file> | ||
1667 | <b_path>/Media panel/mute_voice</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>panel_audio.xml</a_file> | ||
1674 | <b_path>/Media panel/mute_sfx</b_path> | ||
1675 | <c_attribute>label</c_attribute> | ||
1676 | <d_old></d_old> | ||
1677 | <e_new></e_new> | ||
1678 | <f_old_trans></f_old_trans> | ||
1679 | <f_translation></f_translation> | ||
1680 | </string><string><a_file>panel_audio.xml</a_file> | ||
1681 | <b_path>/Media panel/mute_wind</b_path> | ||
1682 | <c_attribute>label</c_attribute> | ||
1683 | <d_old></d_old> | ||
1684 | <e_new></e_new> | ||
1685 | <f_old_trans></f_old_trans> | ||
1686 | <f_translation></f_translation> | ||
1687 | </string><string><a_file>panel_audio.xml</a_file> | ||
1688 | <b_path>/Media panel/mute_ui</b_path> | ||
1689 | <c_attribute>label</c_attribute> | ||
1690 | <d_old></d_old> | ||
1691 | <e_new></e_new> | ||
1692 | <f_old_trans></f_old_trans> | ||
1693 | <f_translation></f_translation> | ||
1694 | </string><string><a_file>panel_groups.xml</a_file> | ||
1695 | <b_path>/groups/group list/name</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>panel_group_invite.xml</a_file> | ||
1702 | <b_path>/invite_panel/help_text</b_path> | ||
1703 | <c_attribute></c_attribute> | ||
1704 | <d_old></d_old> | ||
1705 | <e_new> | ||
1706 | You can select multiple residents to | ||
1707 | invite to your group. Click 'Open | ||
1708 | Person Chooser' to start. | ||
1709 | </e_new> | ||
1710 | <f_old_trans></f_old_trans> | ||
1711 | <f_translation> | ||
1712 | 여러 주민을 선택하여 | ||
1713 | 그룹에 초대할 수 있습니다. '주민 | ||
1714 | 선택기 열기'를 클릭하여 시작합니다. | ||
1715 | </f_translation> | ||
1716 | </string><string><a_file>panel_group_invite.xml</a_file> | ||
1717 | <b_path>/invite_panel/role_text</b_path> | ||
1718 | <c_attribute></c_attribute> | ||
1719 | <d_old></d_old> | ||
1720 | <e_new> | ||
1721 | Choose what Role to assign them to: | ||
1722 | </e_new> | ||
1723 | <f_old_trans></f_old_trans> | ||
1724 | <f_translation> | ||
1725 | 할당할 역할을 선택하십시오: | ||
1726 | </f_translation> | ||
1727 | </string><string><a_file>panel_group_invite.xml</a_file> | ||
1728 | <b_path>/invite_panel/confirm_invite_owner_str</b_path> | ||
1729 | <c_attribute></c_attribute> | ||
1730 | <d_old></d_old> | ||
1731 | <e_new> | ||
1732 | Are you sure you want to invite new owner(s)? This action is permanent! | ||
1733 | </e_new> | ||
1734 | <f_old_trans></f_old_trans> | ||
1735 | <f_translation> | ||
1736 | 새 소유자를 초대하시겠습니까? 이 기능은 영구적으로 적용됩니다! | ||
1737 | </f_translation> | ||
1738 | </string><string><a_file>panel_master_volume.xml</a_file> | ||
1739 | <b_path>/master_volume/mute_master</b_path> | ||
1740 | <c_attribute>label</c_attribute> | ||
1741 | <d_old></d_old> | ||
1742 | <e_new></e_new> | ||
1743 | <f_old_trans></f_old_trans> | ||
1744 | <f_translation></f_translation> | ||
1745 | </string><string><a_file>panel_media_remote_expanded.xml</a_file> | ||
1746 | <b_path>/media_remote/play_label</b_path> | ||
1747 | <c_attribute></c_attribute> | ||
1748 | <d_old></d_old> | ||
1749 | <e_new> | ||
1750 | Play | ||
1751 | </e_new> | ||
1752 | <f_old_trans></f_old_trans> | ||
1753 | <f_translation> | ||
1754 | 재생 | ||
1755 | </f_translation> | ||
1756 | </string><string><a_file>panel_media_remote_expanded.xml</a_file> | ||
1757 | <b_path>/media_remote/stop_label</b_path> | ||
1758 | <c_attribute></c_attribute> | ||
1759 | <d_old></d_old> | ||
1760 | <e_new> | ||
1761 | Stop | ||
1762 | </e_new> | ||
1763 | <f_old_trans></f_old_trans> | ||
1764 | <f_translation> | ||
1765 | 중지 | ||
1766 | </f_translation> | ||
1767 | </string><string><a_file>panel_media_remote_expanded.xml</a_file> | ||
1768 | <b_path>/media_remote/pause_label</b_path> | ||
1769 | <c_attribute></c_attribute> | ||
1770 | <d_old></d_old> | ||
1771 | <e_new> | ||
1772 | Pause | ||
1773 | </e_new> | ||
1774 | <f_old_trans></f_old_trans> | ||
1775 | <f_translation> | ||
1776 | 일시 정지 | ||
1777 | </f_translation> | ||
1778 | </string><string><a_file>panel_media_remote_expanded.xml</a_file> | ||
1779 | <b_path>/media_remote/default_tooltip_label</b_path> | ||
1780 | <c_attribute></c_attribute> | ||
1781 | <d_old></d_old> | ||
1782 | <e_new> | ||
1783 | No Media Specified | ||
1784 | </e_new> | ||
1785 | <f_old_trans></f_old_trans> | ||
1786 | <f_translation> | ||
1787 | 지정된 미디어가 없습니다. | ||
1788 | </f_translation> | ||
1789 | </string><string><a_file>panel_media_remote_expanded.xml</a_file> | ||
1790 | <b_path>/media_remote/media_hidden_label</b_path> | ||
1791 | <c_attribute></c_attribute> | ||
1792 | <d_old></d_old> | ||
1793 | <e_new> | ||
1794 | (URL hidden by parcel owner) | ||
1795 | </e_new> | ||
1796 | <f_old_trans></f_old_trans> | ||
1797 | <f_translation> | ||
1798 | (구획 소유자에 의해 URL이 숨겨져 있습니다.) | ||
1799 | </f_translation> | ||
1800 | </string><string><a_file>panel_media_remote_expanded.xml</a_file> | ||
1801 | <b_path>/media_remote/media_icon_tooltip_web</b_path> | ||
1802 | <c_attribute></c_attribute> | ||
1803 | <d_old></d_old> | ||
1804 | <e_new> | ||
1805 | This location displays content from the World Wide Web. Click the Play button to display Web content. | ||
1806 | </e_new> | ||
1807 | <f_old_trans></f_old_trans> | ||
1808 | <f_translation> | ||
1809 | 이 위치에서는 WWW의 컨텐츠가 표시됩니다. 웹 컨텐츠를 표시하려면 재생 버튼을 클릭하십시오. | ||
1810 | </f_translation> | ||
1811 | <f_old_trans></f_old_trans> | ||
1812 | </string><string><a_file>panel_media_remote_expanded.xml</a_file> | ||
1813 | <b_path>/media_remote/media_icon_tooltip_movie</b_path> | ||
1814 | <c_attribute></c_attribute> | ||
1815 | <d_old></d_old> | ||
1816 | <e_new> | ||
1817 | This location displays Video content. Click the Play button to play the video. | ||
1818 | </e_new> | ||
1819 | <f_old_trans></f_old_trans> | ||
1820 | <f_translation> | ||
1821 | 이 위치에서는 비디오 컨텐츠가 표시됩니다. 비디오를 재생하려면 재생 버튼을 클릭하십시오. | ||
1822 | </f_translation> | ||
1823 | </string><string><a_file>panel_media_remote_expanded.xml</a_file> | ||
1824 | <b_path>/media_remote/media_play_tooltip</b_path> | ||
1825 | <c_attribute></c_attribute> | ||
1826 | <d_old></d_old> | ||
1827 | <e_new> | ||
1828 | Display Web content at this location. | ||
1829 | </e_new> | ||
1830 | <f_old_trans></f_old_trans> | ||
1831 | <f_translation> | ||
1832 | 이 위치에서 웹 컨텐츠를 재생합니다. | ||
1833 | </f_translation> | ||
1834 | </string><string><a_file>panel_place.xml</a_file> | ||
1835 | <b_path>/Place/name_label</b_path> | ||
1836 | <c_attribute></c_attribute> | ||
1837 | <d_old></d_old> | ||
1838 | <e_new> | ||
1839 | Name: | ||
1840 | </e_new> | ||
1841 | <f_old_trans></f_old_trans> | ||
1842 | <f_translation> | ||
1843 | 이름: | ||
1844 | </f_translation> | ||
1845 | </string><string><a_file>panel_place.xml</a_file> | ||
1846 | <b_path>/Place/description_label</b_path> | ||
1847 | <c_attribute></c_attribute> | ||
1848 | <d_old></d_old> | ||
1849 | <e_new> | ||
1850 | Description: | ||
1851 | </e_new> | ||
1852 | <f_old_trans></f_old_trans> | ||
1853 | <f_translation> | ||
1854 | 설명: | ||
1855 | </f_translation> | ||
1856 | </string><string><a_file>panel_place.xml</a_file> | ||
1857 | <b_path>/Place/information_label</b_path> | ||
1858 | <c_attribute></c_attribute> | ||
1859 | <d_old></d_old> | ||
1860 | <e_new> | ||
1861 | Information: | ||
1862 | </e_new> | ||
1863 | <f_old_trans></f_old_trans> | ||
1864 | <f_translation> | ||
1865 | 정보: | ||
1866 | </f_translation> | ||
1867 | </string><string><a_file>panel_place.xml</a_file> | ||
1868 | <b_path>/Place/location_label</b_path> | ||
1869 | <c_attribute></c_attribute> | ||
1870 | <d_old></d_old> | ||
1871 | <e_new> | ||
1872 | Location: | ||
1873 | </e_new> | ||
1874 | <f_old_trans></f_old_trans> | ||
1875 | <f_translation> | ||
1876 | 위치: | ||
1877 | </f_translation> | ||
1878 | </string><string><a_file>panel_place_small.xml</a_file> | ||
1879 | <b_path>/Place/name_label</b_path> | ||
1880 | <c_attribute></c_attribute> | ||
1881 | <d_old></d_old> | ||
1882 | <e_new> | ||
1883 | Name: | ||
1884 | </e_new> | ||
1885 | <f_old_trans></f_old_trans> | ||
1886 | <f_translation> | ||
1887 | 이름: | ||
1888 | </f_translation> | ||
1889 | </string><string><a_file>panel_place_small.xml</a_file> | ||
1890 | <b_path>/Place/description_label</b_path> | ||
1891 | <c_attribute></c_attribute> | ||
1892 | <d_old></d_old> | ||
1893 | <e_new> | ||
1894 | Description: | ||
1895 | </e_new> | ||
1896 | <f_old_trans></f_old_trans> | ||
1897 | <f_translation> | ||
1898 | 설명: | ||
1899 | </f_translation> | ||
1900 | </string><string><a_file>panel_place_small.xml</a_file> | ||
1901 | <b_path>/Place/information_label</b_path> | ||
1902 | <c_attribute></c_attribute> | ||
1903 | <d_old></d_old> | ||
1904 | <e_new> | ||
1905 | Information: | ||
1906 | </e_new> | ||
1907 | <f_old_trans></f_old_trans> | ||
1908 | <f_translation> | ||
1909 | 정보: | ||
1910 | </f_translation> | ||
1911 | </string><string><a_file>panel_place_small.xml</a_file> | ||
1912 | <b_path>/Place/location_label</b_path> | ||
1913 | <c_attribute></c_attribute> | ||
1914 | <d_old></d_old> | ||
1915 | <e_new> | ||
1916 | Location: | ||
1917 | </e_new> | ||
1918 | <f_old_trans></f_old_trans> | ||
1919 | <f_translation> | ||
1920 | 위치: | ||
1921 | </f_translation> | ||
1922 | </string><string><a_file>panel_preferences_chat.xml</a_file> | ||
1923 | <b_path>/chat/im</b_path> | ||
1924 | <c_attribute>label</c_attribute> | ||
1925 | <d_old></d_old> | ||
1926 | <e_new>IM</e_new> | ||
1927 | <f_old_trans></f_old_trans> | ||
1928 | <f_translation>메신저</f_translation> | ||
1929 | </string><string><a_file>panel_preferences_general.xml</a_file> | ||
1930 | <b_path>/general_panel/fade_out_combobox/Never</b_path> | ||
1931 | <c_attribute></c_attribute> | ||
1932 | <d_old></d_old> | ||
1933 | <e_new> | ||
1934 | Never | ||
1935 | </e_new> | ||
1936 | <f_old_trans></f_old_trans> | ||
1937 | <f_translation> | ||
1938 | 안함 | ||
1939 | </f_translation> | ||
1940 | </string><string><a_file>panel_preferences_general.xml</a_file> | ||
1941 | <b_path>/general_panel/fade_out_combobox/Show Temporarily</b_path> | ||
1942 | <c_attribute></c_attribute> | ||
1943 | <d_old></d_old> | ||
1944 | <e_new> | ||
1945 | Show Temporarily | ||
1946 | </e_new> | ||
1947 | <f_old_trans></f_old_trans> | ||
1948 | <f_translation> | ||
1949 | 임시로 표시 | ||
1950 | </f_translation> | ||
1951 | </string><string><a_file>panel_preferences_general.xml</a_file> | ||
1952 | <b_path>/general_panel/fade_out_combobox/Always</b_path> | ||
1953 | <c_attribute></c_attribute> | ||
1954 | <d_old></d_old> | ||
1955 | <e_new> | ||
1956 | Always | ||
1957 | </e_new> | ||
1958 | <f_old_trans></f_old_trans> | ||
1959 | <f_translation> | ||
1960 | 항상 | ||
1961 | </f_translation> | ||
1962 | </string><string><a_file>panel_preferences_general.xml</a_file> | ||
1963 | <b_path>/general_panel/group_titles_textbox</b_path> | ||
1964 | <c_attribute></c_attribute> | ||
1965 | <d_old></d_old> | ||
1966 | <e_new> | ||
1967 | Group Titles: | ||
1968 | </e_new> | ||
1969 | <f_old_trans></f_old_trans> | ||
1970 | <f_translation> | ||
1971 | 그룹 타이틀: | ||
1972 | </f_translation> | ||
1973 | </string><string><a_file>panel_preferences_general.xml</a_file> | ||
1974 | <b_path>/general_panel/show_all_title_checkbox</b_path> | ||
1975 | <c_attribute>label</c_attribute> | ||
1976 | <d_old></d_old> | ||
1977 | <e_new>Hide All Group Titles</e_new> | ||
1978 | <f_old_trans></f_old_trans> | ||
1979 | <f_translation>모든 그룹 타이틀 숨기기</f_translation> | ||
1980 | </string><string><a_file>panel_preferences_graphics1.xml</a_file> | ||
1981 | <b_path>/Display panel/QualityPerformanceSelection</b_path> | ||
1982 | <c_attribute>label</c_attribute> | ||
1983 | <d_old></d_old> | ||
1984 | <e_new></e_new> | ||
1985 | <f_old_trans></f_old_trans> | ||
1986 | <f_translation></f_translation> | ||
1987 | </string><string><a_file>panel_preferences_input.xml</a_file> | ||
1988 | <b_path>/Input panel/Camera Follow Distance:</b_path> | ||
1989 | <c_attribute></c_attribute> | ||
1990 | <d_old></d_old> | ||
1991 | <e_new> | ||
1992 | Camera Follow Distance: | ||
1993 | </e_new> | ||
1994 | <f_old_trans></f_old_trans> | ||
1995 | <f_translation> | ||
1996 | 카메라 이동 거리: | ||
1997 | </f_translation> | ||
1998 | </string><string><a_file>panel_preferences_input.xml</a_file> | ||
1999 | <b_path>/Input panel/Camera Transition Time:</b_path> | ||
2000 | <c_attribute></c_attribute> | ||
2001 | <d_old></d_old> | ||
2002 | <e_new> | ||
2003 | Camera Transition Time: | ||
2004 | </e_new> | ||
2005 | <f_old_trans></f_old_trans> | ||
2006 | <f_translation> | ||
2007 | 카메라 전환 시간: | ||
2008 | </f_translation> | ||
2009 | </string><string><a_file>panel_preferences_input.xml</a_file> | ||
2010 | <b_path>/Input panel/Camera Smoothing:</b_path> | ||
2011 | <c_attribute></c_attribute> | ||
2012 | <d_old></d_old> | ||
2013 | <e_new> | ||
2014 | Camera Smoothing: | ||
2015 | </e_new> | ||
2016 | <f_old_trans></f_old_trans> | ||
2017 | <f_translation> | ||
2018 | 카메라 스무딩: | ||
2019 | </f_translation> | ||
2020 | </string><string><a_file>panel_preferences_input.xml</a_file> | ||
2021 | <b_path>/Input panel/joystic_setup_button</b_path> | ||
2022 | <c_attribute>label</c_attribute> | ||
2023 | <d_old></d_old> | ||
2024 | <e_new>Joystick Setup</e_new> | ||
2025 | <f_old_trans></f_old_trans> | ||
2026 | <f_translation>조이스틱 설치</f_translation> | ||
2027 | </string><string><a_file>panel_preferences_popups.xml</a_file> | ||
2028 | <b_path>/popups/dont_show_label</b_path> | ||
2029 | <c_attribute></c_attribute> | ||
2030 | <d_old></d_old> | ||
2031 | <e_new> | ||
2032 | Do not show popups: | ||
2033 | </e_new> | ||
2034 | <f_old_trans></f_old_trans> | ||
2035 | <f_translation> | ||
2036 | 팝업 차단: | ||
2037 | </f_translation> | ||
2038 | </string><string><a_file>panel_preferences_popups.xml</a_file> | ||
2039 | <b_path>/popups/show_label</b_path> | ||
2040 | <c_attribute></c_attribute> | ||
2041 | <d_old></d_old> | ||
2042 | <e_new> | ||
2043 | Show popups: | ||
2044 | </e_new> | ||
2045 | <f_old_trans></f_old_trans> | ||
2046 | <f_translation> | ||
2047 | 허용된 팝업: | ||
2048 | </f_translation> | ||
2049 | </string><string><a_file>panel_speaker_controls.xml</a_file> | ||
2050 | <b_path>/active_speakers_panel/panels/moderation_mode_panel/moderation_mode/OpenVoice</b_path> | ||
2051 | <c_attribute></c_attribute> | ||
2052 | <d_old></d_old> | ||
2053 | <e_new> | ||
2054 | Open Voice (default) | ||
2055 | </e_new> | ||
2056 | <f_old_trans></f_old_trans> | ||
2057 | <f_translation> | ||
2058 | 음성 사용(기본 설정) | ||
2059 | </f_translation> | ||
2060 | </string><string><a_file>panel_speaker_controls.xml</a_file> | ||
2061 | <b_path>/active_speakers_panel/panels/moderation_mode_panel/moderation_mode/ModeratedVoice</b_path> | ||
2062 | <c_attribute></c_attribute> | ||
2063 | <d_old></d_old> | ||
2064 | <e_new> | ||
2065 | Moderated Voice | ||
2066 | </e_new> | ||
2067 | <f_old_trans></f_old_trans> | ||
2068 | <f_translation> | ||
2069 | 음성 제어 | ||
2070 | </f_translation> | ||
2071 | </string><string><a_file>panel_speaker_controls.xml</a_file> | ||
2072 | <b_path>/active_speakers_panel/panels/moderate_chat_panel/speakers_list/speaking_status</b_path> | ||
2073 | <c_attribute>label</c_attribute> | ||
2074 | <d_old></d_old> | ||
2075 | <e_new></e_new> | ||
2076 | <f_old_trans></f_old_trans> | ||
2077 | <f_translation></f_translation> | ||
2078 | </string><string><a_file>panel_speaker_controls.xml</a_file> | ||
2079 | <b_path>/active_speakers_panel/panels/moderate_chat_panel/speaker_controls/profile_btn</b_path> | ||
2080 | <c_attribute>label</c_attribute> | ||
2081 | <d_old></d_old> | ||
2082 | <e_new></e_new> | ||
2083 | <f_old_trans></f_old_trans> | ||
2084 | <f_translation></f_translation> | ||
2085 | </string><string><a_file>panel_status_bar.xml</a_file> | ||
2086 | <b_path>/status/menubar_search_bevel_bg</b_path> | ||
2087 | <c_attribute>label</c_attribute> | ||
2088 | <d_old></d_old> | ||
2089 | <e_new></e_new> | ||
2090 | <f_old_trans></f_old_trans> | ||
2091 | <f_translation></f_translation> | ||
2092 | </string><string><a_file>panel_toolbar.xml</a_file> | ||
2093 | <b_path>/toolbar/toolbar_stack/chat_btn</b_path> | ||
2094 | <c_attribute>label</c_attribute> | ||
2095 | <d_old></d_old> | ||
2096 | <e_new></e_new> | ||
2097 | <f_old_trans></f_old_trans> | ||
2098 | <f_translation></f_translation> | ||
2099 | </string><string><a_file>panel_toolbar.xml</a_file> | ||
2100 | <b_path>/toolbar/toolbar_stack/chat_btn</b_path> | ||
2101 | <c_attribute>tool_tip</c_attribute> | ||
2102 | <d_old></d_old> | ||
2103 | <e_new>Show Chat Bar. (Enter)</e_new> | ||
2104 | <f_old_trans></f_old_trans> | ||
2105 | <f_translation>채팅 표시줄 표시 (입력)</f_translation> | ||
2106 | </string><string><a_file>panel_toolbar.xml</a_file> | ||
2107 | <b_path>/toolbar/toolbar_stack/communicate_btn</b_path> | ||
2108 | <c_attribute>label</c_attribute> | ||
2109 | <d_old></d_old> | ||
2110 | <e_new>Communicate</e_new> | ||
2111 | <f_old_trans></f_old_trans> | ||
2112 | <f_translation>통신</f_translation> | ||
2113 | </string><string><a_file>panel_toolbar.xml</a_file> | ||
2114 | <b_path>/toolbar/toolbar_stack/communicate_btn</b_path> | ||
2115 | <c_attribute>tool_tip</c_attribute> | ||
2116 | <d_old></d_old> | ||
2117 | <e_new>Communicate with your Friends and Groups.</e_new> | ||
2118 | <f_old_trans></f_old_trans> | ||
2119 | <f_translation>친구 및 그룹과 통신합니다.</f_translation> | ||
2120 | </string><string><a_file>panel_toolbar.xml</a_file> | ||
2121 | <b_path>/toolbar/toolbar_stack/fly_btn</b_path> | ||
2122 | <c_attribute>label</c_attribute> | ||
2123 | <d_old></d_old> | ||
2124 | <e_new>Fly</e_new> | ||
2125 | <f_old_trans></f_old_trans> | ||
2126 | <f_translation>비행</f_translation> | ||
2127 | </string><string><a_file>panel_toolbar.xml</a_file> | ||
2128 | <b_path>/toolbar/toolbar_stack/fly_btn</b_path> | ||
2129 | <c_attribute>label_selected</c_attribute> | ||
2130 | <d_old></d_old> | ||
2131 | <e_new>Stop Flying</e_new> | ||
2132 | <f_old_trans></f_old_trans> | ||
2133 | <f_translation>비행 중지</f_translation> | ||
2134 | </string><string><a_file>panel_toolbar.xml</a_file> | ||
2135 | <b_path>/toolbar/toolbar_stack/fly_btn</b_path> | ||
2136 | <c_attribute>tool_tip</c_attribute> | ||
2137 | <d_old></d_old> | ||
2138 | <e_new>Start flying. Use E/C or PgUp/PgDn to fly up and down.</e_new> | ||
2139 | <f_old_trans></f_old_trans> | ||
2140 | <f_translation>비행 시작. 위, 아래로 비행하려면 E/C 또는 PgUp/PgDn을 사용하십시오.</f_translation> | ||
2141 | </string><string><a_file>panel_toolbar.xml</a_file> | ||
2142 | <b_path>/toolbar/toolbar_stack/snapshot_btn</b_path> | ||
2143 | <c_attribute>label</c_attribute> | ||
2144 | <d_old></d_old> | ||
2145 | <e_new>Snapshot</e_new> | ||
2146 | <f_old_trans></f_old_trans> | ||
2147 | <f_translation>스냅샷</f_translation> | ||
2148 | </string><string><a_file>panel_toolbar.xml</a_file> | ||
2149 | <b_path>/toolbar/toolbar_stack/snapshot_btn</b_path> | ||
2150 | <c_attribute>tool_tip</c_attribute> | ||
2151 | <d_old></d_old> | ||
2152 | <e_new>Save a screen shot to disk or inventory.</e_new> | ||
2153 | <f_old_trans></f_old_trans> | ||
2154 | <f_translation>디스크 또는 인벤토리에 스크린샷 저장.</f_translation> | ||
2155 | </string><string><a_file>panel_toolbar.xml</a_file> | ||
2156 | <b_path>/toolbar/toolbar_stack/directory_btn</b_path> | ||
2157 | <c_attribute>label</c_attribute> | ||
2158 | <d_old></d_old> | ||
2159 | <e_new>Search</e_new> | ||
2160 | <f_old_trans></f_old_trans> | ||
2161 | <f_translation>검색</f_translation> | ||
2162 | </string><string><a_file>panel_toolbar.xml</a_file> | ||
2163 | <b_path>/toolbar/toolbar_stack/directory_btn</b_path> | ||
2164 | <c_attribute>tool_tip</c_attribute> | ||
2165 | <d_old></d_old> | ||
2166 | <e_new>Search for places, events, people, and more.</e_new> | ||
2167 | <f_old_trans></f_old_trans> | ||
2168 | <f_translation>장소, 이벤트, 사람, 더 자세히 등을 검색할 수 있습니다.</f_translation> | ||
2169 | </string><string><a_file>panel_toolbar.xml</a_file> | ||
2170 | <b_path>/toolbar/toolbar_stack/build_btn</b_path> | ||
2171 | <c_attribute>label</c_attribute> | ||
2172 | <d_old></d_old> | ||
2173 | <e_new>Build</e_new> | ||
2174 | <f_old_trans></f_old_trans> | ||
2175 | <f_translation>만들기</f_translation> | ||
2176 | </string><string><a_file>panel_toolbar.xml</a_file> | ||
2177 | <b_path>/toolbar/toolbar_stack/build_btn</b_path> | ||
2178 | <c_attribute>tool_tip</c_attribute> | ||
2179 | <d_old></d_old> | ||
2180 | <e_new>Create new objects.</e_new> | ||
2181 | <f_old_trans></f_old_trans> | ||
2182 | <f_translation>새 오브젝트를 만듭니다.</f_translation> | ||
2183 | </string><string><a_file>panel_toolbar.xml</a_file> | ||
2184 | <b_path>/toolbar/toolbar_stack/map_btn</b_path> | ||
2185 | <c_attribute>label</c_attribute> | ||
2186 | <d_old></d_old> | ||
2187 | <e_new>Map</e_new> | ||
2188 | <f_old_trans></f_old_trans> | ||
2189 | <f_translation>지도</f_translation> | ||
2190 | </string><string><a_file>panel_toolbar.xml</a_file> | ||
2191 | <b_path>/toolbar/toolbar_stack/map_btn</b_path> | ||
2192 | <c_attribute>tool_tip</c_attribute> | ||
2193 | <d_old></d_old> | ||
2194 | <e_new>Map of the world. (Ctrl-M)</e_new> | ||
2195 | <f_old_trans></f_old_trans> | ||
2196 | <f_translation>월드 지도 (Ctrl-M)</f_translation> | ||
2197 | </string><string><a_file>panel_toolbar.xml</a_file> | ||
2198 | <b_path>/toolbar/toolbar_stack/radar_btn</b_path> | ||
2199 | <c_attribute>label</c_attribute> | ||
2200 | <d_old></d_old> | ||
2201 | <e_new>Mini-Map</e_new> | ||
2202 | <f_old_trans></f_old_trans> | ||
2203 | <f_translation>미니지도</f_translation> | ||
2204 | </string><string><a_file>panel_toolbar.xml</a_file> | ||
2205 | <b_path>/toolbar/toolbar_stack/radar_btn</b_path> | ||
2206 | <c_attribute>tool_tip</c_attribute> | ||
2207 | <d_old></d_old> | ||
2208 | <e_new>Map of the area around you. (Ctrl-Shift-M)</e_new> | ||
2209 | <f_old_trans></f_old_trans> | ||
2210 | <f_translation>내 주변 영역의 지도 (Ctrl-Shitf-M)</f_translation> | ||
2211 | </string><string><a_file>panel_toolbar.xml</a_file> | ||
2212 | <b_path>/toolbar/toolbar_stack/inventory_btn</b_path> | ||
2213 | <c_attribute>label</c_attribute> | ||
2214 | <d_old></d_old> | ||
2215 | <e_new>Inventory</e_new> | ||
2216 | <f_old_trans></f_old_trans> | ||
2217 | <f_translation>인벤토리</f_translation> | ||
2218 | </string><string><a_file>panel_toolbar.xml</a_file> | ||
2219 | <b_path>/toolbar/toolbar_stack/inventory_btn</b_path> | ||
2220 | <c_attribute>tool_tip</c_attribute> | ||
2221 | <d_old></d_old> | ||
2222 | <e_new>Your items. (Ctrl-I)</e_new> | ||
2223 | <f_old_trans></f_old_trans> | ||
2224 | <f_translation>아이템. (Ctrl-I)</f_translation> | ||
2225 | </string><string><a_file>panel_voice_remote_expanded.xml</a_file> | ||
2226 | <b_path>/voice_remote/voice_channel_bg</b_path> | ||
2227 | <c_attribute>label</c_attribute> | ||
2228 | <d_old></d_old> | ||
2229 | <e_new></e_new> | ||
2230 | <f_old_trans></f_old_trans> | ||
2231 | <f_translation></f_translation> | ||
2232 | </string><string><a_file>panel_voice_remote_expanded.xml</a_file> | ||
2233 | <b_path>/voice_remote/voice_channel_icon</b_path> | ||
2234 | <c_attribute>label</c_attribute> | ||
2235 | <d_old></d_old> | ||
2236 | <e_new></e_new> | ||
2237 | <f_old_trans></f_old_trans> | ||
2238 | <f_translation></f_translation> | ||
2239 | </string><string><a_file>panel_voice_remote_expanded.xml</a_file> | ||
2240 | <b_path>/voice_remote/channel_label</b_path> | ||
2241 | <c_attribute>label</c_attribute> | ||
2242 | <d_old></d_old> | ||
2243 | <e_new></e_new> | ||
2244 | <f_old_trans></f_old_trans> | ||
2245 | <f_translation></f_translation> | ||
2246 | </string><string><a_file>alerts.xml</a_file> | ||
5 | <b_path>//UnsupportedHardware/ignore</b_path> | 2247 | <b_path>//UnsupportedHardware/ignore</b_path> |
6 | <c_attribute></c_attribute> | 2248 | <c_attribute></c_attribute> |
7 | <d_old></d_old> | 2249 | <d_old></d_old> |
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 9d8b773..27b7cf9 100644 --- a/linden/indra/newview/skins/xui/ko/need_to_update.xml +++ b/linden/indra/newview/skins/xui/ko/need_to_update.xml | |||
@@ -2,6 +2,348 @@ | |||
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>//GrantModifyRights/message</b_path> | ||
6 | <c_attribute></c_attribute> | ||
7 | <d_old> | ||
8 | Granting modify rights to another resident allows them to change | ||
9 | ANY objects you may have in-world. Be VERY careful when handing | ||
10 | out this permission. | ||
11 | Do you want to grant modify rights for [FIRST_NAME] [LAST_NAME]? | ||
12 | </d_old> | ||
13 | <e_new> | ||
14 | Granting modify rights to another resident allows them to change, | ||
15 | delete or take ANY objects you may have in-world. Be VERY careful | ||
16 | when handing out this permission. | ||
17 | Do you want to grant modify rights for [FIRST_NAME] [LAST_NAME]? | ||
18 | </e_new> | ||
19 | <f_translation> | ||
20 | 제3의 주민에게 수정 권한을 부여함으로써, 제3의 주민은 사용자가 인월드에서 가지고 있는 오브젝트 모두를 | ||
21 | 변경, 삭제 또는 가져올 수 있습니다. 본 허가권의 취급 시 각별히 | ||
22 | 주의하십시오. | ||
23 | [FIRST_NAME] [LAST_NAME]에게 수정할 수 있는 권리를 부여하시겠습니까? | ||
24 | </f_translation> | ||
25 | <f_old_trans> | ||
26 | 제3의 주민에게 수정 권한을 부여함으로써, 제3의 주민은 본인이 가지고 있는 오브젝트 모두를 | ||
27 | 변경할 수 있습니다. 본 허가권의 취급 시 주의 | ||
28 | 하십시오. | ||
29 | [FIRST_NAME] [LAST_NAME]님에게 수정 권한을 부여 하시겠습니까? | ||
30 | </f_old_trans> | ||
31 | </string><string><a_file>alerts.xml</a_file> | ||
32 | <b_path>//CannotBuyLandNoRegion/message</b_path> | ||
33 | <c_attribute></c_attribute> | ||
34 | <d_old> | ||
35 | Unable to buy land: | ||
36 | Cannot find the region this land is in. | ||
37 | </d_old> | ||
38 | <e_new> | ||
39 | Unable to buy land: | ||
40 | Cannot find the region this land is in. | ||
41 | </e_new> | ||
42 | <f_translation> | ||
43 | 토지를 구매하지 못했습니다: | ||
44 | 이 토지가 소속된 지역을 찾을 수 없습니다. | ||
45 | </f_translation> | ||
46 | <f_old_trans> | ||
47 | 토지를 구매하지 못했습니다: | ||
48 | 이 토지가 소속된 지역을 찾을 수 없습니다. | ||
49 | </f_old_trans> | ||
50 | </string><string><a_file>alerts.xml</a_file> | ||
51 | <b_path>//ParcelCanPlayMedia/message</b_path> | ||
52 | <c_attribute></c_attribute> | ||
53 | <d_old> | ||
54 | This location can play streaming video. | ||
55 | Streaming video requires a 768 kbps or | ||
56 | faster Internet connection. | ||
57 | |||
58 | Play streaming video when available? | ||
59 | (You can change this option later under | ||
60 | Preferences > Audio & Video.) | ||
61 | </d_old> | ||
62 | <e_new> | ||
63 | This location can play streaming media. | ||
64 | Streaming media requires a fast Internet connection. | ||
65 | |||
66 | Play streaming media when available? | ||
67 | (You can change this option later under | ||
68 | Preferences > Audio & Video.) | ||
69 | </e_new> | ||
70 | <f_translation> | ||
71 | 이 지역에서는 스트리밍 미디어를 재생할 수 있습니다. | ||
72 | 스트리밍 미디어를 재생하려면 고속 인터넷 연결이 필요합니다. | ||
73 | |||
74 | 가능한 경우 스트리밍 미디어를 재생하시겠습니까? | ||
75 | ('환경 설정 > 사운드/비디오'에서 | ||
76 | 이 옵션을 변경할 수 있습니다.) | ||
77 | </f_translation> | ||
78 | <f_old_trans> | ||
79 | 이 지역에서는 스트리밍 비디오를 재생할 수 있습니다. | ||
80 | 스트리밍 비디오를 재생하려면 768 kbps 이상의 | ||
81 | 인터넷 연결이 필요합니다. | ||
82 | |||
83 | 가능한 경우 스트리밍 비디오를 재생하시겠습니까? | ||
84 | (나중에 '환경 설정 > 사운드/비디오'에서 | ||
85 | 이 옵션을 변경할 수 있습니다.) | ||
86 | </f_old_trans> | ||
87 | </string><string><a_file>alerts.xml</a_file> | ||
88 | <b_path>//ConfirmClearBrowserCache/message</b_path> | ||
89 | <c_attribute></c_attribute> | ||
90 | <d_old> | ||
91 | Are you sure you want to clear your | ||
92 | browser cache? | ||
93 | </d_old> | ||
94 | <e_new> | ||
95 | Are you sure you want to clear your browser cache? | ||
96 | </e_new> | ||
97 | <f_translation> | ||
98 | 브라우저의 캐시를 전부 삭제하시겠습니까? | ||
99 | </f_translation> | ||
100 | <f_old_trans> | ||
101 | 브라우저의 캐쉬를 전부 삭제 하시겠습니까? | ||
102 | </f_old_trans> | ||
103 | </string><string><a_file>alerts.xml</a_file> | ||
104 | <b_path>//HelpWaterNormalMap/message</b_path> | ||
105 | <c_attribute></c_attribute> | ||
106 | <d_old> | ||
107 | Controls what normal map is layered across the water | ||
108 | to determine reflections/refractions. | ||
109 | </d_old> | ||
110 | <e_new> | ||
111 | Controls what normal map is layered across the water to determine reflections/refractions. | ||
112 | </e_new> | ||
113 | <f_translation> | ||
114 | 수면에 겹쳐지는 일반 맵을 조절하여 반사/굴절률을 결정합니다. | ||
115 | </f_translation> | ||
116 | <f_old_trans> | ||
117 | 수면에 겹쳐지는 일반 맵을 조절하여 | ||
118 | 반사/굴절률을 결정합니다. | ||
119 | </f_old_trans> | ||
120 | </string><string><a_file>alerts.xml</a_file> | ||
121 | <b_path>//HelpWaterWave1/message</b_path> | ||
122 | <c_attribute></c_attribute> | ||
123 | <d_old> | ||
124 | Controls where and how fast the large scaled version of the normal | ||
125 | map moves in the X and Y direction. | ||
126 | </d_old> | ||
127 | <e_new> | ||
128 | Controls where and how fast the large scaled version of the normal map moves in the X and Y direction. | ||
129 | </e_new> | ||
130 | <f_translation> | ||
131 | 일반 맵의 확장된 버전이 X 및 Y 방향으로 이동할 때의 위치와 속도를 조절합니다. | ||
132 | </f_translation> | ||
133 | <f_old_trans> | ||
134 | 일반 맵의 확장된 버전이 X 및 Y 방향으로 이동할 때의 위치와 | ||
135 | 속도를 조절합니다. | ||
136 | </f_old_trans> | ||
137 | </string><string><a_file>alerts.xml</a_file> | ||
138 | <b_path>//HelpWaterWave2/message</b_path> | ||
139 | <c_attribute></c_attribute> | ||
140 | <d_old> | ||
141 | Controls where and how fast the the small scaled version of the | ||
142 | normal map moves in the X and Y direction. | ||
143 | </d_old> | ||
144 | <e_new> | ||
145 | Controls where and how fast the the small scaled version of the normal map moves in the X and Y direction. | ||
146 | </e_new> | ||
147 | <f_translation> | ||
148 | 일반 맵의 축소된 버전이 X 및 Y 방향으로 이동할 때의 위치와 속도를 조절합니다. | ||
149 | </f_translation> | ||
150 | <f_old_trans> | ||
151 | 일반 맵의 축소된 버전이 X 및 Y 방향으로 이동할 때의 위치와 | ||
152 | 속도를 조절합니다. | ||
153 | </f_old_trans> | ||
154 | </string><string><a_file>floater_buy_land.xml</a_file> | ||
155 | <b_path>/buy land/land_use_reason</b_path> | ||
156 | <c_attribute></c_attribute> | ||
157 | <d_old> | ||
158 | You hold 1,309 square meters of land. | ||
159 | This parcel is 512 square meters of land. | ||
160 | </d_old> | ||
161 | <e_new> | ||
162 | You hold 1,309 square meters of land. | ||
163 | This parcel is 512 square meters of land. | ||
164 | </e_new> | ||
165 | <f_translation> | ||
166 | 귀하는 현재 1,309 제곱 미터의 토지를 소유하고 있습니다. | ||
167 | 이 구획은 512 제곱 미터입니다. | ||
168 | </f_translation> | ||
169 | <f_old_trans> | ||
170 | 귀하는 현재 1,309 제곱 미터의 토지를 소유하고 있습니다. | ||
171 | 이 구획은 512 제곱 미터입니다. | ||
172 | </f_old_trans> | ||
173 | </string><string><a_file>floater_buy_land.xml</a_file> | ||
174 | <b_path>/buy land/multiple_parcels_selected</b_path> | ||
175 | <c_attribute></c_attribute> | ||
176 | <d_old> | ||
177 | Multiple different parcels selected. | ||
178 | Try selecting a smaller area. | ||
179 | </d_old> | ||
180 | <e_new> | ||
181 | Multiple different parcels selected. | ||
182 | Try selecting a smaller area. | ||
183 | </e_new> | ||
184 | <f_translation> | ||
185 | 여러 개의 각기 다른 구획이 선택되었습니다. | ||
186 | 더 작은 영역을 선택해 주십시오. | ||
187 | </f_translation> | ||
188 | <f_old_trans> | ||
189 | 여러개의 각기 다른 구획이 선택되었습니다. | ||
190 | 더 작은 영역을 선택해 주십시오. | ||
191 | </f_old_trans> | ||
192 | </string><string><a_file>floater_buy_land.xml</a_file> | ||
193 | <b_path>/buy land/not_owned_by_you</b_path> | ||
194 | <c_attribute></c_attribute> | ||
195 | <d_old> | ||
196 | Land owned by another user is selected. | ||
197 | Try selecting a smaller area. | ||
198 | </d_old> | ||
199 | <e_new> | ||
200 | Land owned by another user is selected. | ||
201 | Try selecting a smaller area. | ||
202 | </e_new> | ||
203 | <f_translation> | ||
204 | 다른 사용자 소유의 토지가 선택되었습니다. | ||
205 | 더 작은 영역을 선택해 주십시오. | ||
206 | </f_translation> | ||
207 | <f_old_trans> | ||
208 | 다른 사용자 소유의 토지가 선택되었습니다. | ||
209 | 더 작은 영역을 선택해 주십시오. | ||
210 | </f_old_trans> | ||
211 | </string><string><a_file>floater_buy_land.xml</a_file> | ||
212 | <b_path>/buy land/for_first_time_group</b_path> | ||
213 | <c_attribute></c_attribute> | ||
214 | <d_old> | ||
215 | This land is reserved for first time buyers. | ||
216 | You cannot buy it for a group. | ||
217 | </d_old> | ||
218 | <e_new> | ||
219 | This land is reserved for first time buyers. | ||
220 | You cannot buy it for a group. | ||
221 | </e_new> | ||
222 | <f_translation> | ||
223 | 이 토지는 최초 구매자를 위해 예약되었습니다. | ||
224 | 그룹용으로 구입할 수 없습니다. | ||
225 | </f_translation> | ||
226 | <f_old_trans> | ||
227 | 이 토지는 최초 구매자를 위해 예약되었습니다. | ||
228 | 그룹용으로 구입할 수 없습니다. | ||
229 | </f_old_trans> | ||
230 | </string><string><a_file>floater_buy_land.xml</a_file> | ||
231 | <b_path>/buy land/for_first_time</b_path> | ||
232 | <c_attribute></c_attribute> | ||
233 | <d_old> | ||
234 | This land is reserved for first time buyers. | ||
235 | You already own land. | ||
236 | </d_old> | ||
237 | <e_new> | ||
238 | This land is reserved for first time buyers. | ||
239 | You already own land. | ||
240 | </e_new> | ||
241 | <f_translation> | ||
242 | 이 토지는 최초 구매자를 위해 예약되었습니다. | ||
243 | 귀하는 이미 토지를 소유하고 있습니다. | ||
244 | </f_translation> | ||
245 | <f_old_trans> | ||
246 | 이 토지는 최초 구매자를 위해 예약되었습니다. | ||
247 | 귀하는 이미 토지를 소유하고 있습니다. | ||
248 | </f_old_trans> | ||
249 | </string><string><a_file>floater_gesture.xml</a_file> | ||
250 | <b_path>/gestures/help_label</b_path> | ||
251 | <c_attribute></c_attribute> | ||
252 | <d_old> | ||
253 | Click a gesture or press a key to play animations and sounds. | ||
254 | </d_old> | ||
255 | <e_new> | ||
256 | Double-click a gesture to play animations and sounds. | ||
257 | </e_new> | ||
258 | <f_translation> | ||
259 | 제스처를 더블클릭하여 애니메이션과 사운드를 재생합니다. | ||
260 | </f_translation> | ||
261 | <f_old_trans> | ||
262 | 이름을 더블클릭 또는 키를 눌러 제스처를 재생합니다. | ||
263 | </f_old_trans> | ||
264 | </string><string><a_file>floater_joystick.xml</a_file> | ||
265 | <b_path>/Joystick</b_path> | ||
266 | <c_attribute>title</c_attribute> | ||
267 | <d_old>Flycam Options</d_old> | ||
268 | <e_new>Joystick Configuration</e_new> | ||
269 | <f_translation>조이스틱 설정</f_translation> | ||
270 | </string><string><a_file>floater_preview_notecard_keep_discard.xml</a_file> | ||
271 | <b_path>/preview_notecard/no_object</b_path> | ||
272 | <c_attribute></c_attribute> | ||
273 | <d_old> | ||
274 | Unable to find object containing this note.: | ||
275 | </d_old> | ||
276 | <e_new>Unable to find object containing this note.:</e_new> | ||
277 | <f_translation>이 노트를 포함하는 오브젝트를 찾을 수 없음:</f_translation> | ||
278 | <f_old_trans> | ||
279 | 이 노트를 포함하는 오브젝트를 찾을 수 없음: | ||
280 | </f_old_trans> | ||
281 | </string><string><a_file>panel_friends.xml</a_file> | ||
282 | <b_path>/friends/friend_list/icon_edit_mine</b_path> | ||
283 | <c_attribute>tool_tip</c_attribute> | ||
284 | <d_old>Friend can edit your objects</d_old> | ||
285 | <e_new>Friend can edit, delete or take objects</e_new> | ||
286 | <f_translation>친구가 내 오브젝트를 편집, 삭제 또는 가져갈 수 있도록 설정</f_translation> | ||
287 | <f_old_trans>친구가 내 오브젝트를 편집할 수 있도록 설정</f_old_trans> | ||
288 | </string><string><a_file>panel_group_invite.xml</a_file> | ||
289 | <b_path>/invite_panel/invitee_list</b_path> | ||
290 | <c_attribute>tool_tip</c_attribute> | ||
291 | <d_old>Hold the Ctrl key and click resident names to multi-select.</d_old> | ||
292 | <e_new>Hold the Ctrl key and click resident names to multi-select.</e_new> | ||
293 | <f_translation>Ctrl 키를 누르고 주민 이름을 클릭하여 여러 명을 선택합니다.</f_translation> | ||
294 | <f_old_trans>여러 명을 선택하기 위해서는 Ctrl 키를 누르고 이름을 클릭하면 됩니다.</f_old_trans> | ||
295 | </string><string><a_file>panel_group_invite.xml</a_file> | ||
296 | <b_path>/invite_panel/role_name</b_path> | ||
297 | <c_attribute>tool_tip</c_attribute> | ||
298 | <d_old>Choose from the list of Roles you are allowed to assign members to.</d_old> | ||
299 | <e_new>Choose from the list of Roles you are allowed to assign members to.</e_new> | ||
300 | <f_translation>회원을 할당할 수 있게 허가된 역할 목록에서 선택합니다.</f_translation> | ||
301 | <f_old_trans>회원을 할당할 수 있게 허가된 역할 목록에서 선택합니다.</f_old_trans> | ||
302 | </string><string><a_file>panel_group_invite.xml</a_file> | ||
303 | <b_path>/invite_panel/loading</b_path> | ||
304 | <c_attribute></c_attribute> | ||
305 | <d_old> | ||
306 | (loading...) | ||
307 | </d_old> | ||
308 | <e_new>(loading...)</e_new> | ||
309 | <f_translation>(로딩 중...)</f_translation> | ||
310 | <f_old_trans> | ||
311 | (로딩 중¡¦} | ||
312 | </f_old_trans> | ||
313 | </string><string><a_file>panel_preferences_chat.xml</a_file> | ||
314 | <b_path>/chat/users</b_path> | ||
315 | <c_attribute>label</c_attribute> | ||
316 | <d_old>Users</d_old> | ||
317 | <e_new>Chat</e_new> | ||
318 | <f_translation>채팅</f_translation> | ||
319 | <f_old_trans>사용자</f_old_trans> | ||
320 | </string><string><a_file>panel_preferences_voice.xml</a_file> | ||
321 | <b_path>/chat/device_settings_text</b_path> | ||
322 | <c_attribute></c_attribute> | ||
323 | <d_old> | ||
324 | NOTE: Running the Device Settings or Voice Chat Setup will temporarily disconnect you from Voice Chat. | ||
325 | </d_old> | ||
326 | <e_new> | ||
327 | NOTE: Running the Device Settings will temporarily disconnect you from Voice Chat. | ||
328 | </e_new> | ||
329 | <f_translation> | ||
330 | 참고: 장치 설정을 실행하면 일시적으로 음성 채팅 연결이 끊길 수 있습니다. | ||
331 | </f_translation> | ||
332 | <f_old_trans> | ||
333 | 참고: 장치 설정 또는 음성 채팅 설정을 실행하면 일시적으로 음성 채팅 연결이 끊길 수 있습니다. | ||
334 | </f_old_trans> | ||
335 | </string><string><a_file>panel_toolbar.xml</a_file> | ||
336 | <b_path>/toolbar/Redock Windows</b_path> | ||
337 | <c_attribute></c_attribute> | ||
338 | <d_old> | ||
339 | Redock Windows | ||
340 | </d_old> | ||
341 | <e_new>Redock Windows</e_new> | ||
342 | <f_translation>창 합치기</f_translation> | ||
343 | <f_old_trans> | ||
344 | 창 합치기 | ||
345 | </f_old_trans> | ||
346 | </string><string><a_file>alerts.xml</a_file> | ||
5 | <b_path>//ClothingLoading/message</b_path> | 347 | <b_path>//ClothingLoading/message</b_path> |
6 | <c_attribute></c_attribute> | 348 | <c_attribute></c_attribute> |
7 | <d_old> | 349 | <d_old> |